/* ============================================================
   maxirez lander — design system
   Family DNA: Adviceal family (minirez · maxirez · mixipos · mixifin).
   Navy-night anchors, sky→azure→deep-blue accent (maxirez.com's own blue),
   lowercase wordmark, "different horizon" motif. Light-predominant: the
   statement, creed, demo CTA, finale and footer stay dark as anchors; the
   panel mock / AI console / booking board stay navy-dark so they pop on paper.
   ============================================================ */

:root {
  /* deep navy-night base (sky/azure glow on it) */
  --bg0: #061225;
  --bg1: #0a1f3d;
  --bg2: #103564;
  --ink: #eef1ff;
  --muted: #9fb6d8;
  --line: rgba(154, 190, 232, 0.14);

  /* BLUE ramp — the whole site inherits --grad */
  --brand1: #3aa7f0;  /* sky — gradient light end / glow / chart dots */
  --brand2: #1b7fd4;  /* azure — core brand (orijinal maxirez.com mavisi) */
  --brand3: #0d55b0;  /* deep blue — gradient anchor (depth) */

  /* two gradients, two jobs:
     --grad     decorative — marks, thin rules, grad-text on large display headings
     --grad-cta filled interactive surfaces — deep enough that --on-grad passes AA */
  --grad: linear-gradient(100deg, var(--brand1), var(--brand2) 52%, var(--brand3));
  --grad-cta: linear-gradient(100deg, #0d6db4, #1266c6 48%, #0b4a96);
  --on-grad: #ffffff;

  --gold: #f5b84b;
  --ok: #34d399;
  --warn: #fb7185;

  /* cool light surfaces */
  --paper: #f7f8ff;
  --paper-tint: #eef0fd;
  --ink-dark: #0f2038;
  --muted-dark: #4f6a8f;
  --line-dark: rgba(15, 32, 56, 0.10);

  /* legibility token — bright sky is illegible as small text/strokes on paper */
  --accent-ink: #12558f;  /* deep azure for icon strokes, tag text, kickers on light */

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-text: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px -28px rgba(4, 14, 30, 0.7);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(27, 127, 212, 0.28); color: #06182b; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -0.02em; color: var(--ink-dark); }
p { margin: 0; }
button { font-family: inherit; }

.container { width: min(var(--maxw), 100% - 48px); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 48px); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--paper);
  color: var(--ink-dark);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------------- scroll progress ---------------- */
.progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 60;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------------- buttons & chips ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--grad-cta);
  color: var(--on-grad);
  box-shadow: 0 12px 32px -10px rgba(21, 86, 184, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -10px rgba(21, 86, 184, 0.68); }
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 44px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  left: -70px;
  animation: shine 3.8s ease-in-out infinite;
}
@keyframes shine {
  0%, 64% { left: -70px; }
  82%, 100% { left: 130%; }
}
.btn--ghost {
  border-color: var(--line-dark);
  color: var(--ink-dark);
  background: rgba(15, 32, 56, 0.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: rgba(27, 127, 212, 0.5); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-ink);
  border: 1px solid rgba(27, 127, 212, 0.28);
  background: rgba(27, 127, 212, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(27, 127, 212, 0.6); background: rgba(27, 127, 212, 0.14); }
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand2);
  box-shadow: 0 0 0 0 rgba(27, 127, 212, 0.7);
  animation: pulse 2.2s infinite;
  flex: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 127, 212, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(27, 127, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 127, 212, 0); }
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
.kicker--accent { color: var(--brand3); }

