/* ─── Design tokens — premium SaaS palette ──────────────────────────────── */
:root {
  --bg: #0b0f17;
  --bg-elevated: rgba(15, 23, 42, 0.4);
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #e2e8f0;
  --text-soft: #cbd5e1;
  --text-muted: rgba(226, 232, 240, 0.62);
  --yellow: #e6b800;
  --gold: #e6b800;
  --gold-soft: #f5c400;
  --gold-dim: #c9a300;
  --gold-glow: rgba(230, 184, 0, 0.14);
  --ink: #0b0f17;
  --navy: #1a365d;
  --blue: #5a8dbe;
  --radius: 16px;
  --radius-sm: 12px;
  --header-h: 76px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: min(1180px, calc(100% - 2.5rem));
  --glass-bg: rgba(15, 23, 42, 0.4);
  --glass-blur: blur(12px);
  --text-shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.5);
  --text-shadow-heading: 0 2px 24px rgba(0, 0, 0, 0.35);
  --section-y: clamp(5rem, 10vw, 7.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container { width: var(--container); margin-inline: auto; }

/* ─── Hidden video source (texture only) ─────────────────────────────────── */
.video-source {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -999;
}

/* ─── WebGL & overlays — softer, less harsh ─────────────────────────────── */
#webgl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(11, 15, 23, 0.62) 100%);
}

/* ─── Custom cursor (desktop) ────────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.is-desktop .cursor-dot,
body.is-desktop .cursor-ring { opacity: 1; }

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold-soft);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(230, 184, 0, 0.28);
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(11, 15, 23, 0.78), rgba(11, 15, 23, 0.28));
  border-bottom: 1px solid transparent;
  transition: border-color 0.45s var(--ease-out), background 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  border-color: var(--border-soft);
  background: rgba(11, 15, 23, 0.82);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.logo-img {
  display: block;
  height: clamp(52px, 10vw, 72px);
  width: auto;
  max-width: min(320px, 78vw);
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: none;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.site-nav a:hover { color: var(--gold-soft); }

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-soft);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 15, 23, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--text);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold-dim);
  color: var(--ink);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(230, 184, 0, 0.2);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-soft);
}

.btn-outline:hover {
  border-color: rgba(230, 184, 0, 0.22);
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
}

.btn-ghost {
  border: 1px solid transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
}

.btn-lg { padding: 0.95rem 1.6rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ─── Layout sections — generous breathing room ─────────────────────────── */
main {
  position: relative;
  z-index: 10;
}

.section {
  position: relative;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section.marquee {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  overflow: hidden;
  text-shadow: var(--text-shadow-soft);
}

.eyebrow span { display: inline-block; }

.section-head h2,
.hero-title,
.showcase-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 4.2rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: var(--text-shadow-heading);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { text-align: center; margin-inline: auto; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2.5rem);
}

.hero-inner {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 920px;
}

.hero-title .line,
.section-head h2 .line,
.showcase-copy h2 .line {
  display: block;
  overflow: hidden;
  margin-bottom: 0.12em;
}

.hero-title .line:last-child,
.section-head h2 .line:last-child,
.showcase-copy h2 .line:last-child {
  margin-bottom: 0;
}

.hero-title .line span,
.section-head h2 .line span,
.showcase-copy h2 .line span {
  display: inline-block;
}

.hero-lead {
  max-width: 560px;
  margin: 1.75rem 0 0;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  color: var(--text-soft);
  line-height: 1.7;
  text-shadow: var(--text-shadow-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
  text-shadow: var(--text-shadow-soft);
}

.hero-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  text-shadow: var(--text-shadow-soft);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(230, 184, 0, 0.7), transparent);
  transform-origin: top;
}

/* ─── Marquee ────────────────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: rgba(226, 232, 240, 0.45);
}

.marquee-track span:nth-child(even) {
  color: var(--gold-soft);
  opacity: 0.55;
}

/* ─── Features — glass cards ─────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  padding: 2.5rem !important;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 184, 0, 0.15);
  background: rgba(15, 23, 42, 0.52);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.feature-card--accent {
  background: linear-gradient(
    145deg,
    rgba(26, 54, 93, 0.35),
    rgba(15, 23, 42, 0.45)
  );
  border-color: rgba(230, 184, 0, 0.1);
}

.feature-index {
  display: inline-block;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  opacity: 0.85;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ─── Showcase ───────────────────────────────────────────────────────────── */
