/* ============ Tokens — Presentation style ============ */
:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #16161a;
  --surface: linear-gradient(180deg, #1c1c20, #131316);
  --surface-glass: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --border-wine: rgba(155, 30, 45, 0.35);

  --text: #ececee;
  --text-muted: #9a9aa3;
  --text-dim: #5e5e68;

  --wine: #9b1e2d;
  --wine-deep: #6b1521;
  --wine-glow: rgba(155, 30, 45, 0.45);
  --silver: #c8c8cf;
  --silver-light: #e8e8ec;
  --silver-deep: #7a7a82;

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1240px;

  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.6);
  --shadow-wine: 0 20px 60px -20px var(--wine-glow);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(155,30,45,0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(155,30,45,0.05), transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
  color: var(--silver-light);
}

h1 { font-weight: 500; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 500; }
h3 { font-size: 22px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
h4, h5 { font-family: 'Inter', sans-serif; }

.accent { color: var(--wine); }
.silver-text {
  background: linear-gradient(180deg, #f5f5f7 0%, #b8b8c0 60%, #88888f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 900px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: linear-gradient(180deg, #b32536, #7a1623);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px -8px var(--wine-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #c52a3d, #8a1a28);
  box-shadow: 0 12px 32px -8px var(--wine-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn--secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: var(--silver-light);
  border-color: var(--border-strong);
}
.btn--secondary:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
  padding: 10px 20px;
  font-size: 12px;
}
.btn--ghost:hover { background: rgba(255,255,255,.04); }
.btn--block { width: 100%; justify-content: center; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,12,.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.18em;
}
.logo span { color: var(--silver-light); }
.logo .logo-i { color: var(--wine); }
.nav__menu {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav__menu a:hover { color: var(--silver-light); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__orb--a { width: 600px; height: 600px; background: var(--wine); top: -200px; left: -150px; opacity: .25; }
.hero__orb--b { width: 500px; height: 500px; background: var(--wine-deep); bottom: -200px; right: -100px; opacity: .15; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-wine);
  background: rgba(155, 30, 45, 0.08);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 32px;
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 10px var(--wine); }

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--silver-light);
}
.hero__title em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}
.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__trust {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--silver-light);
  letter-spacing: -0.01em;
}
.hero__trust span { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* Hero visual — glass cards */
.hero__visual { position: relative; height: 480px; }
.glass-card {
  position: absolute;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    linear-gradient(180deg, #1a1a1e, #0f0f12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.glass-card--1 { top: 20px; right: 20px; width: 340px; }
.glass-card--2 { bottom: 30px; left: 0; width: 300px; }
.glass-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.glass-card__row strong {
  color: var(--silver-light);
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}
.glass-card__row.small { font-size: 12px; margin-bottom: 0; color: var(--text-dim); }
.glass-card__bar {
  height: 4px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden;
  margin: 18px 0;
}
.glass-card__bar div { height: 100%; width: 62%; background: linear-gradient(90deg, var(--wine), var(--wine-deep)); border-radius: 999px; box-shadow: 0 0 12px var(--wine-glow); }
.spark svg { width: 100%; height: 40px; }

/* ============ Stats ============ */
.stats {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(155,30,45,0.06), transparent 60%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  position: relative;
}
.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #f5f5f7 0%, #a8a8b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ Sections ============ */
.section { padding: 120px 0; position: relative; }
.section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--alt::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(155,30,45,0.06), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(155,30,45,0.04), transparent 60%);
  pointer-events: none;
}
.section > .container { position: relative; }

.section__head { text-align: center; margin-bottom: 72px; max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--wine);
  margin-bottom: 18px;
}
.section__head p {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 17px;
}
.section__foot { text-align: center; margin-top: 56px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--silver);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--wine);
  padding-bottom: 4px;
}
.link-arrow:hover { color: var(--silver-light); }

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding: 36px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all .3s ease;
}
.step:hover {
  border-color: var(--border-wine);
  transform: translateY(-4px);
  box-shadow: var(--shadow-wine);
}
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--wine);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 { margin-bottom: 12px; font-size: 18px; }
.step p { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* ============ Payment systems ============ */
.payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.payment {
  padding: 32px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .3s ease;
}
.payment:hover { border-color: var(--border-wine); transform: translateY(-2px); }
.payment__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.payment__icon svg { width: 26px; height: 26px; }
.payment h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.payment p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ============ Products ============ */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.product {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.product:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.product--featured {
  background:
    linear-gradient(180deg, rgba(155,30,45,0.12), rgba(155,30,45,0.02)),
    var(--bg-3);
  border-color: var(--border-wine);
  box-shadow: 0 30px 80px -30px var(--wine-glow);
}
.product__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #b32536, #7a1623);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 12px -4px var(--wine-glow);
}
.product__head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.product__head p { color: var(--text-muted); font-size: 13px; margin: 0 0 28px; min-height: 40px; line-height: 1.5; }
.product__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.product__from { color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.product__amount {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--silver-light);
}
.product__rate {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.product__rate strong {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--silver-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.product--featured .product__rate strong { color: var(--wine); }
.product__rate span { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.product__list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.product__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.5;
}
.product__list li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--wine);
  border-bottom: 1.5px solid var(--wine);
  transform: rotate(-45deg);
}

/* ============ Calculator ============ */
.calc {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(155,30,45,0.08), transparent 50%);
  pointer-events: none;
}
.calc__head { text-align: center; margin-bottom: 36px; position: relative; }
.calc__head h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 500; margin-bottom: 8px; }
.calc__head p { color: var(--text-muted); margin: 0; font-size: 14px; }
.calc__body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.calc__controls label { display: block; margin-bottom: 28px; }
.calc__controls label > span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.calc__controls input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 4px;
  background: rgba(255,255,255,.1); border-radius: 999px; outline: none;
}
.calc__controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(180deg, #c8c8cf, #7a7a82);
  cursor: pointer; border: 3px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.calc__controls output {
  display: block; margin-top: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--silver-light);
}
.calc__controls select {
  width: 100%; padding: 14px 18px;
  background: var(--bg); color: var(--silver-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.calc__results {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.calc__metric { display: flex; justify-content: space-between; align-items: baseline; }
.calc__metric span { color: var(--text-muted); font-size: 13px; letter-spacing: 0.04em; }
.calc__metric strong { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--silver-light); }
.calc__metric--total { padding-top: 18px; border-top: 1px solid var(--border); }
.calc__metric--total strong { color: var(--wine); font-size: 34px; }

/* ============ Features ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  transition: all .3s ease;
}
.feature:hover { border-color: var(--border-wine); }
.feature__icon {
  width: 52px; height: 52px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--silver-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 10px; font-size: 18px; }
.feature p { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* ============ About / Team ============ */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.about__text p { color: var(--text-muted); margin: 18px 0 0; font-size: 16px; line-height: 1.7; }
.about__visual {
  padding: 56px 40px;
  background:
    linear-gradient(180deg, rgba(155,30,45,0.1), rgba(155,30,45,0.02)),
    var(--bg-3);
  border: 1px solid var(--border-wine);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-wine);
}
.about__visual .num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--silver-light);
}
.about__visual .lbl {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team__card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.team__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.team__card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--silver-light);
}
.team__card span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.team__card p { color: var(--text-muted); font-size: 13px; margin: 14px 0 0; line-height: 1.55; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  cursor: pointer;
  transition: all .25s ease;
}
.faq details[open] { border-color: var(--border-wine); }
.faq summary {
  font-weight: 500;
  font-size: 16px;
  color: var(--silver-light);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--wine);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--text-muted); margin: 18px 0 0; font-size: 15px; line-height: 1.7; }

