/* ════════════════════════════════════════════════════════
   enksider.no — Luxury editorial dark gold theme
   Cormorant Garamond + DM Sans
════════════════════════════════════════════════════════ */

:root {
  --bg:       #0b0d0f;
  --bg2:      #111410;
  --bg3:      #16140e;
  --gold:     #c9a96e;
  --gold2:    #e8c98a;
  --gold3:    #a8843e;
  --text:     #f0ebe0;
  --muted:    #8a7d68;
  --muted2:   #b8a98a;
  --line:     rgba(201,169,110,.14);
  --line2:    rgba(201,169,110,.22);
  --panel:    rgba(255,255,255,.035);
  --panel2:   rgba(255,255,255,.055);
  --shadow:   0 30px 80px rgba(0,0,0,.65);
  --r:        20px;
  --r2:       28px;
  --max:      1140px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

/* ── Performance hints ────────────────────────────────── */
/* Promote animated orbs to their own compositor layer */
.amb-a, .amb-b {
  will-change: transform;
}
/* Sections are self-contained layout blocks */
.section, .trust-strip, .footer {
  contain: layout style;
}
/* Grain canvas is purely visual — isolate its paint */
#grain {
  isolation: isolate;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── Grain canvas ─────────────────────────────────────── */
#grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .028;
}

/* ── Ambient orbs ─────────────────────────────────────── */
.ambient {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.amb-a {
  position: absolute;
  width: 700px; height: 700px;
  left: -200px; top: -200px;
  background: radial-gradient(circle at 40% 40%, rgba(201,169,110,.10), transparent 65%);
  border-radius: 999px;
  filter: blur(40px);
}
.amb-b {
  position: absolute;
  width: 600px; height: 500px;
  right: -150px; top: 100px;
  background: radial-gradient(circle at 60% 40%, rgba(168,132,62,.07), transparent 65%);
  border-radius: 999px;
  filter: blur(50px);
}

/* ── Container ────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ── Skip ─────────────────────────────────────────────── */
.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 16px; top: 16px;
  padding: 10px 16px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  z-index: 9999;
}

/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled {
  background: rgba(11,13,15,.82);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  transition: padding .3s;
}
.header.scrolled .header__inner { padding: 14px 0; }

/* Brand */
.brand {
  display: flex; align-items: center; gap: 10px;
}
.brand__gem {
  width: 16px; height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 0 20px rgba(201,169,110,.35);
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--text);
}
.brand__dot { color: var(--gold); }

/* Nav */
.nav {
  display: flex; gap: 6px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--muted2);
  transition: color .18s, background .18s;
}
.nav a:hover { color: var(--text); background: var(--panel); }

/* Header right */
.header__right {
  display: flex; align-items: center; gap: 10px;
}

/* Burger */
.burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  background: var(--panel);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--muted2);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile nav */
.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(11,13,15,.95);
  backdrop-filter: blur(16px);
}
.mobile-nav__inner {
  display: grid; gap: 8px;
  padding: 14px 0 20px;
}
.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 15px; font-weight: 500;
  color: var(--muted2);
}
.mobile-nav a:hover { color: var(--text); }

/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2));
  color: #0b0d0f;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: .02em;
  border: none; cursor: pointer;
  transition: transform .18s, box-shadow .18s, filter .18s;
  box-shadow: 0 4px 24px rgba(201,169,110,.2);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,169,110,.32);
  filter: brightness(1.06);
}
.btn-gold:active { transform: translateY(0); }
.btn-gold--submit { width: 100%; justify-content: center; padding: 15px; }

.btn-gold-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2));
  color: #0b0d0f;
  font-weight: 600; font-size: 13px;
  border: none; cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 2px 12px rgba(201,169,110,.18);
}
.btn-gold-sm:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,.28); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: var(--panel);
  color: var(--muted2);
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.btn-ghost:hover {
  background: var(--panel2);
  border-color: rgba(201,169,110,.32);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted2);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.btn-ghost-sm:hover { background: var(--panel); color: var(--text); }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  padding: 130px 0 80px;
  position: relative; z-index: 1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

