/* Design Tokens */
:root {
  --bg: #0a0e1a;
  --surface: #0f1628;
  --surface-2: #141d30;
  --surface-3: #1a243b;
  --text: #e7eaf6;
  --muted: #a1a7c4;
  --outline: #2a3456;
  --outline-bright: rgba(255, 255, 255, 0.15);
  --gradient-start: #7c3aed;
  --gradient-mid: #3b82f6;
  --gradient-end: #06b6d4;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --border-radius: 12px;
  --border-radius-large: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--outline-bright);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--outline-bright);
}

.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--gradient-mid);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  border-bottom: 1px solid var(--outline);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--text);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--outline-bright);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gradient-mid);
  margin-bottom: 24px;
}

.hero-title {
  font-family: "Bebas Neue", Inter, system-ui;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Highlights */
.highlight-danger {
  background: #06b6d4;
  padding: 4px 8px;
  font-weight: 800;
  color: #0a0e1a;
  border-radius: 6px;
  display: inline-block;
}

.highlight-success {
  background: #06b6d4;
  padding: 4px 8px;
  font-weight: 800;
  color: #0a0e1a;
  border-radius: 6px;
  display: inline-block;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.proof-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-left: -8px;
  border: 2px solid var(--bg);
  color: white;
  overflow: hidden; /* makes sure img stays inside circle */
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops image nicely */
  display: block;
}

.avatar:first-child {
  margin-left: 0;
}

.proof-text {
  color: var(--muted);
  font-size: 14px;
}

.live-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-2);
  border: 1px solid var(--outline);
  border-radius: 50px;
  font-size: 14px;
  color: var(--muted);
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}



/* Privacy Policy Page */
.privacy-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--outline);
}

.privacy-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--muted);
  font-size: 16px;
}

.privacy-content {
  padding: 80px 0;
}

.privacy-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 48px 0 24px 0;
  color: var(--text);
}

.privacy-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin: 32px 0 16px 0;
  color: var(--text);
}

.privacy-text p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.privacy-text ul {
  margin: 20px 0;
  padding-left: 24px;
}

.privacy-text li {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.privacy-text strong {
  color: var(--text);
  font-weight: 600;
}

.contact-info {
  background: var(--surface-2);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border: 1px solid var(--outline);
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Logo Strip */
.logo-strip {
  padding: 0 0 60px;
  border-bottom: 1px solid var(--outline);
}

.logos-label {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.logo-cloud img {
  height: 40px;
  width: auto;
  filter: grayscale(1);
  transition: var(--transition);
}

.logo-cloud img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Why Section */
.why-section {
  padding: 120px 0;
}

.why-section h2 {
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--outline-bright);
  border-radius: var(--border-radius-large);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-content {
  flex: 1;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-kpi {
  flex-shrink: 0;
}

.kpi-widget {
  text-align: center;
}

.kpi-bar {
  width: 80px;
  height: 8px;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.kpi-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
  border-radius: 4px;
  transition: width 2s ease;
}

.kpi-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gradient-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Callout Section */
.callout-section {
  padding: 120px 0;
  background: var(--surface);
}

.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.callout-content h2 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 24px;
  font-weight: 800;
}

.callout-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.callout-bullets {
  list-style: none;
}

.callout-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
}

.callout-bullets li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--gradient-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.device-frame {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.device-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-3);
  border: 8px solid var(--surface-3);
  box-shadow: var(--shadow);
}

.device-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-mid);
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--gradient-start);
}

/* Salesforge-style Timeline Section */
.section-af-8steps {
  background: var(--bg);
}

.timeline-intro {
  padding: 120px 0 60px;
  text-align: center;
}

.timeline-intro h2 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 16px;
  font-weight: 800;
}


/* How It Works - Sticky Cards Section */
.how-it-works-section {
  background: var(--bg);
  padding: 80px 0;
  position: relative;
}

.how-it-works-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works-section .section-header h2 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.how-it-works-section .section-header p {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.sticky-cards-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.sticky-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  transition: all 0.3s ease;
  border: 1px solid var(--outline-bright);
}

