/* ═══════════════════════════════════════════
   Aria Reception — Premium Stylesheet
   ═══════════════════════════════════════════ */

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

:root {
  --bg: #070b14;
  --bg2: #0d1220;
  --bg3: #111827;
  --surface: #161d2e;
  --surface2: #1e2740;
  --border: rgba(99,102,241,0.18);
  --border2: rgba(255,255,255,0.07);
  --accent: #6366f1;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --green: #10b981;
  --red: #ef4444;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

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

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(99,102,241,0.4), 0 0 40px rgba(99,102,241,0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-glow 2.5s infinite alternate;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: glare 3.5s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 30px rgba(99,102,241,0.4), 0 8px 24px rgba(99,102,241,0.3); }
  100% { box-shadow: 0 0 70px rgba(99,102,241,0.9), 0 12px 32px rgba(99,102,241,0.6); }
}
@keyframes glare {
  0% { left: -150%; }
  25% { left: 200%; }
  100% { left: 200%; }
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(99,102,241,1), 0 0 100px rgba(99,102,241,0.9);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(99,102,241,0.2);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
}

.play-icon { font-size: 14px; }

/* ── Section ── */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text2);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════ NAVBAR ══════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  transition: var(--transition);
}

#navbar.scrolled .nav-inner {
  padding: 14px 24px;
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}
.logo-icon {
  font-size: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-accent { background: linear-gradient(135deg, var(--accent), var(--accent3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite alternate;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(99,102,241,0.8); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(7,11,20,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text2); font-weight: 500; }
.mobile-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  animation: pulse-glow 2.5s infinite alternate;
}

/* ══════════════════════════ HERO ══════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(99,102,241,0.12);
  top: -100px; left: -200px;
  animation: glow1 8s ease-in-out infinite alternate;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.1);
  top: 200px; right: -100px;
  animation: glow2 10s ease-in-out infinite alternate;
}

@keyframes glow1 { 0%{transform:translate(0,0)} 100%{transform:translate(60px,40px)} }
@keyframes glow2 { 0%{transform:translate(0,0)} 100%{transform:translate(-40px,60px)} }

.hero-content { flex: 1; max-width: 560px; }
.hero-visual { flex: 1; display: flex; justify-content: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

@keyframes ultimate-pulse-insane {
  0% { 
    box-shadow: 0 0 30px #6366f1, 0 0 60px #a855f7, inset 0 0 10px rgba(255,255,255,0.4); 
    transform: translateY(0) scale(1.0);
  }
  50% { 
    box-shadow: 0 0 120px #a855f7, 0 0 180px #ec4899, inset 0 0 30px rgba(255,255,255,0.9); 
    transform: translateY(-12px) scale(1.07);
  }
  100% { 
    box-shadow: 0 0 30px #6366f1, 0 0 60px #a855f7, inset 0 0 10px rgba(255,255,255,0.4); 
    transform: translateY(0) scale(1.0);
  }
}

@keyframes ultimate-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-ultimate {
  font-size: 20px !important;
  font-weight: 900 !important;
  padding: 22px 50px !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  color: #fff !important;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1) !important;
  background-size: 300% 300% !important;
  animation: ultimate-gradient 3s ease infinite, ultimate-pulse-insane 2.5s ease-in-out infinite !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.btn-ultimate:hover {
  transform: translateY(-8px) scale(1.1) !important;
  box-shadow: 0 0 150px #a855f7, 0 0 250px #ec4899, inset 0 0 50px rgba(255,255,255,1) !important;
  border-color: #fff !important;
  animation: ultimate-gradient 1.5s ease infinite !important;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text3); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border2); }

/* Phone card */
.phone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  width: 360px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(99,102,241,0.12);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border2);
}
.phone-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.phone-info { flex: 1; }
.phone-name { display: block; font-weight: 700; font-size: 14px; }
.phone-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--green);
}
.status-dot {
  width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.phone-timer { font-size: 13px; color: var(--text3); font-variant-numeric: tabular-nums; }

.chat-bubbles { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 88%;
}
.bubble.caller {
  background: var(--surface2);
  border: 1px solid var(--border2);
  align-self: flex-start;
}
.bubble.aria {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.2));
  border: 1px solid rgba(99,102,241,0.3);
  align-self: flex-end;
}
.bubble.typing {
  display: flex; gap: 5px; align-items: center;
  align-self: flex-end; padding: 12px 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.2));
  border: 1px solid rgba(99,102,241,0.3);
  transition: opacity 0.4s;
}
.bubble.typing span {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-7px); }
}

.phone-footer { border-top: 1px solid var(--border2); padding-top: 16px; }
.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 32px;
}
.waveform span {
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 12px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 22px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 16px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 28px; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 20px; animation-delay: 0.4s; }
.waveform span:nth-child(8) { height: 12px; animation-delay: 0.3s; }
.waveform span:nth-child(9) { height: 18px; animation-delay: 0.2s; }
.waveform span:nth-child(10) { height: 10px; animation-delay: 0.1s; }
@keyframes wave {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ══════════════════════════ TRUST BAR ══════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: var(--bg2);
  padding: 32px 24px;
  text-align: center;
}
.trust-label { color: var(--text3); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
}

