/* ═══════════════════════════════════════════════════════════
   ELLIOTT-IT-SERVICES — v5
   Aesthetic: Precision-tech dark. Scanline grid, electric
   cyan, confident display type, cinematic depth.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --accent:       #00e5ff;
  --accent-dim:   #00b8cc;
  --accent-glow:  0 0 32px rgba(0,229,255,0.5);
  --accent-soft:  rgba(0,229,255,0.07);
  --accent-line:  rgba(0,229,255,0.15);

  --bg:           #05080f;
  --bg-alt:       #090d16;
  --bg-card:      #0d1320;
  --bg-card-h:    #111928;
  --bg-glass:     rgba(13,19,32,0.7);

  --border:       rgba(0,229,255,0.12);
  --border-dim:   rgba(255,255,255,0.055);

  --text:         #dff4ff;
  --text-dim:     #7bafc2;
  --text-muted:   #3d5a6a;

  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;

  --ease:  cubic-bezier(0.4,0,0.2,1);
  --t:     0.28s var(--ease);

  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  --max-w: 1120px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── BASE ─────────────────────────────────────────────────── */
body {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 62px;
  /* layered background: glow spots + subtle dot grid */
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(0,229,255,0.045) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 80%, rgba(0,160,220,0.03) 0%, transparent 60%),
    radial-gradient(rgba(0,229,255,0.055) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
}

/* ── ACCESSIBILITY ────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 10px;
  background: var(--accent); color: #000;
  padding: 8px 18px; font-weight: 700; border-radius: 4px; z-index: 10000;
}
.skip-link:focus { left: 10px; }

/* ─────────────────────────────────────────────────────────────
   STICKY NAV
───────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 62px;
  background: rgba(5,8,15,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-dim);
  display: flex; align-items: center;
  padding: 0 28px; gap: 20px;
}

/* thin accent line under nav */
.site-nav::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}

.nav-logo {
  font-family: var(--font-d);
  font-weight: 800; font-size: 1rem;
  color: var(--accent); text-decoration: none;
  letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--text-dim); font-weight: 400; }

.nav-links {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 2px 2px; list-style: none; flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-dim); font-size: 0.8rem; font-weight: 500;
  text-decoration: none; padding: 5px 9px; border-radius: 6px;
  white-space: nowrap; transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent); background: var(--accent-soft);
}

.nav-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  background: var(--accent); color: #000 !important;
  font-weight: 700 !important; font-size: 0.8rem !important;
  padding: 7px 16px !important; border-radius: 999px !important;
  white-space: nowrap; text-decoration: none;
  box-shadow: 0 0 20px rgba(0,229,255,0.35);
  transition: var(--t) !important;
}
.nav-cta:hover {
  background: #2cf0ff !important;
  box-shadow: 0 0 32px rgba(0,229,255,0.6) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
}
.nav-toggle:hover { border-color: var(--border); background: var(--accent-soft); }

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────
   HERO / HEADER
───────────────────────────────────────────────────────────── */
header {
  position: relative;
  padding: 120px 24px 100px;
  text-align: center;
  overflow: hidden;
  background: url('poster-image.jpg') center/cover no-repeat;
  isolation: isolate;
}

/* Deep cinematic overlay */
header::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg,
      rgba(5,8,15,0.78) 0%,
      rgba(5,8,15,0.88) 55%,
      rgba(5,8,15,1) 100%);
}

/* Corner bracket top-left */
header::after {
  content: ""; position: absolute;
  top: 24px; left: 24px; z-index: 1;
  width: 80px; height: 80px;
  border-top: 1.5px solid rgba(0,229,255,0.3);
  border-left: 1.5px solid rgba(0,229,255,0.3);
}

/* Corner bracket bottom-right */
.header-corner-br {
  position: absolute;
  bottom: 24px; right: 24px; z-index: 1;
  width: 80px; height: 80px;
  border-bottom: 1.5px solid rgba(0,229,255,0.3);
  border-right: 1.5px solid rgba(0,229,255,0.3);
  pointer-events: none;
}

.header-content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  animation: heroUp 0.85s cubic-bezier(0.16,1,0.3,1) both;
}

