/* ============================================================
   5/5 — CSS v3  |  Original messages + new design
   ============================================================ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --blue:   #4285F4;
  --red:    #EA4335;
  --yellow: #FBBC05;
  --green:  #34A853;
  --dark:   #1a1a2e;
  --text:   #3c4043;
  --light:  #5f6368;
  --muted:  #9aa0a6;
  --bg:     #ffffff;
  --soft:   #f8f9fa;
  --border: #e8eaed;
  --border-l: #f1f3f4;
  --sh-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 16px rgba(0,0,0,.08);
  --sh-lg: 0 20px 48px rgba(0,0,0,.10);
  --sh-xl: 0 24px 64px rgba(0,0,0,.13);
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
  --ease: .2s ease;
  --nav-h: 80px;
  --topbar-h: 36px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--bg); overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* --- Utility --- */
.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #7b61ff 50%, var(--red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-light {
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }

/* ============== BUTTONS ============== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; background: var(--blue); color: #fff;
  font-weight: 600; font-size: 15px; font-family: inherit;
  border-radius: var(--r-full); border: none; cursor: pointer;
  box-shadow: 0 2px 8px rgba(66,133,244,.30);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap; text-align: center;
}
.btn-primary:hover { background: #3367d6; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(66,133,244,.40); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; background: transparent; color: var(--text);
  font-weight: 600; font-size: 15px; font-family: inherit;
  border-radius: var(--r-full); border: 1.5px solid var(--border); cursor: pointer;
  transition: border-color var(--ease), color var(--ease); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-text { font-weight: 500; font-size: 14px; color: var(--light); transition: color var(--ease); white-space: nowrap; }
.btn-text:hover { color: var(--blue); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; background: #fff; color: var(--dark);
  font-weight: 600; font-size: 15px; font-family: inherit;
  border-radius: var(--r-full); border: none; cursor: pointer;
  box-shadow: var(--sh-md); transition: box-shadow var(--ease), transform var(--ease);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--sh-lg); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; background: transparent; color: #fff;
  font-weight: 600; font-size: 15px; font-family: inherit;
  border-radius: var(--r-full); border: 1.5px solid rgba(255,255,255,.35); cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-small { padding: 8px 18px; font-size: 13px; }
.btn-full  { width: 100%; justify-content: center; }

/* ============== TOPBAR ============== */
.topbar {
  background: var(--blue); color: #fff; font-size: 13px; font-weight: 500;
  height: var(--topbar-h); display: flex; align-items: center;
  text-align: center; width: 100%;
}
.topbar-inner { display: flex; justify-content: center; }

/* ============== NAVBAR ============== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled .topbar { display: none; }

.nav-container {
  width: 100%; display: flex; align-items: center;
  height: calc(var(--nav-h) - var(--topbar-h)); gap: 24px;
  padding-top: 0; padding-bottom: 0;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 22px; color: var(--dark);
  flex-shrink: 0; z-index: 210;
}
.logo-icon { font-size: 20px; line-height: 1; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin-left: auto;
}
.nav-links a { font-size: 14px; font-weight: 500; color: var(--light); transition: color var(--ease); }
.nav-links a:hover { color: var(--blue); }
.nav-mobile-only { display: none; }
.nav-mobile-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer; z-index: 210; border-radius: var(--r-sm);
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px;
  transform-origin: center; transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(0,0,0,.4); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s;
}
.nav-overlay.visible { opacity: 1; }

/* ============== HERO ============== */
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 72px;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 60%);
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(66,133,244,.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-container {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 2;
}
.hero-content { display: flex; flex-direction: column; }

.hero h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800; line-height: 1.2; color: var(--text);
  letter-spacing: -.02em; margin-bottom: 20px;
}
.hero-h1-accent {
  color: var(--dark); font-weight: 900;
}

