/* ============================================================
   Enrollyca Landing — style10 (light theme, 3-tier pricing)
   Rewritten 2026-07-06. Previous landing: index_backup_2026-07-06.html + style8.css
   ============================================================ */

:root {
  --navy:        #0f172a;
  --slate:       #475569;
  --muted:       #64748b;
  --teal:        #0e9f94;
  --teal-dark:   #0b7f76;
  --teal-light:  #e6f7f5;
  --indigo:      #4f46e5;
  --indigo-light:#eef2ff;
  --amber:       #f59e0b;
  --amber-light: #fef3c7;
  --bg:          #f8fafc;
  --bg-soft:     #f1f5f9;
  --card:        #ffffff;
  --border:      #e2e8f0;
  --shadow:      0 4px 24px rgba(15, 23, 42, .06);
  --shadow-lg:   0 12px 40px rgba(15, 23, 42, .10);
  --radius:      16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--slate);
  background: var(--card);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; color: var(--navy); line-height: 1.15; }
img { max-width: 100%; }
a { color: var(--teal); }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 5rem 1.5rem; }
.text-center { text-align: center; }
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); background: var(--teal-light);
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin: 0 auto; }

/* ── Fade-in ─────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Inline gift icon (replaces the 🎁 emoji, inherits text color) ── */
.gift-ico { width: 1.05em; height: 1.05em; vertical-align: -0.18em; margin-right: .3em; display: inline-block; }

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal); color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; padding: .85rem 1.7rem; border: none;
  border-radius: 10px; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 18px rgba(14, 159, 148, .35); transition: all .2s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--navy); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; padding: .85rem 1.7rem;
  border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* ── Navbar ─────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2rem; background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px); transition: box-shadow .25s;
}
#navbar.scrolled { box-shadow: 0 2px 18px rgba(15, 23, 42, .08); }
.nav-logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.nav-logo img { height: 34px; }
.nav-logo span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--navy); }
.nav-links { display: flex; gap: 1.7rem; list-style: none; }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--slate); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-login { font-size: .93rem; font-weight: 600; color: var(--navy); text-decoration: none; padding: .55rem 1rem; }
.nav-login:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: #fff; font-size: .93rem; font-weight: 600;
  padding: .58rem 1.2rem; border-radius: 9px; text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--teal-dark); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; padding: 1.5rem 2rem; overflow-y: auto;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu a { display: block; padding: 1rem 0; font-size: 1.1rem; font-weight: 600; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--bg-soft); }
.nav-mobile-cta { color: var(--teal) !important; }
.nav-mobile-menu .nav-mobile-trial {
  display: block; margin-top: 1.5rem; padding: 1rem 1.2rem; border-bottom: none;
  background: var(--teal); color: #fff; text-align: center;
  font-size: 1.05rem; font-weight: 700; border-radius: 12px;
}
.nav-mobile-menu .nav-mobile-trial:active { background: var(--teal-dark); }
.nav-mobile-trial-note { margin-top: .7rem; text-align: center; font-size: .8rem; color: var(--muted); }

/* Mobile sticky bottom CTA bar (activated in the ≤800px media query) */
.mobile-cta-bar { display: none; }