/* ---------------- nav ---------------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247, 248, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand__mark { width: 32px; height: 32px; flex: none; }
.brand__img { height: 26px; width: auto; display: block; }
.footer .brand__img { height: 30px; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links { display: flex; gap: 22px; margin-inline: auto; min-width: 0; }
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink-dark); }
.nav__links a[aria-current='page'] { color: var(--accent-ink); font-weight: 600; }
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--accent-ink); }
.nav__phone svg, .nav__login svg { flex: none; }
.nav__login { gap: 7px; }
.nav__login svg { opacity: 0.85; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span { width: 22px; height: 2px; background: var(--ink-dark); border-radius: 2px; transition: 0.25s; }
.nav__sheet { display: none; }

@media (max-width: 1340px) {
  /* the phone pill is the first thing to go: the sub-page nav carries six
     links and nowrap labels must never overlap the CTA cluster. */
  .nav__phone { display: none; }
}
@media (max-width: 1180px) {
  .nav__links { gap: 15px; }
  .nav__links a { font-size: 13.5px; }
}
@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__sheet {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 24px;
    background: rgba(247, 248, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }
  .nav.is-open .nav__sheet { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav.is-open { background: rgba(247, 248, 255, 0.98); }
  .nav__sheet a { padding: 12px 4px; font-weight: 600; color: var(--ink-dark); border-bottom: 1px solid var(--line-dark); }
  .nav__sheet .btn { margin-top: 14px; justify-content: center; border-bottom: 0; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 75% at 50% -12%, #dbe6ff 0%, transparent 62%),
    linear-gradient(180deg, #eaf0ff 0%, var(--paper) 72%);
}
.hero__sky { position: absolute; inset: 0; pointer-events: none; }
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
  will-change: transform;
}
.aurora--1 { width: 640px; height: 460px; background: rgba(58, 167, 240, 0.3); top: -180px; left: -120px; }
.aurora--2 { width: 720px; height: 520px; background: rgba(30, 79, 192, 0.2); top: -120px; right: -200px; animation-delay: -5s; }
.aurora--3 { width: 460px; height: 380px; background: rgba(27, 127, 212, 0.18); bottom: -160px; left: 32%; animation-delay: -9s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(46px, 28px, 0) scale(1.09); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 32, 56, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 32, 56, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 35%, transparent 78%);
}
.hero__horizon {
  position: absolute;
  inset-inline: -10%;
  bottom: -2px;
  height: 220px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(27, 127, 212, 0.16), transparent 70%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-size: clamp(31px, 3.5vw, 45px);
  font-weight: 800;
  margin: 24px 0 20px;
}
.hero__sub { font-size: 17.5px; color: var(--muted-dark); max-width: 54ch; }
.hero__sub strong { color: var(--ink-dark); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero .btn--ghost {
  color: var(--ink-dark);
  border-color: rgba(15, 32, 56, 0.16);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px -20px rgba(15, 32, 56, 0.32);
}
.hero .btn--ghost:hover {
  border-color: rgba(27, 127, 212, 0.55);
  background: rgba(255, 255, 255, 0.9);
}
.hero__price {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--font-display);
  padding-left: 16px;
  border-left: 2px solid rgba(27, 127, 212, 0.28);
}
.hero__price b { font-size: 19px; font-weight: 800; color: var(--ink-dark); font-variant-numeric: tabular-nums; }
.hero__price span { font-size: 12px; font-weight: 500; color: var(--muted-dark); letter-spacing: 0.02em; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}
.hero__trust li {
  font-size: 13.5px;
  color: var(--muted-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

/* ---------------- acente panel mockup (indigo-dark surface) ---------------- */
.hero__visual { position: relative; perspective: 1400px; }
.mock {
  background: linear-gradient(160deg, #0d2748 0%, #071729 96%);
  border: 1px solid rgba(154, 190, 232, 0.18);
  border-radius: 20px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
  color: var(--ink);
}
.mock__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 6, 18, 0.5);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; opacity: 0.85; flex: none; }
.mock__url {
  margin-inline: auto;
  font-size: 12px;
  color: var(--muted);
  background: rgba(154, 190, 232, 0.08);
  padding: 4px 26px;
  border-radius: 8px;
  letter-spacing: 0.01em;
}
.mock__body { display: grid; grid-template-columns: 156px 1fr; min-height: 430px; }
.mock__side {
  border-right: 1px solid var(--line);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(4, 6, 18, 0.32);
}
.mock__sidebrand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 2px 10px 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mock__sideitem {
  font-size: 12px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.mock__sideitem:hover { background: rgba(154, 190, 232, 0.07); color: var(--ink); }
.mock__sideitem.is-active {
  background: rgba(27, 127, 212, 0.2);
  color: #cddbff;
  font-weight: 600;
}
.mock__sideitem--ai { display: flex; align-items: center; gap: 7px; }
.mock__sideitem--ai span {
  font-size: 9px;
  font-weight: 700;
  background: var(--grad-cta);
  color: var(--on-grad);
  border-radius: 5px;
  padding: 1px 5px;
}
.mock__main { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 13px; min-width: 0; }
.mock__head { display: flex; justify-content: space-between; align-items: center; }
.mock__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.mock__subtitle { font-size: 11px; color: var(--muted); }
.mock__pills { display: flex; gap: 4px; background: rgba(154, 190, 232, 0.08); border-radius: 999px; padding: 3px; }
.mock__pills span { font-size: 11px; padding: 4px 11px; border-radius: 999px; color: var(--muted); }
.mock__pills .is-on { background: rgba(27, 127, 212, 0.28); color: #cddbff; font-weight: 600; }

.mock__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi {
  background: rgba(154, 190, 232, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  transition: border-color 0.25s, transform 0.25s;
}
.kpi:hover { border-color: rgba(27, 127, 212, 0.45); transform: translateY(-2px); }
.kpi__label { font-size: 10.5px; color: var(--muted); letter-spacing: 0.02em; }
.kpi__value { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.kpi__value--ok { color: var(--ok); }
.kpi__delta { font-size: 10px; color: var(--muted); }
.kpi__delta--up { color: var(--ok); }

.mock__chartcard {
  background: rgba(154, 190, 232, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px 8px;
}
.mock__chartcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}
.mock__legend {
  display: flex;
  gap: 14px;
  font-size: 9.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.mock__legend span { display: inline-flex; align-items: center; gap: 5px; }
.lg { display: inline-block; border-radius: 99px; }
.lg--line { width: 14px; height: 3px; background: var(--grad); }
.lg--web { width: 8px; height: 8px; background: var(--brand1); border-radius: 3px; }
.lg--b2b { width: 8px; height: 8px; background: var(--gold); border-radius: 3px; }
.mock__toggle { display: flex; gap: 4px; background: rgba(154, 190, 232, 0.08); border-radius: 999px; padding: 3px; }
.mock__toggle button {
  font-family: var(--font-text);
  font-size: 10.5px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
}
.mock__toggle button.is-on { background: var(--grad-cta); color: var(--on-grad); font-weight: 700; }
#flowChart { width: 100%; height: 122px; }
.mock__xlabels { display: flex; justify-content: space-between; font-size: 9.5px; color: var(--muted); padding: 4px 2px 0; }

.cbar {
  transform-origin: bottom;
  transform: scaleY(0);
  transform-box: fill-box;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
.cbar.in { transform: scaleY(1); }

.mock__row2 { display: grid; grid-template-columns: 1fr 1.25fr; gap: 10px; }
.mock__barcard, .mock__donutcard {
  background: rgba(154, 190, 232, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  min-width: 0;
}
.mock__barcard-title { font-size: 11px; font-weight: 600; display: block; margin-bottom: 9px; }
.mock__barcard-title em { color: var(--muted); font-style: normal; font-weight: 400; }

/* kanal mini-bars */
.catbars { display: flex; align-items: flex-end; gap: 8px; height: 76px; }
.catbars .cat { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; height: 100%; min-width: 0; }
.catbars .cat i {
  width: 100%;
  border-radius: 5px 5px 2px 2px;
  transform-origin: bottom;
  animation: barup 0.9s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}
.catbars .cat span { font-size: 9px; color: var(--muted); white-space: nowrap; }
@keyframes barup { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* donut */
.donutwrap { display: flex; align-items: center; gap: 12px; }
.donut { width: 86px; height: 86px; flex: none; transform: rotate(-90deg); }
.donut__bg { fill: none; stroke: rgba(154, 190, 232, 0.12); stroke-width: 17; }
.donut circle { fill: none; stroke-width: 17; }
.donut__legend { display: flex; flex-direction: column; gap: 4px; font-size: 9.5px; color: var(--muted); min-width: 0; }
.donut__legend div { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.donut__legend i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.donut__legend b { margin-left: auto; color: var(--ink); font-variant-numeric: tabular-nums; }

/* floating cards */
.float {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(19, 24, 62, 0.92);
  border: 1px solid rgba(154, 190, 232, 0.24);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 20px 48px -18px rgba(4, 14, 30, 0.85);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
}
.float strong { display: block; font-size: 12.5px; margin-bottom: 1px; }
.float p { color: var(--muted); font-size: 11.5px; line-height: 1.45; }
.float p span { color: var(--brand1); font-weight: 600; }
.float__icon {
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
}
.float__icon--ai { background: rgba(27, 127, 212, 0.24); color: #a9c6ff; }
.float__icon--ok { background: rgba(52, 211, 153, 0.18); color: var(--ok); }
.float--book { top: -44px; right: -18px; max-width: 284px; animation-delay: -2s; }
.float--lang { bottom: 96px; left: -78px; max-width: 258px; }
.float--pay {
  bottom: -18px;
  right: 36px;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  border-color: rgba(245, 184, 75, 0.45);
  color: #ffeecd;
  animation-delay: -4s;
}
.float--pay b { color: var(--gold); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 660px; }
  .float--book { right: 0; }
  .float--lang { left: -8px; bottom: 86px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 130px; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
  .mock__cards { grid-template-columns: repeat(2, 1fr); }
  .mock__row2 { grid-template-columns: 1fr; }
  .float--book, .float--lang { display: none; }
  .float--pay { right: 12px; }
}

/* ---------------- marquee (dark hairline band) ---------------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg0);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(205, 219, 255, 0.78);
  white-space: nowrap;
}
.marquee__track i { color: rgba(154, 190, 232, 0.4); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- statement / aile (dark anchor) ---------------- */
.statement {
  padding: 110px 0;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 70% at 50% 110%, rgba(30, 79, 192, 0.16), transparent 70%),
    var(--bg0);
}
.statement[id] { scroll-margin-top: 88px; }
.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 26ch;
  margin-inline: auto;
  background: linear-gradient(100deg, #fff 30%, #bcd0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statement__sub { color: var(--muted); max-width: 64ch; margin: 22px auto 0; font-size: 16.5px; }
.statement__sub strong { color: var(--ink); }
.statement__family {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}
.statement__family a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  color: var(--muted);
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  transition: border-color 0.25s, transform 0.25s, color 0.25s;
}
.statement__family a:hover { border-color: rgba(27, 127, 212, 0.55); transform: translateY(-2px); color: var(--ink); }
.statement__family em { font-family: var(--font-text); font-style: normal; font-weight: 400; font-size: 12.5px; color: rgba(205, 219, 255, 0.7); }
.statement__family .is-hot {
  color: var(--on-grad);
  background: var(--grad-cta);
  border-color: transparent;
  box-shadow: 0 14px 36px -14px rgba(21, 86, 184, 0.6);
}
.statement__family .is-hot em { color: rgba(255, 255, 255, 0.78); }

/* ---------------- creed band ---------------- */
.creed {
  position: relative;
  padding: 46px 0;
  background: var(--grad-cta);
  color: var(--on-grad);
  overflow: hidden;
  text-align: center;
}
.creed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 15% 50%, rgba(255, 255, 255, 0.14), transparent 65%);
  pointer-events: none;
}
.creed h2 {
  position: relative;
  color: var(--on-grad);
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 700;
  max-width: 26ch;
  margin-inline: auto;
}
.creed p { position: relative; margin-top: 10px; font-size: 13.5px; color: rgba(255, 255, 255, 0.78); }

/* ---------------- sections ---------------- */
.section { padding: 110px 0; position: relative; }
.section[id] { scroll-margin-top: 88px; }
.section--light { background: var(--paper); color: var(--ink-dark); }
.section--light p { color: var(--muted-dark); }
.section--tint { background: var(--paper-tint); }

.section__head { max-width: 700px; margin-bottom: 58px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin-bottom: 18px; }
.section__head p { font-size: 17px; color: var(--muted-dark); }
.section__head p + p { margin-top: 12px; }

/* ---------------- features ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
  overflow: hidden;
}
.fcard::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.28s;
}
.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px -24px rgba(15, 32, 56, 0.25);
  border-color: rgba(27, 127, 212, 0.42);
}
.fcard:hover::before { opacity: 1; }
.fcard__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(58, 167, 240, 0.16), rgba(30, 79, 192, 0.14));
  margin-bottom: 18px;
  transition: transform 0.28s;
}
.fcard:hover .fcard__icon { transform: scale(1.08) rotate(-4deg); }
.fcard__icon svg {
  width: 23px; height: 23px;
  fill: none;
  stroke: var(--accent-ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fcard h3 { font-size: 18.5px; margin-bottom: 10px; }
.fcard p { font-size: 14px; line-height: 1.6; color: var(--muted-dark); }
.fcard p strong { color: var(--ink-dark); }
.fcard__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.fcard__tags span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-ink);
  background: rgba(27, 127, 212, 0.12);
  border-radius: 999px;
  padding: 4px 11px;
}
@media (max-width: 1040px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------------- spotlights ---------------- */
.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.spotlight__inner--flip { grid-template-columns: 1.05fr 1fr; }
.spotlight__inner--flip .spotlight__copy { order: -1; }
.spotlight__copy h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-bottom: 18px; }
.spotlight__copy > p { font-size: 16.5px; color: var(--muted-dark); }
.spotlight__copy > p strong { color: var(--ink-dark); }
.ticklist { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.ticklist li {
  position: relative;
  padding-left: 33px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-dark);
}
.ticklist li strong { color: var(--ink-dark); }
.ticklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px; height: 21px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(27, 127, 212, 0.16);
  color: var(--accent-ink);
}
.spotlight__copy .btn { margin-top: 10px; }
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent-ink);
  transition: gap 0.22s ease;
}
.textlink:hover { gap: 12px; }

@media (max-width: 960px) {
  .spotlight__inner, .spotlight__inner--flip { grid-template-columns: 1fr; gap: 44px; }
  .spotlight__inner--flip .spotlight__copy { order: 0; }
}

/* ============================================================
   SET-PIECE 1 — AI komut konsolu (#ai)
   A command line types a Turkish pricing instruction, the parsed
   intent chips resolve, then the affected price cells jump.
   ============================================================ */
.aicmd {
  background: linear-gradient(160deg, #0e2a4d 0%, #071729 96%);
  border: 1px solid rgba(154, 190, 232, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  color: var(--ink);
}
.aicmd__head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.aicmd__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2.4s infinite;
  flex: none;
}
.aicmd__badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--grad-cta);
  color: var(--on-grad);
  border-radius: 6px;
  padding: 2px 8px;
}
.aicmd__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 6, 18, 0.55);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 13px;
  min-height: 44px;
}
.aicmd__prompt { color: var(--brand1); font-weight: 700; flex: none; }
.aicmd__text { min-width: 0; overflow-wrap: anywhere; }
.aicmd__caret {
  width: 1.5px; height: 15px;
  background: var(--brand1);
  animation: caret 1.1s steps(1) infinite;
  flex: none;
}
@keyframes caret { 50% { opacity: 0; } }
.aicmd__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; min-height: 26px; }
.aicmd__chips span {
  font-size: 10.5px;
  font-weight: 600;
  color: #cddbff;
  background: rgba(27, 127, 212, 0.16);
  border: 1px solid rgba(27, 127, 212, 0.34);
  border-radius: 999px;
  padding: 3px 10px;
  animation: chipin 0.34s cubic-bezier(0.2, 0.8, 0.3, 1.1) both;
}
@keyframes chipin { from { opacity: 0; transform: translateY(6px) scale(0.95); } to { opacity: 1; transform: none; } }

.pricegrid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 74px repeat(6, 1fr);
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.pricegrid__h {
  font-size: 9.5px;
  color: var(--muted);
  text-align: center;
  padding-bottom: 2px;
}
.pricegrid__r { font-size: 10px; color: var(--muted); align-self: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pricegrid__c {
  font-size: 10.5px;
  text-align: center;
  padding: 5px 2px;
  border-radius: 5px;
  background: rgba(154, 190, 232, 0.06);
  border: 1px solid transparent;
  color: var(--muted);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.pricegrid__c.is-hit {
  background: rgba(27, 127, 212, 0.28);
  border-color: rgba(27, 127, 212, 0.55);
  color: #fff;
  font-weight: 700;
  transform: scale(1.06);
}
.aicmd__note {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}
.aicmd__note b { color: var(--ok); }

/* kontrat drop card */
.contract {
  margin-top: 14px;
  background: rgba(154, 190, 232, 0.05);
  border: 1px dashed rgba(154, 190, 232, 0.28);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.contract__title { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.contract__file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(4, 6, 18, 0.5);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px 12px;
  transform: translateY(-14px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.contract__file i { color: var(--warn); font-style: normal; font-weight: 800; font-size: 10px; }
.contract.is-dropped .contract__file { transform: none; opacity: 1; }
.contract__rows { display: flex; flex-direction: column; gap: 5px; margin-top: 11px; }
.contract__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(154, 190, 232, 0.06);
  border-radius: 7px;
  padding: 5px 9px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.contract__row b { color: var(--ink); font-variant-numeric: tabular-nums; }
.contract.is-dropped .contract__row { opacity: 1; transform: none; }
.contract.is-dropped .contract__row:nth-child(1) { transition-delay: 0.1s; }
.contract.is-dropped .contract__row:nth-child(2) { transition-delay: 0.22s; }
.contract.is-dropped .contract__row:nth-child(3) { transition-delay: 0.34s; }
.contract.is-dropped .contract__row:nth-child(4) { transition-delay: 0.46s; }

@media (max-width: 560px) {
  .pricegrid { grid-template-columns: 58px repeat(6, 1fr); gap: 3px; }
  .pricegrid__c { font-size: 9px; padding: 4px 1px; }
  .pricegrid__h { font-size: 8.5px; }
  .pricegrid__r { font-size: 9px; }
}

/* ============================================================
   SET-PIECE 2 — site kurulum demosu (#web-dizayn)
   Domain types itself, the logo tile lands, language chips cascade,
   then the "yayında" toast fires with a mini site preview.
   ============================================================ */
.builder { display: grid; gap: 14px; }
.builder__panel {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 44px -28px rgba(15, 32, 56, 0.24);
}
.builder__steps { display: flex; flex-direction: column; gap: 12px; }
.bstep { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--muted-dark); }
.bstep__num {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  background: rgba(27, 127, 212, 0.12);
  color: var(--accent-ink);
  transition: background 0.3s, color 0.3s;
}
.bstep.is-done .bstep__num { background: var(--grad-cta); color: var(--on-grad); }
.bstep__field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--paper-tint);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dark);
  min-height: 37px;
  overflow: hidden;
}
.bstep.is-active .bstep__field { border-color: rgba(27, 127, 212, 0.5); background: rgba(27, 127, 212, 0.06); }
.bstep__caret { width: 1.5px; height: 14px; background: var(--brand2); animation: caret 1.1s steps(1) infinite; flex: none; }
.bstep__logo {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--grad-cta);
  color: var(--on-grad);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.6) rotate(-12deg);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}
