/* DESIGN SYSTEM: Soft Pop / Friendly Utility */
:root {
  --cream: #fff8f0;
  --blue: #2b44ff;
  --lime: #ccff00;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray: #f2f2f2;
  --pink: #ff90e8;
  --orange: #ff5d01;

  --font-main: "Plus Jakarta Sans", sans-serif;

  --radius: 20px;
  --border: 3px solid var(--black);
  --shadow: 6px 6px 0px var(--black);

  --container: 1200px;
  --pad: 24px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--black);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--black);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: 100px 0;
}
.center {
  text-align: center;
  margin-bottom: 50px;
}

/* BUTTONS */
.btn-pop {
  background: var(--lime);
  color: var(--black);
  padding: 12px 24px;
  font-weight: 800;
  border: 2px solid var(--black);
  border-radius: 50px;
  box-shadow: 3px 3px 0 var(--black);
  transition: 0.2s;
}
.btn-pop:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--black);
}

.btn-primary {
  display: inline-block;
  padding: 18px 36px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  border-radius: 16px;
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  transition: 0.2s;
}
.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--black);
  background: var(--black);
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  border-radius: 16px;
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  transition: 0.2s;
}
.btn-secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--black);
  background: var(--lime);
}

/* HEADER */
.pop-header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 50px;
  height: 80px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-svg {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

.header-act {
  display: flex;
  align-items: center;
  gap: 15px;
}
.burger-btn {
  display: none;
  background: var(--white);
  border: 2px solid var(--black);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* MOBILE DRAWER */
.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--blue);
  color: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--black);
}
.mob-drawer.active {
  transform: translateX(0);
}
.mob-head {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 60px;
}
#closeMenu {
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
}
.mob-list a {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.mob-foot {
  margin-top: auto;
  font-weight: 700;
  opacity: 0.7;
}

/* HERO */
.hero-pop {
  padding-top: 160px;
  padding-bottom: 80px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge-capsule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 30px;
  color: var(--black);
}
.highlight {
  background: var(--lime);
  padding: 0 10px;
  display: inline-block;
  transform: rotate(-2deg);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 550px;
  color: #444;
}
.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
}
.avatars img:first-child {
  margin-left: 0;
}

.image-card {
  position: relative;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  background: #fff;
}
.sticker {
  position: absolute;
  padding: 10px 20px;
  font-weight: 800;
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 50px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.s1 {
  top: -20px;
  right: -20px;
  background: var(--lime);
  transform: rotate(10deg);
}
.s2 {
  bottom: 50px;
  right: -30px;
  background: var(--pink);
  color: var(--black);
  transform: rotate(-10deg);
}
.s3 {
  bottom: -20px;
  left: -20px;
  background: var(--white);
  transform: rotate(5deg);
}

/* MARQUEE */
.marquee-strip {
  background: var(--black);
  color: var(--white);
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(-1deg);
  width: 105%;
  margin-left: -2.5%;
  border-top: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
  margin-top: 40px;
}
.track {
  white-space: nowrap;
  font-weight: 800;
  font-size: 1.5rem;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PROBLEM/SOLUTION */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.prob-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1;
}
.lead {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.prob-comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comp-row {
  padding: 20px;
  border: 3px solid var(--black);
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: start;
}
.bad {
  background: #ffe0e0;
}
.good {
  background: #e0ffe4;
  box-shadow: 6px 6px 0 var(--black);
  transform: scale(1.02);
}
.icon-box {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* TOOLS GRID */
.section-tools {
  background: var(--white);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tool-card {
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s;
}
.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 6px 6px 0 var(--black);
}
.tc-icon {
  width: 60px;
  height: 60px;
  border: 3px solid var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--black);
}
.c-blue {
  background: var(--blue);
  color: #fff;
}
.c-lime {
  background: var(--lime);
}
.c-pink {
  background: var(--pink);
}
.c-orange {
  background: var(--orange);
  color: #fff;
}
.tool-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* SCENARIOS (BENTO) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  auto-rows: minmax(280px, auto);
  gap: 24px;
}
.bento-item {
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s;
  background: var(--white);
}
.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--black);
}
.bi-head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.bi-icon {
  width: 50px;
  height: 50px;
  background: var(--black);
  color: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bi-head h4 {
  font-size: 1.4rem;
  line-height: 1.2;
}
.bento-item p {
  font-size: 1rem;
  color: #555;
}

.wide {
  grid-column: 1 / 3;
  background: var(--blue);
  color: var(--white);
}
.wide .bi-icon {
  background: var(--white);
  color: var(--blue);
}
.wide p {
  color: rgba(255, 255, 255, 0.9);
}
.box {
  grid-column: auto;
}
.tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background: var(--lime);
}
.tall .bento-item p {
  color: var(--black);
}
.tall .bi-icon {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 6px 6px 0 var(--pink);
}
.r-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}
.r-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--black);
}
.r-user h5 {
  font-size: 1.1rem;
}
.r-user span {
  font-size: 0.85rem;
  color: #777;
  font-weight: 700;
}
.review-card p {
  font-style: italic;
  font-size: 1.05rem;
}

