:root {
  --navy: #07142f;
  --navy-2: #0b1d42;
  --blue: #12366f;
  --teal: #ff9f00;
  --teal-soft: #fff2cc;
  --sun: #ffb000;
  --sun-2: #ff8a00;
  --lime: #ffd766;
  --cream: #fff7e8;
  --sand: #f7efe2;
  --ink: #14213d;
  --muted: #6f7482;
  --line: #eadfca;
  --bg: #fffaf1;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(7, 20, 47, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #fff9ee 0%, #ffffff 45%, #fffaf1 100%);
  color: var(--ink);
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section-pad { padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 249, 238, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 223, 202, .85);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 48px rgba(8, 22, 51, .08); background: rgba(255,255,255,.92); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 96px; height: auto; }
.nav { display: flex; align-items: center; gap: 34px; font-weight: 500; font-size: 14px; letter-spacing: -.01em; color: #46516a; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--navy); }
.header-cta {
  background: var(--navy-2);
  color: white;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 32px rgba(15, 39, 84, .2);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--white); box-shadow: 0 8px 24px rgba(8,22,51,.08); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 5px auto; border-radius: 20px; transition: .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 118px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 5%, rgba(255, 176, 0, .16), transparent 34%),
    radial-gradient(circle at 10% 25%, rgba(7, 20, 47, .06), transparent 32%);
  pointer-events: none;
}
.hero__glow { position: absolute; border-radius: 999px; filter: blur(40px); opacity: .45; }
.hero__glow--one { width: 220px; height: 220px; background: rgba(255, 180, 35, .28); right: 9%; top: 22%; }
.hero__glow--two { width: 300px; height: 300px; background: rgba(255, 138, 0, .14); left: -80px; bottom: 10%; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 76px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.72); border-radius: 999px; padding: 8px 14px; color: var(--sun-2); font-size: 14px; font-weight: 600; box-shadow: 0 12px 36px rgba(8,22,51,.06); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(255,176,0,.18); }
.eyebrow--dark { color: #ffe1a1; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); box-shadow: none; }
.hero h1, .section-head h2, .system h2, .plan h2, .contact h2 {
  margin: 26px 0 18px;
  color: var(--navy-2);
  font-size: clamp(42px, 4.9vw, 68px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 600;
}
.hero h1 { max-width: 760px; }
.hero__lead { max-width: 660px; color: var(--muted); font-size: 20px; margin: 0 0 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; border-radius: 15px; font-weight: 600; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn--primary { color: white; background: linear-gradient(135deg, var(--navy-2), #07142f); box-shadow: 0 18px 42px rgba(7, 20, 47, .22); }
.btn--secondary { color: var(--navy-2); background: white; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(8,22,51,.08); }
.hero__badges { display: flex; gap: 24px; flex-wrap: wrap; color: var(--navy-2); font-size: 14px; font-weight: 500; }
.hero__badges span { display: inline-flex; align-items: center; gap: 10px; }
.hero__badges i { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background: var(--sun); position: relative; }
.hero__badges i:after { content: ""; position: absolute; width: 8px; height: 4px; border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(-45deg); left: 6px; top: 6px; }

.dashboard { position: relative; border: 1px solid rgba(215,224,239,.9); background: rgba(255,255,255,.78); backdrop-filter: blur(20px); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow); min-height: 540px; }
.dashboard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.window-dots { display: flex; gap: 9px; }
.window-dots span { width: 11px; height: 11px; background: #c5cfdd; border-radius: 50%; }
.url-pill { font-size: 12px; color: #8190a8; font-weight: 600; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; }
.dashboard__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dashboard__stats article, .chart-card, .visibility-card { background: linear-gradient(180deg, #fff 0%, #fff9ee 100%); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.dashboard__stats small { color: #738198; font-weight: 600; }
.dashboard__stats strong { display: block; color: var(--navy-2); font-size: 30px; line-height: 1; margin: 12px 0 8px; letter-spacing: -.04em; }
.dashboard__stats span { display: block; color: #748298; font-size: 12px; }
.dashboard__stats b { display: inline-flex; margin-top: 13px; color: var(--sun-2); background: var(--teal-soft); border-radius: 999px; padding: 6px 9px; font-size: 11px; }
.dashboard__body { display: grid; grid-template-columns: 1.45fr .8fr; gap: 16px; margin-top: 16px; }
.chart-card__head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.chart-card h3, .visibility-card h3 { margin: 0; color: var(--navy-2); font-size: 17px; }
.chart-card p { margin: 2px 0 0; color: #77869d; font-size: 13px; }
.tabs { display: flex; gap: 7px; }
.tabs span { padding: 5px 8px; border-radius: 999px; background: #eef3fa; color: #8291a8; font-size: 11px; font-weight: 600; }
.tabs .active { background: var(--navy-2); color: white; }
.chart-card svg { width: 100%; height: auto; margin-top: 18px; }
.chart-area { fill: url(#chartGradient); }
.chart-line { fill: none; stroke: var(--sun); stroke-width: 5; stroke-linecap: round; }
.chart-card circle { fill: var(--sun-2); stroke: white; stroke-width: 4; }
.metric-row { display: flex; justify-content: space-between; gap: 10px; margin-top: 16px; color: #61708a; font-size: 13px; font-weight: 700; }
.metric-row strong { color: var(--navy-2); }
.bar { height: 8px; background: #e8eef7; border-radius: 999px; overflow: hidden; margin-top: 8px; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--sun), var(--sun-2)); border-radius: inherit; }
.bar--yellow i { background: linear-gradient(90deg, var(--sun-2), var(--sun)); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 14px; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 15px 18px; box-shadow: 0 18px 48px rgba(8,22,51,.13); }
.floating-card small { display: block; color: #7b89a0; font-size: 12px; }
.floating-card strong { color: var(--navy-2); font-size: 15px; }
.floating-card--reach { left: -32px; top: 72px; }
.floating-card--growth { right: -26px; bottom: 82px; }
.floating-icon, .plus { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-soft); color: var(--sun-2); font-weight: 700; font-size: 22px; }
.plus { background: #fff2cc; color: var(--navy-2); border: 1px solid var(--sun); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 249, 238, .72); }
.trust-strip__inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 26px; color: #96a3b9; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.trust-strip strong { color: #9aaacf; font-size: 14px; white-space: nowrap; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 54px; }
.section-head h2, .system h2, .plan h2, .contact h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 600; }
.section-head p, .system__copy p, .plan__intro p, .contact__copy p { color: var(--muted); font-size: 18px; margin: 0; }
.problem-grid, .solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.problem-card, .solution-card, .testimonial { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 18px 50px rgba(7,20,47,.055); transition: transform .2s ease, box-shadow .2s ease; }
.problem-card:hover, .solution-card:hover, .case-card:hover, .testimonial:hover { transform: translateY(-5px); box-shadow: 0 26px 70px rgba(8,22,51,.1); }
.problem-card b { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: var(--navy-2); background: linear-gradient(135deg, #fff2cc, #fffaf1); margin-bottom: 28px; }
.problem-card h3, .solution-card h3, .step h3, .timeline-item h3 { color: var(--navy-2); margin: 0 0 10px; font-size: 19px; letter-spacing: -.02em; }
.problem-card p, .solution-card p, .step p, .timeline-item p, .case-card p, .testimonial p { color: var(--muted); margin: 0; }

.system { position: relative; background: linear-gradient(135deg, var(--navy) 0%, #0b1d42 58%, #112a5a 100%); overflow: hidden; }
.system:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(255,176,0,.22), transparent 28%), radial-gradient(circle at 85% 72%, rgba(255,138,0,.14), transparent 30%); }
.system__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.system h2, .system__copy p { color: white; }
.system__copy p { opacity: .76; margin-bottom: 28px; }
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 24px; padding: 22px; backdrop-filter: blur(12px); }
.step span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; color: var(--navy); background: linear-gradient(135deg, var(--sun), var(--sun-2)); font-weight: 700; }
.step h3 { color: white; }
.step p { color: rgba(255,255,255,.68); }

.solution-card span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, #fff2cc, #fffaf1); font-size: 24px; margin-bottom: 22px; }
.solution-grid { grid-template-columns: repeat(3, 1fr); }

.case-studies { background: var(--navy); position: relative; overflow: hidden; }
.case-studies:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 5%, rgba(255,176,0,.20), transparent 33%), radial-gradient(circle at 0% 80%, rgba(255,138,0,.12), transparent 34%); }
.case-studies .container { position: relative; }
.section-head--light h2, .section-head--light p { color: white; }
.section-head--light p { opacity: .75; }
.case-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 20px; }
.case-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 28px; color: white; min-height: 250px; transition: transform .2s ease, box-shadow .2s ease; }
.case-card--feature { grid-row: span 2; background: linear-gradient(160deg, rgba(255,255,255,.15), rgba(255,255,255,.06)); }
.case-card__top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 30px; color: #bcd2f5; font-size: 13px; font-weight: 600; }
.case-card__top b { color: var(--navy); background: var(--sun); border-radius: 999px; padding: 7px 10px; }
.case-card h3 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 42px); letter-spacing: -.045em; line-height: 1.05; }
.case-card:not(.case-card--feature) h3 { font-size: 25px; }
.case-card p { color: rgba(255,255,255,.7); }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.case-metrics strong { display: block; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.09); color: #ffd766; font-size: 28px; line-height: 1; }
.case-metrics small { display: block; color: rgba(255,255,255,.68); margin-top: 8px; font-size: 12px; line-height: 1.35; }

.plan__grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; }
.plan__intro { position: sticky; top: 110px; align-self: start; }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 56px 1fr; gap: 22px; background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 18px 50px rgba(7,20,47,.055); }
.timeline-item span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; background: var(--navy-2); color: white; font-weight: 700; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial p { font-size: 18px; color: var(--ink); }
.testimonial strong { display: block; margin-top: 22px; color: var(--navy-2); }

.contact { background: linear-gradient(180deg, #ffffff 0%, #fff7e8 100%); }
.contact__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 32px; }
.contact-cards a { display: block; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px 20px; box-shadow: 0 14px 38px rgba(8,22,51,.055); }
.contact-cards small { display: block; color: var(--muted); }
.contact-cards strong { color: var(--navy-2); }
.contact-form { background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow); }
.contact-form label { display: block; color: var(--navy-2); font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 8px; border: 1px solid #dbe4f2; background: #fffaf1; border-radius: 15px; padding: 15px 16px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--sun); box-shadow: 0 0 0 4px rgba(255,176,0,.14); }
.checkbox { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; color: var(--muted) !important; }
.checkbox input { width: 18px; min-width: 18px; margin: 3px 0 0; }
.contact-form .btn { width: 100%; }
.form-note { color: var(--muted); font-size: 12px; margin: 14px 0 0; }

.site-footer { background: #061128; color: rgba(255,255,255,.7); padding: 66px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr .55fr .8fr; gap: 64px; }
.footer-logo { width: 118px; margin-bottom: 18px; filter: drop-shadow(0 10px 22px rgba(0,0,0,.18)); }
.site-footer h3 { color: white; margin: 0 0 18px; }
.site-footer a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding: 22px max(20px, calc((100vw - var(--container)) / 2)); font-size: 14px; }
.footer-bottom a { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1120px) {
  .hero__grid, .system__grid, .plan__grid, .contact__grid { grid-template-columns: 1fr; }
  .dashboard { max-width: 760px; margin: 0 auto; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-card--feature { grid-row: auto; grid-column: span 2; }
  .plan__intro { position: static; }
}
@media (max-width: 880px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand__logo { width: 82px; }
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 72px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px; border-radius: 14px; }
  .nav a:hover { background: #f5f8ff; }
  .header-cta { display: none; }
  .section-pad { padding: 82px 0; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero h1 { font-size: clamp(38px, 10vw, 58px); }
  .hero__lead { font-size: 18px; }
  .dashboard__stats, .dashboard__body, .solution-grid, .testimonial-grid, .footer__grid { grid-template-columns: 1fr; }
  .floating-card { display: none; }
  .trust-strip__inner { height: auto; padding: 22px 0; overflow: auto; justify-content: flex-start; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero__actions, .btn { width: 100%; }
  .problem-grid, .case-grid { grid-template-columns: 1fr; }
  .case-card--feature { grid-column: auto; }
  .case-metrics { grid-template-columns: 1fr; }
  .dashboard { padding: 20px; border-radius: 24px; }
  .chart-card__head { flex-direction: column; }
  .timeline-item, .step { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; }
}