.bstep.is-done .bstep__logo { opacity: 1; transform: none; }
.langs { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; min-width: 0; }
.langs span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-ink);
  background: rgba(27, 127, 212, 0.1);
  border: 1px solid rgba(27, 127, 212, 0.22);
  border-radius: 6px;
  padding: 2px 7px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.langs span.is-on { opacity: 1; transform: none; }
.langs em { font-size: 10.5px; font-style: normal; font-weight: 700; color: var(--brand3); align-self: center; opacity: 0; transition: opacity 0.3s ease; }
.langs em.is-on { opacity: 1; }

.builder__live {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 700;
  color: #047857;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.builder__live.is-shown { opacity: 1; transform: none; }
.builder__live i {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 12px;
  background: rgba(52, 211, 153, 0.18);
  color: #047857;
}
.builder__live small { margin-left: auto; font-weight: 500; font-size: 11.5px; color: var(--muted-dark); font-variant-numeric: tabular-nums; }

/* mini site preview */
.miniweb {
  background: linear-gradient(160deg, #0e2a4d 0%, #071729 96%);
  border: 1px solid rgba(154, 190, 232, 0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.miniweb__bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px; border-bottom: 1px solid var(--line); background: rgba(4, 6, 18, 0.5); }
.miniweb__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(154, 190, 232, 0.25); flex: none; }
.miniweb__addr { margin-left: 6px; font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.miniweb__flag { margin-left: auto; font-size: 10px; font-weight: 700; color: #cddbff; background: rgba(27, 127, 212, 0.2); border-radius: 5px; padding: 1px 7px; }
.miniweb__hero { padding: 16px 16px 12px; }
.miniweb__h { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.miniweb__p { font-size: 10.5px; color: var(--muted); }
.miniweb__search { display: grid; grid-template-columns: 1fr 1fr auto; gap: 6px; margin-top: 12px; }
.miniweb__search div { font-size: 9.5px; color: var(--muted); background: rgba(154, 190, 232, 0.07); border: 1px solid var(--line); border-radius: 7px; padding: 6px 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.miniweb__search b { font-size: 9.5px; background: var(--grad-cta); color: var(--on-grad); border-radius: 7px; padding: 6px 12px; display: grid; place-items: center; white-space: nowrap; }
.miniweb__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 0 16px 16px; }
.miniweb__card { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: rgba(154, 190, 232, 0.05); }
.miniweb__thumb { height: 34px; background: linear-gradient(135deg, rgba(58, 167, 240, 0.3), rgba(30, 79, 192, 0.28)); }
.miniweb__card span { display: block; font-size: 9px; color: var(--muted); padding: 5px 7px 2px; }
.miniweb__card b { display: block; font-size: 10px; padding: 0 7px 6px; font-variant-numeric: tabular-nums; }

/* ============================================================
   SET-PIECE 3 — rezervasyon akışı (#rezervasyon)
   Search fields fill, result cards land, a payment link is sent
   and the booking confirms — then the channel funnel fills.
   ============================================================ */
.booking {
  background: linear-gradient(160deg, #0e2a4d 0%, #071729 96%);
  border: 1px solid rgba(154, 190, 232, 0.18);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.booking__search { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 8px; }
.booking__f {
  background: rgba(4, 6, 18, 0.5);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  min-width: 0;
}
.booking__f span { display: block; font-size: 9px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.booking__f b { display: block; font-size: 11.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-height: 17px; }
.booking__go {
  background: var(--grad-cta);
  color: var(--on-grad);
  border: 0;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
}
.booking__results { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; min-height: 156px; transition: opacity 0.4s ease; }
.booking__results.is-stale { opacity: 0.4; }
.bres {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(154, 190, 232, 0.06);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 11px;
  animation: bresin 0.42s cubic-bezier(0.2, 0.8, 0.3, 1.1) both;
}
@keyframes bresin { from { opacity: 0; transform: translateY(-10px) scale(0.97); } to { opacity: 1; transform: none; } }
.bres__ico {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(27, 127, 212, 0.18);
}
.bres__ico svg { width: 16px; height: 16px; fill: none; stroke: #a9c6ff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bres__body { min-width: 0; flex: 1; }
.bres__body strong { display: block; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bres__body span { font-size: 10.5px; color: var(--muted); }
.bres__price { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.bres.is-picked { border-color: rgba(27, 127, 212, 0.55); background: rgba(27, 127, 212, 0.14); }

.booking__pay {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 11.5px;
  background: rgba(245, 184, 75, 0.1);
  border: 1px solid rgba(245, 184, 75, 0.32);
  color: #ffeecd;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.booking__pay.is-shown { opacity: 1; transform: none; }
.booking__pay.is-paid { background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.35); color: #b8f5df; }
.booking__pay b { margin-left: auto; font-variant-numeric: tabular-nums; white-space: nowrap; }
.booking__pay i { font-style: normal; flex: none; }

.funnel { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.funnel__row { display: flex; align-items: center; gap: 12px; font-size: 12.5px; }
.funnel__row > span { width: 92px; flex: none; color: var(--muted-dark); }
.funnel__track { flex: 1; height: 10px; border-radius: 5px; background: rgba(15, 32, 56, 0.07); overflow: hidden; }
.funnel__track i { display: block; height: 100%; width: 0; border-radius: 5px; background: var(--grad); transition: width 1.1s cubic-bezier(0.3, 0.7, 0.3, 1); }
.funnel.in .funnel__track i { width: var(--w); }
.funnel__row b { width: 46px; flex: none; text-align: right; font-variant-numeric: tabular-nums; font-size: 12px; color: var(--ink-dark); }
.funnel__row:nth-child(2) .funnel__track i { transition-delay: 0.12s; }
.funnel__row:nth-child(3) .funnel__track i { transition-delay: 0.24s; }
.funnel__row:nth-child(4) .funnel__track i { transition-delay: 0.36s; }

@media (max-width: 620px) {
  .booking__search { grid-template-columns: 1fr 1fr; }
  .booking__go { grid-column: 1 / -1; padding: 10px 16px; }
  .funnel__row > span { width: 74px; font-size: 11.5px; }
}

/* ---------------- real product screenshot ---------------- */
.shot {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 64px -40px rgba(15, 32, 56, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 40px 74px -38px rgba(15, 32, 56, 0.5); }
.shot__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: linear-gradient(180deg, #fff, #f2f4ff);
  border-bottom: 1px solid var(--line-dark);
}
.shot__dot { width: 10px; height: 10px; border-radius: 50%; background: #dcdff0; flex: none; }
.shot__dot:nth-child(1) { background: #fb7185; }
.shot__dot:nth-child(2) { background: #f5b84b; }
.shot__dot:nth-child(3) { background: #34d399; }
.shot__addr {
  margin-left: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-dark);
}
.shot__frame { display: block; background: #eef0fd; line-height: 0; }
.shot__frame img { display: block; width: 100%; height: auto; }
.shot figcaption {
  padding: 13px 17px 15px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted-dark);
}
.shot figcaption strong { color: var(--ink-dark); font-family: var(--font-display); font-weight: 700; }

/* ---------------- modüller (numbered) ---------------- */
.mods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mod {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  overflow: hidden;
  box-shadow: 0 18px 44px -30px rgba(15, 32, 56, 0.2);
  transition: transform 0.28s ease, border-color 0.28s, box-shadow 0.28s;
}
.mod:hover { transform: translateY(-5px); border-color: rgba(27, 127, 212, 0.42); box-shadow: 0 28px 56px -28px rgba(15, 32, 56, 0.28); }
.mod__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  position: absolute;
  top: 18px;
  right: 20px;
}
.mod h3 { font-size: 17.5px; margin-bottom: 9px; padding-right: 52px; }
.mod p { font-size: 14px; line-height: 1.6; color: var(--muted-dark); }
@media (max-width: 960px) { .mods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mods { grid-template-columns: 1fr; } }

/* modül card images (used on /acente-web-sitesi — original artwork) */
.modshots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.modshot { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); background: linear-gradient(135deg, rgba(58, 167, 240, 0.28), rgba(30, 79, 192, 0.26)); box-shadow: 0 18px 44px -28px rgba(15, 32, 56, 0.28); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.modshot:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(15, 32, 56, 0.34); }
.modshot img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.modshot.img-fail img { display: none; }
.modshot.img-fail { aspect-ratio: 1; display: grid; place-items: center; }
.modshot.img-fail::after { content: '✦'; font-size: 40px; color: rgba(255, 255, 255, 0.72); }
.modshot figcaption { padding: 13px 16px 15px; background: #fff; font-size: 13px; line-height: 1.5; color: var(--muted-dark); }
.modshot figcaption strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--ink-dark); font-size: 14.5px; margin-bottom: 3px; }
@media (max-width: 900px) { .modshots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modshots { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ---------------- B2B automation timeline ---------------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tl {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 18px 44px -30px rgba(15, 32, 56, 0.2);
  transition: border-color 0.25s, transform 0.25s;
}
.tl:hover { border-color: rgba(27, 127, 212, 0.45); transform: translateY(-4px); }
.tl__time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--on-grad);
  background: var(--grad-cta);
  border-radius: 7px;
  padding: 3px 9px;
  margin-bottom: 14px;
}
.tl h3 { font-size: 17px; margin-bottom: 8px; }
.tl p { font-size: 14px; color: var(--muted-dark); }
@media (max-width: 960px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .timeline { grid-template-columns: 1fr; } }

/* ---------------- segments ---------------- */
.segs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seg {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 18px 44px -28px rgba(15, 32, 56, 0.22);
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.seg:hover { transform: translateY(-6px); border-color: rgba(27, 127, 212, 0.45); box-shadow: 0 30px 60px -26px rgba(15, 32, 56, 0.28); }
.seg__ico {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--grad-cta);
  margin-bottom: 16px;
}
.seg__ico svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.seg h3 { font-size: 18px; margin-bottom: 9px; }
.seg p { font-size: 13.5px; color: var(--muted-dark); line-height: 1.6; }
.seg .fcard__tags { margin-top: 14px; }
@media (max-width: 900px) { .segs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .segs { grid-template-columns: 1fr; } }

/* ---------------- paketler / pricing ---------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  box-shadow: 0 20px 48px -30px rgba(15, 32, 56, 0.22);
  transition: transform 0.28s ease, border-color 0.28s, box-shadow 0.28s;
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(27, 127, 212, 0.4); box-shadow: 0 32px 64px -30px rgba(15, 32, 56, 0.3); }
.plan--hot {
  border-color: rgba(27, 127, 212, 0.5);
  box-shadow: 0 30px 66px -26px rgba(21, 86, 184, 0.34);
}
.plan--hot::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad);
  border-radius: var(--radius) var(--radius) 0 0;
}
.plan__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--grad-cta);
  color: var(--on-grad);
  border-radius: 999px;
  padding: 5px 16px;
  white-space: nowrap;
  box-shadow: 0 12px 28px -12px rgba(21, 86, 184, 0.6);
}
.plan__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.plan__name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink-dark); }
.plan__off {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #b21e6f;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.plan__tag { margin-top: 8px; font-size: 13.5px; color: var(--muted-dark); }
.plan__prices { margin: 20px 0 4px; }
.plan__was { font-size: 14px; color: var(--muted-dark); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.plan__now {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-dark);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.plan__year { display: block; margin-top: 4px; font-size: 12.5px; color: var(--muted-dark); font-variant-numeric: tabular-nums; }
.plan__limited { display: block; margin: 18px 0 10px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand3); }
.plan .btn { width: 100%; justify-content: center; }
.plan__list { list-style: none; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 9px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 13.5px; line-height: 1.55; color: var(--muted-dark); }
.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px; height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  background: rgba(27, 127, 212, 0.13);
  color: var(--accent-ink);
}
.plan__list li.is-new { color: var(--ink-dark); font-weight: 600; }
.plan__list li.is-new::before { background: var(--grad-cta); color: var(--on-grad); }
.plans__note { max-width: 820px; margin: 32px auto 0; text-align: center; font-size: 13px; color: var(--muted-dark); }
@media (max-width: 1000px) {
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; gap: 30px; }
}

/* ---------------- integrations ---------------- */
.constel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 5 / 3;
}
.constel__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.constel__svg line.base { stroke: rgba(15, 32, 56, 0.13); stroke-width: 1.4; opacity: 0; transition: opacity 0.8s ease; }
.constel.in .constel__svg line.base { opacity: 1; }
.constel__pulse { opacity: 0; }
.constel__node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-dark);
  white-space: nowrap;
  box-shadow: 0 12px 30px -18px rgba(15, 32, 56, 0.32);
}
.constel__node--hub {
  background: var(--grad-cta);
  color: var(--on-grad);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 26px;
  box-shadow: 0 18px 44px -14px rgba(21, 86, 184, 0.6);
  z-index: 2;
}
@media (max-width: 760px) {
  .constel { aspect-ratio: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .constel__svg { display: none; }
  .constel__node { position: static; transform: none; font-size: 12px; padding: 8px 13px; }
  .constel__node--hub { order: -1; width: 100%; text-align: center; }
}

.intgroups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.intgroup {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px 24px 24px;
  box-shadow: 0 18px 44px -30px rgba(15, 32, 56, 0.2);
}
.intgroup h3 { font-size: 15px; margin-bottom: 16px; }
.intgroup ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.intgroup__logos { align-items: center; gap: 14px 18px; }
.intgroup__logos li { border: 0; background: none; padding: 0; }
.intgroup__logos img { height: 30px; width: auto; max-width: 130px; object-fit: contain; display: block; }
.intgroup li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dark);
  background: var(--paper-tint);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 6px 12px;
}
.intgroup__note { margin-top: 16px; font-size: 12px; color: var(--muted-dark); }
.constel__note { max-width: 720px; margin: 36px auto 0; text-align: center; font-size: 14px; color: var(--muted-dark); }
@media (max-width: 900px) { .intgroups { grid-template-columns: 1fr; } }

/* ---------------- MaxiAsist call-centre ---------------- */
.callcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.callcard {
  background: linear-gradient(160deg, #0e2a4d 0%, #071729 96%);
  border: 1px solid rgba(154, 190, 232, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.callcard h3 { color: var(--ink); font-size: 17px; }
.callcard b { font-family: var(--font-display); font-size: 26px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; margin-top: 8px; }
.callcard span { font-size: 12px; color: var(--muted); }
.callcard .btn { margin-top: 18px; justify-content: center; }
@media (max-width: 520px) { .callcards { grid-template-columns: 1fr; } }

/* ---------------- partner / senaryo cards ---------------- */
.scns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scn {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 26px 28px 30px;
  overflow: hidden;
  box-shadow: 0 18px 44px -30px rgba(15, 32, 56, 0.2);
  transition: transform 0.28s ease, border-color 0.28s, box-shadow 0.28s;
}
.scn::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--grad); }
.scn:hover { transform: translateY(-5px); border-color: rgba(27, 127, 212, 0.4); box-shadow: 0 28px 56px -28px rgba(15, 32, 56, 0.28); }
.scn__tag { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--accent-ink); margin-bottom: 10px; }
.scn p { font-size: 14px; color: var(--muted-dark); line-height: 1.65; }
.scn p + p { margin-top: 10px; }
.scn__rate { display: inline-block; margin-top: 14px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--on-grad); background: var(--grad-cta); border-radius: 999px; padding: 4px 13px; }
@media (max-width: 900px) { .scns { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; } }

/* ---------------- stats / avantajlar ---------------- */
.stats { padding: 84px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.stat {
  position: relative;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f2f4ff 100%);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: 0 18px 46px -32px rgba(15, 32, 56, 0.5);
}
.stat::before {
  content: '';
  display: block;
  width: 38px; height: 4px;
  margin-bottom: 18px;
  background: var(--grad);
  border-radius: 999px;
}
.stat b { display: block; font-family: var(--font-display); font-size: clamp(17px, 2vw, 22px); font-weight: 800; color: var(--ink-dark); }
.stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--muted-dark); }
@media (max-width: 960px) { .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; }
}

/* ---------------- duyurular ---------------- */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.newscard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 44px -30px rgba(15, 32, 56, 0.2);
  transition: transform 0.28s ease, border-color 0.28s, box-shadow 0.28s;
}
.newscard:hover { transform: translateY(-5px); border-color: rgba(27, 127, 212, 0.42); box-shadow: 0 28px 56px -28px rgba(15, 32, 56, 0.28); }
.newscard__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: rgba(27, 127, 212, 0.12);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 14px;
}
.newscard h3 { font-size: 17px; margin-bottom: 9px; }
.newscard p { font-size: 13.5px; color: var(--muted-dark); line-height: 1.6; }
.newscard ul { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.newscard li { position: relative; padding-left: 14px; font-size: 12.5px; line-height: 1.55; color: var(--muted-dark); }
.newscard li::before { content: '·'; position: absolute; left: 0; top: -1px; color: var(--brand3); font-weight: 800; }
.newscard__more {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.22s ease;
}
.newscard:hover .newscard__more { gap: 12px; }
@media (max-width: 960px) { .news { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news { grid-template-columns: 1fr; } }

/* ---------------- demo CTA (dark anchor) ---------------- */
.demo {
  position: relative;
  padding: 124px 0;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 42% at 50% -5%, rgba(27, 127, 212, 0.2), transparent 68%),
    linear-gradient(180deg, #10143a 0%, #061225 100%);
}
.demo[id] { scroll-margin-top: 88px; }
.demo__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 40% at 84% 82%, rgba(30, 79, 192, 0.16), transparent 70%);
  pointer-events: none;
}
.demo .container { position: relative; }
/* Maxi AI mascot — maxirez's own artwork. Purely decorative, so it drops out
   below 1180px where it would start crowding the three how-steps. */
.demo__mascot {
  position: absolute;
  left: 2.5%;
  bottom: 0;
  width: 172px;
  height: auto;
  opacity: 0.94;
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
}
@media (max-width: 1180px) { .demo__mascot { display: none; } }
.demo .section__head h2 { color: var(--ink); font-size: clamp(32px, 4.4vw, 52px); }
.demo .section__head p { color: var(--muted); }
.demo .kicker, .demo .kicker--accent { color: var(--brand1); }
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 940px; margin: 8px auto 0; }
.how__step { text-align: center; padding: 0 12px; }
.how__step b {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(27, 127, 212, 0.6);
  color: var(--brand1);
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 14px;
}
.how__step h3 { font-size: 16.5px; margin-bottom: 8px; color: var(--ink); }
.how__step p { font-size: 13.5px; color: var(--muted); }
.demo__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 48px; }
.demo .btn--ghost { color: var(--ink); border-color: var(--line); background: rgba(255, 255, 255, 0.04); }
.demo .btn--ghost:hover { border-color: rgba(27, 127, 212, 0.6); background: rgba(255, 255, 255, 0.07); }
.demo__note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 30px; }
@media (max-width: 720px) { .how { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------- FAQ ---------------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 0 26px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq__item[open] { border-color: rgba(27, 127, 212, 0.45); box-shadow: 0 16px 38px -24px rgba(15, 32, 56, 0.25); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink-dark);
  padding: 21px 36px 21px 0;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-ink);
  transition: transform 0.25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 24px; font-size: 15px; color: var(--muted-dark); }
.faq__item p + p { padding-top: 0; margin-top: -12px; }
.faq__item p strong { color: var(--ink-dark); }

/* ---------------- finale (dark anchor) ---------------- */
.finale {
  position: relative;
  text-align: center;
  padding: 130px 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 65% at 50% 115%, rgba(27, 127, 212, 0.22), transparent 72%),
    radial-gradient(ellipse 45% 50% at 15% 0%, rgba(30, 79, 192, 0.14), transparent 70%),
    var(--bg0);
  overflow: hidden;
}
.finale h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); font-weight: 800; margin-bottom: 18px; }
.finale p { color: var(--muted); font-size: 17px; }
.finale__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }
.finale .btn--ghost { color: var(--ink); border-color: var(--line); background: rgba(255, 255, 255, 0.04); }
.finale .btn--ghost:hover { border-color: rgba(27, 127, 212, 0.6); background: rgba(255, 255, 255, 0.07); }

