/* ===== Tokens ===== */
:root {
  --navy-900: #050810;
  --navy-800: #070b16;
  --navy-700: #0b1120;
  --panel: rgba(13, 20, 38, 0.72);
  --panel-solid: #0c1322;
  --line: rgba(120, 160, 230, 0.14);
  --cyan: #2fd4ee;
  --cyan-bright: #5ee7ff;
  --cyan-soft: rgba(47, 212, 238, 0.16);
  --text: #eaf1ff;
  --muted: #9fb0cd;
  --muted-dim: #6f7f9c;
  --radius: 16px;
  --maxw: 1200px;
  --edge: #050810;
  --glow: 0 0 50px rgba(47, 212, 238, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; line-height: 1.08; }
.accent { color: var(--cyan-bright); text-shadow: 0 0 24px rgba(94, 231, 255, 0.45); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); position: relative; z-index: 2; }
.container.narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #1b9fd6);
  color: #00131b; box-shadow: 0 8px 30px rgba(47, 212, 238, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(47, 212, 238, 0.55); }
.btn-outline { background: rgba(255,255,255,0.02); color: var(--text); border-color: rgba(120,160,230,0.35); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-bright); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 10, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 22px;
  color: var(--text); text-decoration: none; letter-spacing: -0.5px;
}
.logo-caret { color: var(--cyan); }
.logo-blink { color: var(--cyan); animation: blink 1.2s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--cyan-bright); }

/* ===== Sections ===== */
.section { position: relative; padding: 110px 0; overflow: hidden; }
.bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg);
  background-size: cover; background-position: center;
}
/* readability overlays — edges fade fully to the shared navy so
   adjacent section images blend into each other (no hard photo seam) */
.bg-layer::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--edge) 0%, rgba(5,8,16,0) 20%, rgba(5,8,16,0) 80%, var(--edge) 100%),
    linear-gradient(180deg, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.68) 100%);
}
.bg-dim::after {
  background:
    linear-gradient(180deg, var(--edge) 0%, rgba(5,8,16,0.2) 15%, rgba(5,8,16,0.2) 85%, var(--edge) 100%),
    linear-gradient(180deg, rgba(5,8,16,0.80) 0%, rgba(5,8,16,0.88) 100%);
}
.bg-right::after {
  background:
    linear-gradient(180deg, var(--edge) 0%, rgba(5,8,16,0) 15%, rgba(5,8,16,0) 85%, var(--edge) 100%),
    linear-gradient(90deg, rgba(5,8,16,0.96) 0%, rgba(5,8,16,0.82) 42%, rgba(5,8,16,0.35) 100%);
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--cyan);
  padding: 6px 14px; border: 1px solid var(--cyan-soft); border-radius: 999px;
  background: var(--cyan-soft); margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head .lead { color: var(--muted); margin-top: 14px; font-size: 18px; }

/* ===== Hero ===== */
.hero { padding: 150px 0 110px; min-height: 92vh; display: flex; align-items: center; }
.hero-inner { max-width: 860px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-booking { width: 100%; }
.booking-card {
  background: rgba(8, 13, 26, 0.78); backdrop-filter: blur(14px);
  border: 1px solid rgba(47, 212, 238, 0.28); border-radius: 20px;
  padding: 18px 18px 8px; box-shadow: var(--glow);
}
.booking-title {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--cyan-bright); text-align: center; margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.booking-card iframe {
  width: 100%; min-height: 560px; border: none; border-radius: 12px;
  background: #fff;
}
.booking-card-mobile { display: none; }
.booking-card-mobile .booking-sub {
  color: var(--muted); font-size: 15px; margin: 6px 0 18px;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace; color: var(--cyan); font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px;
}
.hero-h1 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 800; }
.hero-sub { color: var(--muted); font-size: clamp(17px, 2vw, 20px); margin: 26px 0 36px; max-width: 720px; }
.cta-row { margin-bottom: 30px; }
.trust-strip {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.trust-strip.center { justify-content: center; }
.trust-strip li { display: flex; align-items: center; gap: 8px; }
.trust-strip li::before { content: "✓"; color: var(--cyan); font-weight: 700; }

/* ===== Two col / problem ===== */
.two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.col-text h2 { font-size: clamp(28px, 4vw, 44px); }
.lead { color: var(--muted); font-size: 18px; margin: 20px 0 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  position: relative; padding-left: 34px; color: var(--text); font-size: 16.5px;
}
.check-list.bad li::before {
  content: "✕"; position: absolute; left: 0; top: 1px;
  color: #ff6b7d; font-weight: 700;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,107,125,0.12); display: grid; place-items: center; font-size: 12px;
}
.close-line {
  margin-top: 28px; font-size: 18px; font-weight: 600; color: var(--text);
  border-left: 3px solid var(--cyan); padding-left: 18px;
}
.close-line.center { border: none; text-align: center; max-width: 680px; margin: 48px auto 0; padding: 0; color: var(--muted); font-weight: 500; }

/* ===== Operate grid ===== */
.op-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.op-card {
  background: var(--panel); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; position: relative; transition: transform .25s ease, border-color .25s ease, box-shadow .3s;
}
.op-card:hover { transform: translateY(-4px); border-color: rgba(47,212,238,0.4); box-shadow: var(--glow); }
.op-card.feature { grid-column: span 2; background: linear-gradient(135deg, rgba(47,212,238,0.10), var(--panel)); border-color: rgba(47,212,238,0.3); }
.op-num {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--cyan);
  letter-spacing: 1px; opacity: 0.8;
}
.op-card h3 { font-size: 20px; margin: 12px 0 12px; }
.op-card p { color: var(--muted); font-size: 15.5px; }
.stat {
  margin-top: 16px; color: var(--cyan-bright); font-weight: 600; font-size: 15px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.3px;
}

