@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #0b1220; }
body { font-family: 'Inter', sans-serif; }

/* ============================================================
   HERO — clean landscape background + real UI overlay
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 600px;
  max-height: 100vh;
  overflow: hidden;
  background: #0b1220;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease;
}
.hero-bg.active { opacity: 1; }
.bg-mountain { background-image: url('assets/Mounten_000.png'); }
.bg-beach    { background-image: url('assets/Beach_000.png'); }

/* legibility scrims: top (nav), right (headline), bottom (stats) */
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background:
    linear-gradient(180deg, rgba(3,7,18,.45) 0%, rgba(3,7,18,0) 16%),
    linear-gradient(100deg, rgba(3,7,18,0) 36%, rgba(3,7,18,.38) 64%, rgba(3,7,18,.70) 100%),
    linear-gradient(0deg, rgba(3,7,18,.42) 0%, rgba(3,7,18,0) 26%);
}

/* ---------- NAV ---------- */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; gap: 24px;
  padding: clamp(14px, 2.1vw, 26px) clamp(18px, 3.4vw, 52px);
}
.brand { display: flex; align-items: center; gap: 6px; text-decoration: none; flex-shrink: 0; }
.brand-logo {
  height: clamp(34px, 3.6vw, 46px); width: auto; display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
}
.brand-agents {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(18px, 1.9vw, 25px); color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); margin: 0 auto; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.92);
  text-decoration: none; white-space: nowrap; transition: color .18s;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: #fff; text-decoration: none;
  background: linear-gradient(90deg, #2E7BF6, #7C3AED);
  box-shadow: 0 8px 22px -8px rgba(124,58,237,.7);
  transition: transform .18s, box-shadow .18s; white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(124,58,237,.9); }

.nav-collapse { display: contents; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  margin-left: auto;                 /* push menu button to the top-right */
  width: 42px; height: 42px; border-radius: 12px; color: #fff; cursor: pointer;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px);
}
.nav-toggle:hover { background: rgba(255,255,255,.24); }

/* ============================================================
   DEMO VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.video-modal.open { display: flex; }
.video-backdrop { position: absolute; inset: 0; background: rgba(4,7,16,.82); backdrop-filter: blur(6px); }
.video-dialog { position: relative; z-index: 1; width: 100%; max-width: min(92vw, 430px); }
.video-el {
  width: 100%; max-height: 82vh; display: block; border-radius: 18px; background: #000;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.85);
}
.video-close {
  position: absolute; top: -16px; right: -16px; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: #111; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.5); z-index: 2; transition: background .15s, transform .15s;
}
.video-close:hover { background: #eee; transform: scale(1.05); }
@media (max-width: 520px) { .video-close { top: 8px; right: 8px; } }

/* ---------- THEME SWITCHER ---------- */
.theme-switcher { position: relative; z-index: 30; }
.theme-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.06);
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600; color: #0d1b2a;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.35); backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.theme-btn:hover { background: #fff; transform: translateY(-1px); }
.theme-btn svg { color: rgba(13,27,42,.55); transition: transform .2s; }
.theme-switcher.open .theme-btn svg { transform: rotate(180deg); }
.theme-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  list-style: none; margin: 0; padding: 6px; width: 178px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06); border-radius: 14px;
  box-shadow: 0 14px 34px -10px rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease;
}
.theme-switcher.open .theme-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.theme-menu li {
  display: flex; align-items: center; gap: 9px; padding: 8px 9px;
  border-radius: 9px; font-size: 13px; font-weight: 500; color: #0d1b2a;
  cursor: pointer; transition: background .15s;
}
.theme-menu li span { font-size: 15px; }
.theme-menu li:hover { background: rgba(0,0,0,.05); }
.theme-menu li.active { background: rgba(0,0,0,.07); font-weight: 700; }

