/* ============================================================
   ClawdTalk Pro — Complete Landing CSS
   Rebuilt from the live clawdtalk.com design
   ============================================================ */

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

:root {
  --green: #00E3AA;
  --red: #FF4444;
  --bg: #09090b;
  --bg-card: #111111;
  --bg-card2: #141414;
  --border: #1E1E1E;
  --border-light: #222222;
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #555555;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: 80px; }

/* ── Typography ───────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.65;
}
.section-phone-link {
  color: var(--green);
  text-decoration: none;
}
.section { padding: 96px 0; }
.section-alt { background: #0d0d0d; }
.section-dark { background: #060608; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { background: #00c99a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,227,170,0.25); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid #333;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: #555; background: rgba(255,255,255,0.05); }
.btn-lg { font-size: 16px; padding: 15px 32px; }
.btn-full { display: block; width: 100%; text-align: center; }

/* ── Colour helpers ───────────────────────────────────────── */
.green { color: var(--green); }
.red   { color: var(--red); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.navbar.scrolled { border-color: var(--border); }
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.nav-logo-img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-auth { display: flex; align-items: center; gap: 8px; }
.nav-login { color: var(--text-muted); font-size: 14px; font-weight: 500; padding: 8px 14px; transition: color 0.2s; }
.nav-login:hover { color: #fff; }
.nav-cta {
  background: var(--green);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #00c99a; }
.mobile-auth-link { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-auth { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #0d0d0d;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 14px; font-size: 15px; color: #ccc; }
  .mobile-auth-link { display: block; color: var(--green) !important; font-weight: 700 !important; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,227,170,0.06) 0%, transparent 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: #aaa;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.phone-cta-text { font-weight: 600; }
.hero-phone .phone-number, .hero-phone a {
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 14px;
}

/* Hero Widget */
.hero-widget { position: relative; }
.hw-phone {
  background: #111;
  border: 1px solid #222;
  border-radius: 28px;
  padding: 24px;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.hw-notch {
  width: 80px; height: 6px;
  background: #1a1a1a;
  border-radius: 3px;
  margin: 0 auto 20px;
}
.hw-screen { padding: 4px 0; }
.hw-call-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hw-call-icon {
  width: 42px; height: 42px;
  background: rgba(0,227,170,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hw-call-name { display: block; font-weight: 700; font-size: 15px; color: #fff; }
.hw-call-status { display: block; font-size: 12px; color: var(--green); }
.hw-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 20px;
  padding: 0 8px;
}
.hw-wave {
  flex: 1;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.8;
  animation: wave-pulse 1.2s ease-in-out infinite;
}
.hw-wave:nth-child(1) { height: 20%; animation-delay: 0s; }
.hw-wave:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.hw-wave:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.hw-wave:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.hw-wave:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.hw-wave:nth-child(6) { height: 45%; animation-delay: 0.5s; }
.hw-wave:nth-child(7) { height: 20%; animation-delay: 0.6s; }
@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1; }
}
.hw-transcript { display: flex; flex-direction: column; gap: 8px; }
.hw-transcript-line {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.hw-user { background: rgba(255,255,255,0.06); color: #ddd; align-self: flex-end; max-width: 85%; }
.hw-bot  { background: rgba(0,227,170,0.12); color: #aafce8; align-self: flex-start; max-width: 85%; }

@media (max-width: 860px) {
  .hero { padding-top: 100px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { display: flex; justify-content: center; align-items: center; }
  .hero-widget > div { width: 100%; max-width: 360px; }
  .hero-content { max-width: 100%; }
}

/* ── Before / After Slider ────────────────────────────────── */
.ba-slider {
  position: relative;
  display: flex;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  user-select: none;
  cursor: ew-resize;
  background: #0a0a0a;
}
.ba-before, .ba-after {
  position: absolute;
  top: 0; bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ba-before { left: 0; width: 50%; }
.ba-after  { right: 0; left: 50%; }
.ba-label {
  position: absolute;
  top: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}
.ba-label-before { left: 16px; background: rgba(255,68,68,0.15); color: #ff6666; border: 1px solid rgba(255,68,68,0.3); }
.ba-label-after  { left: 16px; background: rgba(0,227,170,0.15); color: var(--green); border: 1px solid rgba(0,227,170,0.3); }
.ba-panel { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 24px 24px; }

/* Phone frames in B/A */
.ba-phone-frame {
  width: 200px;
  background: #1a1a1a;
  border-radius: 28px;
  border: 1px solid #2a2a2a;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.ba-notch { width: 60px; height: 5px; background: #222; border-radius: 3px; margin: 0 auto 14px; }
.ba-time-bar { display: flex; justify-content: space-between; font-size: 10px; color: #666; margin-bottom: 12px; }
.ba-battery { color: #ff6666; }
.ba-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.ba-app-icon { display: flex; flex-direction: column; align-items: center; gap: 3px; position: relative; }
.ba-icon-bg { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ba-icon-telegram { background: #229ed9; }
.ba-icon-slack    { background: #4a154b; }
.ba-icon-discord  { background: #5865f2; }
.ba-icon-whatsapp { background: #25d366; }
.ba-icon-imessage { background: #34c759; }
.ba-icon-email    { background: #555; }
.ba-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.ba-app-name { font-size: 9px; color: #888; }
.ba-notif-stack { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.ba-notif-card {
  background: #222;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ba-notif-faded { opacity: 0.4; }
.ba-notif-app { font-size: 9px; font-weight: 700; color: #888; }
.ba-notif-msg { font-size: 9px; color: #bbb; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ba-status-row { display: flex; align-items: center; gap: 6px; }
.ba-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ba-dot-red   { background: var(--red); box-shadow: 0 0 6px var(--red); }
.ba-dot-green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.ba-status-text { font-size: 9px; color: #888; }

/* After phone */
.ba-screen-after { display: flex; flex-direction: column; gap: 10px; }
.ba-call-header { display: flex; align-items: center; gap: 8px; }
.ba-call-icon { font-size: 18px; }
.ba-call-info { display: flex; flex-direction: column; }
.ba-call-name { font-size: 12px; font-weight: 700; color: #fff; }
.ba-call-time { font-size: 10px; color: var(--green); }
.ba-waveform {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; height: 36px;
}
.ba-wave {
  flex: 1; background: var(--green); border-radius: 2px;
  animation: wave-pulse 1.2s ease-in-out infinite;
}
.ba-wave:nth-child(1) { height: 25%; animation-delay: 0s; }
.ba-wave:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.ba-wave:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.ba-wave:nth-child(4) { height: 100%; animation-delay: 0.15s; }
.ba-wave:nth-child(5) { height: 70%; animation-delay: 0.25s; }
.ba-wave:nth-child(6) { height: 45%; animation-delay: 0.35s; }
.ba-wave:nth-child(7) { height: 20%; animation-delay: 0.45s; }
.ba-voice-bubble { background: rgba(0,227,170,0.1); border: 1px solid rgba(0,227,170,0.2); border-radius: 8px; padding: 8px 10px; font-size: 10px; color: #ccc; line-height: 1.4; font-style: italic; }
.ba-done-row { display: flex; align-items: center; gap: 6px; }
.ba-done-check { color: var(--green); font-size: 14px; font-weight: 700; }
.ba-done-text { font-size: 11px; color: #eee; font-weight: 600; }

/* Divider handle */
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--green);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(0,227,170,0.4);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ba-slider { height: 340px; }
  .ba-phone-frame { width: 150px; }
}

/* ── How It Works ─────────────────────────────────────────── */
.architecture-diagram {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.architecture-diagram img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 70vw;
  height: auto;
}

/* ── Global media max-width ─────────────────────────────── */
.ctlp-cage img,
.ctlp-cage video,
.ctlp-cage iframe {
  max-width: 70vw;
  height: auto;
}

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: #333; transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.feature-code {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  background: rgba(0,227,170,0.06);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,227,170,0.12);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Use Cases Carousel ───────────────────────────────────── */
.carousel-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.carousel-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.carousel-tab.active,
.carousel-tab:hover { background: var(--green); color: #000; border-color: var(--green); }
.carousel-track { position: relative; }
.carousel-slide { display: none; justify-content: center; }
.carousel-slide.active { display: flex; }

.phone-mockup-carousel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 360px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.phone-notch { width: 80px; height: 6px; background: #1a1a1a; border-radius: 3px; margin: 16px auto 0; }
.phone-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.phone-caller { font-size: 14px; font-weight: 700; color: var(--green); }
.phone-duration { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.chat-bubbles {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 85%;
}
.bubble-user {
  background: rgba(255,255,255,0.07);
  color: #ddd;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble-bot {
  background: rgba(0,227,170,0.1);
  border: 1px solid rgba(0,227,170,0.15);
  color: #aafce8;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* ── The Number ───────────────────────────────────────────── */
.number-display {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.number-phone {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  text-align: center;
  min-width: 260px;
}
.number-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; }
.number-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: block;
}
.phone-value { font-family: var(--font-mono); }
.number-dialpad {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dialpad-key {
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  animation: dialpad-glow 2.4s ease-in-out infinite;
}
.dialpad-key:nth-child(1) { animation-delay: 0.0s; }
.dialpad-key:nth-child(2) { animation-delay: 0.2s; }
.dialpad-key:nth-child(3) { animation-delay: 0.4s; }
.dialpad-key:nth-child(4) { animation-delay: 0.6s; }
.dialpad-key:nth-child(5) { animation-delay: 0.8s; }
.dialpad-key:nth-child(6) { animation-delay: 1.0s; }
.dialpad-key:nth-child(7) { animation-delay: 1.2s; }
@keyframes dialpad-glow {
  0%, 80%, 100% { border-color: var(--border); color: #888; }
  40% { border-color: var(--green); color: var(--green); box-shadow: 0 0 12px rgba(0,227,170,0.3); }
}
.dialpad-key small { font-size: 8px; color: #555; font-weight: 400; line-height: 1; }
.number-note { text-align: center; max-width: 560px; margin: 0 auto; font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 40px;
}
.pricing-toggle-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1E1E1E;
  color: #888;
  font-family: inherit;
}
.pricing-toggle-btn:hover { color: #ccc; }
.pricing-toggle-btn.active { background: var(--green); color: #000; font-weight: 700; }
.pricing-save-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid currentColor;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card-highlighted {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(0,227,170,0.1);
  transform: scale(1.03);
}
.pricing-card-highlighted:hover { transform: scale(1.03) translateY(-2px); }
.pricing-popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  display: flex; align-items: center; gap: 4px;
}
.pricing-card-header { text-align: center; padding: 32px 28px 16px; }
.pricing-card-highlighted .pricing-card-header { padding-top: 40px; }
.pricing-tier { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.pricing-price-row { margin-bottom: 8px; }
.pricing-amount { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: #fff; }
.pricing-period { font-size: 16px; font-weight: 400; color: #888; }
.pricing-desc { font-size: 14px; color: #888; margin: 4px 0 0; }
.pricing-setup { font-size: 12px; color: #666; margin-top: 6px; }
.pricing-savings { margin-bottom: 4px; }
.pricing-savings-badge {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  padding: 2px 10px;
}
.pricing-card-body { padding: 16px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.pricing-features-list { flex: 1; margin-bottom: 24px; }
.pricing-feature {
  display: flex; align-items: center;
  gap: 10px; padding: 5px 0;
  font-size: 14px; color: #ccc;
}
.pricing-feature.pricing-limitation { opacity: 0.5; }
.pricing-check, .pricing-x { flex-shrink: 0; }
.pricing-overages { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.pricing-overages-title { font-size: 12px; font-weight: 600; color: #888; margin-bottom: 6px; }
.pricing-overage-item { font-size: 12px; color: #666; line-height: 1.6; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card-highlighted { transform: none; }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: #333; }
.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item[open] .faq-answer { max-height: 500px; padding: 0 24px 24px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: #ccc; }
.form-group input,
.form-group textarea,
.form-group select {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,227,170,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.required { color: var(--red); }
.form-consent { margin-bottom: 20px; }
.consent-label { display: flex; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.consent-label input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; accent-color: var(--green); }
.consent-label a { color: var(--green); text-decoration: underline; }
.form-success,
.form-error {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.form-success { background: rgba(0,227,170,0.1); color: var(--green); border: 1px solid rgba(0,227,170,0.2); }
.form-error   { background: rgba(255,68,68,0.1); color: #ff8888; border: 1px solid rgba(255,68,68,0.2); }
.success-icon { font-size: 18px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrapper { padding: 24px; } }

/* ── CTA Banner ───────────────────────────────────────────── */
.section-cta {
  background: radial-gradient(ellipse at 50% 50%, rgba(0,227,170,0.08) 0%, transparent 60%);
  text-align: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; max-width: 400px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 32px; }
.cta-phone { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-muted); }
.cta-phone-number { color: var(--green); font-weight: 700; font-family: var(--font-mono); font-size: 16px; }
.cta-powered { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: #555; }
.cta-powered img { opacity: 0.5; filter: brightness(0) invert(1); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #060608;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 220px; }
.footer-sub-powered { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #444; }
.footer-sub-powered img { opacity: 0.3; filter: brightness(0) invert(1); height: 11px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #666; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-address { font-size: 12px; color: #444; line-height: 1.6; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-powered { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #444; }
.footer-powered-label { font-size: 12px; color: #444; }
.footer-powered img { opacity: 0.3; filter: brightness(0) invert(1); height: 14px; }
.footer-copy { font-size: 13px; color: #444; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.revealed { opacity: 1; transform: none; }

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
button:focus-visible, a:focus-visible, input:focus-visible { box-shadow: 0 0 0 3px rgba(0,227,170,0.3); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Legal Disclaimer ─────────────────────────────────────── */
.legal-disclaimer { font-size: 10px; color: #666; margin-top: 16px; line-height: 1.5; max-width: 500px; margin-left: auto; margin-right: auto; }
.legal-disclaimer a { color: #888; text-decoration: underline; }
.legal-disclaimer a:hover { color: var(--green); }