.header-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 14px;
  margin-bottom: 22px;
}
.header-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0; animation: pulse 2s ease infinite;
}

header h1 {
  font-family: var(--font-d);
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.035em; color: var(--text);
  margin-bottom: 18px;
}
.accent-word { color: var(--accent); }

.hero-sub {
  font-size: clamp(0.97rem, 1.8vw, 1.18rem);
  color: var(--text-dim); font-weight: 300; line-height: 1.65;
  max-width: 580px; margin: 0 auto 34px;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #000;
  font-family: var(--font-b); font-size: 0.93rem; font-weight: 700;
  padding: 13px 28px; border-radius: 999px;
  text-decoration: none; transition: var(--t);
  box-shadow: 0 0 24px rgba(0,229,255,0.32);
}
.btn-primary:hover {
  background: #2cf0ff;
  box-shadow: 0 0 42px rgba(0,229,255,0.65);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: var(--font-b); font-size: 0.93rem; font-weight: 500;
  padding: 12px 26px; border-radius: 999px;
  border: 1px solid var(--border-dim);
  text-decoration: none; transition: var(--t);
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-soft); transform: translateY(-2px);
}

/* generic .btn and .badge used inside content */
.btn, .book-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #000;
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 700;
  padding: 11px 24px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--t); box-shadow: 0 0 18px rgba(0,229,255,0.25);
}
.btn:hover, .book-btn:hover {
  background: #2cf0ff; transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,229,255,0.5);
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--accent);
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 600;
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none; transition: var(--t);
}
.badge:hover {
  background: var(--accent-soft); border-color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────────────────────── */
section {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto; text-align: center;
}

.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

h2 {
  font-family: var(--font-d);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 14px; line-height: 1.2;
}

h3 {
  font-family: var(--font-d);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em; color: var(--accent);
  margin-bottom: 10px;
}

section > p {
  color: var(--text-dim); max-width: 660px;
  margin: 0 auto 36px; font-size: 1rem;
}

/* ── STAT STRIP ────────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  border-radius: var(--r); overflow: hidden;
  margin: 56px auto 0; max-width: 900px;
  gap: 1px;
}

.stat-item {
  background: var(--bg-card);
  padding: 30px 16px; text-align: center;
  transition: background var(--t);
}
.stat-item:hover { background: var(--bg-card-h); }

.stat-number {
  font-family: var(--font-d);
  font-size: 2.4rem; font-weight: 800;
  color: var(--accent); line-height: 1;
  letter-spacing: -0.05em; display: block; margin-bottom: 7px;
}
.stat-label {
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.09em;
}

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 18px; margin-top: 40px; text-align: left;
}

.service {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 26px 24px;
  position: relative; overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), background var(--t);
}

/* Top accent line reveals on hover */
.service::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0,229,255,0.2) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  background: var(--bg-card-h);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.service:hover::before { transform: scaleX(1); }

.service h3 { font-size: 1.02rem; margin-bottom: 9px; }
.service p  { color: var(--text-dim); font-size: 0.92rem; line-height: 1.65; margin: 0; }

.service-link { color: inherit; text-decoration: none; }
.service-link:hover { color: var(--accent); }
.link-accent { color: var(--accent); text-decoration: none; }
.link-accent:hover { text-decoration: underline; }
.text-center { text-align: center; }
.reviews-narrow { max-width: 800px; margin: 0 auto; }

/* service icon badge */
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid var(--border);
  margin-bottom: 16px; font-size: 1.2rem;
}

/* ── TRUST / WHY CARDS ─────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px; margin-top: 40px; text-align: left;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 26px 22px;
  transition: var(--t);
}
.trust-card:hover { border-color: var(--border); background: var(--bg-card-h); }
.trust-card h3 { color: var(--text); font-size: 0.97rem; margin-bottom: 8px; }
.trust-card p  { color: var(--text-dim); font-size: 0.9rem; margin: 0; }

.trust-num {
  font-family: var(--font-d); font-size: 2rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.04em;
}

/* ── REVIEW CARDS ──────────────────────────────────────────── */
.reviews-section {
  max-width: 860px; margin: 0 auto; padding: 80px 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px; margin-top: 40px;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 28px 26px;
  text-align: left; position: relative; overflow: hidden;
  transition: border-color var(--t), background var(--t);
}

