/* ============================================
   DRIVEN LEADS — style.css
   ============================================ */

:root {
  --navy: #080D1A;
  --midnight: #0D1525;
  --surface: #131C30;
  --border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --slate: #94A3B8;
  --blue: #3B82F6;
  --violet: #8B5CF6;
  --emerald: #10B981;
  --gradient: linear-gradient(135deg, #3B82F6, #8B5CF6);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--slate);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; }

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  transition: background 0.25s, border-bottom 0.25s;
}
.site-nav.scrolled {
  background: var(--midnight);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px;
  color: white; letter-spacing: -0.01em;
}
.nav-links {
  display: flex; list-style: none;
  gap: 32px; align-items: center;
}
.nav-links a {
  color: var(--slate); font-size: 14px;
  font-weight: 500; transition: color 0.15s;
}
.nav-links a:hover { color: white; }
.btn-nav {
  background: var(--blue);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: opacity 0.15s !important;
}
.btn-nav:hover { opacity: 0.85; }
.nav-toggle {
  display: none;
  background: none; border: none;
  color: white; font-size: 24px;
  cursor: pointer; z-index: 1001;
  position: relative;
  padding: 4px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: white; border: none;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 15px;
  cursor: pointer;
  transition: opacity 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.45);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(59, 130, 246, 0.1); }

/* ── Cards ── */
.card {
  background: rgba(19, 28, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section { padding: 96px 64px; }
.section-alt { background: var(--midnight); }
.section-surface { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; color: white;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-header p {
  font-size: 18px; color: var(--slate);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--blue); margin-bottom: 12px;
  display: block;
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 64px; overflow: hidden;
}
.hero-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.13) 0%, transparent 70%);
  left: -120px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-orb-right {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  right: -80px; top: 30%;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  gap: 80px; width: 100%;
  max-width: 1200px; margin: 0 auto;
}
.hero-content { flex: 1; max-width: 640px; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700; color: white;
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px; color: var(--slate);
  line-height: 1.7; margin-bottom: 40px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero metric card */
.hero-card {
  flex-shrink: 0; width: 320px;
}
.hero-card-inner {
  background: rgba(19, 28, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 28px;
  backdrop-filter: blur(16px);
}
.hero-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--blue);
  letter-spacing: 0.08em; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hero-card-label::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-metrics { display: flex; flex-direction: column; gap: 16px; }
.hero-metric {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-metric-name { font-size: 12px; color: var(--slate); }
.hero-metric-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; font-weight: 500; color: white;
}
.hero-metric-badge {
  font-size: 11px; font-weight: 500; padding: 3px 8px;
  border-radius: 100px;
}
.badge-green { color: var(--emerald); background: rgba(16, 185, 129, 0.12); }
.badge-blue { color: var(--blue); background: rgba(59, 130, 246, 0.12); }

/* ── Trust Bar ── */
.trust-bar {
  background: rgba(13, 21, 37, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 64px;
  display: flex; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center;
  gap: 8px; font-size: 14px;
  color: var(--slate); font-weight: 500;
  white-space: nowrap;
}
.trust-item .trust-icon { color: var(--blue); font-size: 16px; }

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

/* ── Metrics ── */
.metrics-row {
  display: flex; justify-content: center;
  gap: 80px; flex-wrap: wrap; margin-bottom: 64px;
}
.metric-block { text-align: center; position: relative; }
.metric-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px; font-weight: 500;
  color: white; display: block;
}
.metric-label { font-size: 14px; color: var(--slate); margin-top: 8px; }

/* ── Process Steps ── */
.steps {
  display: flex; gap: 48px;
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 32px; left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(139,92,246,0.3));
  pointer-events: none;
}
.step { flex: 1; }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 16px;
}
.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600;
  color: white; margin-bottom: 12px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.step p { font-size: 15px; color: var(--slate); line-height: 1.6; }

