:root {
  --bg: #0A0A0A;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --ink: #E0E0E0;
  --ink-soft: #9E9E9E;
  --accent: #00E676;
  --accent-2: #448AFF;
  --line: rgba(0, 230, 118, 0.18);
  --line-strong: rgba(0, 230, 118, 0.4);
  --header-h: 72px;
  --radius: 6px;
  --container: 1240px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero-content .eyebrow,
html.no-js .hero-content h1,
html.no-js .hero-content .hero-sub,
html.no-js .hero-content .hero-counters,
html.no-js .hero-content .btn-primary,
html.no-js .hero-content .text-soft { opacity: 1; transform: none; animation: none; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 4px;
  font-weight: 700; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 8px; }

/* Typography */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.mono {
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-weight: 500;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

p { max-width: 68ch; }
a { color: var(--accent); text-decoration: none; transition: color 240ms; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =================== HEADER =================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 230, 118, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--accent); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: #00c964;
  color: var(--bg);
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px; height: 46px;
  background: rgba(0, 230, 118, 0.1);
  border: 2px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: rgba(0, 230, 118, 0.18);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.2);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 96px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--line);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  color: var(--ink);
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 200ms, padding-left 200ms cubic-bezier(.16,1,.3,1);
}
.mobile-drawer a:hover,
.mobile-drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.mobile-drawer .drawer-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  border: none;
}
.mobile-drawer .drawer-cta:hover { background: #00c964; color: var(--bg); }

/* =================== MAIN =================== */
main { padding-top: var(--header-h); }

section {
  padding: clamp(60px, 10vw, 120px) 0;
}
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: min(calc(100vh - var(--header-h)), 1000px);
  min-height: min(calc(100dvh - var(--header-h)), 1000px);
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
@media (max-width: 768px) {
  .hero { max-height: none; min-height: auto; padding: clamp(60px, 12vw, 100px) 0; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, var(--line) 59px, var(--line) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, var(--line) 59px, var(--line) 60px);
  opacity: 0.3;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0, 230, 118, 0.06), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero h1 {
  margin-bottom: 20px;
  white-space: pre-line;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-counters {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-counter {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 16px 20px;
  background: var(--surface);
  min-width: 120px;
}
.hero-counter .value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1.2;
}
.hero-counter .label {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #00c964;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.25), 0 0 0 3px rgba(0, 230, 118, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { transition: none; }
  .btn-primary:hover, .btn-primary:focus-visible { transform: none; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background 240ms, border-color 240ms, color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* =================== KPI METRICS =================== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.kpi-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.kpi-card.is-in::before { transform: scaleX(1); }
.kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.1);
}
.kpi-card .kpi-icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}
.kpi-card .kpi-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1.1;
}
.kpi-card .kpi-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* =================== ANALYSIS SYSTEM =================== */
.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .system-grid { grid-template-columns: 1.2fr 1fr; }
}
.field-svg {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.field-svg svg { width: 100%; height: auto; }

.heatmap-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.heatmap-info li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.5;
  list-style: none;
}
.heatmap-info .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

/* =================== MODULES TABLE =================== */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 580px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
thead {
  background: var(--surface-2);
}
th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
tr { transition: background 200ms; }
tr:hover td { background: rgba(0, 230, 118, 0.05); }