/* ===== Different grid ===== */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diff-card {
  background: var(--panel); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s ease, border-color .25s, box-shadow .3s;
}
.diff-card:hover { transform: translateY(-4px); border-color: rgba(47,212,238,0.4); box-shadow: var(--glow); }
.diff-icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  font-size: 22px; background: var(--cyan-soft); border: 1px solid rgba(47,212,238,0.3);
  margin-bottom: 18px;
}
.diff-card h3 { font-size: 18px; margin-bottom: 10px; }
.diff-card p { color: var(--muted); font-size: 15px; }

/* ===== Proof ===== */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  border-radius: var(--radius); margin: 0;
  background: var(--panel); backdrop-filter: blur(10px);
  border: 1px solid var(--line); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, border-color .25s, box-shadow .3s;
}
.quote-card:hover { transform: translateY(-4px); border-color: rgba(47,212,238,0.4); box-shadow: var(--glow); }
.stars { color: var(--cyan-bright); letter-spacing: 3px; font-size: 15px; }
.quote-card blockquote {
  margin: 0; color: var(--text); font-size: 16.5px; line-height: 1.6; flex: 1;
}
.quote-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.q-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; color: var(--text); }
.q-role { font-size: 13.5px; color: var(--muted); }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 880px; margin: 0 auto; }
.price-card {
  background: var(--panel); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 20px; padding: 38px 32px;
  position: relative; transition: transform .25s ease, box-shadow .3s;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured {
  border-color: rgba(47,212,238,0.55);
  background: linear-gradient(165deg, rgba(47,212,238,0.10), var(--panel));
  box-shadow: var(--glow);
}
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), #1b9fd6); color: #00131b;
  font-size: 12px; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.price-name { font-size: 20px; color: var(--muted); font-weight: 600; }
.price { font-size: 52px; font-family: 'Sora', sans-serif; font-weight: 800; margin: 8px 0 6px; color: var(--text); }
.price-desc { color: var(--muted); font-size: 15px; min-height: 66px; }
.price-feat { list-style: none; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-feat li { padding-left: 28px; position: relative; font-size: 15px; }
.price-feat li::before {
  content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700;
}

.risk-strip {
  max-width: 880px; margin: 34px auto 0; padding: 28px 32px; border-radius: 18px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--line);
}
.risk-lead {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 18px;
  border-left: 3px solid var(--cyan); padding-left: 16px; margin-bottom: 20px;
}
.risk-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px;
}
.risk-list li { padding-left: 26px; position: relative; color: var(--muted); font-size: 15px; }
.risk-list li::before { content: "→"; position: absolute; left: 0; color: var(--cyan); }

/* ===== FAQ ===== */
.faq { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--panel-solid); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 24px; transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(47,212,238,0.35); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--cyan); font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 20px; font-size: 15.5px; }

