/* ============================================================
   Capcun Connect — Marketing Website Stylesheet
   ============================================================ */

:root {
  --bg: #fafcfd;
  --bg-alt: #f0f5fa;
  --bg-dark: #0b1520;
  --ink: #0f1f2e;
  --ink-soft: #3a5060;
  --muted: #6b8899;
  --border: #e2eaf0;
  --border-light: #f0f4f7;
  --primary: #22d3bb;
  --primary-dark: #1aab98;
  --primary-deeper: #148f7f;
  --primary-light: #d5f5ef;
  --primary-glow: rgba(34, 211, 187, 0.15);
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-orange: #f59e0b;
  --accent-teal: #14b8a6;
  --accent-red: #ef4444;
  --card: #ffffff;
  --card-hover: #f8fcff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 252, 253, 0.75);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.brand-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.brand-text { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.brand-accent { color: var(--primary-dark); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 8px 16px;
  border-radius: var(--radius-sm); transition: var(--transition);
  border: none; cursor: pointer;
}
.nav-btn-ghost {
  color: var(--ink-soft); background: transparent;
}
.nav-btn-ghost:hover { color: var(--ink); background: var(--bg-alt); }
.nav-btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  box-shadow: 0 2px 8px rgba(34,211,187,.25);
}
.nav-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34,211,187,.35);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 20px; border-top: 1px solid var(--border);
  background: rgba(255,255,255,.96);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 8px; font-size: 15px; font-weight: 500; color: var(--ink-soft);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-alt); color: var(--ink); }
.mobile-menu-actions {
  display: flex; gap: 8px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; border: none; cursor: pointer;
  border-radius: var(--radius-md); transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  box-shadow: 0 4px 16px rgba(34,211,187,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,211,187,.35);
}
.btn-glass {
  color: var(--ink); background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px); border: 1px solid var(--border);
}
.btn-glass:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  color: var(--ink); background: transparent;
  border: 2px solid var(--border); padding: 12px 26px; font-size: 15px;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-white {
  color: var(--ink); background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-glass-white {
  color: #fff; background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.25);
  padding: 14px 28px; font-size: 15px;
}
.btn-glass-white:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: 140px 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-gradient {
  position: absolute; top: -30%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,211,187,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--primary-dark);
  background: var(--primary-light); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 900;
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px; color: var(--ink-soft); max-width: 620px;
  margin: 0 auto 32px; line-height: 1.65;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
}