/* =================== TECH CARDS =================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tech-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 32px 24px;
  background: var(--surface);
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.08);
}
.tech-card .tech-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}
.tech-card h4 { margin-bottom: 12px; color: var(--ink); }
.tech-card p { color: var(--ink-soft); font-size: 0.9rem; }

@keyframes dataPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
}
.tech-card .pulse-dot {
  position: absolute;
  top: 16px; right: 16px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dataPulse 2.4s ease-in-out infinite;
  overflow: visible;
}

/* =================== PRICING =================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.price-card.featured {
  border-color: var(--accent);
  position: relative;
}
.price-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card h4 { margin-bottom: 8px; }
.price-card .price-amount {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-card .price-period {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.price-card li.excluded {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.6;
}
.price-card li.excluded::before { background: var(--ink-soft); }
.price-card .btn-primary { width: 100%; justify-content: center; }

.price-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

/* =================== FORM =================== */
.form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .form-section { grid-template-columns: 1.2fr 1fr; }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field-check label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.criteria-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
}
.criteria-list h4 { margin-bottom: 16px; color: var(--accent); }
.criteria-list ul { list-style: none; }
.criteria-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.criteria-list li::before {
  content: '→';
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

/* =================== PROCESS =================== */
.process-timeline {
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
}
.process-step .step-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { color: var(--ink-soft); font-size: 0.9rem; }

/* =================== TESTIMONIALS =================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card .author {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.testimonial-card .author strong { color: var(--accent); }

/* =================== FAQ =================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  transition: border-color 240ms, box-shadow 240ms;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0, 230, 118, 0.06); }
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 300ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item .answer p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* =================== TEAM =================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  background: var(--surface);
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.06);
}
.team-card .team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--accent);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  transition: box-shadow 300ms, transform 300ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-avatar {
  box-shadow: 0 0 0 6px rgba(0, 230, 118, 0.12);
  transform: scale(1.05);
}
.team-card h4 { margin-bottom: 4px; font-size: 1rem; }
.team-card .role { font-size: 0.8rem; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
@media (max-width: 640px) {
  
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  transition: color 240ms, padding-left 240ms cubic-bezier(.16,1,.3,1);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-col p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* =================== COOKIE BANNER =================== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
@media (max-width: 480px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px)); }
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 200ms, color 200ms, border-color 200ms, transform 180ms;
  min-height: 44px;
  min-width: 44px;
}
.cookie-actions button:hover { transform: translateY(-1px); }
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: #00c964;
  color: var(--bg);
}
.cookie-actions button[data-consent="reject"] {
  border-color: var(--line-strong);
  color: var(--ink-soft);
  font-weight: 600;
}
.cookie-actions button[data-consent="reject"]:hover {
  background: rgba(0, 230, 118, 0.06);
  border-color: var(--accent);
  color: var(--ink);
}
.cookie-actions button[data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/* =================== REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 100ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =================== NICHE ANIMATIONS =================== */
@keyframes gridGlow {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}
.hero::before { animation: gridGlow 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

@keyframes dataStream {
  0% { transform: translateY(100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes radarSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes radarPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.2); }
  70% { box-shadow: 0 0 0 20px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.radar-ring {
  position: absolute;
  width: 220px; height: 220px;
  border: 1px solid var(--line);
  border-radius: 50%;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.35;
  animation: radarPulse 3s ease-in-out infinite;
}
.radar-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px dashed var(--line);
  border-radius: 50%;
  opacity: 0.5;
}
.radar-ring::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left center;
  animation: radarSweep 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .radar-ring { animation: none; }
  .radar-ring::after { animation: none; }
}
@media (max-width: 768px) { .radar-ring { display: none; } }

@keyframes numberFlicker {
  0%, 88%, 94%, 100% { opacity: 1; }
  90% { opacity: 0.3; }
  92% { opacity: 0.6; }
}
.kpi-value { animation: numberFlicker 4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .kpi-value { animation: none; } }

@keyframes terminalBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.terminal-cursor::after {
  content: '▌';
  color: var(--accent);
  animation: terminalBlink 1s step-end infinite;
}
@media (prefers-reduced-motion: reduce) { .terminal-cursor::after { animation: none; } }

@keyframes statGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(0, 230, 118, 0.08); }
}

@keyframes scoreboardFlash {
  0%, 100% { border-color: var(--line-strong); }
  50% { border-color: var(--accent); }
}

@keyframes dotPing {
  0% { transform: scale(1); opacity: 1; }
  75% { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.hero-counter {
  animation: statGlow 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.2s);
}
@media (prefers-reduced-motion: reduce) { .hero-counter { animation: none; } }

.kpi-card:hover {
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.12), inset 0 1px 0 rgba(0, 230, 118, 0.15);
}

.tech-card .pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPing 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.process-step::before {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.process-step:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(0, 230, 118, 0.15);
}

.kpi-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 230, 118, 0.04));
  transition: height 400ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.kpi-card:hover::after { height: 100%; }

.price-card.featured {
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(0, 230, 118, 0.1);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(0, 230, 118, 0.15);
}

/* =================== SECTION HEADINGS =================== */
.section-header {
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--ink-soft); max-width: 560px; }

/* =================== UTILITY =================== */
.text-accent { color: var(--accent); }
.text-soft { color: var(--ink-soft); }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.mb-m { margin-bottom: 32px; }

/* =================== PAGE HERO (subpages) =================== */
.page-hero {
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, var(--line) 59px, var(--line) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, var(--line) 59px, var(--line) 60px);
  opacity: 0.15;
  pointer-events: none;
  animation: gridGlow 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero::before { animation: none; }
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; }

/* =================== CONTACT CARDS =================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px;
  background: var(--surface);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.08);
}
.contact-card .card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: transform 240ms cubic-bezier(.16,1,.3,1), background 240ms, box-shadow 240ms;
}
.contact-card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(0, 230, 118, 0.15);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.12);
}
.contact-card h5 { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-card a, .contact-card .val { font-size: 0.95rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.contact-card .sub { font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; }

/* =================== HOURS TABLE =================== */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.hour-item {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
}
.hour-item .day { font-weight: 600; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; }
.hour-item .time { color: var(--ink); margin-top: 2px; }
.hour-item.today { border-color: var(--accent); background: rgba(0, 230, 118, 0.04); }