/* ══════════════════════════ HOW IT WORKS ══════════════════════════ */
.how-it-works { background: var(--bg2); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  opacity: 0.85;
}
.step.visible, .step:hover { opacity: 1; transform: translateY(-4px); }
.step-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step p { color: var(--text2); font-size: 14px; line-height: 1.7; }
.step-arrow {
  font-size: 28px;
  color: var(--accent);
  padding: 0 16px;
  align-self: center;
  flex-shrink: 0;
}

/* ══════════════════════════ FEATURES ══════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.feature-card.visible, .feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.1);
}
.feature-card.featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
  border-color: rgba(99,102,241,0.35);
  grid-column: span 2;
}
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text2); font-size: 14px; line-height: 1.7; }
.feature-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ══════════════════════════ DEMO ══════════════════════════ */
.demo-section { background: var(--bg2); }
.demo-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.demo-text { flex: 1; }
.demo-text h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 12px 0 16px; }
.demo-text p { color: var(--text2); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

.demo-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.demo-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.demo-feature span { color: var(--green); font-size: 18px; }

.demo-call-btn { font-size: 16px; padding: 16px 32px; }
.demo-note { color: var(--text3); font-size: 12px; margin-top: 12px; }

.demo-visual { flex: 1; }
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.demo-card-header {
  display: flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.1);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  font-size: 13px; font-weight: 600; color: var(--accent);
}
.demo-indicator {
  width: 10px; height: 10px;
  background: var(--green); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.demo-metrics {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border2);
}
.dm {
  flex: 1;
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border2);
}
.dm:last-child { border-right: none; }
.dm-value { display: block; font-size: 22px; font-weight: 800; color: var(--accent); }
.dm-label { font-size: 11px; color: var(--text3); font-weight: 500; }

.demo-transcript { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.dt-header { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); margin-bottom: 4px; }
.dt-line { display: flex; flex-direction: column; gap: 3px; }
.dt-who { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.aria-line .dt-who { color: var(--accent); }
.caller-line .dt-who { color: var(--text3); }
.dt-text { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ══════════════════════════ PRICING ══════════════════════════ */
.pricing-wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pricing-card {
  flex: 1.2;
  min-width: 300px;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.06));
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 60px rgba(99,102,241,0.12);
}
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.pricing-name { font-size: 14px; font-weight: 600; color: var(--text2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 12px; }
.price-dollar { font-size: 28px; font-weight: 800; color: var(--text2); padding-bottom: 8px; }
.price-amount { font-size: 72px; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-period { font-size: 16px; color: var(--text2); padding-bottom: 12px; }
.pricing-desc { color: var(--text2); font-size: 15px; margin-bottom: 28px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.pricing-features li span { color: var(--green); font-size: 18px; flex-shrink: 0; }

.pricing-btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.pricing-guarantee { color: var(--text3); font-size: 13px; text-align: center; margin-top: 16px; }

.pricing-compare {
  flex: 1;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
}
.pricing-compare h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 14px;
}
.compare-row:last-of-type { border-bottom: none; }
.compare-cost { font-weight: 700; }
.compare-cost.bad { color: var(--red); }
.compare-cost.good { color: var(--green); font-size: 18px; }
.compare-divider { height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); margin: 8px 0; border-radius: 2px; }
.compare-row.highlight { padding: 16px 0; }
.compare-savings {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--green);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
}

/* ══════════════════════════ TESTIMONIALS ══════════════════════════ */
.testimonials { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card.visible, .testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; }
.testimonial-card p { color: var(--text2); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.author-name { display: block; font-weight: 700; font-size: 14px; }
.author-role { display: block; font-size: 12px; color: var(--text3); }

/* ══════════════════════════ CTA / BOOKING ══════════════════════════ */
.cta-section {
  background: radial-gradient(ellipse at top, rgba(99,102,241,0.08) 0%, transparent 70%);
}
.cta-inner { display: flex; gap: 64px; align-items: flex-start; }
.cta-text { flex: 1; }
.cta-text h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 12px 0 16px; }
.cta-text p { color: var(--text2); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }

.cta-extras { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cta-extra { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.cta-extra span { color: var(--green); }

.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.contact-link:hover { color: var(--accent2); }

.booking-widget { flex: 1; }
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.booking-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.booking-card > p { color: var(--text2); font-size: 14px; margin-bottom: 28px; }

.booking-form { display: flex; flex-direction: column; gap: 14px; }
.booking-form input,
.booking-form select {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.booking-form input::placeholder { color: var(--text3); }
.booking-form input:focus,
.booking-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.booking-form select option { background: var(--bg3); }

.booking-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px;
}
.success-icon { font-size: 56px; }
.booking-success h4 { font-size: 22px; font-weight: 800; }
.booking-success p { color: var(--text2); }

/* ══════════════════════════ FOOTER ══════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 64px 0 32px;
}
.footer-top { display: flex; gap: 64px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex: 1.5; min-width: 240px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text3); font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-phone, .footer-email {
  display: block;
  color: var(--text2);
  font-size: 14px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-phone:hover, .footer-email:hover { color: var(--accent); }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); margin-bottom: 4px; }
.footer-col a { color: var(--text2); font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text3);
  font-size: 13px;
}

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-content { max-width: 100%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .feature-card.featured { grid-column: span 1; }
  .demo-inner { flex-direction: column; }
  .cta-inner { flex-direction: column; }
  .pricing-wrapper { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 40px; }
}

@media (max-width: 480px) {
  .phone-card { width: 100%; max-width: 340px; }
  .booking-card { padding: 24px; }
  .pricing-card { padding: 28px; }
  .price-amount { font-size: 56px; }
}