/* COMMUNITY */
.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.comm-img {
  position: relative;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.float-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  border: 2px solid var(--lime);
}
.comm-txt h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.feature-list {
  margin: 30px 0;
}
.feature-list li {
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 1.1rem;
}
.feature-list i {
  color: var(--blue);
  stroke-width: 3px;
}
.link-bold {
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--lime);
  padding: 5px 10px;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  display: inline-block;
}
.link-bold:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--black);
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border: 3px solid var(--black);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 25px;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq-btn::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 800;
}
.faq-btn.active {
  background: var(--gray);
  border-bottom: 2px solid var(--black);
}
.faq-btn.active::after {
  content: "-";
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 25px;
  background: #fff;
}
.faq-ans p {
  padding: 20px 0;
  font-size: 1.1rem;
}

/* FORM */
.form-box-wrap {
  display: flex;
  justify-content: center;
}
.form-card {
  max-width: 700px;
  width: 100%;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: 12px 12px 0 var(--blue);
}
.fc-head {
  text-align: center;
  margin-bottom: 40px;
}
.fc-head h2 {
  font-size: 2.5rem;
}
.pop-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.inp-field label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.inp-field input {
  width: 100%;
  padding: 16px;
  border: 3px solid var(--black);
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 1.1rem;
  background: var(--gray);
}
.inp-field input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
}
.chk-field {
  display: flex;
  gap: 15px;
  font-size: 0.95rem;
  align-items: start;
}
.chk-field input {
  width: 20px;
  height: 20px;
  accent-color: var(--black);
}
.chk-field a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 700;
}
.btn-submit {
  padding: 20px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  border: none;
  border-radius: 12px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 0 #444;
}
.btn-submit:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #444;
  background: var(--blue);
}

/* FOOTER */
.pop-footer {
  margin-top: 100px;
  padding: 80px 0 20px;
  background: var(--black);
  color: var(--white);
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.f-logo {
  font-weight: 900;
  font-size: 2rem;
  color: var(--lime);
  display: block;
  margin-bottom: 10px;
}
.f-links a,
.f-legal a {
  display: block;
  color: #ccc;
  margin-bottom: 12px;
  transition: 0.2s;
  font-weight: 500;
}
.f-links a:hover,
.f-legal a:hover {
  color: var(--lime);
  padding-left: 5px;
}
.f-contact p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.f-contact a {
  color: var(--lime);
  font-weight: 700;
  font-size: 1.2rem;
}
.f-btm {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #777;
}

/* COOKIE */
.cookie-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 15px 25px;
  border-radius: 16px;
  display: none;
  align-items: center;
  gap: 15px;
  z-index: 500;
  box-shadow: 6px 6px 0 var(--lime);
}
.cookie-toast p {
  font-weight: 700;
}
#acceptCookie {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links,
  .btn-pop {
    display: none;
  }
  .burger-btn {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-btns {
    justify-content: center;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }
  .comm-grid {
    grid-template-columns: 1fr;
  }
  .comm-img {
    order: -1;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    auto-rows: auto;
  }
  .wide,
  .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fc-head h2 {
    font-size: 2rem;
    margin: 0 0 20px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .prob-text h2 {
    font-size: 2.5rem;
  }
  .comp-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}