.review::before {
  content: "\201C";
  position: absolute; top: 12px; right: 20px;
  font-size: 5rem; line-height: 1;
  color: var(--accent); opacity: 0.1;
  font-family: Georgia, serif; pointer-events: none;
}

.review:hover { border-color: var(--border); background: var(--bg-card-h); }

.review .star {
  color: #FFB800; font-size: 0.85rem;
  letter-spacing: 3px; display: block; margin-bottom: 14px;
}

.review p  { color: var(--text-dim); font-size: 0.95rem; margin: 0 0 16px; line-height: 1.7; }
.review strong { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px; margin-top: 44px; text-align: left;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.price-card.featured {
  border-color: rgba(0,229,255,0.35);
  background: linear-gradient(150deg, rgba(0,229,255,0.06) 0%, var(--bg-card) 55%);
  box-shadow: 0 0 48px rgba(0,229,255,0.1);
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: 18px; right: 18px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #000;
  background: var(--accent); padding: 3px 10px; border-radius: 999px;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.4);
  border-color: var(--border);
}

.price-card h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 4px; }
.price-card .tagline { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0; }

.price {
  font-family: var(--font-d);
  font-size: 2.8rem; font-weight: 800; color: var(--accent);
  letter-spacing: -0.05em; line-height: 1; margin: 20px 0 24px;
}
.price span { font-size: 0.95rem; font-weight: 400; color: var(--text-dim); letter-spacing: 0; }

.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.price-card ul li {
  color: var(--text-dim); font-size: 0.9rem;
  padding: 9px 0 9px 20px; border-bottom: 1px solid var(--border-dim);
  position: relative;
}
.price-card ul li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 700; font-size: 0.8rem;
}

/* ── HOURS ─────────────────────────────────────────────────── */
.hours-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 34px;
  max-width: 520px; margin: 44px auto 0; text-align: center;
}
.hours-box h3  { color: var(--text); margin-bottom: 18px; font-size: 1.05rem; }
.hours-box p   { color: var(--text-dim); font-size: 0.92rem; margin: 7px 0; }
.out-hours {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border-dim);
  color: var(--text); font-size: 0.88rem; line-height: 1.65;
}

/* ── CONTACT FORM ──────────────────────────────────────────── */
section form {
  max-width: 580px; margin: 36px auto 0; text-align: left;
}
section form label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim); margin: 20px 0 7px;
}
section form input,
section form textarea {
  width: 100%;
  background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: var(--r-sm); color: var(--text);
  font-family: var(--font-b); font-size: 0.96rem;
  padding: 12px 15px; transition: border-color var(--t), box-shadow var(--t);
}
section form input:focus,
section form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
section form textarea { min-height: 130px; resize: vertical; }
section form button {
  margin-top: 22px;
  display: inline-flex; align-items: center;
  background: var(--accent); color: #000;
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 700;
  padding: 13px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: var(--t); box-shadow: 0 0 20px rgba(0,229,255,0.28);
}
section form button:hover {
  background: #2cf0ff; transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0,229,255,0.55);
}

