/* ============================================================
   AR SAFETY SUPPORT — Stylesheet
   Clean corporate: navy + green + white
   ============================================================ */

:root {
  /* Brand colors (pulled from logo) */
  --navy-900: #0a1f3d;
  --navy-800: #0b2545;
  --navy-700: #13325f;
  --navy-600: #1d4ed8;
  --blue-500: #2563eb;
  --green-600: #2ea043;
  --green-500: #3fb950;
  --orange-500: #f59e0b;
  --yellow-500: #fbbf24;

  /* Neutrals */
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-100: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-cream: #fafaf7;
  --line: #e5e7eb;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(10, 31, 61, 0.18);
  --shadow-xl: 0 32px 64px -24px rgba(10, 31, 61, 0.25);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ====== LAYOUT ====== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--navy-900); color: #e6eefb; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 16px;
}
.section-tag.light { color: var(--green-500); }
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.section-title .muted { color: var(--ink-500); display: block; }
.section-title.light { color: #fff; }
.section-title.light .muted { color: rgba(255,255,255,0.55); }
.section-lede { margin-top: 18px; color: var(--ink-500); font-size: 17px; max-width: 600px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, var(--shadow-md);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--ink-300);
}
.btn-outline:hover { border-color: var(--navy-800); background: var(--bg-soft); }

.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--navy-800); }
.btn-ghost svg { transition: transform .2s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ====== HEADER ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 4px 0;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--navy-800); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--green-500);
  transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--ink-300);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink-700);
  transition: border-color .15s, color .15s;
}
.lang-toggle:hover { border-color: var(--navy-800); color: var(--navy-800); }
.lang-toggle .lang-sep { color: var(--ink-300); margin: 0 4px; }
[data-lang="en"] .lang-toggle .lang-en { color: var(--navy-800); font-weight: 700; }
[data-lang="ru"] .lang-toggle .lang-ru { color: var(--navy-800); font-weight: 700; }

.menu-btn { display: none; background: none; border: 0; padding: 8px; flex-direction: column; gap: 5px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--navy-900); }