/* ---------- HERO CONTENT (right) ---------- */
.hero-content {
  position: absolute; z-index: 15;
  right: clamp(20px, 4vw, 66px); top: 50%; transform: translateY(-46%);
  width: min(52%, 640px); color: #fff;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #eaf2ff; margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #38e0a0;
  box-shadow: 0 0 0 4px rgba(56,224,160,.28); animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(34px, 5vw, 72px); line-height: 1.03; letter-spacing: -.02em;
  margin: 0 0 20px; text-shadow: 0 4px 34px rgba(0,0,0,.5);
}
.accent {
  background: linear-gradient(90deg, #35C6F5, #8A3CEB);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sub {
  font-size: clamp(15px, 1.15vw, 18px); line-height: 1.6;
  color: rgba(238,244,255,.92); max-width: 34em; margin: 0 0 30px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px; border-radius: 999px;
  font-size: 16px; font-weight: 600; color: #fff; text-decoration: none;
  background: linear-gradient(90deg, #2E7BF6, #7C3AED);
  box-shadow: 0 14px 34px -10px rgba(124,58,237,.75);
  transition: transform .18s, box-shadow .18s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -10px rgba(124,58,237,.95); }
.btn-demo {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 13px 22px; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(6px); transition: background .18s, transform .18s;
}
.btn-demo:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-demo.flash { background: rgba(255,255,255,.4); }
.play-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #241a52; padding-left: 2px;
}

/* ---------- STATS BAR ---------- */
.stats {
  position: absolute; z-index: 15; left: 50%; bottom: clamp(16px, 3.2vh, 40px);
  transform: translateX(-50%);
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 42px);
  padding: 15px clamp(20px, 3vw, 42px); border-radius: 20px; max-width: 94%;
  background: rgba(10,16,30,.5); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px); box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}
.stat { text-align: center; white-space: nowrap; }
.stat b {
  display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  background: linear-gradient(90deg, #35C6F5, #8A3CEB);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { font-size: clamp(10px, .85vw, 12.5px); color: rgba(238,244,255,.82); }
.divider { width: 1px; height: 30px; background: rgba(255,255,255,.18); }

/* ============================================================
   BELOW-FOLD PLACEHOLDER
   ============================================================ */
.below-fold {
  max-width: 640px; margin: 0 auto; padding: 90px 24px 110px;
  text-align: center; color: #eef2f6;
}
.below-fold h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; margin-bottom: 14px; }
.below-fold p { color: rgba(238,242,246,.68); line-height: 1.6; font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 56px 24px 40px; text-align: center; background: #0b1220;
}
.footer-logo { width: min(380px, 68vw); height: auto; display: block; margin: 0 auto 30px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: rgba(238,242,246,.42); font-size: 12.5px;
}
.footer-mark { height: 24px; width: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* tablet & below — collapse nav into a hamburger dropdown */
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-collapse {
    display: none;
    position: absolute; top: calc(100% + 6px); left: 12px; right: 12px;
    flex-direction: column; align-items: stretch; gap: 12px; padding: 14px;
    background: rgba(12,18,32,.98); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
    box-shadow: 0 24px 50px -16px rgba(0,0,0,.7);
  }
  .nav.open .nav-collapse { display: flex; }
  .nav-links { flex-direction: column; gap: 2px; margin: 0; }
  .nav-links a { padding: 11px 12px; border-radius: 9px; text-shadow: none; color: rgba(255,255,255,.9); }
  .nav-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav-right { flex-direction: column; align-items: stretch; gap: 12px; }
  .theme-switcher { align-self: flex-start; }
  .btn-cta { justify-content: center; }
  .hero-content { width: min(72%, 560px); transform: translateY(-50%); }
}

/* phone — stack: person+robot image band on top, content + buttons centered below */
@media (max-width: 720px) {
  .hero {
    aspect-ratio: auto; min-height: 0; max-height: none;
    display: flex; flex-direction: column;
  }
  .hero-bg {
    position: relative; inset: auto; width: 100%;
    height: 46vh; min-height: 300px; transform: none;
    background-position: 12% center;
  }
  .hero-bg:not(.active) { display: none; }
  .hero-scrim {
    inset: 0 0 auto 0; height: 46vh; z-index: 6;
    background:
      linear-gradient(180deg, rgba(3,7,18,.42) 0%, rgba(3,7,18,0) 20%),
      linear-gradient(0deg, #0b1220 0%, rgba(11,18,32,0) 24%);
  }
  .hero-content {
    position: static; right: auto; top: auto; width: 100%; transform: none;
    padding: 26px 22px 4px; text-align: center;
  }
  .badge { margin-left: auto; margin-right: auto; }
  .hero-content h1 { font-size: clamp(30px, 8.5vw, 44px); }
  .sub { margin-left: auto; margin-right: auto; max-width: 42ch; }
  .hero-actions { justify-content: center; }
  .stats {
    position: static; left: auto; bottom: auto; transform: none;
    margin: 26px auto 36px; width: calc(100% - 32px); max-width: 480px;
    justify-content: space-between; gap: 6px; padding: 14px 12px;
  }
  .stat b { font-size: 18px; } .stat span { font-size: 10px; }
  .divider { height: 26px; }
  .theme-label { display: none; }
  .btn-primary, .btn-demo { padding: 13px 20px; font-size: 15px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-about { color: #e9eef6; background: #0b1220; }
.nav--solid {
  position: relative; background: rgba(9,13,24,.96);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav--solid .nav-links a, .nav--solid .brand-agents { text-shadow: none; }
.nav-links a.active { color: #fff; font-weight: 600; }

.section { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #8ab4ff; margin-bottom: 16px;
}
.grad-text {
  background: linear-gradient(90deg, #35C6F5, #8A3CEB);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.about-hero { padding: clamp(56px, 9vw, 110px) 0 40px; text-align: center; position: relative; overflow: hidden; }
.about-hero::before {
  content: ""; position: absolute; top: -34%; left: 50%; transform: translateX(-50%);
  width: 840px; height: 840px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,76,240,.28), transparent 62%); pointer-events: none;
}
.about-hero h1 {
  position: relative; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 5.2vw, 58px); line-height: 1.06; letter-spacing: -.02em;
  margin: 0 auto 22px; max-width: 17ch;
}
.about-hero .lead {
  position: relative; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7;
  color: rgba(233,238,246,.78); max-width: 62ch; margin: 0 auto;
}

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 58px auto 20px; }
.value { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 26px 22px; }
.value h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; margin: 0 0 8px; }
.value p { margin: 0; color: rgba(233,238,246,.68); font-size: 14.5px; line-height: 1.6; }

.agent { padding: clamp(50px, 8vw, 92px) 0 clamp(30px, 5vw, 50px); }
.agent-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.agent-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.42); color: #7ef0a8;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; margin-bottom: 18px;
}
.agent-head h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px); margin: 0 0 16px; }
.agent-head p { color: rgba(233,238,246,.78); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.7; margin: 0; }