/* ── Testimonials ── */
.testimonial-card { padding: 40px; position: relative; }
.testimonial-card .quote {
  font-size: 17px; color: rgba(255, 255, 255, 0.85);
  line-height: 1.7; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card .author { font-size: 14px; font-weight: 500; color: var(--blue); }
.result-badge { margin-top: 16px; display: inline-flex; gap: 16px; flex-wrap: wrap; }
.result-badge span {
  font-size: 12px; color: var(--emerald);
  font-weight: 500; font-family: 'JetBrains Mono', monospace;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px; border-radius: 4px;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px; padding: 80px;
  text-align: center; max-width: 800px;
  margin: 0 auto 96px;
}
.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; color: white; margin-bottom: 16px;
}
.cta-section p { color: var(--slate); font-size: 18px; margin-bottom: 40px; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-form input {
  padding: 14px 20px; border-radius: 8px;
  background: rgba(19, 28, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white; font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  min-width: 200px;
  transition: border-color 0.15s;
}
.cta-form input:focus { outline: none; border-color: var(--blue); }
.cta-form select {
  padding: 14px 20px; border-radius: 8px;
  background: rgba(19, 28, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate); font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.cta-form select option { background: var(--midnight); }
.cta-form select:focus { outline: none; border-color: var(--blue); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px;
  font-weight: 500; color: var(--slate); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(19, 28, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; color: white;
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group select option { background: var(--midnight); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint {
  font-size: 13px; color: var(--slate);
  margin-top: 12px; opacity: 0.7;
}
.form-success { text-align: center; padding: 64px 32px; }
.form-success h3 { font-size: 28px; color: var(--emerald); margin-bottom: 12px; }
.form-success p { color: var(--slate); font-size: 16px; }

/* ── Filter Pills ── */
.filter-pills {
  display: flex; gap: 12px;
  justify-content: center; margin-bottom: 48px; flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent; color: var(--slate);
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--blue);
  border-color: var(--blue); color: white;
}

/* ── Case Cards ── */
.case-card { padding: 40px; }
.case-card .industry-badge {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue);
  font-weight: 500; margin-bottom: 12px;
}
.case-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 600; color: white; margin-bottom: 8px;
}
.case-card .sub {
  font-size: 14px; color: var(--slate); margin-bottom: 20px;
}
.case-metrics {
  display: flex; gap: 32px; margin: 20px 0; flex-wrap: wrap;
}
.case-metric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px; font-weight: 500; color: white;
}
.case-metric small {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: var(--slate);
  font-weight: 400; margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.case-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px; line-height: 1.6;
  border-left: 2px solid var(--blue);
  padding-left: 16px; margin-top: 24px;
}
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.case-tag {
  font-size: 11px; color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 10px; border-radius: 4px;
}

/* ── AI Advantage ── */
.ai-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1100px; margin: 0 auto 80px; padding: 0 64px;
}
.ai-feature.reverse { direction: rtl; }
.ai-feature.reverse > * { direction: ltr; }
.ai-feature-visual {
  background: rgba(19, 28, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 40px;
  position: relative; overflow: hidden;
}
.ai-feature-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
}
.ai-icon {
  font-size: 48px; margin-bottom: 20px; display: block;
}
.ai-feature-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 600; color: white;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.ai-feature-content p {
  font-size: 16px; color: var(--slate); line-height: 1.75;
}
.ai-stat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 40px; font-weight: 500; color: white;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; margin-bottom: 8px;
}
.ai-stat-label { font-size: 13px; color: var(--slate); }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  max-width: 900px; margin: 0 auto;
}
.comparison-table th {
  padding: 16px 24px; text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600; color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-table th:first-child { color: var(--slate); }
.comparison-table th:last-child { color: var(--blue); }
.comparison-table td {
  padding: 16px 24px; font-size: 15px; color: var(--slate);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison-table td:first-child { font-weight: 500; color: rgba(255,255,255,0.8); }
.comparison-table td:last-child { color: var(--emerald); font-weight: 500; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table tr:last-child td { border-bottom: none; }

/* ── Trust Signals (contact) ── */
.trust-signals { padding: 40px 0; }
.trust-signal {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px;
}
.trust-signal-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.trust-signal-text { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.trust-signal-text strong { color: white; }
.contact-address {
  margin-top: 32px; padding: 24px;
  background: rgba(19, 28, 48, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.contact-address p { font-size: 14px; color: var(--slate); line-height: 1.7; }
.contact-address strong { color: rgba(255,255,255,0.8); font-size: 13px; letter-spacing: 0.05em; display: block; margin-bottom: 8px; }

/* ── About values ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.value-card { padding: 32px; }
.value-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.value-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px;
}
.value-card p { font-size: 15px; color: var(--slate); line-height: 1.6; }

/* ── Team ── */
.team-grid {
  display: flex; gap: 32px; justify-content: center;
  flex-wrap: wrap; max-width: 800px; margin: 0 auto;
}
.team-card { padding: 40px 32px; text-align: center; flex: 1; min-width: 200px; max-width: 260px; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700; color: white;
  margin: 0 auto 20px;
}
.team-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600; color: white; margin-bottom: 6px;
}
.team-card .role { font-size: 13px; color: var(--blue); font-weight: 500; }

/* ── Service feature rows ── */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  max-width: 1100px; margin: 0 auto 64px;
  padding: 40px;
  background: rgba(19, 28, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}
.service-detail.alt { background: rgba(19, 28, 48, 0.3); }
.service-icon-wrap {
  font-size: 48px; margin-bottom: 20px; display: block;
}
.service-detail h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 600; color: white; margin-bottom: 16px;
}
.service-detail p {
  font-size: 16px; color: var(--slate); line-height: 1.75; margin-bottom: 24px;
}
.service-ai-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 12px; border-radius: 6px;
  font-weight: 500;
}
.service-detail-right {
  display: flex; flex-direction: column;
  gap: 16px; padding-top: 8px;
}
.service-point {
  display: flex; gap: 12px; align-items: flex-start;
}
.service-point-icon { color: var(--emerald); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.service-point p { font-size: 15px; color: var(--slate); line-height: 1.6; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 64px 80px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero-orb {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  left: -150px; top: -100px; pointer-events: none;
}
.page-hero-content { max-width: 720px; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; color: white;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px; color: var(--slate);
  line-height: 1.7; max-width: 600px;
}

/* ── Not-a-black-box section ── */
.transparency-list { list-style: none; padding: 0; }
.transparency-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 16px; color: rgba(255,255,255,0.8);
}
.transparency-list li::before {
  content: '→';
  color: var(--blue); font-weight: 600; flex-shrink: 0;
}
.transparency-list li:last-child { border-bottom: none; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 64px 32px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 48px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--slate); max-width: 280px; line-height: 1.6; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-size: 14px; color: var(--slate);
  font-weight: 500; transition: color 0.15s;
}
.footer-nav a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px; color: var(--slate);
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 500;
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── About story ── */
.story-block {
  max-width: 760px; margin: 0 auto;
}
.story-block p {
  font-size: 17px; color: var(--slate);
  line-height: 1.8; margin-bottom: 28px;
}
.story-block p:last-child { margin-bottom: 0; }

/* ── Contact two-col ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; max-width: 1100px; margin: 0 auto;
  padding: 0 64px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ai-feature { grid-template-columns: 1fr; padding: 0 24px; }
  .ai-feature.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .service-detail { grid-template-columns: 1fr; padding: 32px 24px; }
  .hero-card { display: none; }
}

@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--navy); flex-direction: column;
    justify-content: center; align-items: center;
    gap: 32px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 22px; color: white; }
  .btn-nav { font-size: 18px !important; }
  .hero { padding: 120px 24px 80px; min-height: auto; }
  .hero-inner { flex-direction: column; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .section { padding: 64px 24px; }
  .trust-bar { padding: 16px 24px; gap: 20px; }
  .steps { flex-direction: column; gap: 40px; }
  .steps::before { display: none; }
  .metrics-row { gap: 40px; }
  .counter { font-size: 40px; }
  .cta-section { padding: 48px 24px; margin: 0 24px 64px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 24px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
  .page-hero h1 { font-size: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { flex-direction: column; align-items: center; }
}

@media (min-width: 769px) {
  .nav-toggle { display: none; }
}
