/* ============================================================
   LiraCore – Shared Design System
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg-dark:       #0F1419;
  --bg-card:       #141c2e;
  --bg-card-alt:   #0d1117;
  --primary:       #1A66FF;
  --primary-light: #3d80ff;
  --primary-glow:  rgba(26,102,255,0.18);
  --accent:        #60A5FA;
  --success:       #51CF66;
  --warning:       #FFD43B;
  --danger:        #FF6B6B;
  --text-white:    #F1F5F9;
  --text-gray:     #CBD5E1;
  --text-muted:    #9DA7B8;
  --border:        rgba(255,255,255,0.08);
  --border-blue:   rgba(26,102,255,0.2);
  --shadow-card:   0 20px 60px rgba(0,0,0,0.5);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   9999px;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --nav-h:         96px;
}

/* ── Skip Link (WCAG 2.4.1) ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-gray);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Focus styles (WCAG 2.4.7) ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: 3px;
}
/* High-contrast mode support */
@media (forced-colors: active) {
  :focus-visible { outline: 3px solid ButtonText; }
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.mono { font-family: var(--font-mono); }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1100px;
  border-radius: 9999px;
  height: 60px;
  z-index: 1000;
  background: rgba(15, 20, 25, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: rgba(10, 14, 20, 0.92);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 5rem;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-link.active-page { color: var(--primary-light); }

/* Dropdown chevron button (split from nav-link) */
.nav-dropdown-btn {
  display: flex; align-items: center; padding: 0.45rem 0.3rem;
  color: var(--text-gray); border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; background: none; border: none; cursor: pointer;
}
.nav-dropdown-btn:hover { color: var(--text-white); background: rgba(255,255,255,0.06); }
.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item.drop-open .nav-dropdown-btn svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: #1a2233;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  padding-top: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
/* Bridge pseudo-element prevents gap-triggered mouseleave */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  height: 0.6rem;
  background: transparent;
}
.nav-item:hover .nav-dropdown,
.nav-item.drop-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover {
  color: var(--text-white);
  background: rgba(26,102,255,0.12);
}
.nav-dropdown a svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.nav-dropdown-label {
  padding: 0.4rem 0.75rem 0.25rem;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.15s !important;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--primary-light) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile menu */
/* ── Mobile Menu (right-side panel) ─────────────────────────────── */
.nav-mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: auto;
  width: 100%;
  z-index: 999;
  background-color: var(--bg-dark);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  /* hidden by default via transform; display controlled by media query below */
}
.nav-mobile-menu.open { transform: translateX(0); }

/* Overlay behind mobile panel */
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease; z-index: 998;
}
@media (max-width: 768px) { .nav-mobile-overlay { display: block; } }
.nav-mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mob-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mob-close-btn:hover { background: rgba(255,255,255,0.12); }
.mob-close-btn svg { width: 18px; height: 18px; }

.mob-main-nav {
  margin-top: 4.5rem;
  padding: 2rem 1.75rem 0.5rem;
  flex-shrink: 0;
}
.mob-main-link {
  display: block;
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-white);
  line-height: 1.25;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.25s;
}
.mob-main-link:last-child { border-bottom: none; }
.mob-main-link:hover { color: var(--primary-light); padding-left: 0.4rem; }

.mob-services {
  padding: 1.5rem 1.75rem 0;
  flex-shrink: 0;
}
.mob-services-label {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}
.mob-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.mob-service-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.6rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mob-service-item:hover {
  background: var(--primary-glow);
  border-color: var(--border-blue);
  color: var(--text-white);
}

/* ── Mobile Leistungen Accordion ────────────────────────────── */
.mob-accordion {
  border-bottom: none;
}
/* Header: link + chevron side by side */
.mob-accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mob-accordion-link {
  font-size: clamp(2rem, 9vw, 3rem); font-weight: 800; letter-spacing: -0.04em;
  color: var(--text-white); line-height: 1.25; padding: 0.2rem 0;
  flex: 1; transition: color 0.2s;
}
.mob-accordion-link:hover { color: var(--primary-light); }
.mob-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mob-accordion-trigger:hover { background: rgba(255,255,255,0.08); }
.mob-accordion-chevron {
  width: 28px; height: 28px;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.7;
}
.mob-accordion.open .mob-accordion-chevron { transform: rotate(180deg); }
.mob-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.mob-accordion.open .mob-accordion-panel { grid-template-rows: 1fr; }
.mob-accordion-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.35s ease;
}
.mob-accordion.open .mob-accordion-inner { padding-bottom: 1rem; }
.mob-accordion-inner .mob-services-grid {
  margin-top: 0.75rem;
}

.mob-cta {
  display: block;
  margin: 1.5rem 1.75rem 2rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.mob-cta:hover {
  background: #2272ff;
  box-shadow: 0 0 28px rgba(26,102,255,0.45);
}

/* ── Mobile menu: staggered entrance ─────────────────────────── */
.nav-mobile-menu .mob-main-nav > *,
.nav-mobile-menu .mob-cta {
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-mobile-menu.open .mob-main-nav > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.06s; }
.nav-mobile-menu.open .mob-main-nav > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.nav-mobile-menu.open .mob-main-nav > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.18s; }
.nav-mobile-menu.open .mob-cta { opacity: 1; transform: none; transition-delay: 0.24s; }

/* keep .mob-link for backwards compat on old subpages */
.mob-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--text-white); }
.mob-link svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.mob-section-title {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.5rem 0 0.5rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(26,102,255,0);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,102,255,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; }