.agent-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.chat {
  background: linear-gradient(180deg, #0f1830, #0b1120); border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -24px rgba(0,0,0,.6);
}
.chat-top { display: flex; align-items: center; gap: 11px; padding: 14px 16px; background: #0c1526; border-bottom: 1px solid rgba(255,255,255,.07); }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.chat-title b { display: block; font-size: 14px; } .chat-title span { font-size: 11.5px; color: #7ef0a8; }
.chat-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; background: radial-gradient(circle at 20% 8%, rgba(37,211,102,.06), transparent 42%); }
.bubble { max-width: 84%; padding: 10px 13px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; }
.bubble.in { align-self: flex-start; background: #1b2740; border-bottom-left-radius: 5px; }
.bubble.out { align-self: flex-end; background: #134d2f; border-bottom-right-radius: 5px; color: #eafff1; }
.bubble small { display: block; margin-top: 5px; font-size: 10px; opacity: .55; }

.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feat { display: flex; gap: 14px; }
.feat-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(46,123,246,.22), rgba(124,58,237,.22)); border: 1px solid rgba(255,255,255,.12); color: #9fc2ff;
}
.feat h4 { margin: 0 0 4px; font-family: 'Space Grotesk', sans-serif; font-size: 16px; }
.feat p { margin: 0; color: rgba(233,238,246,.7); font-size: 14px; line-height: 1.55; }

.how { padding: clamp(28px, 5vw, 50px) 0 clamp(50px, 8vw, 92px); }
.how h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px, 3vw, 34px); margin: 0 0 44px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 26px 20px; }
.step-n {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px;
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; background: linear-gradient(135deg, #2E7BF6, #7C3AED); color: #fff;
}
.step h4 { margin: 0 0 7px; font-size: 16px; font-family: 'Space Grotesk', sans-serif; }
.step p { margin: 0; color: rgba(233,238,246,.66); font-size: 13.5px; line-height: 1.55; }

.cta-band { text-align: center; padding: clamp(50px, 8vw, 90px) 20px; }
.cta-inner {
  max-width: 720px; margin: 0 auto; padding: clamp(34px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(46,123,246,.16), rgba(124,58,237,.16));
  border: 1px solid rgba(255,255,255,.12); border-radius: 24px;
}
.cta-inner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 3.4vw, 40px); margin: 0 0 14px; }
.cta-inner p { color: rgba(233,238,246,.78); margin: 0 0 28px; font-size: 16px; }
.cta-band .btn-primary { display: inline-flex; }

