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

:root {
  --bg: #0a0e14;
  --bg2: #131920;
  --bg3: #1a2029;
  --border: #2a3140;
  --text: #e2e8f0;
  --text2: #94a3b8;
  --green: #10b981;
  --teal: #0d9488;
  --red: #ef4444;
  --yellow: #f59e0b;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  background-image: url('/glacier-topo.svg');
  background-size: 1200px 1000px;
  background-repeat: repeat;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

h1, h2, h3 { line-height: 1.2; font-weight: 700; }

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 16px;
}

.gradient {
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: var(--text2);
  font-size: 1.125rem;
  margin-bottom: 48px;
}

/* === Hero === */
.hero {
  padding: 140px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,0.08) 0%, transparent 60%);
}

.hero-logo {
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text2);
  max-width: 680px;
  margin: 0 auto 36px;
}

/* === Hero CTA === */
.hero-cta {
  margin-bottom: 32px;
}

.cta-btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* === Trust Badges === */
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.06);
}

/* === EKG Pulse Line === */
.ekg-divider {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
}

.ekg-divider .ekg-line {
  stroke: var(--green);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: ekgDraw 2.5s ease-in-out forwards;
}

@keyframes ekgDraw {
  to { stroke-dashoffset: 0; }
}

/* Section pulse dividers */
.pulse-divider {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 20px;
  margin: 0 auto 48px;
  overflow: hidden;
}

.pulse-divider .pulse-line {
  stroke: var(--green);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.3;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.pulse-divider-animate .pulse-line {
  animation: pulseDraw 1.5s ease-in-out forwards;
}

@keyframes pulseDraw {
  to { stroke-dashoffset: 0; }
}

/* === Signup Form === */
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input:focus {
  border-color: var(--green);
}

.signup-form button {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.1s;
}

.signup-form button:hover { opacity: 0.9; }
.signup-form button:active { transform: scale(0.98); }
.signup-form button:disabled { opacity: 0.5; cursor: not-allowed; }

.form-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text2);
  margin-top: 12px;
}

.form-hint.success { color: var(--green); }
.form-hint.error { color: var(--red); }

/* === Terminal === */
.terminal {
  max-width: 560px;
  margin: 48px auto 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: left;
}

.terminal-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.r { background: var(--red); }
.dot.y { background: var(--yellow); }
.dot.g { background: var(--green); }

.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text2);
  margin-left: 8px;
}

.terminal-body {
  background: var(--bg);
  padding: 16px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
}

.terminal-body .line { opacity: 0; animation: fadeIn 0.3s forwards; }
.terminal-body .line:nth-child(1) { animation-delay: 0.2s; }
.terminal-body .line:nth-child(2) { animation-delay: 0.6s; }
.terminal-body .line:nth-child(3) { animation-delay: 0.9s; }
.terminal-body .line:nth-child(4) { animation-delay: 1.2s; }
.terminal-body .line:nth-child(5) { animation-delay: 1.5s; }

.prompt { color: var(--green); margin-right: 8px; }
.line.ok { color: var(--green); }
.line.ok .icon { margin-right: 6px; }
.line.healed { color: var(--yellow); }
.line.healed .icon { margin-right: 6px; }
.line.dim { color: var(--text2); font-size: 0.8rem; margin-top: 4px; }

@keyframes fadeIn { to { opacity: 1; } }

/* === Sections === */
.problem, .solution, .how, .deploy, .pricing, .cta, .use-cases, .security, .who-we-serve {
  padding: 96px 0;
}

.problem { background: transparent; }
.solution { background: rgba(19, 25, 32, 0.85); }
.how { background: transparent; }
.deploy { background: rgba(19, 25, 32, 0.85); }
.use-cases { background: rgba(19, 25, 32, 0.85); }
.security { background: transparent; }
.who-we-serve { background: rgba(19, 25, 32, 0.85); }
.pricing { background: transparent; }

.cta {
  background: radial-gradient(ellipse at 50% 100%, rgba(16,185,129,0.08) 0%, transparent 60%);
  padding-bottom: 120px;
}

/* === Cards === */
.cards {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--text2);
  font-size: 0.95rem;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

/* Problem cards: red glow on hover */
.problem .card:hover {
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(239,68,68,0.15), 0 0 40px rgba(239,68,68,0.05);
}

/* Solution cards: green left border accent */
.solution .card {
  border-left: 3px solid transparent;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s, border-left-color 0.3s;
}

.solution .card:hover {
  border-color: var(--green);
  border-left-color: var(--green);
  box-shadow: 0 0 20px rgba(16,185,129,0.1);
}

/* === Steps === */
.steps {
  max-width: 640px;
  margin: 48px auto 0;
  position: relative;
  overflow: hidden;
}

/* IV line connecting steps */
.steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--teal), transparent);
  opacity: 0.2;
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Pulse ring animation on step numbers */
.step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0;
  animation: pulseRing 3s ease-out infinite;
}

.step:nth-child(1) .step-num::before { animation-delay: 0s; }
.step:nth-child(2) .step-num::before { animation-delay: 1s; }
.step:nth-child(3) .step-num::before { animation-delay: 2s; }

@keyframes pulseRing {
  0% { opacity: 0.6; inset: -4px; }
  100% { opacity: 0; inset: -16px; }
}

.step-content h3 { margin-bottom: 12px; }