.showcase-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

.showcase-copy p {
  max-width: 520px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: var(--text-shadow-soft);
}

.showcase-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stat-pill {
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.stat-pill span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.stat-pill small {
  color: var(--text-muted);
  font-size: 0.74rem;
}

/* ─── Section subtitle ───────────────────────────────────────────────────── */
.section-sub {
  max-width: 560px;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-sub--center {
  margin-inline: auto;
  text-align: center;
}

/* ─── Panel mockups ──────────────────────────────────────────────────────── */
.panel-showcase {
  margin-top: 2.5rem;
}

.panel-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.panel-tab {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.45);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.35s var(--ease-out);
}

.panel-tab.is-active {
  border-color: rgba(230, 184, 0, 0.35);
  background: rgba(230, 184, 0, 0.12);
  color: var(--gold-soft);
}

.panel-frame {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 20, 0.75);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.panel-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.6);
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.panel-dot:first-child { background: #ef4444; opacity: 0.7; }
.panel-dot:nth-child(2) { background: #eab308; opacity: 0.7; }
.panel-dot:nth-child(3) { background: #22c55e; opacity: 0.7; }

.panel-url {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.panel-stage {
  position: relative;
  min-height: 380px;
}

.panel-mock {
  display: none;
  grid-template-columns: 168px 1fr;
  min-height: 380px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.panel-mock.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.mock-sidebar {
  padding: 1rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mock-sidebar--pro {
  background: rgba(15, 23, 42, 0.35);
}

.mock-logo-line {
  height: 10px;
  width: 70%;
  margin: 0.25rem 0.5rem 0.75rem;
  border-radius: 4px;
  background: rgba(230, 184, 0, 0.35);
}

.mock-nav-item {
  height: 28px;
  margin: 0 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.mock-nav-item.is-active {
  background: rgba(230, 184, 0, 0.16);
  border: 1px solid rgba(230, 184, 0, 0.2);
}

.mock-main {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mock-h {
  height: 14px;
  width: 120px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-h.wide { width: 160px; }

.mock-btn {
  width: 72px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mock-btn.gold {
  background: rgba(230, 184, 0, 0.45);
}

.mock-stats,
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.mock-stat,
.mock-kpi {
  padding: 0.75rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.mock-stat-label {
  display: block;
  height: 6px;
  width: 55%;
  margin-bottom: 0.5rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-stat-value,
.mock-kpi span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1.1;
}

.mock-stat small,
.mock-kpi small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-kpi.accent span { color: #86efac; }

.mock-table {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.mock-table.compact { margin-top: 0; }

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(90, 141, 190, 0.5), rgba(90, 141, 190, 0.15));
  position: relative;
  overflow: hidden;
  max-width: var(--w, 60%);
}

.mock-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: rgba(230, 184, 0, 0.35);
  animation: barGrow 1.2s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

.mock-row:nth-child(1) .mock-bar::after { --delay: 0.1s; }
.mock-row:nth-child(2) .mock-bar::after { --delay: 0.2s; }
.mock-row:nth-child(3) .mock-bar::after { --delay: 0.3s; }
.mock-row:nth-child(4) .mock-bar::after { --delay: 0.4s; }

@keyframes barGrow {
  to { width: 100%; }
}

.mock-pill {
  width: 36px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.25);
  flex-shrink: 0;
}

.mock-pill.warn { background: rgba(234, 179, 8, 0.28); }

.mock-plate {
  width: 52px;
  height: 18px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.9);
  flex-shrink: 0;
}

.mock-price {
  width: 44px;
  height: 10px;
  border-radius: 4px;
  background: rgba(134, 239, 172, 0.35);
  flex-shrink: 0;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 88px;
  padding: 0.5rem 0.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.mock-chart-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: rgba(90, 141, 190, 0.45);
  transform-origin: bottom;
  transform: scaleY(0);
  animation: chartRise 0.9s var(--ease-out) forwards;
}

.mock-chart-bar:nth-child(2) { animation-delay: 0.08s; }
.mock-chart-bar:nth-child(3) { animation-delay: 0.16s; }
.mock-chart-bar:nth-child(4) { animation-delay: 0.24s; }
.mock-chart-bar:nth-child(5) { animation-delay: 0.32s; }
.mock-chart-bar:nth-child(6) { animation-delay: 0.4s; }

@keyframes chartRise {
  to { transform: scaleY(1); }
}

.panel-mock.is-active .mock-chart-bar {
  animation-name: chartRise;
}

/* ─── Pricing — glass luxury cards ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.price-card {
  position: relative;
  padding: 2.5rem !important;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.45s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
}

.price-card--featured {
  border-color: rgba(230, 184, 0, 0.18);
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.55),
    rgba(26, 54, 93, 0.28)
  );
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px var(--gold-glow);
}

.price-label {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.price-value {
  margin: 0.85rem 0 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-annual {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.68;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.price-kdv-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.48;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.price-value span {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 2.9rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.price-value small {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card ul {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.price-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.75;
}

/* ─── Contact & Footer ─────────────────────────────────────────────────────── */
.contact.section {
  position: relative;
  isolation: isolate;
}

.contact.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 23, 0.55) 0%,
    rgba(11, 15, 23, 0.88) 45%,
    rgba(11, 15, 23, 0.94) 100%
  );
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-glass {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 3rem) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.contact-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: var(--text-shadow-heading);
}

.contact-head p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-info-col {
  min-width: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--gold-dim);
  background: rgba(230, 184, 0, 0.1);
  border: 1px solid rgba(230, 184, 0, 0.22);
}

.contact-info-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.93rem;
  word-break: break-word;
}

.contact-info-item a {
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--gold-soft);
}

.contact-map-hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted, #94a3b8);
}

.contact-note {
  margin: 0.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
  opacity: 0.8;
}

.contact-form-col {
  min-width: 0;
}

.contact-form-panel {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 23, 0.35);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0;
}

.contact-form-field {
  display: block;
  width: 100%;
}

.contact-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--text);
  background: rgba(11, 15, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(203, 213, 225, 0.42);
}

