/* ========================================
   MedPilot — Custom Landing Page CSS
   Fonts: DM Serif Display + DM Sans
   Palette: Deep Teal / Warm Cream / Amber
   ======================================== */

:root {
  --bg: #F7F4EF;
  --bg-alt: #EDE8E0;
  --fg: #0F2B3E;
  --fg-muted: #5A7286;
  --accent: #D4943A;
  --accent-light: #F5C87A;
  --teal: #1A4A6B;
  --teal-dark: #0F2B3E;
  --green: #22c55e;
  --surface: #FFFFFF;
  --border: rgba(15, 43, 62, 0.12);
  --shadow: 0 4px 32px rgba(15, 43, 62, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

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

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Section label */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 2rem 6rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #D4943A40 0%, transparent 70%);
  top: -100px;
  right: 5%;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1A4A6B30 0%, transparent 70%);
  bottom: 10%;
  left: -50px;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,43,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,43,62,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 148, 58, 0.12);
  border: 1px solid rgba(212, 148, 58, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-headline {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat { flex: 1; }
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}

/* Hero Visual — Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 300px;
}

.phone-frame {
  background: #0F2B3E;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(15, 43, 62, 0.25), 0 8px 24px rgba(15, 43, 62, 0.15);
}

.phone-screen {
  background: #112233;
  border-radius: 26px;
  overflow: hidden;
  min-height: 500px;
  padding: 1.5rem;
}

.call-incoming { display: flex; flex-direction: column; gap: 1rem; }

.call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.call-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.call-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.call-name {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.call-number {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.call-time {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.ai-typing {
  background: rgba(26, 74, 107, 0.4);
  border: 1px solid rgba(26, 74, 107, 0.8);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: #5BA4D4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ai-dot {
  width: 5px;
  height: 5px;
  background: #5BA4D4;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.ai-message {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  line-height: 1.5;
}

.sms-preview { margin-top: 0.5rem; }

.sms-bubble {
  background: rgba(212, 148, 58, 0.15);
  border: 1px solid rgba(212, 148, 58, 0.3);
  border-radius: 4px 12px 12px 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sms-time {
  font-size: 0.65rem;
  color: rgba(212, 148, 58, 0.7);
}

.sms-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  line-height: 1.4;
}

.confirmation-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.fc-icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 148, 58, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-icon-green {
  background: rgba(34, 197, 94, 0.12);
}

.card-1 {
  top: -20px;
  right: -60px;
  animation: float1 3s ease-in-out infinite;
}

.card-2 {
  bottom: 40px;
  left: -70px;
  animation: float2 3s ease-in-out infinite 1.5s;
}

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

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

/* Features Section */
.features {
  padding: 7rem 2rem;
  background: var(--surface);
}

.features .section-title { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-art {
  margin-bottom: 1.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Feature Art — Phone Rings */
.art-phone-rings {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 148, 58, 0.2);
  animation: ring-expand 2s ease-out infinite;
}

.ring-1 { width: 40px; height: 40px; }
.ring-2 { width: 60px; height: 60px; animation-delay: 0.5s; }
.ring-3 { width: 80px; height: 80px; animation-delay: 1s; }

@keyframes ring-expand {
  0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.1); }
}

