/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay {
  transition-delay: 0.2s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #4285F4 0%, #5b6bf0 50%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(66,133,244,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66,133,244,0.45);
}

.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4285F4, #7c3aed);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
}
.btn-glow:hover::after {
  opacity: 0.6;
}

.btn-outline {
  background: #fff;
  color: #4285F4;
  border: 2px solid #e0e7ff;
}
.btn-outline:hover {
  background: #f0f4ff;
  border-color: #4285F4;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66,133,244,0.15);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-white {
  background: #fff;
  color: #4285F4;
  font-weight: 700;
}
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; padding: 14px 24px; font-size: 1rem; }

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.02em;
}

.logo-icon { font-size: 1.4rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #4285F4; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #4285F4;
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 1px;
}
.nav-links a:hover::after { transform: scaleX(1); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar.menu-open .mobile-menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
.navbar.menu-open .mobile-menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0f172a 0%, #1e2a4a 30%, #1a3a6a 60%, #2d1b69 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Radial glow accent */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(66,133,244,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: #4285F4;
  top: -100px;
  left: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: #7c3aed;
  bottom: -50px;
  right: 10%;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: #06b6d4;
  top: 40%;
  left: 40%;
  animation: floatShape 12s ease-in-out infinite 2s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
}

/* Avatar Stack */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.avatar-stack {
  display: flex;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(15,23,42,0.8);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.avatar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.avatar-stars {
  color: #fbbf24;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ===== BROWSER MOCKUP ===== */
.hero-mockup {
  position: relative;
}

.browser-mockup {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 100px rgba(66,133,244,0.1);
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f1f3f4;
  border-bottom: 1px solid #ddd;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: #5f6368;
  border: 1px solid #e0e0e0;
}

.browser-actions {
  display: flex;
  gap: 4px;
}
.browser-action-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #999;
}

.browser-body {
  padding: 0;
}

/* GBP Header inside mockup */
.gbp-header {
  padding: 8px 20px 0;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
}
.gbp-nav {
  display: flex;
  gap: 0;
}
.gbp-tab {
  font-size: 0.7rem;
  font-weight: 500;
  color: #5f6368;
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  cursor: default;
}
.gbp-tab-active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
  font-weight: 600;
}

/* Review card inside browser */
.mockup-card {
  padding: 20px 20px 16px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mockup-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #7baaf7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mockup-name { font-weight: 600; font-size: 0.85rem; }
.mockup-stars { color: #fbbc04; font-size: 0.8rem; letter-spacing: 1px; }
.mockup-time { margin-left: auto; font-size: 0.7rem; color: #999; }

.mockup-review {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.mockup-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #4285F4, #5b6bf0);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  position: relative;
}

.pulse-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 9px;
  background: linear-gradient(135deg, #4285F4, #7c3aed);
  opacity: 0;
  z-index: -1;
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0; filter: blur(4px); }
  50% { opacity: 0.5; filter: blur(8px); }
}

.mockup-reply {
  background: #f0f6ff;
  border-radius: 8px;
  padding: 12px 14px;
  border-left: 3px solid #4285F4;
}

.mockup-reply-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #4285F4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup-reply p {
  font-size: 0.75rem;
  color: #333;
  line-height: 1.6;
}

.mockup-reply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.mockup-tone {
  font-size: 0.65rem;
  color: #888;
  background: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup-post-btn {
  background: #34a853;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

.mockup-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(66,133,244,0.2) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 40px 0;
  background: #f8fafb;
  border-bottom: 1px solid #eef1f4;
}
.logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 20px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5f6368;
}
.logo-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: #0f172a;
  color: #fff;
  padding: 56px 0;
  position: relative;
}
.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(66,133,244,0.05) 0%, rgba(124,58,237,0.05) 100%);
}

.social-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  position: relative;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.proof-stat {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.proof-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: left;
  max-width: 260px;
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
}

/* ===== SECTIONS SHARED ===== */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 110px 0;
  background: #fff;
  position: relative;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(66,133,244,0.1);
  background: #fff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.step-icon { margin-bottom: 16px; }

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  opacity: 0.5;
}

/* ===== HOW IT LOOKS ===== */
.how-it-looks {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.action-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.action-step {
  flex: 1;
  max-width: 320px;
}

.action-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4285F4;
  margin-bottom: 12px;
  text-align: center;
}

.action-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e8edf2;
  transition: all 0.3s ease;
}
.action-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(66,133,244,0.2);
}

.action-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.action-step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.action-step-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.action-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 80px;
  opacity: 0.4;
}

/* ===== FEATURES ===== */
.features {
  padding: 110px 0;
  background: #fff;
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66,133,244,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #eef1f4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(66,133,244,0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-purple {
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
}
.feature-icon-amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.feature-icon-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #eef1f4;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 0;
  background: #fff;
  position: relative;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
  transition: color 0.2s;
  cursor: pointer;
}
.toggle-label.toggle-active { color: #1a1a1a; font-weight: 600; }

.save-badge {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 30px;
  background: #e0e7ff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-switch.active { background: linear-gradient(135deg, #4285F4, #7c3aed); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch.active .toggle-knob { transform: translateX(22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  border: 2px solid #eef1f4;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.pricing-card-pro {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #4285F4, #7c3aed) border-box;
  border: 2px solid transparent;
  box-shadow: 0 8px 30px rgba(66,133,244,0.15);
}
.pricing-card-pro:hover {
  box-shadow: 0 20px 60px rgba(66,133,244,0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4285F4, #7c3aed);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-tier {
  font-size: 1rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-price {
  margin-bottom: 6px;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  transition: all 0.3s;
}

.price-period {
  font-size: 1rem;
  color: #999;
}

.price-annual-note {
  font-size: 0.8rem;
  color: #888;
  min-height: 20px;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 28px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: #444;
}
.pricing-features li strong {
  color: #1a1a1a;
}

/* ===== FAQ ===== */
.faq {
  padding: 110px 0;
  background: #f8f9fa;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid #eef1f4;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: rgba(66,133,244,0.15);
}
.faq-item.active {
  border-color: rgba(66,133,244,0.2);
  box-shadow: 0 4px 20px rgba(66,133,244,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: #4285F4; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e2a4a 30%, #1a3a6a 60%, #2d1b69 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.final-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66,133,244,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.final-cta p {
  font-size: 1.15rem;
  opacity: 0.8;
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.825rem;
  opacity: 0.4 !important;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid #eef1f4;
  background: #fafbfc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s;
}
.social-link:hover {
  background: #4285F4;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #4285F4; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid #eef1f4;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #bbb;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.8rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-content h1 { font-size: 2.4rem; }
  .hero { padding: 120px 0 70px; }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .action-steps {
    flex-direction: column;
    align-items: center;
  }
  .action-step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .navbar.menu-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(64px + 160px);
    left: 24px;
    right: 24px;
    justify-content: center;
  }

  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }

  .social-proof-grid {
    flex-direction: column;
    gap: 28px;
  }
  .proof-divider {
    width: 48px;
    height: 1px;
  }
  .proof-item { flex-direction: column; text-align: center; }
  .proof-text { text-align: center; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 1rem; }

  .final-cta h2 { font-size: 2rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .logos-row { gap: 20px; }
  .logo-divider { display: none; }
}