.step-content p {
  color: var(--text2);
  font-size: 0.95rem;
}

.code-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text2);
  overflow-x: auto;
}

.code-block .ok { color: var(--green); }

/* === Pricing Cards === */
.pricing-cards .price-card {
  text-align: center;
  position: relative;
}

.price-card h3 {
  font-size: 1rem;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text2);
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text2);
}

.price-card li::before {
  content: "\2713 ";
  color: var(--green);
  margin-right: 8px;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text2);
}

.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, var(--bg3) 100%);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  border-radius: 100px;
}

.contact-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
}

.contact-btn {
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-btn:hover {
  background: var(--green);
  color: var(--bg);
}

/* === Top Nav === */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-cta {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover { opacity: 0.9; }

/* === Secondary Button === */
.btn-secondary {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--bg);
}

/* === Use Cases === */
.use-case-outcome {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* === Footer === */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }

.footer-copy {
  color: var(--text2);
  font-size: 0.8rem;
}

/* === Retell Voice Call Overlay === */
.retell-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.retell-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  min-width: 280px;
}

.retell-pulse-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--green);
  opacity: 0.4;
  animation: retellPulse 2s ease-in-out infinite;
}

.retell-overlay.active .retell-pulse-ring {
  opacity: 1;
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.3);
}

@keyframes retellPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.retell-status {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.retell-end-btn {
  padding: 10px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.retell-end-btn:hover {
  background: var(--red);
  color: #fff;
}

/* === Capabilities Grid === */
.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.capability-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 24px 28px;
  transition: border-color 0.3s, transform 0.2s;
}

.capability-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.capability-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.capability-card p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Deploy flexibility bar */
.deploy-bar {
  margin-top: 32px;
  text-align: center;
}

.deploy-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text2);
}

/* === Persona Selector === */
.persona-selector {
  margin: 32px auto 40px;
  text-align: center;
}

.selector-label {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 12px;
}

.persona-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.persona-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--bg2);
  color: var(--text2);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}

.persona-btn:hover {
  border-color: var(--green);
  color: var(--text);
}

.persona-btn.active {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  border-color: transparent;
}

/* === Dual CTA === */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.cta-option {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.cta-option:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.cta-option-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-option h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.cta-option p {
  color: var(--text2);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.cta-btn:hover { opacity: 0.9; }
.cta-btn:active { transform: scale(0.98); }

.cta-btn-primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
}

.cta-btn-secondary {
  background: var(--bg3);
  color: var(--green);
  border: 1px solid var(--green);
}

.cta-btn-secondary:hover {
  background: var(--green);
  color: var(--bg);
}

/* === Intake Form === */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.intake-form input,
.intake-form textarea {
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.intake-form input:focus,
.intake-form textarea:focus {
  border-color: var(--green);
}

.intake-form textarea {
  resize: vertical;
  min-height: 80px;
}

.intake-form button {
  margin-top: 4px;
}

.intake-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === Integrations === */
.integrations {
  padding: 96px 0;
  background: var(--bg2);
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s;
}

.integration-chip:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.integration-icon {
  display: flex;
  align-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.integration-name {
  white-space: nowrap;
}

/* === Stats Bar === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text2);
}

/* === Pricing Single === */
.pricing-single {
  max-width: 520px;
  margin: 48px auto 0;
}

.pricing-single .price-card {
  text-align: center;
  padding: 48px 40px;
  border-radius: 16px;
  border: 1px solid var(--green);
  background: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, var(--bg3) 100%);
}

.pricing-single .price-card h3 {
  margin-bottom: 16px;
}

.pricing-single .price-card .cta-btn {
  margin-bottom: 16px;
}

.pricing-single .price-note {
  margin-top: 16px;
}

/* === Integration Note === */
.integration-note {
  text-align: center;
  color: var(--text2);
  font-size: 0.8rem;
  max-width: 640px;
  margin: 24px auto 0;
  opacity: 0.7;
}

/* === Trust Signal === */
.trust-signal {
  padding: 96px 0;
  background: var(--bg2);
}

.trust-list {
  list-style: none;
  max-width: 640px;
  margin: 32px auto 0;
}

.trust-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.6;
}

.trust-list li::before {
  content: "\2713 ";
  color: var(--green);
  font-weight: 700;
  margin-right: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .cards.two, .cards.three, .cards.four { grid-template-columns: 1fr; }

  .signup-form {
    flex-direction: column;
  }

  .signup-form button {
    width: 100%;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .steps::before { display: none; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero { padding: 112px 0 40px; }
  .problem, .solution, .how, .deploy, .pricing, .cta, .use-cases, .trust-signal, .security, .who-we-serve { padding: 64px 0; }
  .stats-bar { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.7rem; padding: 5px 10px; }
  .nav-links { gap: 16px; }
  .nav-cta { padding: 6px 14px; font-size: 0.85rem; }

  .capabilities { grid-template-columns: 1fr; }
  .deploy-bar-inner { font-size: 0.8rem; padding: 10px 16px; }
  .dual-cta { grid-template-columns: 1fr; }
  .integration-chip { padding: 8px 14px; font-size: 0.8rem; }
  .integrations { padding: 64px 0; }

  .persona-buttons { flex-direction: column; align-items: center; }
  .persona-btn { width: 100%; max-width: 280px; }

  .cta-option { padding: 28px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}