/* ---------------- footer (near-black indigo) ---------------- */
.footer {
  background: #040d1a;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.25fr; gap: 40px; }
.footer__brandcol p { font-size: 14px; color: var(--muted); margin-top: 18px; max-width: 34ch; }
.footer__brandcol p a { color: var(--brand1); font-weight: 600; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer__social a:hover { border-color: rgba(27, 127, 212, 0.6); background: rgba(27, 127, 212, 0.1); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; fill: var(--muted); }
.footer__social a:hover svg { fill: var(--brand1); }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--brand1); }
.footer__addr { margin-bottom: 18px; }
.footer__addr b { display: block; color: var(--ink); font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.footer__addr span { display: block; font-size: 13px; color: var(--muted); line-height: 1.55; }
.footer__family { margin-top: 48px; padding-top: 34px; border-top: 1px solid rgba(154, 190, 232, 0.1); }
.footer__family .statement__family { justify-content: flex-start; margin-top: 0; }
.footer__family .statement__family a { font-size: 14px; padding: 9px 18px; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(154, 190, 232, 0.1);
  font-size: 12.5px;
  color: rgba(159, 182, 216, 0.75);
}
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   sub-page furniture — page hero + long-form prose
   ============================================================ */
.phero {
  position: relative;
  padding: 158px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 50% -20%, #dbe6ff 0%, transparent 62%),
    linear-gradient(180deg, #eaf0ff 0%, var(--paper) 78%);
}
.phero__sky { position: absolute; inset: 0; pointer-events: none; }
.phero .container { position: relative; }
.phero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin: 22px 0 18px; max-width: 22ch; }
.phero__sub { font-size: 17.5px; color: var(--muted-dark); max-width: 62ch; }
.phero__sub strong { color: var(--ink-dark); font-weight: 600; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.phero .btn--ghost {
  color: var(--ink-dark);
  border-color: rgba(15, 32, 56, 0.16);
  background: rgba(255, 255, 255, 0.68);
}
.phero .btn--ghost:hover { border-color: rgba(27, 127, 212, 0.55); background: rgba(255, 255, 255, 0.9); }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-dark); }
.crumbs a { color: var(--accent-ink); font-weight: 600; }
.crumbs span { opacity: 0.5; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 30px 0 12px; }
.prose p { font-size: 16.5px; color: var(--muted-dark); line-height: 1.72; }
.prose p + p { margin-top: 16px; }
.prose p strong { color: var(--ink-dark); }
.prose > ul { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 14px; }
.prose > ul > li {
  position: relative;
  padding-left: 21px;
  font-size: 15.5px;
  color: var(--muted-dark);
  line-height: 1.65;
}
.prose > ul > li strong { color: var(--ink-dark); }
.prose > ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--grad);
}
.prose blockquote {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  background: var(--paper-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15.5px;
  color: var(--ink-dark);
}
.prose blockquote strong { font-weight: 700; }

.awards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.award {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 44px -30px rgba(15, 32, 56, 0.2);
}
.award h3 { font-size: 16.5px; margin-bottom: 10px; }
.award p { font-size: 14px; color: var(--muted-dark); line-height: 1.62; }
.award p + p { margin-top: 10px; }
@media (max-width: 760px) { .awards { grid-template-columns: 1fr; } }

/* application channels (replaces the builder's POST form on a static host) */
.apply__intro h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; margin-bottom: 16px; }
.apply__intro > p { font-size: 16.5px; color: var(--muted-dark); }
.apply { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.apply__card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: 0 20px 48px -30px rgba(15, 32, 56, 0.22);
}
.apply__card h3 { font-size: 18px; margin-bottom: 14px; }
.apply__card > p { font-size: 14.5px; color: var(--muted-dark); }
.apply__fields { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.apply__fields li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dark);
  background: var(--paper-tint);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 6px 12px;
}
.apply__fields li b { color: var(--brand3); }
.apply__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.apply__actions .btn { justify-content: center; white-space: normal; text-align: center; }
@media (max-width: 900px) { .apply { grid-template-columns: minmax(0, 1fr); gap: 34px; } }