/* ====== HERO ====== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 37, 69, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 37, 69, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}
.hero-gradient {
  position: absolute;
  right: -20%;
  top: -20%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(46, 160, 67, 0.10) 0%, transparent 70%);
  filter: blur(20px);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(46, 160, 67, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 160, 67, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(46, 160, 67, 0); }
}

.hero-title {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.hero-title span { display: block; }
.title-accent {
  color: var(--green-600);
  font-style: italic;
  font-variation-settings: "opsz" 144;
}

.hero-sub {
  margin-top: 24px;
  max-width: 540px;
  font-size: 18px;
  color: var(--ink-700);
  line-height: 1.65;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.trust-item span { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.05em; }

/* ====== PHONE MOCKUP ====== */
.hero-visual { display: flex; justify-content: center; align-items: center; perspective: 1500px; }
.phone-frame {
  width: 320px;
  height: 640px;
  background: linear-gradient(160deg, #1f2937, #0f172a);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 50px 100px -20px rgba(10, 31, 61, 0.45),
    0 30px 60px -30px rgba(10, 31, 61, 0.4),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-3deg) rotateY(-8deg);
  transition: transform .5s ease;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: rotate(-3deg) rotateY(-8deg) translateY(0); }
  50% { transform: rotate(-3deg) rotateY(-8deg) translateY(-12px); }
}
.phone-screen {
  width: 100%; height: 100%;
  background: #17212b;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tg-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: #2b5278;
  color: #fff;
  padding-top: 36px;
}
.tg-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tg-meta { display: flex; flex-direction: column; line-height: 1.2; }
.tg-meta strong { font-size: 14px; font-weight: 600; }
.tg-online { font-size: 11px; color: #7dd3fc; }
.tg-chat {
  flex: 1;
  background: #0e1621;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(125, 211, 252, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(46, 160, 67, 0.04) 0%, transparent 50%);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.tg-msg {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  animation: msg-in .5s ease both;
}
.tg-msg.in { background: #182533; border-bottom-left-radius: 4px; align-self: flex-start; }
.tg-msg.out { background: #2b5278; border-bottom-right-radius: 4px; align-self: flex-end; }
.tg-msg:nth-child(1) { animation-delay: .2s; }
.tg-msg:nth-child(2) { animation-delay: .9s; }
.tg-msg:nth-child(3) { animation-delay: 1.7s; }
.tg-msg:nth-child(4) { animation-delay: 2.4s; }

.tg-quick {
  background: transparent !important;
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 !important; max-width: 100%;
}
.qr {
  background: rgba(46, 160, 67, 0.15);
  border: 1px solid rgba(46, 160, 67, 0.4);
  color: #4ade80;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.tg-typing {
  display: flex; gap: 4px;
  padding: 10px 14px;
  background: #182533;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation: msg-in .5s ease both;
  animation-delay: 3s;
}
.tg-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typing 1.4s ease-in-out infinite;
}
.tg-typing span:nth-child(2) { animation-delay: 0.2s; }
.tg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== STRIP ====== */
.strip {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.strip-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-logos span:nth-child(even) { color: rgba(255,255,255,0.25); }

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}
.service-card.highlight {
  background: linear-gradient(180deg, #fff, #f0fdf4);
  border-color: var(--green-500);
}
.service-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 2px solid var(--navy-800);
  padding: 36px 32px;
  position: relative;
}
.service-card-wide ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-300);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.service-card p {
  color: var(--ink-700);
  font-size: 15px;
  margin-bottom: 18px;
}
.service-card ul li {
  font-size: 14px;
  color: var(--ink-700);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}

/* ====== STEPS ====== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--ink-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--bg-soft);
}
.step h3 { font-size: 19px; margin-bottom: 8px; color: var(--navy-900); }
.step p { font-size: 14px; color: var(--ink-700); }

/* ====== PRICING ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: var(--navy-900);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.price-card header { margin-bottom: 24px; }
.plan-name { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.plan-desc { display: block; font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.price-card.featured .plan-desc { color: rgba(255,255,255,0.55); }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-card.featured .price { border-color: rgba(255,255,255,0.1); }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price-period { font-size: 14px; color: var(--ink-500); }
.price-card.featured .price-period { color: rgba(255,255,255,0.55); }

.plan-features { flex: 1; margin-bottom: 28px; }
.plan-features li {
  font-size: 14px;
  padding: 9px 0 9px 26px;
  position: relative;
  color: var(--ink-700);
}
.price-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--green-500);
  border-bottom: 2px solid var(--green-500);
  transform: rotate(-45deg);
}

/* CDL Legal banner */
.legal-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 36px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
}
.legal-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46, 160, 67, 0.25) 0%, transparent 65%);
}
.legal-banner-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  flex-shrink: 0;
}
.legal-banner-copy h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}
.legal-banner-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.legal-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.legal-bullets li {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding-left: 18px;
  position: relative;
}
.legal-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}
.legal-banner-cta { position: relative; z-index: 2; text-align: center; }
.legal-price { margin-bottom: 18px; }
.legal-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}
.legal-period { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: -4px; }
.legal-note { display: block; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* Add-ons */
.addons h3 { font-size: 22px; margin-bottom: 24px; color: var(--navy-900); }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.addon {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.addon strong { font-family: var(--font-display); font-size: 18px; color: var(--navy-900); }
.addon .muted { color: var(--ink-500); font-size: 12px; }

/* ====== ABOUT ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.about-copy p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-top: 18px;
  line-height: 1.7;
  max-width: 580px;
}
.title-accent-light {
  display: block;
  color: var(--green-500);
  font-style: italic;
}
.about-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  justify-content: start;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-stats > div { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.about-stats span { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.about-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
}
.about-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--green-500);
  line-height: 1;
  opacity: 0.4;
}
.card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--green-500);
  display: block;
  margin-bottom: 16px;
}
.about-card p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
}
.card-sig { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.sig-line { width: 32px; height: 1px; background: var(--green-500); }
.card-sig span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ====== FAQ ====== */
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--navy-800); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--green-600);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-item p {
  padding: 0 24px 24px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.7;
}

/* ====== CTA ====== */
.section-cta {
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
.cta-title span { display: block; }
.cta-inner p { color: var(--ink-700); font-size: 18px; margin-top: 16px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-or { font-family: var(--font-mono); font-size: 12px; color: var(--ink-500); letter-spacing: 0.05em; text-transform: uppercase; }
.phone-link {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.phone-link:hover { color: var(--green-600); }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-logo { width: 50px; height: 50px; }

.footer-col h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--green-500); }
.footer-meta { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-fineprint { max-width: 720px; line-height: 1.6; }

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
  .site-nav, .header-actions .btn { display: none; }
  .menu-btn { display: flex; }
  .header-actions { gap: 10px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .phone-frame { transform: rotate(0) rotateY(0) scale(0.85); animation: none; }
  @keyframes phone-float-mobile { 0%,100% { transform: rotate(0) scale(0.85); } 50% { transform: rotate(0) scale(0.85) translateY(-8px); } }
  .phone-frame { animation: phone-float-mobile 6s ease-in-out infinite; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid, .pricing-grid, .addons-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { gap: 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .legal-banner { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; text-align: left; }
  .legal-banner-icon { margin: 0; }
  .legal-bullets { grid-template-columns: 1fr; }
  .service-card-wide ul { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .header-inner { height: 64px; }
  .brand-text em { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 48px 0 80px; }
  .phone-frame { width: 280px; height: 560px; }
  .price-card, .service-card { padding: 28px 24px; }
}

/* ====== MOBILE MENU OPEN STATE ====== */
.site-header.menu-open .site-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  flex-direction: column;
  padding: 24px;
  gap: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.site-header.menu-open .site-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.site-header.menu-open .site-nav a:last-child { border-bottom: 0; }