/* ── Hero ─────────────────────────────── */
.hero { padding: 9rem 1.5rem 4rem; background: linear-gradient(180deg, var(--indigo-light) 0%, #ffffff 78%); }
.hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600;
  color: var(--indigo); background: #fff; border: 1px solid #ddd8ff;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-size: clamp(1.8rem, 3.3vw, 1.9rem); font-weight: 800; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero .sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 1.4rem; }
.hero-trial-note {
  display: inline-block; font-size: .9rem; font-weight: 600; color: var(--navy);
  background: var(--amber-light); border: 1px solid #fde68a; border-radius: 10px;
  padding: .55rem 1rem; margin-bottom: 1.6rem;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: .86rem; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 15px; height: 15px; fill: none; stroke: var(--teal); stroke-width: 1.6; }

.hero-visual { position: relative; }
.hero-video-mockup { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.hero-video-bar { display: flex; align-items: center; gap: .45rem; padding: .7rem 1rem; border-bottom: 1px solid var(--bg-soft); }
.hero-video-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.hero-video-bar .dot:first-child { background: #fda4af; }
.hero-video-bar .dot:nth-child(2) { background: #fde047; }
.hero-video-bar .dot:nth-child(3) { background: #86efac; }
.hero-video-bar .url { margin-left: .8rem; font-size: .74rem; color: var(--muted); background: var(--bg-soft); border-radius: 7px; padding: .25rem .8rem; flex: 1; }
.floating-badge, .floating-badge2 {
  position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: .7rem 1rem; display: flex; align-items: center; gap: .7rem; z-index: 2;
  font-size: .84rem; font-weight: 600; color: var(--navy); border: 1px solid var(--border);
}
.floating-badge { top: -18px; right: -10px; }
.floating-badge .icon { font-size: 1.3rem; }
.floating-badge2 { bottom: -16px; left: -10px; }
.floating-badge2 .green-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; }

/* ── Video triggers ─────────────────────── */
.video-modal-trigger { position: relative; cursor: pointer; display: block; }
.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(15, 23, 42, .18); opacity: 1; transition: background .2s;
}
.video-modal-trigger:hover .play-overlay { background: rgba(15, 23, 42, .32); }
.play-icon {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.95);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; padding-left: 5px; box-shadow: 0 8px 30px rgba(0,0,0,.25); transition: transform .2s;
}
.video-modal-trigger:hover .play-icon { transform: scale(1.08); }

/* ── Numbers strip ───────────────────────── */
.numbers-strip { background: var(--navy); }
.numbers-inner { max-width: 1160px; margin: 0 auto; padding: 1.6rem 1.5rem; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.2rem; }
.num-item { text-align: center; }
.num-item .n { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.num-item .l { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ── Problem cards ───────────────────────── */
#problem { background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.problem-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.problem-card .problem-icon { margin-bottom: .95rem; }
.problem-card .problem-icon img { display: block; width: 52px; height: 52px; }
.problem-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.problem-card p { font-size: .92rem; color: var(--muted); }

/* ── Module tour ─────────────────────────── */
.tour-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; margin-top: 3rem; align-items: start; }
.tour-menu { display: flex; flex-direction: column; gap: .4rem; position: sticky; top: 90px; }
.tour-tab {
  display: flex; align-items: center; gap: .7rem; text-align: left;
  background: none; border: 1.5px solid transparent; border-radius: 11px;
  padding: .75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: .94rem;
  font-weight: 600; color: var(--slate); cursor: pointer; transition: all .15s;
}
.tour-tab:hover { background: var(--bg-soft); }
.tour-tab.active { background: var(--teal-light); border-color: var(--teal); color: var(--teal-dark); }
.tour-tab .tt-icon { font-size: 1.15rem; }
.tour-tab .tt-plan { margin-left: auto; font-size: .64rem; font-weight: 700; letter-spacing: .05em; padding: .14rem .5rem; border-radius: 100px; }
.tt-plan.standard { background: var(--bg-soft); color: var(--muted); }
.tt-plan.pro { background: var(--indigo-light); color: var(--indigo); }
.tt-plan.full { background: var(--teal-light); color: var(--teal-dark); }
.tour-panel { display: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
.tour-panel.active { display: block; }
.tour-panel h3 { font-size: 1.45rem; margin-bottom: .6rem; }
.tour-panel .tp-lead { font-size: .98rem; color: var(--muted); margin-bottom: 1.3rem; }
.tp-feats { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.4rem; margin-bottom: 1.4rem; }
.tp-feat { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; color: var(--slate); }
.tp-feat::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.tp-media { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.tp-note { font-size: .84rem; color: var(--muted); background: var(--bg-soft); border-radius: 9px; padding: .7rem 1rem; margin-top: 1.2rem; }

/* ── How it works ───────────────────────── */
#how { background: var(--navy); }
#how .section-title { color: #fff; }
#how .section-sub { color: rgba(255,255,255,.65); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.8rem; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.step-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: .6rem; }
.step-card p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.step-pill { display: inline-block; font-size: .74rem; font-weight: 600; color: #d1fdf9; background: rgba(14,159,148,.25); border-radius: 100px; padding: .28rem .75rem; margin: .17rem .17rem 0 0; }
.how-cta { text-align: center; margin-top: 2.8rem; }
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(120deg, #f59e0b, #fbbf24); color: #1a2238;
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 800;
  padding: .95rem 2.2rem; border: none; border-radius: 12px; cursor: pointer;
  text-decoration: none; box-shadow: 0 8px 26px rgba(245, 158, 11, .35);
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245, 158, 11, .45); }
.how-cta-note { margin-top: .85rem; font-size: .84rem; color: rgba(255,255,255,.65); }
.how-cta-vip { margin: 1.7rem auto 0; max-width: 620px; font-size: .9rem; color: rgba(255,255,255,.75); }
.how-cta-vip a { color: #ffd66e; font-weight: 700; text-decoration: none; }
.how-cta-vip a:hover { text-decoration: underline; }

/* ── Video / demo section ────────────────── */
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 3rem; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Live demo panel (links to the demo gate — private sandbox copies) */
.demo-live {
  display: grid; grid-template-columns: 1.5fr .5fr; gap: 2rem; align-items: center;
  margin-top: 2.4rem; padding: 2rem 2.3rem;
  background: linear-gradient(120deg, var(--teal-light), #f0fdfa);
  border: 1px solid #c2e9e4; border-radius: 20px;
}
.demo-live-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700;
  color: var(--teal-dark); background: #fff; border: 1px solid #bfe6e2;
  padding: .32rem .9rem; border-radius: 100px; margin-bottom: .9rem;
}
.demo-live-badge .dl-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
.demo-live h3 { font-size: 1.35rem; margin-bottom: .55rem; }
.demo-live p { font-size: .93rem; color: var(--slate); margin-bottom: 1rem; }
.demo-live-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.demo-live-chips span {
  font-size: .77rem; font-weight: 600; color: var(--teal-dark);
  background: rgba(255,255,255,.85); border: 1px solid #bfe6e2;
  border-radius: 100px; padding: .28rem .75rem;
}
.demo-live-action { text-align: center; }
.demo-live-btn { font-size: 1.02rem; padding: .95rem 1.9rem; }
.demo-live-note { margin-top: .7rem; font-size: .8rem; color: var(--muted); }

/* ── Pricing ─────────────────────────────── */
#pricing { background: var(--bg); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: .9rem; margin: 2.2rem 0 2.8rem; }
.toggle-label { font-size: .95rem; color: var(--muted); }
.toggle-label.on { color: var(--navy); font-weight: 700; }
.toggle-switch {
  width: 52px; height: 28px; border-radius: 100px; background: var(--border);
  border: none; cursor: pointer; position: relative; transition: background .2s;
}
.toggle-switch.active { background: var(--teal); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25); transition: left .2s;
}
.toggle-switch.active .toggle-knob { left: 27px; }
.toggle-save-badge { font-size: .76rem; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); border-radius: 100px; padding: .25rem .7rem; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.plan-card {
  position: relative; background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 2rem 1.7rem 1.7rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.plan-card.popular { border-color: var(--teal); box-shadow: 0 14px 44px rgba(14,159,148,.16); }
.plan-pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 100px; padding: .3rem 1rem; white-space: nowrap;
}
.plan-name { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.plan-tagline { font-size: .86rem; color: var(--muted); margin-bottom: 1.1rem; }
.plan-price { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--navy); margin-bottom: .2rem; }
.plan-price .amount { font-size: 2.6rem; }
.plan-price .currency { font-size: 1.3rem; vertical-align: super; }
.plan-price .period { font-size: .9rem; font-weight: 500; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.plan-billed { font-size: .78rem; color: var(--muted); margin-bottom: 1.2rem; min-height: 1.1em; }
.plan-feats { list-style: none; margin-bottom: 1.6rem; flex: 1; }
.plan-feats li { display: flex; gap: .55rem; align-items: flex-start; font-size: .89rem; color: var(--slate); padding: .32rem 0; }
.plan-feats li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.plan-feats li.inherit { color: var(--navy); font-weight: 700; }
.plan-feats li.inherit::before { content: "★"; color: var(--amber); }
.plan-cta {
  display: block; text-align: center; text-decoration: none; font-weight: 700; font-size: .96rem;
  padding: .85rem 1rem; border-radius: 11px; transition: all .2s;
}
.plan-cta.solid { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(14,159,148,.3); }
.plan-cta.solid:hover { background: var(--teal-dark); }
.plan-cta.outline { border: 1.5px solid var(--border); color: var(--navy); }
.plan-cta.outline:hover { border-color: var(--teal); color: var(--teal); }
.plan-trial-note { text-align: center; font-size: .76rem; color: var(--muted); margin-top: .6rem; }

.pricing-notes { text-align: center; margin-top: 2rem; font-size: .88rem; color: var(--muted); }
.pricing-notes strong { color: var(--navy); }
.tax-note { display: block; margin-top: .55rem; font-size: .8rem; color: var(--muted); opacity: .85; }

/* ── VIP box ─────────────────────────────── */
.vip-box {
  margin-top: 3rem; background: linear-gradient(120deg, #101a33, #16234a);
  border-radius: 20px; padding: 2.4rem; color: #fff; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 2.2rem; align-items: start;
}
.vip-badge { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ffd66e; background: rgba(255,214,110,.12); border: 1px solid rgba(255,214,110,.4); border-radius: 100px; padding: .3rem .9rem; margin-bottom: 1rem; }
.vip-box h3 { color: #fff; font-size: 1.6rem; margin-bottom: .6rem; }
.vip-box .vip-price { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: #ffd66e; margin-bottom: .8rem; }
.vip-box p { font-size: .93rem; color: rgba(255,255,255,.72); margin-bottom: 1rem; }
.vip-cols { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.vip-col { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; padding: 1.1rem 1.3rem; }
.vip-col h5 { font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.vip-col ul { list-style: none; }
.vip-col li { font-size: .84rem; color: rgba(255,255,255,.72); padding: .18rem 0; display: flex; gap: .5rem; }
.vip-col.does li::before { content: "✓"; color: #4ade80; font-weight: 800; }
.vip-note {
  background: rgba(255,214,110,.1); border: 1px solid rgba(255,214,110,.35);
  border-radius: 13px; padding: 1.1rem 1.3rem;
  font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.85);
}
.vip-note strong { color: #ffd66e; }

/* ── FAQ ─────────────────────────────────── */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 13px; margin-bottom: .8rem; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 1.1rem 1.4rem; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy);
}
.faq-q .chev { transition: transform .2s; color: var(--muted); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.4rem 1.2rem; font-size: .93rem; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

/* ── Final CTA ───────────────────────────── */
#cta { background: linear-gradient(120deg, var(--teal), #0c8f92); text-align: center; padding: 5rem 1.5rem; }
#cta .section-title { color: #fff; }
#cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-chip { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); color: #fff; font-weight: 600; font-size: .9rem; border-radius: 100px; padding: .5rem 1.2rem; margin-bottom: 1.4rem; }
#cta .btn-white {
  display: inline-flex; background: #fff; color: var(--teal-dark); font-weight: 700; font-size: 1.05rem;
  padding: .95rem 2rem; border-radius: 11px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 26px rgba(0,0,0,.18); transition: transform .2s;
}
#cta .btn-white:hover { transform: translateY(-2px); }
#cta .cta-note { font-size: .84rem; color: rgba(255,255,255,.7); margin-top: 1.1rem; }

/* ── Footer ─────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 3.5rem 1.5rem 1.5rem; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.footer-brand-logo { display: flex; align-items: center; gap: .55rem; margin-bottom: 1rem; }
.footer-brand-logo img { height: 32px; }
.footer-brand-logo span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-brand p { font-size: .88rem; max-width: 340px; }
.footer-col h5 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col a { display: block; font-size: .88rem; color: rgba(255,255,255,.6); text-decoration: none; padding: .25rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1160px; margin: 2.5rem auto 0; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.45); }

/* ── Float contact + modals ──────────────── */
.float-contact-btn {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--teal); color: #fff; border: none;
  cursor: pointer; box-shadow: 0 8px 24px rgba(14,159,148,.45); transition: transform .2s;
}
.float-contact-btn svg { width: 30px; height: 30px; }
.float-contact-btn:hover { transform: scale(1.08); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,23,42,.55);
  display: none; align-items: center; justify-content: center; padding: 1.2rem;
}
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 20px; max-width: 480px; width: 100%; max-height: 92vh; overflow-y: auto; padding: 2.2rem; position: relative; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.1rem; color: var(--muted); cursor: pointer; z-index: 2; }
.modal-badge { display: inline-block; font-size: .76rem; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); border-radius: 100px; padding: .3rem .9rem; margin-bottom: .9rem; }
.modal-box h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.modal-sub { font-size: .9rem; color: var(--muted); margin-bottom: 1.3rem; }
.modal-tabs { display: flex; gap: .5rem; margin-bottom: 1.2rem; }
.modal-tab { flex: 1; background: var(--bg-soft); border: 1.5px solid transparent; border-radius: 9px; padding: .6rem; font-family: 'DM Sans', sans-serif; font-size: .84rem; font-weight: 600; color: var(--slate); cursor: pointer; }
.modal-tab.active { background: var(--teal-light); border-color: var(--teal); color: var(--teal-dark); }
.modal-field { margin-bottom: 1rem; }
.modal-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.modal-field input, .modal-field textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 9px; padding: .7rem .9rem;
  font-family: 'DM Sans', sans-serif; font-size: .92rem; color: var(--navy); outline: none; transition: border .15s;
}
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--teal); }
.modal-field textarea { min-height: 100px; resize: vertical; }
.modal-submit {
  width: 100%; background: var(--teal); color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: .98rem; font-weight: 700; border: none; border-radius: 10px; padding: .85rem; cursor: pointer; transition: background .2s;
}
.modal-submit:hover { background: var(--teal-dark); }
.modal-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .7rem; }
.modal-success { text-align: center; padding: 1.5rem 0; }
.modal-success .success-icon { font-size: 2.6rem; margin-bottom: .8rem; }
.modal-success h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.modal-success p { font-size: .9rem; color: var(--muted); }

.video-modal-overlay {
  position: fixed; inset: 0; z-index: 210; background: rgba(10,14,25,.85);
  display: none; align-items: center; justify-content: center; padding: 1.2rem;
}
.video-modal-overlay.open { display: flex; }
.video-modal-content { width: 100%; max-width: 900px; position: relative; }
.video-modal-content .modal-close { top: -38px; right: 0; color: #fff; font-size: 1.4rem; }
.video-wrapper-inner { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 14px; overflow: hidden; background: #000; }
.video-wrapper-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-menu { position: static; flex-direction: row; flex-wrap: wrap; }
  .tour-tab .tt-plan { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .demo-live { grid-template-columns: 1fr; gap: 1.4rem; text-align: center; }
  .demo-live-chips { justify-content: center; }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .vip-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 800px) {
  #navbar { padding: .9rem 1.2rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: block; }
  .problem-grid, .tp-feats { grid-template-columns: 1fr; }
  .section-inner { padding: 3.4rem 1.2rem; }
  .hero { padding-top: 7rem; }
  .floating-badge, .floating-badge2 { display: none; }

  /* Sticky bottom CTA bar */
  .mobile-cta-bar {
    display: flex; align-items: center; justify-content: space-between; gap: .9rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
    padding: .7rem 1.1rem calc(.7rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(15,23,42,.12);
    transform: translateY(110%); transition: transform .3s ease;
  }
  .mobile-cta-bar.visible { transform: translateY(0); }
  .mcb-note { font-size: .78rem; font-weight: 600; color: var(--slate); line-height: 1.3; }
  .mcb-btn {
    flex-shrink: 0; white-space: nowrap; background: var(--teal); color: #fff;
    font-size: .95rem; font-weight: 700; padding: .7rem 1.25rem; border-radius: 10px;
    text-decoration: none;
  }
  .mcb-btn:active { background: var(--teal-dark); }
  .float-contact-btn { transition: bottom .3s ease, transform .2s; }
  body.cta-bar-on .float-contact-btn { bottom: calc(84px + env(safe-area-inset-bottom)); }
}
