/* ================================
   AURA AUTOMATION — Design System
   Inspired palette: smartlead.ai vibe
   Warm light base + electric blue accent
================================ */

:root {
  /* Base */
  --bg: #fbf7f2;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4eee6;
  --line: #e8ddd0;
  --line-2: #d4c5b1;

  /* Ink */
  --ink: #0f1b2d;
  --ink-2: #4a5568;
  --ink-3: #8b95a6;

  /* Accent: electric indigo */
  --accent: #3b4fff;
  --accent-hover: #2d3ee6;
  --accent-soft: #eef0ff;
  --accent-glow: rgba(59, 79, 255, 0.15);

  /* Supporting coral */
  --coral: #ff7559;
  --coral-soft: #ffe6df;

  /* Success green */
  --green: #10b981;
  --green-soft: #d1fae5;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.05);
  --shadow-md: 0 4px 20px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.12);
  --shadow-accent: 0 10px 40px rgba(59, 79, 255, 0.25);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* =======================
   PROMO BANNER
======================= */
.promo-banner {
  background: linear-gradient(90deg, var(--accent), #5a6bff);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 101;
}

.promo-banner strong { font-weight: 700; }

.promo-banner a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
  font-weight: 600;
}

/* =======================
   NAV
======================= */
nav {
  position: sticky;
  top: 0;
  padding: 16px 32px;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(251, 247, 242, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, var(--accent), var(--coral), var(--accent));
  box-shadow: 0 4px 16px var(--accent-glow), inset 0 -2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--bg);
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
}

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

.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

/* =======================
   BUTTONS
======================= */
.btn {
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}

.btn-outline:hover { border-color: var(--ink); background: white; }

/* =======================
   TYPOGRAPHY
======================= */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.02;
}

h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  position: relative;
}

h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

p { color: var(--ink-2); }

/* =======================
   HERO
======================= */
.hero {
  padding: 64px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(255, 117, 89, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--accent-soft);
  border-radius: var(--r-full);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 79, 255, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(59, 79, 255, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(59, 79, 255, 0); }
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 24px 0 36px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 6px;
}

/* =======================
   PHONE MOCKUP
======================= */
.phone-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(59, 79, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.phone {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.phone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
}

.call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.call-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.call-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.transcript {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 300px;
}

.msg {
  padding: 11px 15px;
  border-radius: var(--r-lg);
  font-size: 14px;
  max-width: 85%;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: msgIn 0.5s forwards;
}

.msg.ai {
  background: var(--surface-2);
  color: var(--ink);
  align-self: flex-start;
  border-top-left-radius: 4px;
}

.msg.user {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-top-right-radius: 4px;
}

.msg:nth-child(1) { animation-delay: 0.3s; }
.msg:nth-child(2) { animation-delay: 1.2s; }
.msg:nth-child(3) { animation-delay: 2.1s; }
.msg:nth-child(4) { animation-delay: 3.0s; }
.msg:nth-child(5) { animation-delay: 3.9s; }

@keyframes msgIn {
  to { opacity: 1; transform: translateY(0); }
}

.call-footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.call-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
}

.call-btn.end {
  background: #ef4444;
  color: white;
}

/* =======================
   TRUST BAR
======================= */
.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink-2);
  font-style: italic;
  font-weight: 400;
}

/* =======================
   SECTIONS
======================= */
section { padding: 100px 0; position: relative; }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* =======================
   FLOW DIAGRAM (call reroute)
======================= */
.flow-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-diagram {
  position: relative;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.flow-node {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  animation: floatY 4s ease-in-out infinite;
}

.flow-node.customer { animation-delay: 0s; }
.flow-node.voicemail {
  border-color: #fee2e2;
  background: #fef2f2;
  opacity: 0.6;
  animation-delay: 1s;
}
.flow-node.aura {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft), white);
  animation-delay: 0.5s;
  box-shadow: var(--shadow-accent);
}
.flow-node.customer-happy {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green-soft), white);
  animation-delay: 1.5s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.flow-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.flow-node.aura .flow-icon { background: var(--accent); color: white; }
.flow-node.customer-happy .flow-icon { background: var(--green); color: white; }
.flow-node.voicemail .flow-icon { background: #fee2e2; }

.flow-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.flow-sub { font-size: 13px; color: var(--ink-2); }

.flow-arrow {
  position: relative;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  overflow: hidden;
}

.flow-arrow::before {
  content: '';
  position: absolute;
  top: 0; left: -30%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: flow 2s linear infinite;
}

@keyframes flow {
  0% { left: -40%; }
  100% { left: 100%; }
}

.flow-arrow::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  width: 0; height: 0;
  border-left: 10px solid var(--accent);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
}

.flow-arrow.reroute {
  width: 80px;
}

.flow-label-top, .flow-label-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-label-top { top: -20px; color: var(--ink-3); }
.flow-label-bottom { bottom: -20px; color: var(--accent); }

.flow-missed-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #ef4444;
  font-weight: 600;
  pointer-events: none;
  opacity: 0.85;
}

/* =======================
   INTEGRATIONS ORBIT
======================= */
.integrations {
  padding: 100px 0;
  text-align: center;
}

.orbit-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 48px auto 0;
  height: 520px;
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5a6bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 20px 60px var(--accent-glow);
  z-index: 3;
}

.orbit-center::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: ring 3s infinite;
}

@keyframes ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1.5px dashed var(--line-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.orbit-ring.r1 { width: 320px; height: 320px; animation: rotate 30s linear infinite; }
.orbit-ring.r2 { width: 480px; height: 480px; animation: rotate 50s linear infinite reverse; }

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 2;
  transition: transform 0.3s;
}