/* ===== Final CTA ===== */
.final-cta { padding: 130px 0; text-align: center; }
.final-inner { max-width: 760px; margin: 0 auto; }
.final-h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
.final-sub { color: var(--muted); font-size: 19px; margin: 22px auto 34px; max-width: 600px; }
.final-cta .trust-strip { margin-top: 28px; }

/* ===== Footer ===== */
.footer { background: var(--navy-800); border-top: 1px solid var(--line); padding: 64px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.footer-news h3 { font-size: 22px; margin-bottom: 10px; }
.footer-news p { color: var(--muted); margin-bottom: 20px; max-width: 460px; }
.news-form { display: flex; gap: 10px; max-width: 460px; }
.news-form input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 999px; padding: 13px 20px; color: var(--text); font-size: 15px; font-family: inherit;
}
.news-form input:focus { outline: none; border-color: var(--cyan); }
.footer-brand { text-align: right; }
.footer-brand .logo { font-size: 20px; }
.muted { color: var(--muted); margin-top: 12px; }
.muted.small { color: var(--muted-dim); font-size: 13px; margin-top: 6px; }

/* ===== Section CTAs ===== */
.section-cta { text-align: center; margin-top: 52px; }
.section-cta .micro {
  color: var(--muted); font-size: 15px; margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.3px;
}
.inline-cta {
  display: inline-block; color: var(--cyan-bright); font-weight: 600;
  text-decoration: none; margin-top: 14px; font-size: 15.5px;
  border-bottom: 1px solid rgba(94, 231, 255, 0.4); padding-bottom: 1px;
  transition: border-color .2s ease, transform .2s ease;
}
.inline-cta:hover { border-color: var(--cyan-bright); transform: translateX(3px); }
.close-line .inline-cta { margin-top: 0; margin-left: 4px; }

/* ===== Persistent mobile CTA bar ===== */
.mobile-cta-bar { display: none; }
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 200;
    padding: 16px 20px; border-radius: 999px;
    font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
    color: #00131b; text-decoration: none;
    background: linear-gradient(135deg, var(--cyan), #1b9fd6);
    box-shadow: 0 10px 34px rgba(0,0,0,0.5), 0 0 30px rgba(47,212,238,0.45);
  }
  body { padding-bottom: 78px; } /* room so bar never covers footer/content */
  .nav .btn-sm { display: none; } /* avoid duplicate CTA on mobile nav */
}

/* ===== CTA Popup Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  background: rgba(3, 6, 12, 0.78); backdrop-filter: blur(6px);
  padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  position: relative; width: min(640px, 96vw); max-height: 92vh;
  background: #ffffff; border-radius: 14px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(47,212,238,0.3);
  animation: popIn .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes popIn { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-box { padding: 14px 14px 18px; }
.modal-title {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px;
  color: #0c1322; text-align: center; padding: 8px 36px 12px;
}
.modal-box iframe { width: 100%; min-height: 680px; border: none; display: block; }
.modal-close {
  position: fixed; top: 18px; right: 18px; z-index: 310;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: rgba(8,13,26,0.95); color: #fff; border: 1px solid rgba(255,255,255,0.2);
  font-size: 26px; line-height: 1; display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.modal-close:hover { background: #1b9fd6; transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 100%; }
  .hero { padding: 130px 0 90px; }
  .booking-card { display: none; }            /* hide calendar on mobile */
  .booking-card-mobile {
    display: block; text-align: center;
    background: rgba(8, 13, 26, 0.78); backdrop-filter: blur(14px);
    border: 1px solid rgba(47, 212, 238, 0.28); border-radius: 18px;
    padding: 24px 20px; box-shadow: var(--glow);
  }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .col-spacer { display: none; }
  .op-grid { grid-template-columns: 1fr; }
  .op-card.feature { grid-column: span 1; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { text-align: left; }
  .bg-right::after {
    background:
      linear-gradient(180deg, var(--edge) 0%, rgba(5,8,16,0.2) 15%, rgba(5,8,16,0.2) 85%, var(--edge) 100%),
      linear-gradient(180deg, rgba(5,8,16,0.82) 0%, rgba(5,8,16,0.9) 100%);
  }
}
@media (max-width: 560px) {
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 90px; }
  .diff-grid { grid-template-columns: 1fr; }
  .risk-list { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .btn-block, .news-form .btn { width: 100%; justify-content: center; }
  .section-cta .btn, .cta-row .btn { width: 100%; justify-content: center; }
}