.ring-center {
  width: 48px;
  height: 48px;
  background: rgba(212, 148, 58, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Feature Art — Calendar */
.art-calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cal-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  width: 120px;
}

.cal-row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.cal-cell {
  flex: 1;
  height: 16px;
  border-radius: 3px;
  background: var(--bg-alt);
  position: relative;
}

.cal-cell-header {
  background: transparent;
  font-size: 0.55rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.booked { background: rgba(26, 74, 107, 0.15); }
.booked-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cal-new-booking {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-dots {
  display: flex;
  gap: 2px;
}

.booking-dots span {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  animation: dot-bounce 1.2s infinite;
}

.booking-dots span:nth-child(2) { animation-delay: 0.2s; }
.booking-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Feature Art — Chat */
.art-chat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.chat-bubble {
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-bubble.bot {
  background: rgba(26, 74, 107, 0.1);
  border: 1px solid rgba(26, 74, 107, 0.2);
  width: 140px;
}

.chat-bubble.user {
  background: rgba(212, 148, 58, 0.12);
  border: 1px solid rgba(212, 148, 58, 0.2);
  align-self: flex-end;
  width: 100px;
}

.chat-dot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  animation: dot-bounce 1.2s infinite;
}

.chat-dot:nth-child(2) { animation-delay: 0.2s; }
.chat-dot:nth-child(3) { animation-delay: 0.4s; }

.chat-line {
  height: 5px;
  background: rgba(212, 148, 58, 0.4);
  border-radius: 3px;
  width: 80px;
}

.chat-line.short { width: 50px; }

.chat-badge {
  position: absolute;
  bottom: -12px;
  right: 0;
  background: var(--teal);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* Feature Art — Review */
.art-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  width: 180px;
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.7rem;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}

.review-author {
  font-size: 0.65rem;
  color: var(--fg-muted);
  font-weight: 600;
}

.review-label {
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
}

/* Feature Art — Follow-up Timeline */
.art-followup {
  width: 100%;
}

.fu-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.fu-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal);
}

.fu-dot-dim { background: var(--bg-alt); border: 1px solid var(--border); }

.fu-done .fu-dot { background: var(--green); }
.fu-scheduled .fu-dot { background: var(--accent); }

.fu-content {
  flex: 1;
}

.fu-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg);
}

.fu-time {
  font-size: 0.62rem;
  color: var(--fg-muted);
}

.fu-check, .fu-clock {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  flex-shrink: 0;
}

/* Feature Art — Intake */
.art-intake { width: 100%; }

.intake-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.intake-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.intake-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intake-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.field-label {
  font-size: 0.62rem;
  color: var(--fg-muted);
  font-weight: 600;
  width: 50px;
  flex-shrink: 0;
}

.field-value {
  font-size: 0.72rem;
  color: var(--fg);
  flex: 1;
}

.field-check {
  width: 16px;
  height: 16px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intake-complete {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 8px;
}

/* How It Works */
.howitworks {
  position: relative;
  padding: 7rem 2rem;
  background: var(--bg-alt);
  overflow: hidden;
}

.hiw-bg { position: absolute; inset: 0; pointer-events: none; }

.hiw-blob {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.howitworks .section-title { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.steps-row {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step {
  position: relative;
  text-align: center;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: rgba(15, 43, 62, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-connector {
  display: none;
}

.step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.hiw-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hiw-cta p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Testimonials / Client Types */
.testimonials {
  padding: 7rem 2rem;
  background: var(--surface);
}

.testimonials .section-title { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.client-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.client-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.client-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 148, 58, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-body strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.client-body p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing / Pricing */
.closing {
  position: relative;
  padding: 7rem 2rem;
  background: var(--bg);
  overflow: hidden;
}

.closing-bg { position: absolute; inset: 0; pointer-events: none; }

.closing-blob-1 {
  position: absolute;
  left: -80px;
  top: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 74, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.closing-blob-2 {
  position: absolute;
  right: -80px;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.closing .section-title { text-align: center; max-width: 600px; margin: 0 auto 1.5rem; }

.closing-sub {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
  color: var(--fg-muted);
  font-size: 1rem;
}

.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 40px rgba(212, 148, 58, 0.15);
}

.p-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.p-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.p-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.p-dollar {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--fg);
}

.p-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--fg);
  line-height: 1;
}

.p-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.p-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.p-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
}

.p-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: rgba(212, 148, 58, 0.25);
  border-radius: 2px;
  transform: rotate(45deg);
}

.closing-note {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.closing-note p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--teal-dark);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .steps-row { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .hero { padding: 3rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
}