.contact-form-field select {
  color: var(--text-soft);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%23e6b800' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.contact-form-field select option {
  color: #0b0f17;
  background: #fff;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: rgba(230, 184, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.14);
  background: rgba(230, 184, 0, 0.06);
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-feedback {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form-feedback.is-success {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.contact-form-feedback.is-error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.contact-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--gold-dim);
  box-shadow: 0 8px 28px var(--gold-glow);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}

.contact-form-submit:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 36px rgba(230, 184, 0, 0.22);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .contact-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .contact-form-panel {
    padding: 1.75rem;
  }
}

.site-footer {
  position: relative;
  z-index: 10;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover { color: var(--gold-soft); }

/* ─── Animation hooks (GSAP sets initial state) ────────────────────────────── */
[data-animate="title"] .line span,
[data-animate="line"] span,
[data-animate="fade-up"],
[data-animate="fade-down"],
[data-animate="card"] {
  will-change: transform, opacity;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --section-y: 120px;
  }

  .site-nav,
  .header-actions { display: flex; }
  .menu-toggle,
  .mobile-drawer { display: none; }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .showcase-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 1.75rem;
  }

  .panel-mock {
    grid-template-columns: 140px 1fr;
  }

  .mock-stats,
  .mock-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-card--accent {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .panel-stage {
    min-height: 420px;
  }

  .panel-mock {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem;
  }

  .mock-logo-line {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .mock-nav-item {
    flex: 1;
    min-width: 48px;
    height: 24px;
  }

  .mock-stats,
  .mock-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-panel {
    padding: 1.25rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  body.is-desktop .cursor-dot,
  body.is-desktop .cursor-ring {
    opacity: 0;
  }
}

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