/* ============================================================
   RoketBisnis.com — Landing Page
   Palette: Rocket Red #E63946 · Navy #0B132B · Gold #F7B801
            Cream #FFF7ED · WhatsApp Green #22C55E
   Fonts:   Plus Jakarta Sans (headings) · Manrope (body)
   ============================================================ */

:root {
  --red: #E63946;
  --red-dark: #C42E3A;
  --navy: #0B132B;
  --navy-deep: #070B1A;
  --gold: #F7B801;
  --gold-dark: #D97706;
  --cream: #FFF7ED;
  --white: #FFFFFF;
  --green: #22C55E;
  --ink: #0B132B;
  --muted: #5A6478;
  --line: #F0E7D8;
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection { background: var(--gold); color: var(--navy); }

img { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.025em; margin: 0; }

/* ---- Animations ---- */
@keyframes rb-float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes rb-float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes rb-pulse  { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 50% { box-shadow: 0 0 0 14px rgba(34,197,94,0); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ---- Layout helpers ---- */
.container { max-width: 1180px; margin: 0 auto; }
.section { padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 32px); }
.eyebrow {
  display: inline-block; color: var(--red); font-weight: 800; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 {
  font-weight: 800; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.1;
  color: var(--ink); margin: 0 0 16px;
}
.section-head p { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; color: var(--muted); margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--font-head); font-weight: 700; border: none; cursor: pointer;
  border-radius: 13px; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }
.btn--wa { background: var(--green); color: #fff; box-shadow: 0 12px 30px rgba(34,197,94,0.4); }
.btn--wa-pulse { animation: rb-pulse 2.6s infinite; }
.btn--lg { font-size: 16px; padding: 16px 26px; }
.btn--xl { font-size: 16.5px; padding: 17px 30px; border-radius: 14px; }
.btn--md { font-size: 15.5px; padding: 14px 24px; border-radius: 12px; }
.btn--outline-light {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.28);
}
.btn--ghost-light {
  background: rgba(11,19,43,0.35); color: #fff; border: 1.5px solid rgba(255,255,255,0.35);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,19,43,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 14px clamp(16px,4vw,32px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(150deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(230,57,70,0.35);
}
.brand__word {
  font-family: var(--font-head); font-weight: 800; font-size: 19px;
  color: #fff; letter-spacing: -0.02em;
}
.brand__word .accent, .footer__word .accent { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link {
  color: rgba(255,255,255,0.72); text-decoration: none; font-weight: 600; font-size: 14.5px;
  transition: color .15s ease;
}
.nav__link:hover { color: #fff; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 14px; padding: 10px 18px;
  border-radius: 10px; box-shadow: 0 6px 16px rgba(34,197,94,0.35);
}
.nav__link--hide { display: none; }
@media (max-width: 560px) {
  .nav__link--collapse { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 78% -5%, rgba(247,184,1,0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(230,57,70,0.13), transparent 55%),
    var(--navy);
  padding: clamp(40px,6vw,80px) clamp(16px,4vw,32px) clamp(56px,7vw,96px);
}
.hero__grid {
  max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: clamp(32px,5vw,64px); align-items: center;
}
.hero__left { flex: 1 1 440px; min-width: 300px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,184,1,0.14); border: 1px solid rgba(247,184,1,0.35);
  color: var(--gold); font-weight: 700; font-size: 12.5px; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.pill--red { background: rgba(230,57,70,0.18); border-color: rgba(230,57,70,0.5); color: #FF9AA2; }
.pill--red .pill__dot { background: var(--red); box-shadow: 0 0 10px var(--red); }
.hero__title {
  font-weight: 800; font-size: clamp(34px,5.4vw,60px); line-height: 1.04;
  letter-spacing: -0.03em; color: #fff; margin: 0 0 20px;
}
.hero__title .accent { color: var(--gold); }
.hero__sub {
  font-size: clamp(15.5px,1.7vw,18.5px); line-height: 1.6; color: rgba(255,255,255,0.78);
  margin: 0 0 30px; max-width: 560px;
}
.hero__sub strong { color: #fff; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero__micro { font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 0 0 28px; max-width: 480px; line-height: 1.5; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.82); font-size: 13.5px; font-weight: 600;
}
.hero__right { flex: 1 1 380px; min-width: 290px; position: relative; }
.hero__photo {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.hero__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* floating cards */
.fcard {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28); display: flex; align-items: center; gap: 11px;
}
.fcard--top { top: -14px; left: -14px; animation: rb-float 5s ease-in-out infinite; }
.fcard--mid { top: 44%; right: -18px; animation: rb-float2 6s ease-in-out infinite; }
.fcard--bottom {
  bottom: -16px; left: 20px; background: var(--navy);
  border: 1px solid rgba(247,184,1,0.4); box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  animation: rb-float 5.5s ease-in-out infinite;
}
.fcard__icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fcard__icon--red { background: rgba(230,57,70,0.12); }
.fcard__icon--gold { background: rgba(247,184,1,0.16); }
.fcard__icon--green { background: rgba(34,197,94,0.18); }
.fcard__title { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--navy); }
.fcard__sub { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.fcard--bottom .fcard__title { color: #fff; }
.fcard--bottom .fcard__sub { color: rgba(255,255,255,0.6); }
@media (max-width: 620px) {
  .fcard--mid { display: none; }
  .fcard--top { left: 0; top: -12px; }
  .fcard--bottom { left: 8px; }
}

/* trust strip */
.trust-strip {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px clamp(16px,4vw,32px);
}
.trust-strip__inner {
  max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 14px 34px;
}
.trust-strip__label { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.trust-strip__ready { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: 0.02em; }
.trust-strip__meta { color: rgba(255,255,255,0.45); font-size: 12px; font-weight: 600; }

/* ============================================================
   PROBLEM
   ============================================================ */
.bg-cream { background: var(--cream); }
.bg-white { background: #fff; }
.bg-navy  { background: var(--navy); }

.prob-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.prob-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.prob-card__icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(230,57,70,0.1); display: flex; align-items: center; justify-content: center;
}
.prob-card__text { font-size: 15px; font-weight: 600; line-height: 1.45; color: var(--navy); padding-top: 8px; }

.prob-cta {
  background: var(--navy); border-radius: 18px; padding: clamp(26px,4vw,40px);
  text-align: center; position: relative; overflow: hidden;
}
.prob-cta__glow { position: absolute; inset: 0; background: radial-gradient(600px 200px at 50% 0%, rgba(247,184,1,0.12), transparent 70%); }
.prob-cta__text {
  position: relative; font-size: clamp(16px,1.8vw,19px); line-height: 1.6; color: #fff;
  max-width: 720px; margin: 0 auto 22px; font-weight: 600;
}
.prob-cta__text .accent { color: var(--gold); }
.prob-cta .btn { position: relative; }

/* ============================================================
   SOLUTION
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 52px;
}
.pillar { border: 1px solid var(--line); border-radius: 18px; padding: 30px; background: var(--cream); }
.pillar__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pillar__icon--red   { background: var(--red);  box-shadow: 0 10px 22px rgba(230,57,70,0.3); }
.pillar__icon--gold  { background: var(--gold); box-shadow: 0 10px 22px rgba(247,184,1,0.35); }
.pillar__icon--navy  { background: var(--navy); box-shadow: 0 10px 22px rgba(11,19,43,0.3); }
.pillar h3 { font-weight: 800; font-size: 21px; color: var(--navy); margin: 0 0 10px; }
.pillar p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.flow { text-align: center; }
.flow__label { display: inline-block; color: var(--muted); font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.flow__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.flow__chip {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1.5px solid var(--navy); border-radius: 999px; padding: 10px 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy);
}
.flow__arrow { color: var(--red); font-weight: 800; font-size: 18px; }
.flow__end { color: var(--green); font-weight: 700; font-size: 13px; }

/* ============================================================
   WHY KIDSWEAR
   ============================================================ */
.why {
  position: relative; overflow: hidden;
  padding: clamp(56px,7vw,96px) clamp(16px,4vw,32px);
}
.why__glow { position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 20%, rgba(247,184,1,0.1), transparent 60%); }
.why__grid {
  max-width: 1180px; margin: 0 auto; position: relative;
  display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,60px); align-items: center;
}
.why__left { flex: 1 1 380px; min-width: 290px; }
.why__left h2 { font-weight: 800; font-size: clamp(26px,3.6vw,42px); line-height: 1.1; color: #fff; margin: 0 0 18px; }
.why__lead { font-size: clamp(15px,1.6vw,17px); line-height: 1.65; color: rgba(255,255,255,0.75); margin: 0 0 26px; }
.why__points { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px 20px; margin-bottom: 30px; }
.why__point { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,0.9); font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.why__point svg { flex-shrink: 0; margin-top: 2px; }
.why__quote { border-left: 4px solid var(--gold); padding: 6px 0 6px 20px; }
.why__quote p { font-family: var(--font-head); font-weight: 700; font-size: clamp(17px,2vw,22px); line-height: 1.4; color: #fff; margin: 0; letter-spacing: -0.01em; }
.why__right { flex: 1 1 320px; min-width: 280px; }
.why__photo { border-radius: 22px; overflow: hidden; border: 1px solid rgba(247,184,1,0.25); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.why__photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.prog {
  display: flex; flex-direction: column; background: #fff; border-radius: 18px; padding: 26px;
  border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(11,19,43,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.prog:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11,19,43,0.1); }
.prog--featured { border: 2px solid var(--red); box-shadow: 0 24px 50px rgba(230,57,70,0.18); }
.prog__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.prog__tier { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.prog__badge {
  display: inline-flex; align-items: center; gap: 5px; background: var(--red); color: #fff;
  font-weight: 800; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.prog__name { font-weight: 800; font-size: 23px; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 8px; }
.prog__desc { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 20px; min-height: 42px; }
.prog__label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #9AA0AD; margin-bottom: 9px; }
.prog__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.prog__chip { background: var(--cream); color: #6B7280; font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 7px; }
.prog__benefits { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.prog__benefit { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; font-weight: 600; line-height: 1.4; color: var(--navy); }
.prog__benefit svg { flex-shrink: 0; margin-top: 1px; }
.prog__cta {
  margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 18px; border-radius: 12px; transition: filter .15s ease;
}
.prog__cta:hover { filter: brightness(1.05); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.step { display: flex; align-items: center; gap: 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; }
.step__num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.step__text { font-size: clamp(15px,1.6vw,17px); font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ============================================================
   BONUS
   ============================================================ */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.bonus { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 18px; display: flex; align-items: center; gap: 12px; }
.bonus__icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: rgba(247,184,1,0.16); display: flex; align-items: center; justify-content: center; }
.bonus span { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* ============================================================
   FOMO + FORM
   ============================================================ */
.fomo {
  position: relative; overflow: hidden;
  padding: clamp(56px,7vw,96px) clamp(16px,4vw,32px);
}
.fomo__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 350px at 15% 10%, rgba(230,57,70,0.16), transparent 60%),
    radial-gradient(600px 350px at 90% 90%, rgba(247,184,1,0.1), transparent 60%);
}
.fomo__grid { max-width: 1080px; margin: 0 auto; position: relative; display: flex; flex-wrap: wrap; gap: clamp(28px,4vw,48px); align-items: center; }
.fomo__left { flex: 1 1 340px; min-width: 290px; }
.fomo__left h2 { font-weight: 800; font-size: clamp(26px,3.6vw,42px); line-height: 1.1; color: #fff; margin: 0 0 16px; }
.fomo__lead { font-size: clamp(15px,1.6vw,17px); line-height: 1.65; color: rgba(255,255,255,0.75); margin: 0 0 20px; }
.fomo__note { display: flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 700; font-size: 14.5px; }
.fomo__right { flex: 1 1 360px; min-width: 300px; }

.lead-form { background: #fff; border-radius: 20px; padding: clamp(24px,3vw,32px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.lead-form h3 { font-weight: 800; font-size: 20px; color: var(--navy); margin: 0 0 4px; }
.lead-form__sub { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.lead-form__fields { display: flex; flex-direction: column; gap: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #E2E0DA; border-radius: 10px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--navy); outline: none;
  transition: border-color .15s ease;
}
.field input:focus { border-color: var(--red); }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; }
.field-row .field { flex: 1 1 130px; }
.field-row--end { align-items: flex-end; }
.field-row--end .field:first-child { flex: 1 1 150px; }
.field-row--end .field:last-child { flex: 1 1 120px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-toggle {
  cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  padding: 10px 16px; border-radius: 10px; transition: all .15s ease;
  border: 1.5px solid #E2E0DA; background: #fff; color: var(--muted);
}
.chip-toggle[aria-pressed="true"] { border-color: var(--red); background: var(--red); color: #fff; }
.lead-form__submit {
  margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--green); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 16px; padding: 15px;
  border-radius: 12px; box-shadow: 0 10px 26px rgba(34,197,94,0.4);
  transition: transform .15s ease;
}
.lead-form__submit:hover { transform: translateY(-2px); }
.lead-form__fine { font-size: 11.5px; color: #9AA0AD; text-align: center; margin: 0; }

/* ============================================================
   AUDIENCE
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.aud { background: var(--cream); border: 1px solid var(--line); border-radius: 15px; padding: 22px; }
.aud__num { width: 42px; height: 42px; border-radius: 11px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 17px; margin-bottom: 14px; }
.aud h3 { font-weight: 800; font-size: 16.5px; color: var(--navy); margin: 0 0 7px; }
.aud p { font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0; }

/* ============================================================
   TRUST
   ============================================================ */
.trust__grid { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,56px); align-items: center; }
.trust__left { flex: 1 1 360px; min-width: 290px; }
.trust__left h2 { font-weight: 800; font-size: clamp(26px,3.6vw,40px); line-height: 1.1; color: var(--navy); margin: 0 0 16px; }
.trust__lead { font-size: clamp(15px,1.6vw,17px); line-height: 1.65; color: var(--muted); margin: 0 0 24px; }
.trust__points { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 11px 18px; }
.trust__point { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.trust__point svg { flex-shrink: 0; margin-top: 2px; }
.trust__photos { flex: 1 1 320px; min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust__photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.faq__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; padding: 20px 22px; background: #fff; width: 100%; border: none;
  text-align: left; font-family: inherit; transition: background .2s ease;
}
.faq__q { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.35; }
.faq__sign {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 800; font-size: 19px; background: var(--cream); color: var(--red);
  transition: all .2s ease;
}
.faq__body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s ease; padding: 0 22px; background: #fff; }
.faq__body p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.faq.is-open .faq__head { background: #FFFBF3; }
.faq.is-open .faq__sign { background: var(--red); color: #fff; }
.faq.is-open .faq__body { max-height: 400px; opacity: 1; padding: 0 22px 22px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { background: var(--navy); padding: clamp(56px,7vw,100px) clamp(16px,4vw,32px); }
.final__card {
  max-width: 900px; margin: 0 auto; position: relative; overflow: hidden;
  border-radius: 26px; padding: clamp(36px,5vw,60px); text-align: center;
  background: linear-gradient(140deg, var(--red), var(--red-dark));
  box-shadow: 0 30px 70px rgba(230,57,70,0.35);
}
.final__glow { position: absolute; inset: 0; background: radial-gradient(500px 260px at 50% 0%, rgba(247,184,1,0.28), transparent 65%); }
.final__inner { position: relative; }
.final__icon { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 18px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; }
.final__card h2 { font-weight: 800; font-size: clamp(28px,4vw,46px); line-height: 1.08; letter-spacing: -0.03em; color: #fff; margin: 0 0 16px; }
.final__card p { font-size: clamp(15px,1.7vw,18px); line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 30px; }
.final__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final__micro { font-size: 13px; color: rgba(255,255,255,0.8); margin: 22px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); padding: clamp(40px,5vw,56px) clamp(16px,4vw,32px) 120px; }
.footer__inner { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.footer__brand { max-width: 340px; }
.footer__row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(150deg, var(--red), var(--gold)); display: flex; align-items: center; justify-content: center; }
.footer__word { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff; }
.footer__desc { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 0 0 12px; }
.footer__tags { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 12.5px; }
.footer__ct-label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer__wa { display: inline-flex; align-items: center; gap: 9px; color: var(--green); text-decoration: none; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.footer__ct-note { font-size: 12.5px; color: rgba(255,255,255,0.45); margin: 0; }
.footer__legal { max-width: 1180px; margin: 32px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.35); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #fff;
  text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 20px; border-radius: 999px; box-shadow: 0 12px 30px rgba(34,197,94,0.5);
  animation: rb-pulse 2.6s infinite;
}
@media (max-width: 480px) {
  .wa-float { padding: 14px; }
  .wa-float span { display: none; }
}
