/* ============================================================
   Callmeister – KI-Telefonassistentin für Autohaus & Werkstatt
   CI: Digital Mess GmbH | #16273F + #55BDC7
   Fonts: Exo 2 Bold (Headings) + Asap (Body)
   ============================================================ */

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

:root {
  --bg-primary:    #F7F9FC;
  --bg-secondary:  #EEF1F7;
  --bg-card:       #FFFFFF;
  --bg-dark:       #16273F;
  --accent:        #55BDC7;
  --accent-hover:  #44A8B2;
  --accent-soft:   rgba(85, 189, 199, 0.08);
  --accent-glow:   rgba(85, 189, 199, 0.15);
  --accent-gradient: linear-gradient(135deg, #55BDC7, #3EA8B5);
  --navy:          #16273F;
  --navy-soft:     rgba(22, 39, 63, 0.06);
  --text-primary:  #16273F;
  --text-secondary:#4A5568;
  --text-muted:    #8896A6;
  --border:        rgba(22, 39, 63, 0.06);
  --border-strong: rgba(22, 39, 63, 0.12);
  --shadow-sm:     0 1px 3px rgba(22,39,63,0.04), 0 1px 2px rgba(22,39,63,0.06);
  --shadow-md:     0 4px 20px rgba(22,39,63,0.06), 0 2px 8px rgba(22,39,63,0.04);
  --shadow-lg:     0 12px 40px rgba(22,39,63,0.08), 0 4px 16px rgba(22,39,63,0.04);
  --shadow-glow:   0 8px 30px rgba(85,189,199,0.15);
  --font-heading: 'Exo 2', system-ui, sans-serif;
  --font-body:    'Asap', system-ui, sans-serif;
  --section-pad: clamp(80px, 10vw, 120px);
  --container:   min(1200px, 90vw);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  padding-bottom: 72px;
}

.container { width: var(--container); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 620px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(85,189,199,0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(85,189,199,0.3);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 24px; font-size: 0.88rem; }

/* --- Sticky CTA Bar --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -4px 20px rgba(22,39,63,0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}
.sticky-cta-text strong { color: var(--text-primary); }
@media (max-width: 600px) { .sticky-cta-text { display: none; } }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,249,252,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}
.navbar-brand img { height: 34px; width: auto; }
.navbar-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.navbar-nav {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.navbar-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.navbar-nav a:hover { color: var(--text-primary); }
.navbar-cta { padding: 10px 24px; font-size: 0.85rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .navbar-nav {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--bg-primary);
    padding: 40px 5vw;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .navbar-nav.open { transform: translateX(0); }
  .navbar-nav a { font-size: 1.2rem; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
  padding-top: calc(var(--section-pad) + 68px);
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(85,189,199,0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(22,39,63,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 3%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(85,189,199,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(85,189,199,0.2);
}
.hero-title { margin-bottom: 20px; }
.hero-title .highlight {
  color: var(--accent);
}
.hero-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-cta-note { font-size: 0.82rem; color: var(--text-muted); }

/* Hero Image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  width: 400px;
  max-width: 100%;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(145deg, #E2EAF0, #D6EDF0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-image-placeholder .placeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(85,189,199,0.25);
}
.hero-image-placeholder .placeholder-icon svg { width: 40px; height: 40px; color: #fff; }
.hero-image-placeholder .placeholder-text { font-size: 0.82rem; color: var(--text-muted); text-align: center; padding: 0 24px; }

/* Float cards */
.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -16px; left: -24px; }
.hero-float-card.card-2 { top: 20px; right: -30px; animation-delay: 3s; max-width: 220px; }

.hero-float-card .status-dot {
  width: 10px; height: 10px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-float-card .float-text { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.hero-float-card .float-sub { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-cta-note { text-align: center; }
  .hero-visual { margin-top: 32px; }
  .hero-float-card.card-1 { left: 8px; bottom: -8px; }
  .hero-float-card.card-2 { right: 8px; top: 16px; }
}

/* --- Logo Bar --- */
.logo-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-bar-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.logo-bar-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-bar-logos img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: all 0.3s;
}
.logo-bar-logos img:hover { opacity: 1; filter: none; }
.logo-bar-logos .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.logo-bar-logos .logo-text:hover { opacity: 1; }

/* --- DMS Section --- */
.dms-section {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}
.dms-flow {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
}
.flow-step-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.flow-step-icon svg { width: 24px; height: 24px; color: var(--accent); }
.flow-step-icon.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.flow-step h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.flow-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.flow-arrow {
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  color: var(--accent);
  opacity: 0.4;
}
.flow-arrow svg { width: 24px; height: 24px; }
@media (max-width: 700px) {
  .flow-steps { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); padding: 0; margin: -8px 0; }
}

.dms-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.dms-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  min-width: 200px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.dms-badge:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.dms-badge-icon {
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
}
.dms-badge-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.dms-badge-icon svg { width: 32px; height: 32px; color: var(--accent); }
.dms-badge-icon.icon-fallback { background: var(--accent-soft); }
.dms-badge-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.dms-badge-desc { font-size: 0.82rem; color: var(--text-secondary); text-align: center; }
.dms-note {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* --- Inline CTA --- */
.inline-cta {
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.inline-cta p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 20px; }
.inline-cta p strong { color: var(--text-primary); }

/* --- Features --- */
.features-section {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(85,189,199,0.25);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
.feature-stat {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* --- How It Works --- */
.how-section {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(85,189,199,0.25);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; max-width: 280px; margin: 0 auto; }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

/* --- Use Case Timeline --- */
.usecase-section {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}
.usecase-timeline {
  max-width: 700px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 40px;
}
.usecase-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--navy));
  opacity: 0.2;
  border-radius: 1px;
}
.usecase-item {
  position: relative;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.usecase-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 24px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
}
.usecase-item:last-child::before { background: var(--navy); }
.usecase-time {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.usecase-item h4 { font-size: 1rem; margin-bottom: 4px; }
.usecase-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* --- Security --- */
.security-section {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.security-item { text-align: center; padding: 28px 20px; }
.security-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 50%;
  margin-bottom: 16px;
}
.security-icon svg { width: 26px; height: 26px; color: var(--accent); }
.security-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.security-item p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }

/* --- Demo Widget --- */
.demo-section {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}
.demo-wrapper {
  max-width: 700px;
  margin: 36px auto 0;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.demo-placeholder {
  padding: 36px;
  border: 2px dashed var(--border-strong);
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.demo-placeholder code { display: block; margin-top: 10px; font-size: 0.78rem; color: var(--accent); }

/* --- FAQ --- */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* --- CTA Banner --- */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-section * { color: #fff; }
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(85,189,199,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(85,189,199,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 14px; color: #fff; }
.cta-content .section-label { color: var(--accent); }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-buttons .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-buttons .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* --- Footer --- */
.footer {
  padding: 44px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; padding: 3px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-primary); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing-section {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-header h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1.1;
}
.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-cta {
  width: 100%;
  text-align: center;
  display: block;
}
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.pricing-note a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}