/* ---------------- reveal animations ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
/* stagger inside grids */
.features .fcard:nth-child(4n + 2), .mods .mod:nth-child(3n + 2), .timeline .tl:nth-child(3n + 2),
.scns .scn:nth-child(2), .segs .seg:nth-child(3n + 2), .stats .stat:nth-child(3n + 2),
.news .newscard:nth-child(3n + 2), .plans .plan:nth-child(2), .intgroups .intgroup:nth-child(2),
.modshots .modshot:nth-child(3n + 2), .awards .award:nth-child(2) { transition-delay: 0.08s; }
.features .fcard:nth-child(4n + 3), .mods .mod:nth-child(3n), .timeline .tl:nth-child(3n),
.scns .scn:nth-child(3), .segs .seg:nth-child(3n), .stats .stat:nth-child(3n),
.news .newscard:nth-child(3n), .plans .plan:nth-child(3), .intgroups .intgroup:nth-child(3),
.modshots .modshot:nth-child(3n) { transition-delay: 0.16s; }
.features .fcard:nth-child(4n) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .langs span, .langs em { opacity: 1; transform: none; }
  .contract__file, .contract__row { opacity: 1; transform: none; }
}

/* ---------------- mobile compaction ---------------- */
@media (max-width: 640px) {
  html { scroll-padding-top: 66px; }
  .container, .container--narrow { width: calc(100% - 40px); max-width: var(--maxw); }

  .section { padding: 72px 0; }
  .section[id], .statement[id], .demo[id] { scroll-margin-top: 66px; }
  .section__head { margin-bottom: 36px; }
  .section__head h2 { margin-bottom: 14px; }
  .section__head p { font-size: 15.5px; line-height: 1.55; }

  .statement { padding: 72px 0; }
  .statement__quote { font-size: 24px; }
  .statement__sub { margin-top: 18px; font-size: 15.5px; line-height: 1.55; }
  .statement__family { margin-top: 28px; gap: 9px; }
  .statement__family a { font-size: 13.5px; padding: 8px 16px; }

  .creed { padding: 34px 0; }

  .spotlight__inner, .spotlight__inner--flip { gap: 34px; }
  .spotlight__copy h2 { font-size: clamp(26px, 8vw, 34px); margin-bottom: 14px; }
  .spotlight__copy > p { font-size: 15.5px; line-height: 1.55; }
  .ticklist { margin: 18px 0; gap: 10px; }

  .nav__inner { height: 58px; gap: 14px; }
  .brand { gap: 8px; }
  .brand__mark { width: 28px; height: 28px; }
  .brand__word { font-size: 18px; }
  .nav__burger { padding: 6px; }
  .nav__burger span { width: 20px; }
  .nav__sheet { padding: 8px 16px 18px; max-height: calc(100vh - 58px); }

  .hero { padding: 88px 0 46px; }
  .hero__inner { gap: 28px; }
  .hero__copy, .hero__visual { min-width: 0; }
  .hero__visual { max-width: 380px; margin-inline: auto; }
  .chip--hero { max-width: 100%; gap: 7px; padding: 8px 12px; font-size: 12.5px; }
  .hero__title { margin: 18px 0 14px; font-size: 30px; }
  .hero__sub { font-size: 15.5px; line-height: 1.55; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
  .hero__actions .btn { width: 100%; flex: none; min-width: 0; justify-content: center; padding: 13px 12px; font-size: 14px; }
  .hero__price { padding-left: 0; border-left: 0; flex-direction: row; align-items: baseline; gap: 8px; justify-content: center; }
  .hero__trust { gap: 7px 14px; margin-top: 20px; }
  .hero__trust li { font-size: 12.5px; }

  /* the whole compacted panel fits, so there is no arbitrary crop */
  .mock { border-radius: 16px; }
  .mock__chrome { padding: 9px 12px; }
  .mock__body { min-height: 0; }
  .mock__main { gap: 10px; padding: 13px 12px 14px; }
  .mock__head { align-items: flex-start; gap: 10px; }
  .mock__pills span:last-child { display: none; }
  .mock__cards { gap: 8px; }
  .kpi { border-radius: 10px; padding: 8px 9px; }
  .mock__legend { display: none; }
  .mock__chartcard-head { flex-wrap: wrap; gap: 8px; }
  #flowChart { height: 82px; }
  .mock__row2 { display: none; }

  .aicmd { padding: 14px; border-radius: 16px; }
  .booking { padding: 14px; border-radius: 16px; }
  .builder__panel { padding: 16px; }
  .bstep { gap: 9px; font-size: 12.5px; }
  .miniweb__cards { grid-template-columns: repeat(2, 1fr); }

  .phero { padding: 108px 0 52px; }
  .phero h1 { font-size: 32px; margin: 16px 0 14px; }
  .phero__sub { font-size: 15.5px; line-height: 1.55; }
  .phero__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .phero__actions .btn { width: 100%; justify-content: center; }

  .prose h2 { margin: 34px 0 12px; }
  .prose p { font-size: 15.5px; line-height: 1.65; }
  .prose > ul > li { font-size: 14.5px; }

  .plan { padding: 24px 22px 26px; }
  .plan__now { font-size: 27px; }

  .demo { padding: 84px 0; }
  .demo__actions { gap: 10px; }
  .demo__actions .btn { width: 100%; justify-content: center; }
  .finale { padding: 92px 0; }
  .finale__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .finale__actions .btn { width: 100%; justify-content: center; }

  /* full-width stacked buttons wrap rather than push the page sideways */
  .hero__actions .btn, .phero__actions .btn,
  .demo__actions .btn, .finale__actions .btn { white-space: normal; text-align: center; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 27px; }
  .phero h1 { font-size: 29px; }
}