/* ============ Partners ============ */
.partners { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }
.partners h2 { margin: 16px 0 24px; }
.partners p { color: var(--text-muted); margin: 0 0 32px; font-size: 16px; line-height: 1.65; }
.partners__stats { display: flex; flex-direction: column; gap: 16px; }
.partners__stats div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.partners__stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--wine);
}
.partners__stats span { color: var(--text-muted); font-size: 13px; text-align: right; letter-spacing: 0.04em; }

/* ============ Form ============ */
.cta { text-align: center; }
.cta > p { color: var(--text-muted); max-width: 560px; margin: 16px auto 48px; font-size: 17px; }
.form {
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 40px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form label { display: block; margin-bottom: 18px; }
.form label > span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  color: var(--silver-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--wine); }
.form textarea { resize: vertical; }
.form__check { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.form__check input { width: auto; }
.form__check span { margin: 0 !important; text-transform: none !important; letter-spacing: 0 !important; }
.form__success {
  margin-top: 18px;
  padding: 16px;
  background: rgba(155,30,45,.1);
  border: 1px solid var(--border-wine);
  color: var(--silver-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
}

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.contact-tile {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: all .25s ease;
}
.contact-tile:hover { border-color: var(--border-wine); }
.contact-tile strong {
  display: block;
  font-size: 12px;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.contact-tile span { color: var(--silver-light); font-size: 14px; }

/* ============ Footer ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__brand p { color: var(--text-muted); font-size: 14px; max-width: 300px; margin: 18px 0 0; }
.footer__col h5 {
  font-size: 11px;
  color: var(--silver-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col a { display: block; color: var(--text-muted); font-size: 14px; padding: 4px 0; }
.footer__col a:hover { color: var(--silver-light); }
.footer__legal {
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.footer__legal p { margin: 0 0 14px; }
.footer__disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.footer__copy { color: var(--text-dim); margin-top: 28px !important; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .steps, .payments, .products, .features, .team { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about, .partners { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .calc__body { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  .nav__menu, .nav__cta { display: none; }
  body.menu-open .nav__menu {
    display: flex;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    padding: 28px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  body.menu-open .nav__cta { display: flex; padding: 0 28px 28px; background: var(--bg-2); position: absolute; top: 320px; left:0; right:0; }
  .burger { display: block; }

  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .hero__title { font-size: 38px; }
  .hero__trust { gap: 28px; }
  .hero__trust strong { font-size: 22px; }
  .stats { padding: 36px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat__num { font-size: 28px; }
  .steps, .payments, .products, .features, .team, .contact-grid, .footer__top { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .calc { padding: 28px; }
  .about__visual .num { font-size: 52px; }
  .product__rate strong { font-size: 44px; }
  .form { padding: 28px; }
}