/* Left copy */
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow__line {
  display: block; width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  color: var(--text);
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero__lead {
  font-size: 16px; line-height: 1.7;
  color: var(--muted2);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.trust__item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--muted);
}
.trust__check {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

/* Device mockup */
.hero__right { position: relative; }

.device {
  border-radius: var(--r2);
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 380px;
  margin-left: auto;
}
.device__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.28);
}
.d-dot {
  width: 9px; height: 9px;
  border-radius: 999px; flex-shrink: 0;
}
.d-r { background: #ff5a6a; opacity: .85; }
.d-y { background: #ffd166; opacity: .85; }
.d-g { background: #48e5a8; opacity: .85; }
.device__url {
  margin-left: 6px;
  font-size: 12px; color: rgba(255,255,255,.55);
  font-family: var(--sans);
}
.device__body { padding: 14px; }

/* Mock site inside device */
.mocksite {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(400px 200px at 30% 10%, rgba(201,169,110,.18), transparent 60%),
    radial-gradient(300px 200px at 80% 0%, rgba(232,201,138,.10), transparent 60%),
    rgba(255,255,255,.02);
  overflow: hidden;
}
.mocksite__hero {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ms-badge {
  display: inline-flex;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(201,169,110,.08);
  font-size: 11px; color: var(--gold);
  margin-bottom: 10px;
}
.ms-title {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  margin-bottom: 5px; color: var(--text);
}
.ms-sub { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.ms-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.ms-chips span {
  padding: 6px 9px; border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(201,169,110,.06);
  font-size: 11px; color: var(--muted2);
}
.mocksite__cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; padding: 12px;
}
.ms-card {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  padding: 10px;
}
.ms-ico { font-size: 16px; }
.ms-ct { font-size: 11px; font-weight: 600; color: var(--muted2); margin-top: 6px; }
.mocksite__bars {
  display: flex; gap: 7px;
  padding: 0 12px 12px;
}
.mocksite__bars div {
  height: 8px; border-radius: 999px; flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}

/* Float cards removed */

/* ════════════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
  position: relative; z-index: 1;
}
.trust-strip__inner {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.ts-label {
  font-size: 12px; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.ts-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ts-chips span {
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 13px; font-weight: 500;
  color: var(--muted2);
}

/* ════════════════════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════════════════════ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section--warm {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px 60px;
  align-items: start;
  margin-bottom: 56px;
}
.section-head--narrow {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.section-eyebrow {
  font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 4px;
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--text);
  grid-column: 1;
}
.section-h2 em { font-style: italic; color: var(--gold2); }
.section-sub {
  font-size: 15px; line-height: 1.7;
  color: var(--muted2);
  max-width: 52ch;
  grid-column: 2;
  grid-row: 1 / 3;
  padding-top: 2px;
}

/* ════════════════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bcard {
  padding: 28px;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .22s, background .22s, transform .22s;
  position: relative; overflow: hidden;
}
.bcard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.3), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.bcard:hover {
  border-color: var(--line2);
  background: var(--panel2);
  transform: translateY(-3px);
}
.bcard:hover::before { opacity: 1; }
.bcard__icon { font-size: 24px; margin-bottom: 16px; }
.bcard h3 {
  font-family: var(--serif);
  font-size: 21px; font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.bcard p { font-size: 14px; line-height: 1.68; color: var(--muted2); }

/* ════════════════════════════════════════════════════════
   EXAMPLES
════════════════════════════════════════════════════════ */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ex-card {
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .22s, transform .22s;
}
.ex-card:hover { border-color: var(--line2); transform: translateY(-4px); }

.ex-card__thumb {
  height: 200px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.ex-card__thumb--a {
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(201,169,110,.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168,132,62,.22), transparent 60%),
    linear-gradient(160deg, #1a1510, #0b0d0f);
}
.ex-card__thumb--b {
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(41,82,163,.4), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(245,158,11,.18), transparent 60%),
    linear-gradient(160deg, #0d1420, #080c14);
}
.ex-card__thumb--c {
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(13,148,136,.38), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(10,124,111,.20), transparent 60%),
    linear-gradient(160deg, #071a18, #071210);
}
.ex-thumb-inner {
  padding: 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  width: 100%;
}
.et-title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: #fff; margin-bottom: 3px;
}
.et-sub { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.et-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.et-chips span {
  padding: 4px 9px; border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px; color: rgba(255,255,255,.8);
}

.ex-card__body {
  padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; flex: 1;
}
.ex-card__info h3 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  margin-bottom: 4px; color: var(--text);
}
.ex-card__info p { font-size: 13px; color: var(--muted); }
.ex-card__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.tag {
  padding: 5px 9px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 11.5px; color: var(--muted);
}

.ex-card__actions {
  display: flex; gap: 10px;
  padding: 0 18px 16px;
}
.ex-card__actions .btn-ghost {
  padding: 9px 14px; font-size: 13px;
  border-radius: 11px;
}

.ex-note {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: var(--r2);
  border: 1px solid var(--line2);
  background: var(--panel2);
  display: flex; align-items: flex-start; gap: 14px;
}
.ex-note__icon {
  font-size: 18px; color: var(--gold);
  flex-shrink: 0; margin-top: 2px;
}
.ex-note strong { color: var(--text); font-size: 15px; }
.ex-note p { font-size: 13.5px; color: var(--muted2); margin-top: 4px; line-height: 1.6; }

/* ════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
}
.pcard {
  padding: 30px;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
}
.pcard--pro {
  border-color: var(--line2);
  background:
    radial-gradient(400px 260px at 20% 0%, rgba(201,169,110,.08), transparent 60%),
    var(--panel);
}
.pcard__badge {
  position: absolute; top: 16px; right: 16px;
  padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  background: rgba(201,169,110,.14);
  border: 1px solid var(--line2);
  color: var(--gold);
  letter-spacing: .06em;
}
.pcard__label {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  color: var(--text);
}
.pcard__sub { font-size: 13.5px; color: var(--muted); margin-top: -14px; }
.pcard__price {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pcard__num {
  font-family: var(--serif);
  font-size: 52px; font-weight: 400;
  color: var(--gold2); line-height: 1;
  letter-spacing: -.02em;
}
.pcard__per { font-size: 14px; color: var(--muted); font-weight: 500; }
.pcard__list {
  list-style: none;
  display: grid; gap: 11px;
  flex: 1;
}
.pcard__list li {
  font-size: 14px; color: var(--muted2);
  padding-left: 22px; position: relative;
}
.pcard__list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
}
.pcard__fine {
  font-size: 12.5px; color: var(--muted);
  padding-top: 16px; border-top: 1px solid var(--line);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   PROCESS / STEPS
════════════════════════════════════════════════════════ */
.steps {
  list-style: none;
  display: grid; gap: 12px;
  counter-reset: steps;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start;
  padding: 26px;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .22s, background .22s;
}
.step:hover { border-color: var(--line2); background: var(--panel2); }
.step__num {
  font-family: var(--serif);
  font-size: 36px; font-weight: 300;
  color: var(--gold);
  opacity: .7;
  line-height: 1;
  padding-top: 2px;
  letter-spacing: -.02em;
}
.step__body h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  margin-bottom: 8px; color: var(--text);
}
.step__body p { font-size: 14px; line-height: 1.68; color: var(--muted2); }

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq { display: grid; gap: 10px; max-width: 720px; }
.faq__item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--line2); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  color: var(--gold);
  flex-shrink: 0; line-height: 1;
  transition: transform .2s;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__body {
  padding: 0 20px 18px;
  font-size: 14px; line-height: 1.7;
  color: var(--muted2);
}

/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.section--contact {
  background:
    radial-gradient(800px 500px at 10% 50%, rgba(201,169,110,.06), transparent 60%),
    radial-gradient(600px 400px at 90% 30%, rgba(168,132,62,.04), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px; align-items: start;
}
.contact-copy .section-eyebrow { margin-bottom: 14px; }
.contact-copy .section-h2 { margin-bottom: 18px; }
.contact-copy > p {
  font-size: 15px; line-height: 1.7;
  color: var(--muted2); max-width: 44ch;
  margin-bottom: 36px;
}

.contact-info { display: grid; gap: 0; }
.ci-row {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.ci-row:last-child { border-bottom: none; }
.ci-label {
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  min-width: 80px;
}
.ci-val {
  font-size: 15px; font-weight: 500;
  color: var(--text);
}
.ci-val a { color: var(--gold); }
.ci-val a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Form */
.contact-form {
  padding: 32px;
  border-radius: var(--r2);
  border: 1px solid var(--line2);
  background: var(--bg2);
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.cf-field {
  display: grid; gap: 7px;
  margin-bottom: 14px;
}
.cf-field label {
  font-size: 11.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500;
}
.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-family: var(--sans); font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: rgba(201,169,110,.45);
  box-shadow: 0 0 0 4px rgba(201,169,110,.08);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--muted); }
.cf-msg {
  margin-top: 12px;
  font-size: 13.5px; color: var(--gold);
  min-height: 20px; line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.footer__inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 20px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
.footer__left p {
  font-size: 13.5px; color: var(--muted);
  margin-top: 8px;
}
.footer__right {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.footer__right a {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13.5px; color: var(--muted);
  font-weight: 500;
  transition: color .18s, background .18s;
}
.footer__right a:hover { color: var(--text); background: var(--panel); }
.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer__bottom p {
  font-size: 12.5px; color: var(--muted);
}

/* ════════════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
  z-index: 200;
}
.modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  width: min(1100px, 100%);
  height: min(740px, calc(100vh - 60px));
  border-radius: 24px;
  border: 1px solid var(--line2);
  background: var(--bg2);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.modal__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal__title {
  font-family: var(--serif);
  font-size: 16px; font-weight: 500;
  color: var(--text);
}
.modal__bar-right { display: flex; align-items: center; gap: 10px; }
.modal__close {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.modal__close:hover { background: var(--panel2); color: var(--text); }
.modal__frame {
  width: 100%; height: 100%;
  border: 0;
  background: #0b0d0f;
}

/* ════════════════════════════════════════════════════════
   REVEAL (scroll animation base state)
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__right {
    max-width: 460px;
    margin: 0 auto;
  }
  .float-card { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .section-sub { grid-column: 1; grid-row: auto; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .examples-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 640px) {
  .hero { padding: 110px 0 60px; }
  .hero__h1 { font-size: clamp(40px, 10vw, 58px); }
  .benefits-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .steps .step { grid-template-columns: 1fr; gap: 10px; }
  .contact-form { padding: 22px; }
  .ts-chips span { font-size: 12px; padding: 6px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