.orbit-item:hover { transform: scale(1.1); border-color: var(--accent); }

/* ring 1 items */
.orbit-item.i1 { top: 10%; left: 50%; transform: translateX(-50%); }
.orbit-item.i2 { top: 50%; right: 15%; transform: translateY(-50%); }
.orbit-item.i3 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.orbit-item.i4 { top: 50%; left: 15%; transform: translateY(-50%); }

/* ring 2 items */
.orbit-item.o1 { top: 0; left: 30%; }
.orbit-item.o2 { top: 20%; right: 5%; }
.orbit-item.o3 { bottom: 20%; right: 5%; }
.orbit-item.o4 { bottom: 0; left: 30%; }
.orbit-item.o5 { bottom: 20%; left: 5%; }
.orbit-item.o6 { top: 20%; left: 5%; }

/* =======================
   FEATURES
======================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.3s;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature p { font-size: 15px; }

/* =======================
   INDUSTRIES GRID
======================= */
.industries {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.industry-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--ink);
}

.industry-card:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-3px);
}

.industry-emoji {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.industry-name {
  font-weight: 600;
  font-size: 15px;
}

/* =======================
   PROBLEM STATS
======================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-cell {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--line);
  text-align: center;
}

.problem-num {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* =======================
   PRICING
======================= */
.pricing-box {
  max-width: 540px;
  margin: 0 auto;
  padding: 48px 40px;
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
}

.pricing-badge {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price {
  font-family: 'Fraunces', serif;
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}

.price sup {
  font-size: 32px;
  font-weight: 500;
  vertical-align: top;
  margin-right: 4px;
  color: var(--ink-2);
}

.price-period {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 32px;
}

.price-features {
  text-align: left;
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: '✓';
  color: white;
  background: var(--green);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.price-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 16px;
  font-weight: 500;
}

/* =======================
   SERVICE AREAS (cities grid)
======================= */
.cities-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.city-chip {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.city-chip:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* =======================
   CTA FINAL
======================= */
.cta-final {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--accent), #5a6bff);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-final::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cta-final::before {
  width: 400px; height: 400px;
  top: -200px; left: -100px;
}

.cta-final::after {
  width: 500px; height: 500px;
  bottom: -250px; right: -150px;
}

.cta-final > .container { position: relative; z-index: 2; }

.cta-final h2 { color: white; margin-bottom: 24px; }
.cta-final h2 em { color: #ffd7cd; }

.cta-final .section-sub { color: rgba(255,255,255,0.9); margin: 0 auto 36px; max-width: 560px; }

.cta-final .btn-primary {
  background: white;
  color: var(--accent);
}

.cta-final .btn-primary:hover {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-note {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-top: 20px;
  font-weight: 500;
}

/* =======================
   FOOTER
======================= */
footer {
  padding: 64px 0 32px;
  background: var(--ink);
  color: var(--ink-3);
}

footer .logo { color: white; }
footer .logo-mark::after { background: var(--ink); }

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

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 16px;
}

/* =======================
   TRY IT CTA BOX
======================= */
.try-it {
  background: linear-gradient(135deg, var(--ink), #1e2a44);
  border-radius: var(--r-xl);
  padding: 48px;
  color: white;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.try-it::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
}

.try-it-content { position: relative; z-index: 2; }

.try-it h2 { color: white; font-size: clamp(28px, 3vw, 40px); margin-bottom: 14px; }
.try-it h2 em { color: var(--coral); }
.try-it p { color: #94a3b8; font-size: 17px; margin-bottom: 28px; }

.try-it-number {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.try-it-phone-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: shake 1.5s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0); }
  10%, 30%, 50% { transform: rotate(-8deg); }
  20%, 40% { transform: rotate(8deg); }
}

.try-it-num-big {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.try-it-num-label {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.try-it-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.try-it-visual {
  position: relative;
  z-index: 2;
}

.try-it-visual .phone {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
}

.try-it-visual .msg.ai {
  background: rgba(255,255,255,0.1);
  color: white;
}

.try-it-visual .call-header { color: #94a3b8; }

.try-it-visual .call-btn {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* =======================
   CITY PAGE SPECIFICS
======================= */
.city-hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--accent-soft), var(--bg));
  position: relative;
}

.breadcrumb {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--ink-2);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent); }

.city-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 80px 0;
}

.city-main h2 { font-size: 32px; margin-top: 40px; margin-bottom: 16px; }
.city-main h2:first-child { margin-top: 0; }
.city-main p { margin-bottom: 16px; font-size: 16px; }
.city-main ul { margin: 16px 0 16px 24px; }
.city-main ul li { margin-bottom: 10px; color: var(--ink-2); }

.city-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 { font-size: 20px; margin-bottom: 12px; }
.sidebar-card p { font-size: 15px; margin-bottom: 20px; }

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 40px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .pricing-box { padding: 32px 24px; }
  .price { font-size: 64px; }
  section { padding: 64px 0; }

  .flow-diagram {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flow-arrow {
    width: 4px;
    height: 40px;
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .flow-arrow::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border-top: 10px solid var(--accent);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0;
  }

  .orbit-wrap { height: 400px; }
  .orbit-ring.r1 { width: 260px; height: 260px; }
  .orbit-ring.r2 { width: 380px; height: 380px; }
  .orbit-center { width: 120px; height: 120px; font-size: 16px; }
  .orbit-item { font-size: 11px; padding: 6px 10px; }

  .cities-grid { grid-template-columns: repeat(2, 1fr); }

  .try-it { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }

  .city-content { grid-template-columns: 1fr; gap: 32px; }
  .city-sidebar { position: static; }
}

@media (max-width: 500px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