.form-honey {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

.form-success {
  max-width: 580px; margin: 36px auto 0; padding: 24px 28px;
  text-align: center; background: var(--accent-soft);
  border: 1px solid var(--border); border-radius: var(--r);
  color: var(--text);
}
.form-success p { margin: 0; color: var(--text); }

/* ── SOCIAL ────────────────────────────────────────────────── */
.contact-social { text-align: center; margin-top: 30px; }
.contact-social p { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 14px; }
.contact-social a {
  font-size: 1.45rem; margin: 0 10px;
  color: var(--text-dim); text-decoration: none; transition: color var(--t);
}
.contact-social a:hover { color: var(--accent); }

/* ── LIST STYLES ───────────────────────────────────────────── */
section ul {
  list-style: none; padding: 0;
  display: inline-block; text-align: left;
  max-width: 640px; margin: 0 auto 32px; width: 100%;
}
section ul li {
  padding: 9px 0 9px 26px; position: relative;
  color: var(--text-dim); font-size: 0.96rem;
  border-bottom: 1px solid var(--border-dim);
}
section ul li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
section ul li strong { color: var(--text); }

.local-info { font-size: 0.85rem; color: var(--text-muted); margin-top: 24px; }

/* ── SECTION DIVIDER ───────────────────────────────────────── */
.s-divider {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 24px;
  height: 1px; background: var(--border-dim);
}

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg,
    rgba(0,229,255,0.06) 0%, var(--bg-card) 60%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 52px 32px;
  text-align: center; max-width: var(--max-w);
  margin: 0 auto 80px; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute;
  top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p  { margin-bottom: 28px; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-dim);
  padding: 52px 24px 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 800;
  color: var(--accent); margin-bottom: 10px; letter-spacing: -0.02em;
}
.footer-tagline { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 28px; }

.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 18px; margin-bottom: 26px;
}
.footer-links a {
  color: var(--text-dim); font-size: 0.85rem;
  text-decoration: none; transition: color var(--t);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 24px; line-height: 2; }
.footer-contact a { color: var(--accent); text-decoration: none; transition: opacity var(--t); }
.footer-contact a:hover { opacity: 0.8; }

.footer-divider { height: 1px; background: var(--border-dim); margin: 22px 0; }

.footer-copy { color: var(--text-muted); font-size: 0.78rem; line-height: 1.8; }
.footer-small { font-size: 0.75rem; margin-top: 4px; }

/* ── FLOATING BOOK ─────────────────────────────────────────── */
.floating-book {
  position: fixed; bottom: 22px; right: 22px; z-index: 9999;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #000;
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 700;
  padding: 11px 20px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,229,255,0.38), 0 2px 8px rgba(0,0,0,0.35);
  transition: var(--t);
}
.floating-book:hover {
  background: #2cf0ff; transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,229,255,0.6);
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--accent); }
  50%       { box-shadow: 0 0 14px var(--accent), 0 0 24px rgba(0,229,255,0.4); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stat-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 800px) {
  .site-nav { padding: 0 18px; gap: 12px; }
  .nav-links a { font-size: 0.73rem; padding: 4px 6px; }
  header { padding: 100px 20px 80px; }
  section { padding: 64px 18px; }
  .cta-band { padding: 40px 22px; margin-bottom: 60px; }
}
@media (max-width: 600px) {
  .services, .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .review-grid  { grid-template-columns: 1fr; }
  .stat-strip   { grid-template-columns: 1fr 1fr; }
  .floating-book { bottom: 14px; right: 14px; padding: 10px 16px; font-size: 0.8rem; }
  h2 { font-size: 1.6rem; }
}
/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { text-align: left; max-width: 720px; margin: 0 auto; }
.faq-section > h2 { text-align: center; }
.faq-list { margin-top: 36px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--border); }

.faq-item summary {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  padding: 18px 44px 18px 20px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem; font-weight: 400;
  transition: transform var(--t);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent); }

.faq-item p {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.7;
  padding: 0 20px 18px;
  margin: 0;
  max-width: none;
}

.area-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-top: 20px;
}
.area-links a {
  font-size: 0.88rem; padding: 8px 16px;
}

/* 404 page */
.error-section { padding: 60px 24px 80px; text-align: center; max-width: var(--max-w); margin: 0 auto; }
.error-section p { color: var(--text-dim); margin-bottom: 24px; }
.error-countdown { font-size: 0.9rem; color: var(--text-muted); margin-top: 16px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 16px 100px;
    background: rgba(5,8,15,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border-dim);
  }

  .nav-links.is-open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border-bottom: 1px solid var(--border-dim);
  }

  .nav-mobile-cta { display: list-item; margin-top: 16px; border: none !important; }
  .nav-mobile-cta a {
    display: block;
    text-align: center;
    background: var(--accent) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    border: none !important;
    box-shadow: 0 0 24px rgba(0,229,255,0.35);
  }
}

.nav-mobile-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