/* ── Layout Helpers ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
/* ── Float animation ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float { animation: float 6s ease-in-out infinite; }

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--primary-glow);
  border: 1px solid var(--border-blue);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-label svg { width: 13px; height: 13px; }
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.05em;
  display: inline-block;
}
/* Centered section header utility */
.section-header.centered,
.section-header.text-center {
  text-align: center;
}
.section-header.centered .section-label,
.section-header.text-center .section-label,
.section-header[style*="text-align"] .section-label {
  margin-left: auto;
  margin-right: auto;
}
.section-header.centered .section-subtitle,
.section-header.text-center .section-subtitle,
.section-header[style*="text-align"] .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--primary-glow);
  border: 1px solid var(--border-blue);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 60ch;
}
.hero-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 58ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: var(--font-mono);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  white-space: nowrap;
}
.trust-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(26, 102, 255, 0.2);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; color: var(--primary); }
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text-white);
}
.card p { font-size: 0.9rem; color: var(--text-muted); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ── Comparison Table ───────────────────────────────────────── */
.comparison-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.comparison-table th.col-lira {
  color: var(--primary-light);
}
.comparison-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-gray);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .td-label { font-weight: 600; color: var(--text-white); }
.comparison-table .td-bad  { color: var(--danger); }
.comparison-table .td-good { color: var(--success); font-weight: 600; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, transparent 100%);
}
.process-step:last-child::before { display: none; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  position: relative;
  z-index: 1;
}
.step-body { padding-top: 0.5rem; }
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-blue); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  user-select: none;
}
.faq-q svg {
  width: 18px; height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--primary-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; }

/* ── CTA Block ──────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, rgba(26,102,255,0.12) 0%, rgba(96,165,250,0.06) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,102,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-block p {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1rem;
}
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--warning); fill: var(--warning); }
.testimonial-text {
  font-size: 0.925rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: 0.85rem; color: var(--text-white); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── Features List ──────────────────────────────────────────── */
.features-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}
.feature-row svg {
  width: 18px; height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-row strong { color: var(--text-white); }

/* ── Badge / Tag ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.badge-blue { background: var(--primary-glow); border: 1px solid var(--border-blue); color: var(--accent); }
.badge-green { background: rgba(81,207,102,0.1); border: 1px solid rgba(81,207,102,0.25); color: var(--success); }
.badge-warn { background: rgba(255,212,59,0.1); border: 1px solid rgba(255,212,59,0.25); color: var(--warning); }
.badge-red { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.25); color: var(--danger); }

/* ── Local Map Badge ─────────────────────────────────────────── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(26,102,255,0.1);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.location-badge svg { width: 14px; height: 14px; }

/* ── Two-col split ──────────────────────────────────────────── */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-2.reverse { direction: rtl; }
.split-2.reverse > * { direction: ltr; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #080d13;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-brand-name svg { width: 22px; height: 22px; color: var(--primary); }
.footer-brand-name img { height: 72px !important; width: auto !important; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: 28ch; }
.footer-col h4 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-gray);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-white); }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links-sm { display: flex; gap: 1.5rem; }

/* ── About Photo Hexagon ────────────────────────────────────── */
/* Fixed overlay on desktop (z-index above canvas 20), GSAP-controlled */
.about-hex-wrap {
  position: fixed;
  top: 50%;
  right: clamp(4rem, 15vw, 18%);
  transform: translateY(-50%);
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* On mobile/tablet: hide the fixed overlay – #about-mobile-photo is used instead */
@media (max-width: 1023px) {
  .about-hex-wrap {
    display: none;
  }
}
.about-hex-outer {
  display: inline-block;
  padding: 5px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(26,102,255,0.9) 0%, rgba(59,130,246,0.4) 100%);
  filter: drop-shadow(0 0 28px rgba(26,102,255,0.55)) drop-shadow(0 0 56px rgba(26,102,255,0.22));
  animation: float 7s ease-in-out infinite;
}
.about-hex-inner {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  width: 340px;
  height: 340px;
}
.about-hex-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Orbiting accent dots */
.about-hex-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.about-hex-dot-1 { width: 10px; height: 10px; top: 10%; right: 5%; animation: float 5s 0s ease-in-out infinite; }
.about-hex-dot-2 { width: 6px; height: 6px; bottom: 15%; left: 0%; animation: float 6s 1s ease-in-out infinite; }
.about-hex-dot-3 { width: 8px; height: 8px; top: 60%; right: -2%; animation: float 4s 2s ease-in-out infinite; }

/* ── Device Mockups ─────────────────────────────────────────── */
.device-mockup {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
  background: #0d1117;
}
.device-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1rem;
  background: #161b22;
  border-bottom: 1px solid var(--border);
}
.device-mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.device-mockup-dot:nth-child(1) { background: #ff5f57; }
.device-mockup-dot:nth-child(2) { background: #ffbd2e; }
.device-mockup-dot:nth-child(3) { background: #28c840; }
.device-mockup-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
}
.device-mockup-body {
  overflow: hidden;
}
.device-mockup-body img {
  width: 100%;
  height: auto;
  display: block;
}
/* Phone mockup variant */
.device-phone {
  border-radius: 28px;
  box-shadow: 0 0 0 8px #1a1f2e, 0 0 0 10px rgba(255,255,255,0.06), 0 40px 80px rgba(0,0,0,0.6);
  overflow: hidden;
}
.device-phone img { width: 100%; display: block; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
/* Scale reveal variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }
/* Left slide variant */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Urgency Badge ──────────────────────────────────────────── */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,212,59,0.1);
  border: 1px solid rgba(255,212,59,0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warning);
  margin-bottom: 1rem;
}
.urgency-badge svg { width: 14px; height: 14px; }

/* ── Stats grid ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ── Data table ─────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-gray);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .td-key { font-weight: 600; color: var(--text-white); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-2 { grid-template-columns: 1fr; }
  .split-2.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-mobile-menu { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .trust-items { gap: 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}