.sticky-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  border-color: var(--gradient-mid);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.step-number span {
  color: white;
  font-size: 24px;
  font-weight: 800;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.step-icon {
  width: 48px;
  height: 48px;
  color: var(--gradient-mid);
  flex-shrink: 0;
  opacity: 0.8;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }
  
  .how-it-works-section .section-header {
    margin-bottom: 40px;
  }
  
  .sticky-card {
    top: 80px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    justify-self: center;
  }
  
  .step-number span {
    font-size: 20px;
  }
  
  .step-content h3 {
    font-size: 24px;
  }
  
  .step-content p {
    font-size: 15px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .sticky-card {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 12px;
    padding: 28px 20px;
  }
  
  .step-content h3 {
    font-size: 22px;
  }
}

/* Demo CTA Card */
.demo-cta-card {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: white;
  text-align: center;
}

.demo-cta-card h3 {
  color: white;
  margin-bottom: 16px;
}

.demo-cta-card .card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.demo-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.demo-cta-card .btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.demo-cta-card .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Analytics Dashboard Mockup */
.analytics-mockup {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.analytics-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stat-item {
  background: var(--surface-2);
  border: 1px solid var(--outline);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--gradient-mid);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Mid CTA */
.cta-mid {
  padding: 120px 0;
  background: var(--surface);
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--outline-bright);
  border-radius: var(--border-radius-large);
  padding: 60px 40px;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-card p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Integrations Section */
.integrations-section {
  padding: 120px 0;
}

.integrations-header {
  text-align: center;
  margin-bottom: 80px;
}

.integrations-header h2 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 16px;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.proof-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--outline-bright);
  border-radius: var(--border-radius-large);
  padding: 32px;
  transition: var(--transition);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.proof-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
}

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

.integration-logo {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.features-checklist {
  list-style: none;
}

.features-checklist li {
  margin-bottom: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.metrics-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.metric {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--gradient-mid);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 20px;
  color: #d1d5db;
  transition: color 0.2s ease;
}

.star.filled {
  color: #fbbf24;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* Testimonials */
.testimonials-section {
  padding: 120px 0;
  background: var(--surface);
}

.testimonials-section h2 {
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
}

.hero-testimonial {
  max-width: 800px;
  margin: 0 auto 60px;
}

.hero-testimonial blockquote {
  background: linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--outline-bright);
  border-radius: var(--border-radius-large);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-testimonial p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 32px;
  font-style: italic;
}

.hero-testimonial footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.testimonial-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(1);
}

/* FAQ */
.faq-section {
  padding: 120px 0;
}

.faq-section h2 {
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  margin-bottom: 80px;
  font-weight: 800;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--outline);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gradient-mid);
}

.faq-icon {
  font-size: 24px;
  transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding-bottom: 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* Final CTA */
.cta-final {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 24px;
  font-weight: 800;
}

.cta-content p {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--surface-3);
  border-top: 1px solid var(--outline);
  padding: 80px 0 40px;
}

.footer-main {
  display: none;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact a {
  color: var(--gradient-mid);
  text-decoration: none;
}

/* Footer links grid removed in simplified footer */
.footer-links { display: none; }

.footer-column h4 {
  margin-bottom: 16px;
  font-weight: 600;
}

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

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--outline);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-mid);
  color: white;
}

/* Responsive Design */
@media (max-width: 980px) {
  .container {
    padding: 0 20px;
  }
  
  .header-ctas {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-2);
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--outline);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-list.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list li {
    margin-bottom: 16px;
  }
  
  .nav-list a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .social-proof {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-trio {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .callout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  

  
  .form-group {
    flex-direction: column;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
  
  .feature-trio {
    grid-template-columns: 1fr;
  }
  
  .toggle-chips {
    flex-direction: column;
    align-items: center;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metrics-panel {
    grid-template-columns: 1fr;
  }
  
  .hero-testimonial blockquote {
    padding: 32px 24px;
  }
  
  .hero-testimonial p {
    font-size: 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .proof-card,
  .feature-card,
  .cta-card {
    padding: 24px;
  }
  
  .hero-testimonial blockquote {
    padding: 24px 20px;
  }
  
  .hero-testimonial p {
    font-size: 18px;
  }
  
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-hero {
    padding: 100px 0 40px;
  }
  
  .privacy-content {
    padding: 40px 0;
  }
  
  .privacy-text {
    padding: 0 20px;
  }
  
  .privacy-text h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px 0;
  }
  
  .privacy-text h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px 0;
  }
  
  .contact-info {
    padding: 16px;
    margin: 16px 0;
  }
}

/* Scroll Reveal Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: slideUp 0.6s ease forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    animation: none;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--gradient-mid);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .site-header,
  .cta-mid,
  .cta-final,
  .site-footer {
    display: none;
  }
}