.hero-features-line {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 14px; color: var(--light); margin-bottom: 28px;
}
.hero-features-line .dot { color: var(--muted); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

/* Hero proof bar */
.hero-proof {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 16px 20px; background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); border: 1px solid var(--border-l);
}
.hero-platforms { display: flex; align-items: center; gap: 8px; }
.platform-logo {
  width: 28px; height: 28px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.platform-logo:nth-of-type(1) { background: #1877F2; color: #fff; }
.platform-logo.trip { background: #00AF87; color: #fff; font-size: 12px; }
.hero-stat-badge { display: flex; align-items: center; gap: 8px; }
.hero-stat-number { font-size: 28px; font-weight: 900; color: var(--blue); letter-spacing: -.03em; }
.hero-stat-label { font-size: 13px; color: var(--light); line-height: 1.3; }
.hero-stat-label small { font-size: 11px; color: var(--muted); }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; justify-content: center;
  padding: 24px 40px 48px;
}
.hero-card {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); border: 1px solid var(--border-l);
}
.card-main { padding: 24px; width: 100%; max-width: 370px; position: relative; z-index: 2; }

.card-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-avatar-big {
  width: 46px; height: 46px; border-radius: var(--r-md); flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.card-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.card-location { font-size: 12px; color: var(--muted); }
.card-stars { display: flex; align-items: center; gap: 2px; margin-top: 2px; }
.star { color: var(--yellow); font-size: 13px; }
.star.half { opacity: .5; }
.star.dim { opacity: .25; }
.rating-number { font-size: 12px; font-weight: 600; color: var(--light); margin-left: 5px; }

.card-quote {
  font-size: 13px; font-style: italic; color: var(--light); line-height: 1.6;
  margin-bottom: 14px; padding: 10px 14px;
  background: var(--soft); border-radius: var(--r-sm);
  border-left: 3px solid var(--blue);
}

.card-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.stat-mini { background: var(--soft); border-radius: var(--r-sm); padding: 10px; text-align: center; }
.stat-mini-value { display: block; font-size: 18px; font-weight: 800; line-height: 1.1; }
.stat-mini-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

.card-leaderboard { display: flex; flex-direction: column; gap: 8px; }
.leader-row {
  display: grid; grid-template-columns: 24px 28px 1fr auto 56px;
  align-items: center; gap: 7px;
}
.leader-rank {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.leader-rank.gold { background: var(--yellow); }
.leader-rank.silver { background: #9e9e9e; }
.leader-rank.bronze { background: #cd7f32; }
.leader-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  color: #fff; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.leader-name { font-size: 12px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leader-count { font-size: 11px; color: var(--muted); white-space: nowrap; }
.leader-bar { height: 4px; background: var(--border-l); border-radius: 2px; }
.leader-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 2px; }

/* Floating cards */
.card-floating {
  position: absolute; z-index: 3; border-radius: var(--r-md); padding: 12px 16px;
  background: #fff; box-shadow: var(--sh-lg); border: 1px solid var(--border-l);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

.card-notification { top: 0; right: 0; display: flex; align-items: center; gap: 10px; }
.notif-icon { font-size: 22px; flex-shrink: 0; }
.card-notification strong { font-size: 12px; color: var(--dark); display: block; }
.card-notification p { font-size: 11px; color: var(--muted); margin: 0; }
.card-qr { bottom: 12px; left: 0; display: flex; align-items: center; gap: 10px; animation-delay: 3s; }
.qr-placeholder {
  width: 40px; height: 40px; flex-shrink: 0; background: var(--soft);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
}
.qr-label { font-size: 12px; font-weight: 500; color: var(--light); white-space: nowrap; }

/* ============== TESTIMONIALS ============== */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonials-title {
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 800;
  color: var(--dark); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 8px;
}
.testimonials-subtitle { font-size: 20px; color: var(--text); }
.testimonials-subtitle strong { color: var(--dark); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border-l); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.testimonial-card.featured { border: 2px solid var(--blue); }

.testimonial-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.testimonial-biz { display: flex; flex-direction: column; }
.biz-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.biz-loc { font-size: 11px; color: var(--muted); }

.testimonial-score { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.score-number { font-size: 28px; font-weight: 900; color: var(--dark); }
.score-stars { display: flex; gap: 1px; }

blockquote {
  font-size: 14px; line-height: 1.7; color: var(--text);
  font-style: normal; margin-bottom: 20px; flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { font-size: 13px; display: block; }
.testimonial-author span { font-size: 12px; color: var(--muted); }

/* ============== IMPACT SECTION ============== */
.impact-section { padding: 80px 0; background: var(--soft); }
.impact-card {
  max-width: 480px; margin: 0 auto 32px; padding: 36px;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-md); border: 1px solid var(--border-l);
  text-align: center;
}
.impact-number {
  font-size: 56px; font-weight: 900; color: var(--blue);
  line-height: 1; margin-bottom: 8px; letter-spacing: -.03em;
}
.impact-text strong { font-size: 18px; color: var(--dark); display: block; margin-bottom: 4px; }
.impact-text p { font-size: 14px; color: var(--light); margin: 0; }
.impact-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============== SECTION HEADER ============== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  color: var(--dark); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 10px;
}
.section-header p { font-size: 16px; color: var(--light); max-width: 520px; margin: 0 auto; }

/* ============== STEPS ============== */
.how-it-works { padding: 80px 0; background: var(--bg); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; }
.step-card { text-align: center; padding: 32px 28px; flex: 1; max-width: 300px; }
.step-number-badge { font-size: 56px; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 12px; }
.step-icon {
  width: 60px; height: 60px; border-radius: var(--r-lg); background: var(--soft);
  box-shadow: var(--sh-sm); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--light); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--border); padding-top: 72px; flex-shrink: 0; width: 40px; text-align: center; }

/* ============== SHOWCASE ============== */
.product-showcase { padding: 80px 0; background: var(--soft); }
.showcase-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.showcase-text .section-tag { margin-bottom: 10px; }
.showcase-text h2 {
  font-size: clamp(26px, 3vw, 36px); font-weight: 800;
  color: var(--dark); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 28px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(52,168,83,.1); color: var(--green);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feature-list strong { font-size: 15px; color: var(--dark); display: block; margin-bottom: 2px; }
.feature-list p { font-size: 13px; color: var(--light); margin: 0; }

/* Dashboard mockup */
.dashboard-mockup {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); border: 1px solid var(--border); overflow: hidden;
}
.mockup-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--border-l); background: var(--soft);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-url {
  font-size: 11px; color: var(--muted); background: #fff;
  padding: 3px 10px; border-radius: var(--r-full); border: 1px solid var(--border-l);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mockup-body { display: flex; min-height: 260px; }
.mockup-sidebar {
  width: 140px; flex-shrink: 0; padding: 12px;
  border-right: 1px solid var(--border-l);
  display: flex; flex-direction: column; gap: 3px;
}
.sidebar-item {
  font-size: 12px; padding: 7px 10px; border-radius: var(--r-sm);
  color: var(--light); cursor: default; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar-item.active { background: rgba(66,133,244,.09); color: var(--blue); font-weight: 600; }
.mockup-content { flex: 1; padding: 16px; min-width: 0; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.mockup-stat { background: var(--soft); padding: 12px 8px; border-radius: var(--r-sm); text-align: center; }
.ms-label { font-size: 10px; color: var(--muted); margin-bottom: 3px; }
.ms-value { font-size: 20px; font-weight: 800; line-height: 1; }
.ms-change { font-size: 11px; font-weight: 600; color: var(--green); margin-top: 2px; }
.mockup-chart { padding-top: 4px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.chart-bar {
  flex: 1; min-height: 12px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(66,133,244,.35) 100%);
  border-radius: 3px 3px 0 0; position: relative;
}
.chart-bar.active { background: linear-gradient(180deg, var(--green) 0%, rgba(52,168,83,.35) 100%); }
.chart-bar span {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 9px; color: var(--muted);
}

/* ============== PRICING ============== */
.pricing { padding: 80px 0; background: var(--bg); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 36px;
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--muted); cursor: pointer; }
.toggle-label.active { color: var(--dark); font-weight: 600; }
.toggle-badge {
  display: inline-block; padding: 2px 10px;
  background: rgba(52,168,83,.12); color: var(--green);
  font-size: 10px; font-weight: 700; border-radius: var(--r-full);
}
.toggle-switch {
  width: 48px; height: 26px; border-radius: var(--r-full);
  background: var(--border); position: relative; cursor: pointer;
  transition: background var(--ease); flex-shrink: 0;
}
.toggle-switch.active { background: var(--blue); }
.toggle-knob {
  width: 22px; height: 22px; background: #fff; border-radius: 50%;
  position: absolute; top: 2px; left: 2px;
  transition: transform var(--ease); box-shadow: var(--sh-sm);
}
.toggle-switch.active .toggle-knob { transform: translateX(22px); }

.pricing-card {
  max-width: 420px; margin: 0 auto; background: #fff;
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--sh-xl); border: 2px solid var(--blue); text-align: center;
}
.pricing-plan-label {
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 4px;
}
.price-amount { font-size: 54px; font-weight: 900; color: var(--dark); letter-spacing: -.03em; line-height: 1; }
.price-meta { text-align: left; }
.price-period { font-size: 15px; color: var(--muted); display: block; }
.price-sub { font-size: 13px; color: var(--green); font-weight: 600; }
.pricing-engagement { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-features {
  list-style: none; text-align: left;
  display: flex; flex-direction: column; gap: 11px; margin: 0 0 28px;
}
.pricing-features li { font-size: 14px; color: var(--text); }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.pricing-note strong { color: var(--dark); }
.pricing-link {
  display: block; text-align: center; margin-top: 20px;
  font-size: 14px; color: var(--blue); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ============== FAQ ============== */
.faq { padding: 80px 0; background: var(--soft); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border-l); border-radius: var(--r-md); overflow: hidden;
  background: #fff; transition: border-color var(--ease);
}
.faq-item:hover { border-color: var(--border); }
.faq-item.open { border-color: rgba(66,133,244,.3); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; gap: 16px; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--dark);
  text-align: left; font-family: inherit; line-height: 1.4;
}
.faq-icon { font-size: 22px; color: var(--blue); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; font-size: 14px; color: var(--light); line-height: 1.7; }

/* ============== FINAL CTA ============== */
.final-cta { padding: 80px 0 100px; }
.cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  border-radius: var(--r-xl); padding: 80px 40px; text-align: center;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 50px rgba(49, 46, 129, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(66,133,244,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-stars { font-size: 32px; margin-bottom: 24px; opacity: 0.8; letter-spacing: 12px; filter: drop-shadow(0 0 8px var(--yellow)); }
.cta-card h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.cta-card p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-br { display: none; }

/* ============== FOOTER ============== */
.footer { padding: 48px 0 24px; background: var(--soft); border-top: 1px solid var(--border-l); }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 48px; margin-bottom: 28px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.footer-links-grid { display: flex; justify-content: flex-end; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px;
}
.footer-col a { display: block; font-size: 13px; color: var(--light); margin-bottom: 8px; transition: color var(--ease); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border-l); padding-top: 16px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.footer-phone { color: var(--blue); font-weight: 500; }

/* ============== ANIMATIONS ============== */
.animate-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TABLET  (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-features-line { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { width: 100%; padding: 24px 60px 48px; }
  .card-main { max-width: 380px; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .showcase-layout { grid-template-columns: 1fr; }
  .showcase-text { text-align: center; }
  .showcase-text h2 { text-align: center; }
  .feature-list { text-align: left; max-width: 400px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   MOBILE  (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; --topbar-h: 32px; }

  .topbar { font-size: 11px; height: var(--topbar-h); }
  .nav-desktop-only { display: none !important; }
  .burger { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.visible { pointer-events: auto; }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw); flex-direction: column; align-items: flex-start;
    padding: calc(var(--nav-h) + 20px) 24px 40px; gap: 4px;
    background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,.12);
    transform: translateX(100%); transition: transform .3s ease;
    z-index: 200; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 16px; color: var(--dark); border-bottom: 1px solid var(--border-l); }
  .nav-mobile-only { display: block !important; }
  .nav-mobile-cta { display: block !important; margin-top: 12px; }
  .nav-mobile-cta a { border: none !important; }

  .hero { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 48px; }
  .hero h1 { font-size: clamp(26px, 7.5vw, 36px); }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { justify-content: center; width: 100%; }
  .hero-proof { flex-direction: column; text-align: center; padding: 14px; }
  .hero-stat-badge { justify-content: center; }

  .card-floating { display: none; }
  .hero-visual { padding: 12px 0 0; }
  .card-main { max-width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; align-items: center; gap: 0; }
  .step-arrow { padding-top: 0; transform: rotate(90deg); height: 32px; display: flex; align-items: center; }
  .step-card { padding: 24px 20px; width: 100%; max-width: 360px; }

  .mockup-sidebar { display: none; }
  .mockup-content { padding: 12px; }
  .ms-label { font-size: 9px; }
  .ms-value { font-size: 17px; }

  .comparison-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .pricing-card { margin: 0 4px; padding: 28px 22px; }
  .price-amount { font-size: 44px; }

  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer p { padding: 0 18px 16px; }

  .cta-card { padding: 48px 20px; border-radius: var(--r-lg); }
  .cta-br { display: inline; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .cta-buttons .btn-white, .cta-buttons .btn-outline-light { width: 100%; justify-content: center; }

  .footer-links-grid { justify-content: flex-start; }
}

/* ============================================================
   SMALL MOBILE  (max 400px)
   ============================================================ */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  .section-header h2 { font-size: 24px; }
  .pricing-card { padding: 24px 16px; }
  .price-amount { font-size: 40px; }
  .hero-stat-number { font-size: 24px; }
}