/* =================== LEGAL PAGES =================== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-content h2 {
  margin: 48px 0 18px;
  font-size: 1.4rem;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  padding-top: 4px;
  padding-bottom: 4px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 1.1rem;
  color: var(--accent);
}
.legal-content p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}
.legal-content ul, .legal-content ol {
  padding-left: 0;
  margin-bottom: 20px;
  list-style: none;
}
.legal-content li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 2px; top: 10px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.legal-content .table-scroll {
  margin: 24px 0;
}

/* =================== THANK YOU =================== */
.thankyou-section {
  text-align: center;
  padding: 120px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-section h1 { margin-bottom: 16px; color: var(--accent); }
.thankyou-section p { margin: 0 auto 32px; color: var(--ink-soft); }

/* =================== 404 =================== */
.notfound-section {
  text-align: center;
  padding: 120px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.notfound-section .code-404 {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  .hero-counter,
  .kpi-card, .tech-card, .price-card, .testimonial-card,
  .team-card, .contact-card, .faq-item,
  .btn-ghost, .process-step::before,
  .team-card .team-avatar,
  .contact-card .card-icon,
  .mobile-drawer a, .footer-col a {
    transition: none !important;
  }
  .kpi-card:hover, .tech-card:hover, .price-card:hover,
  .testimonial-card:hover, .team-card:hover, .contact-card:hover {
    transform: none;
  }
  .tech-card .pulse-dot, .tech-card .pulse-dot::after {
    animation: none;
  }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 640px) {
  .hero-counters { gap: 12px; }
  .hero-counter { min-width: 100px; padding: 12px 14px; }
  .hero-counter .value { font-size: 1.4rem; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kpi-card { padding: 20px 16px; }
  .kpi-card .kpi-value { font-size: 1.6rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: clamp(40px, 8vw, 80px) 0; }
}

@media (max-width: 430px) {
  .kpi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

/* =================== TABLE SCROLL HINT =================== */
@media (max-width: 767px) {
  .table-scroll {
    border-right: 3px solid var(--accent);
  }
}

/* =================== ENHANCED FOOTBALL/DATA ANIMATIONS =================== */
@keyframes pitchLineGlow {
  0%, 100% { opacity: 0.15; filter: brightness(1); }
  50% { opacity: 0.35; filter: brightness(1.3); }
}

@keyframes gpsTrail {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.kpi-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1);
}
.kpi-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.tech-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1), border-color 400ms;
}
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 230, 118, 0.12);
  border-color: var(--accent);
}

.price-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), border-color 400ms, box-shadow 400ms;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 230, 118, 0.1);
}

.testimonial-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), border-color 300ms, box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.08);
}

.contact-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, border-color 300ms;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.faq-item {
  transition: border-color 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms, transform 300ms;
}
.faq-item:hover {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 300ms;
}
.btn-primary:hover::after {
  opacity: 1;
  animation: gpsTrail 1.5s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover::after { animation: none; opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 120ms);
}

.hero-counter {
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms;
}
.hero-counter:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.15);
}

.field-svg svg {
  transition: filter 600ms;
}
.field-svg:hover svg {
  filter: drop-shadow(0 0 12px rgba(0, 230, 118, 0.15));
}
@media (prefers-reduced-motion: reduce) {
  .field-svg:hover svg { filter: none; }
}

.team-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), border-color 300ms, box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.1);
}

.hour-item {
  transition: border-color 240ms, background 240ms, transform 240ms cubic-bezier(.16,1,.3,1);
}
.hour-item:hover {
  border-color: var(--accent);
  background: rgba(0, 230, 118, 0.04);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .kpi-card:hover, .tech-card:hover, .price-card:hover,
  .testimonial-card:hover, .contact-card:hover, .team-card:hover,
  .faq-item:hover, .hero-counter:hover, .hour-item:hover {
    transform: none;
  }
}

/* =================== HERO BG IMAGE =================== */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

/* =================== HERO CONTENT STAGGER =================== */
.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-counters,
.hero-content .btn-primary,
.hero-content .text-soft {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content .eyebrow   { animation-delay: 100ms; }
.hero-content h1          { animation-delay: 200ms; }
.hero-content .hero-sub   { animation-delay: 350ms; }
.hero-content .hero-counters { animation-delay: 500ms; }
.hero-content .btn-primary { animation-delay: 650ms; }
.hero-content .text-soft  { animation-delay: 750ms; }

@keyframes heroEntrance {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-counters,
  .hero-content .btn-primary,
  .hero-content .text-soft {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =================== SCOREBOARD BORDER FLASH ON ENTRY =================== */
.kpi-card.is-in {
  animation: scoreboardEntry 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes scoreboardEntry {
  0% { border-color: var(--accent); box-shadow: 0 0 16px rgba(0, 230, 118, 0.2); }
  100% { border-color: var(--line-strong); box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .kpi-card.is-in { animation: none; }
}

/* =================== SECTION DIVIDER GLOW =================== */
section[style*="background:var(--surface)"] {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* =================== PRINT =================== */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .drawer-backdrop, .nav-toggle { display: none; }
  main { padding-top: 0; }
  body { background: #fff; color: #111; }
  .reveal { opacity: 1; transform: none; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