/* Dashboard Preview */
.hero-dashboard {
  position: relative; max-width: 960px; margin: 0 auto;
}
.dash-window {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  background: #fff;
}
.dash-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #f8fafb; border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f56; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }
.dash-url {
  flex: 1; text-align: center; font-size: 12px; color: var(--muted);
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 12px;
}
.dash-body { display: flex; min-height: 300px; }
.dash-sidebar {
  width: 180px; background: var(--bg-dark); padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.5);
  padding: 8px 10px; border-radius: 6px; transition: var(--transition);
}
.dash-nav-item.active { background: rgba(34,211,187,.15); color: #fff; }
.dash-main { flex: 1; padding: 20px; background: #f7f9fb; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.stat-card {
  background: #fff; border-radius: var(--radius-sm); padding: 14px;
  border: 1px solid var(--border);
}
.stat-label { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.stat-value { font-size: 22px; font-weight: 800; color: var(--ink); margin: 4px 0 2px; }
.stat-change { font-size: 11px; font-weight: 600; }
.stat-change.up { color: #16a34a; }

.dash-workflow-preview {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border);
  overflow: hidden;
}
.wf-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.wf-row:last-child { border-bottom: none; }
.wf-app {
  width: 28px; height: 28px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center; font-weight: 800;
  font-size: 13px; flex-shrink: 0;
}
.wf-app.fb { background: #1877f215; color: #1877f2; }
.wf-app.crm { background: #22d3bb15; color: #22d3bb; }
.wf-app.gs { background: #0f9d5815; color: #0f9d58; }
.wf-app.email { background: #ea443515; color: #ea4435; }
.wf-arrow { color: var(--muted); font-size: 14px; }
.wf-info { flex: 1; }
.wf-name { display: block; font-weight: 600; color: var(--ink); font-size: 13px; }
.wf-sub { display: block; color: var(--muted); font-size: 11px; }
.wf-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .04em;
}
.wf-badge.active { background: #dcfce7; color: #16a34a; }
.wf-badge.paused { background: #fef3c7; color: #d97706; }

/* Floating cards */
.dash-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--radius-md); padding: 12px 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  animation: floatBounce 3s ease-in-out infinite;
}
.dash-float-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.dash-float-2 { top: 60px; right: -30px; animation-delay: 1.5s; }
.float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-icon.green { background: linear-gradient(135deg, #22d3bb, #14b8a6); }
.float-icon.blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.float-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.float-sub { font-size: 11px; color: var(--muted); }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-dark); padding: 48px 0;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.stat-block { text-align: center; }
.stat-num { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.12); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 60px;
}
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--primary-dark);
  background: var(--primary-light); padding: 5px 14px;
  border-radius: 100px; margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.2;
}
.section-header p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.feature-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-wrap.teal { background: rgba(34,211,187,.12); color: var(--primary); }
.feature-icon-wrap.blue { background: rgba(59,130,246,.12); color: var(--accent-blue); }
.feature-icon-wrap.purple { background: rgba(139,92,246,.12); color: var(--accent-purple); }
.feature-icon-wrap.orange { background: rgba(245,158,11,.12); color: var(--accent-orange); }
.feature-icon-wrap.green { background: rgba(20,184,166,.12); color: var(--accent-teal); }
.feature-icon-wrap.red { background: rgba(239,68,68,.12); color: var(--accent-red); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  font-size: 13px; color: var(--ink-soft); padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-glow); border: 2px solid var(--primary);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0;
}
.step-card {
  flex: 1; max-width: 320px; text-align: center;
  padding: 32px 24px; position: relative;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(34,211,187,.25);
}
.step-visual {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-alt); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--primary);
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.step-connector {
  display: flex; align-items: center; padding-top: 60px; flex-shrink: 0;
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.integration-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition); position: relative;
}
.integration-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.integration-card.coming-soon { opacity: .6; }
.integration-logo {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.integration-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.integration-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px; }
.integration-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase;
  letter-spacing: .04em;
}
.integration-tag.source { background: #dbeafe; color: #2563eb; }
.integration-tag.destination { background: #d5f5ef; color: #148f7f; }
.integration-tag.soon { background: #f3f4f6; color: #6b7280; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--primary); box-shadow: 0 8px 32px rgba(34,211,187,.15);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .04em;
}
.pricing-header { text-align: center; margin-bottom: 28px; }
.pricing-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.pricing-amount {
  font-size: 42px; font-weight: 900; color: var(--ink);
  letter-spacing: -.02em;
}
.pricing-amount .currency { font-size: 22px; vertical-align: top; margin-right: 2px; }
.pricing-amount .period { font-size: 16px; font-weight: 500; color: var(--muted); }
.pricing-header p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
}
.pricing-features li svg { flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { font-size: 18px; color: #f59e0b; margin-bottom: 14px; }
.testimonial-card > p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.65;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { display: block; font-size: 12px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; background: var(--card);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 22px; font-size: 15px; font-weight: 600;
  color: var(--ink); background: none; border: none; cursor: pointer;
  font-family: var(--font); text-align: left; gap: 12px;
}
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bg-dark), #162636);
  padding: 80px 0;
}
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 38px); font-weight: 800;
  color: #fff; margin-bottom: 16px; letter-spacing: -.02em;
}
.cta-content p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 32px; line-height: 1.6; }
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark); padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 300px; }
.footer-brand .brand-text { color: #fff; }
.footer-links h4 {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid, .integrations-showcase, .pricing-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .dash-float { display: none; }
  .dash-stats { grid-template-columns: 1fr; }
  .features-grid, .integrations-showcase, .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); padding-top: 0; margin: -10px 0; }
  .stats-grid { gap: 24px; }
  .stat-divider { display: none; }
  .stats-grid { flex-direction: column; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .container { padding: 0 16px; }
  .feature-card, .integration-card, .pricing-card, .testimonial-card { padding: 24px 20px; }
}
