/* ============================================================
   Mise Reserve — Dark/Gold Premium Theme
   ============================================================ */

:root {
  /* Core palette — rich dark + warm gold */
  --black:        #0c0c0a;
  --surface-1:    #141410;
  --surface-2:    #1e1e18;
  --surface-3:    #262620;
  --border:       rgba(200,147,63,0.18);
  --border-light: rgba(255,255,255,0.07);

  /* Gold accent system */
  --gold:         #c8933f;
  --gold-light:   #e8c47a;
  --gold-dim:     #9a7028;
  --gold-glow:    rgba(200,147,63,0.15);

  /* Text */
  --text:         #f0ece4;
  --text-muted:   rgba(240,236,228,0.55);
  --text-subtle:  rgba(240,236,228,0.30);

  /* Green accents */
  --green-deep:   #1a3028;
  --green-mid:    #2d5743;
  --green-light:  #8fa88a;
  --sage:         #c8d4c2;

  /* Accent variants */
  --accent:       var(--gold);
  --accent-hover: #d4a44a;

  /* Section backgrounds */
  --section-dark:  var(--surface-1);
  --section-mid:   var(--surface-2);
  --section-light: #1e1e18;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200,147,63,0.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold-light);
}

.btn-large { padding: 17px 44px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── TOP NAV ─────────────────────────────────────────────── */

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}

.site-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.site-nav-logo:hover { color: var(--gold-light); }

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav-login {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-nav-login:hover {
  color: var(--gold-light);
  border-color: rgba(200,147,63,0.4);
  background: var(--gold-glow);
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,147,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,147,63,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 65%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(200,147,63,0.08) 0%, transparent 65%);
  pointer-events: none;
}

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

.hero-deco-line {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(200,147,63,0.2), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(200,147,63,0.06);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200,147,63,0.6);
}

.hero-headline {
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-feature::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* Hero visual — image */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200,147,63,0.08) 0%,
    transparent 50%,
    rgba(0,0,0,0.3) 100%
  );
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