@media (max-width: 860px) {
  .values { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT PAGES — image banner, offer cards, pricing, support
   ============================================================ */
.page-banner { position: relative; min-height: 46vh; display: flex; align-items: center; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; background-size: cover; background-position: 22% center; }
.banner-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,7,16,.5) 0%, rgba(4,7,16,.34) 42%, rgba(11,18,32,.92) 100%);
}
.banner-inner { position: relative; z-index: 3; width: 100%; text-align: center; padding: 100px 20px 48px; }
.banner-inner .eyebrow { color: #cfe0ff; }
.banner-inner h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(30px, 5vw, 54px); line-height: 1.06; margin: 0 auto 16px; max-width: 18ch;
  color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.banner-inner p {
  color: rgba(238,244,255,.92); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65;
  max-width: 62ch; margin: 0 auto; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.offer { padding: clamp(50px, 8vw, 82px) 0 clamp(26px, 4vw, 40px); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 30px 26px;
}
.offer-card.live { border-color: rgba(37,211,102,.4); background: linear-gradient(180deg, rgba(37,211,102,.08), rgba(255,255,255,.03)); }
.offer-ic {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: linear-gradient(135deg, rgba(46,123,246,.25), rgba(124,58,237,.25));
  border: 1px solid rgba(255,255,255,.14); color: #a9c6ff;
}
.offer-card.live .offer-ic { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border-color: transparent; }
.status {
  position: absolute; top: 22px; right: 22px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.status-live { background: rgba(37,211,102,.16); color: #7ef0a8; border: 1px solid rgba(37,211,102,.4); }
.status-soon { background: rgba(255,255,255,.08); color: rgba(233,238,246,.6); border: 1px solid rgba(255,255,255,.14); }
.offer-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; margin: 0 0 10px; padding-right: 74px; }
.offer-card p { color: rgba(233,238,246,.7); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.card-link { color: #8ab4ff; font-weight: 600; font-size: 14px; text-decoration: none; }
.card-link:hover { color: #b9d3ff; }

/* WhatsApp support box */
.support { padding: clamp(16px, 3vw, 30px) 0 clamp(50px, 8vw, 80px); }
.support-box {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center;
  max-width: 720px; margin: 0 auto; padding: 24px 28px; border-radius: 20px; text-align: left;
  background: linear-gradient(135deg, rgba(37,211,102,.1), rgba(46,123,246,.08));
  border: 1px solid rgba(255,255,255,.12);
}
.support-ic { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; color: #fff; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #25D366, #128C7E); }
.support-meta { flex: 1; min-width: 180px; }
.support-label { display: block; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(233,238,246,.6); margin-bottom: 4px; }
.support-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: #fff; text-decoration: none; }
.support-num:hover { color: #7ef0a8; }

/* pricing */
.price-wrap { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; padding: clamp(20px, 4vw, 30px) 0 clamp(50px, 8vw, 90px); }
.price-card {
  max-width: 440px; width: 100%; padding: 42px 34px; text-align: center; border-radius: 24px;
  background: linear-gradient(180deg, rgba(46,123,246,.12), rgba(124,58,237,.1));
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 70px -26px rgba(0,0,0,.6);
}
.price-plan { font-family: 'Space Grotesk', sans-serif; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: #8ab4ff; margin-bottom: 10px; }
.price-free { display: inline-block; margin-bottom: 14px; padding: 6px 14px; border-radius: 999px; background: rgba(37,211,102,.16); color: #7ef0a8; border: 1px solid rgba(37,211,102,.4); font-size: 13px; font-weight: 600; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(40px, 7vw, 58px); line-height: 1; margin: 6px 0 4px; }
.price-amount .cur { font-size: 26px; vertical-align: super; }
.price-amount .per { font-size: 17px; color: rgba(233,238,246,.6); font-weight: 500; }
.price-note { color: rgba(233,238,246,.62); font-size: 14px; margin: 0 0 24px; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(233,238,246,.85); font-size: 14.5px; line-height: 1.45; }
.price-list li svg { color: #7ef0a8; flex-shrink: 0; margin-top: 2px; }
.price-card .btn-primary { width: 100%; justify-content: center; }

@media (max-width: 860px) { .offer-grid { grid-template-columns: 1fr; } }