/* Floating accent card over image */
.hero-accent-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(20,20,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-accent-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-deep);
  border: 1px solid rgba(143,168,138,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-accent-card-text {}
.hero-accent-card-label {
  font-size: 11px;
  color: var(--green-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 500;
}
.hero-accent-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(200,147,63,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* ── VALUE PROPOSITION STRIP ─────────────────────────────── */

.vp-strip {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.vp-item {
  padding: 0 32px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vp-item:first-child { padding-left: 0; }
.vp-item:last-child { border-right: none; padding-right: 0; }

.vp-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.vp-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.vp-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── MANIFESTO ────────────────────────────────────────────── */

.manifesto {
  padding: 120px 0;
  background: var(--black);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.manifesto-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.manifesto-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--text);
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.manifesto-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 300;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon { flex-shrink: 0; margin-top: 2px; }

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── PRODUCTS / CATEGORIES ────────────────────────────────── */

.products {
  padding: 100px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
}

.products .section-tag { color: var(--gold); }
.products .section-title { color: var(--text); }
.products .section-sub { color: var(--text-muted); font-weight: 300; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,147,63,0.1);
}

.product-icon-wrap { margin-bottom: 20px; }

.product-name {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
  flex: 1;
}

.product-availability {
  font-size: 11px;
  color: var(--green-light);
  font-weight: 400;
  margin-bottom: 8px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.product-features li {
  font-size: 12px;
  color: var(--text-subtle);
  padding: 4px 0;
}

.product-features li::before {
  content: '— ';
  color: var(--gold-dim);
}

/* ── SUBSCRIPTION TIERS STRIP ─────────────────────────────── */

.tiers-strip {
  padding: 100px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border-light);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.tier-card {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tier-card.featured {
  border-color: var(--border);
  box-shadow: 0 0 0 1px var(--border), 0 0 48px rgba(200,147,63,0.08);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 8px;
}

.tier-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.tier-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.tier-features li svg { flex-shrink: 0; color: var(--gold-dim); }

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 20px;
}

.tier-price strong {
  font-size: 20px;
  color: var(--gold-light);
  font-weight: 600;
}

/* ── AI FEATURES STRIP ────────────────────────────────────── */

.ai-features {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border-light);
}

.ai-features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-features-copy .section-tag { color: var(--gold); }

.ai-features-copy .section-title {
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 20px;
  line-height: 1.25;
}

.ai-features-copy .section-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 18px;
  transition: border-color 0.2s;
}

.ai-feature-card:hover { border-color: var(--border); }

.ai-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
}

.ai-feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.ai-feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.ai-features-visual {
  position: relative;
}

.ai-dashboard-mock {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.mock-header {
  background: var(--surface-3);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green  { background: #28c840; }

.mock-title {
  font-size: 12px;
  color: var(--text-subtle);
  margin-left: 8px;
  font-weight: 400;
}

.mock-body { padding: 24px; }

.mock-section { margin-bottom: 20px; }

.mock-section-label {
  font-size: 10px;
  color: var(--text-subtle);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--surface-3);
  border-radius: 6px;
  margin-bottom: 6px;
}

.mock-row-label { font-size: 12px; color: var(--text-muted); }
.mock-row-value { font-size: 12px; color: var(--gold-light); font-weight: 500; }

.mock-bar {
  height: 6px;
  background: var(--surface-3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 3px;
}

.mock-status-dots {
  display: flex;
  gap: 6px;
}

.mock-status-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.mock-status-dot.green  { background: rgba(40,200,64,0.2); color: #28c840; }
.mock-status-dot.gold   { background: rgba(200,147,63,0.2); color: var(--gold); }
.mock-status-dot.muted  { background: var(--surface-3); color: var(--text-subtle); }

/* ── SOCIAL PROOF ────────────────────────────────────────── */

.social-proof {
  padding: 100px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.trust-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 14px;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */

.how-it-works {
  padding: 100px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text);
  font-weight: 600;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 280px;
  padding: 0 40px;
  text-align: center;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  flex-shrink: 0;
  margin-top: 36px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(200,147,63,0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.step-title {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 600;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CLOSING / CTA ────────────────────────────────────────── */

.closing {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.closing-decoration {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
  padding: 56px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-link-group h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-link-group ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-group a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-link-group a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-subtle);
}

/* ── ORDER SECTION (original catalog form) ─────────────────── */

.order-section {
  padding: 100px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border-light);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.order-info .section-tag { color: var(--gold); }

.order-title {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 20px;
}

.order-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.order-features { display: flex; flex-direction: column; gap: 12px; }

.order-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.order-feat svg { color: var(--gold-dim); flex-shrink: 0; }

/* Order Form */
.order-form-wrap {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
}

.order-form { display: flex; flex-direction: column; gap: 32px; }

.form-section { display: flex; flex-direction: column; gap: 16px; }

.form-section-title {
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.required { color: var(--gold); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--surface-3);
  resize: vertical;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-dim);
  background: var(--surface-2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

/* Product select grid */
.product-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-select-group { display: flex; flex-direction: column; gap: 8px; }

.product-select-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-select-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.product-select-note { font-size: 11px; color: var(--text-subtle); }

.product-select-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--surface-3);
  resize: none;
  transition: border-color 0.2s;
}

.product-select-group textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
}

.product-select-group textarea::placeholder { color: var(--text-subtle); }

.form-error {
  color: #e05c5c;
  font-size: 14px;
  padding: 12px 16px;
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.3);
  border-radius: 8px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-light);
  font-size: 14px;
  padding: 16px 20px;
  background: rgba(45,87,67,0.3);
  border: 1px solid rgba(143,168,138,0.3);
  border-radius: 8px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-features-inner { grid-template-columns: 1fr; gap: 48px; }
  .ai-features-visual { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .vp-item:nth-child(4), .vp-item:nth-child(5) { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .manifesto-pillars { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .order-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .product-select-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 70px 0 60px; min-height: auto; }
  .hero-headline { font-size: 38px; }
  .hero-cta-group { flex-direction: column; }
  .hero-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .vp-grid { grid-template-columns: 1fr 1fr; }
  .vp-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 20px 0; }
  .vp-item:nth-child(4), .vp-item:nth-child(5) { display: block; }
  .ai-features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 24px; }
  .closing { padding: 80px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; }
  .site-nav { padding: 16px 24px; }
  .site-nav-logo { font-size: 17px; }
}