/* ==============================================
   RAHRI DESIGN SYSTEM
   ==============================================
   Brand: British Racing Green + Amber Gold
   Typography: Space Grotesk (headings) + Inter (body)
   Rule: NO BLACK (#000) anywhere
   ============================================== */

/* ---- TOKENS ---- */
:root {
  /* Primary Greens */
  --forest-deep: #003C2A;
  --brg: #004D38;
  --emerald: #006B4E;
  --jade: #00896A;
  --mist: #E6F5F0;
  --frost: #F2FAF7;

  /* Warm Neutrals */
  --deep-pine: #1C2B26;
  --charcoal: #2A3D35;
  --sage: #6B7C74;
  --mid-gray: #94A49C;
  --silver: #D4DDD8;
  --off-white: #F7F9F8;
  --white: #FFFFFF;

  /* Accent */
  --gold: #C4963C;
  --gold-light: #E8C97A;
  --gold-subtle: #FBF5E8;

  /* Spacing */
  --section-pad: 100px 48px;
  --max-w: 1100px;

  /* Type */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--deep-pine);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-desc {
  font-size: 17px;
  color: var(--sage);
  max-width: 600px;
  line-height: 1.7;
}

.body-text {
  font-size: 16px;
  color: var(--sage);
  line-height: 1.7;
  max-width: 460px;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 60, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mark span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.nav-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.5); }

.btn-emerald {
  width: 100%;
  padding: 13px;
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-emerald:hover { background: var(--brg); }

/* ---- FLOATING CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 150, 60, 0.35);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196, 150, 60, 0.45);
  background: var(--gold-light);
}

.floating-cta-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--forest-deep) 0%, var(--brg) 45%, var(--emerald) 100%);
  padding: 140px 48px 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-geo-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-geo-2 { width: 400px; height: 400px; bottom: -150px; right: 80px; border-color: rgba(255, 255, 255, 0.03); }
.hero-geo-3 { width: 300px; height: 300px; top: 50%; left: -150px; border-color: rgba(255, 255, 255, 0.02); }

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero .eyebrow { color: var(--gold); }

.hero h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 680px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block { text-align: left; }

.stat-icon {
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.8;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ===== SECTION WRAPPERS ===== */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-full { padding: var(--section-pad); }

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

.section-center .section-desc {
  margin: 12px auto 0;
  max-width: 540px;
}

/* ===== WHAT WE DO ===== */
.what-section { background: var(--frost); }

.what-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-visual {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 60, 42, 0.06);
}

.what-flow { display: flex; flex-direction: column; }

.flow-node {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.flow-node.exporter,
.flow-node.importer {
  background: var(--mist);
  color: var(--forest-deep);
  border: 1px solid var(--silver);
}

.flow-node.rahri {
  background: var(--forest-deep);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 20px;
  margin: 0 20px;
}

.flow-node-subtitle {
  font-size: 12px;
  font-weight: 400;
}

.flow-arrow {
  text-align: center;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.flow-arrow-line {
  width: 1px;
  height: 12px;
  background: var(--silver);
}

.flow-arrow-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: 0.5px;
}

/* ===== TRADE FLOW GLOBE ===== */
.globe-section {
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
}

.globe-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.globe-section .eyebrow { color: var(--gold); }

.globe-section .section-title {
  color: #fff;
  font-size: 38px;
  line-height: 1.15;
}

.globe-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 380px;
}

.globe-markets-tag {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.globe-visual {
  position: relative;
}

.globe-svg {
  width: 100%;
  height: auto;
  display: block;
}

.city-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  fill: rgba(255,255,255,0.45);
}

.dubai-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  fill: var(--gold);
}

.dest-label {
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255,255,255,0.7);
}

.legend-text {
  font-family: var(--font-body);
  font-size: 10px;
  fill: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .globe-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .globe-section .section-title { font-size: 28px; }
  .globe-visual { margin: 0 -24px; }
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  align-items: start;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--silver);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--emerald);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 60, 42, 0.08);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--forest-deep);
  padding: 48px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  max-width: 320px;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196, 150, 60, 0.12);
  color: var(--gold);
}

.trust-text {}

.trust-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.trust-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .trust-strip { padding: 36px 24px; }
  .trust-inner {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .trust-badge {
    max-width: 100%;
    text-align: left;
  }
  .trust-divider {
    width: 60px;
    height: 1px;
  }
}

/* ===== BENEFITS ===== */
.benefits-section { background: var(--frost); }

.benefits-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.benefits-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.benefits-col {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 60, 42, 0.06);
  border: 1px solid var(--silver);
}

.benefits-col-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}

.benefits-col-header.suppliers {
  background: var(--forest-deep);
  color: var(--gold);
}

.benefits-col-header.importers {
  background: var(--emerald);
  color: #fff;
}

.benefits-list { padding: 8px 0; }

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 18px 28px;
  align-items: flex-start;
  border-bottom: 1px solid var(--frost);
}

.benefit-item:last-child { border-bottom: none; }

.benefit-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-columns { grid-template-columns: 1fr; }
  .benefits-inner { padding: 0 24px; }
}

/* ===== WHY RAHRI ===== */
.why-section {
  background: var(--forest-deep);
  color: #fff;
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.why-section .eyebrow { color: var(--gold); }
.why-section .section-title { color: #fff; }
.why-section .section-desc { color: rgba(255, 255, 255, 0.5); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ===== MARKETS ===== */
.markets-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.market-card {
  flex: 1;
  background: var(--frost);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--silver);
  transition: border-color 0.2s;
}

.market-card:hover { border-color: var(--emerald); }
.market-card.active-market { border-color: var(--emerald); border-width: 2px; }

.market-flag { font-size: 40px; margin-bottom: 12px; }

.market-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.market-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.market-status.active { color: var(--emerald); }
.market-status.coming { color: var(--gold); }

.market-coming-card {
  flex: 1;
  background: var(--gold-subtle);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 2px dashed var(--gold);
}

.market-coming-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.6; }

.market-note {
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--mist);
  border-radius: 8px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
  border-left: 3px solid var(--emerald);
}

/* ===== ABOUT ===== */
.about-section { background: var(--frost); }

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-value-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

.about-value-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

.about-value-text strong { color: var(--forest-deep); }

.about-offices {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 60, 42, 0.06);
}

.about-offices-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--forest-deep);
  margin-bottom: 20px;
}

.office-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--silver);
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-item:last-child { border-bottom: none; }

.office-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

.office-dot.hq { background: var(--gold); }

.office-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--forest-deep);
}

.office-detail { font-size: 12px; color: var(--sage); }

/* ===== CONTACT ===== */
.contact-section {
  background: var(--forest-deep);
  color: #fff;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-section .eyebrow { color: var(--gold); }
.contact-section .section-title { color: #fff; }

.contact-booking {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-booking-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-booking-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.contact-info-row {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 2;
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
}

.cf-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cf-group { margin-bottom: 14px; }

.cf-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
  display: block;
}

.cf-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.cf-input:focus { border-color: var(--jade); }
.cf-textarea { min-height: 80px; resize: vertical; }

.cf-submit {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.cf-submit:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-mark span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
}

.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.3); }

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 60, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 480px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 60, 42, 0.25);
  position: relative;
}

.modal-header { padding: 32px 32px 0; }
.modal-body { padding: 0 32px 32px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--frost);
  color: var(--sage);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.step-dot {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: var(--silver);
  transition: background 0.3s;
}

.step-dot.active { background: var(--emerald); }
.step-dot.done { background: var(--jade); }

.modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--sage);
  margin-bottom: 24px;
}

.option-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-card {
  padding: 16px 20px;
  border: 2px solid var(--silver);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.option-card:hover { border-color: var(--jade); background: var(--frost); }
.option-card.selected { border-color: var(--emerald); background: var(--mist); }
/* removed: .option-card.disqualified — no longer used */

.option-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--forest-deep);
  margin-bottom: 2px;
}

.option-card-desc { font-size: 12px; color: var(--sage); }

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-item {
  padding: 10px 14px;
  border: 1px solid var(--silver);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s;
  text-align: center;
}

.checkbox-item:hover { border-color: var(--jade); }
.checkbox-item.checked { border-color: var(--emerald); background: var(--mist); color: var(--forest-deep); }

.form-group { margin-bottom: 14px; }

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 5px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--frost);
  border: 1px solid var(--silver);
  border-radius: 8px;
  color: var(--deep-pine);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--emerald); }

.modal-back {
  background: none;
  border: none;
  color: var(--sage);
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
  font-family: var(--font-body);
  display: block;
  text-align: center;
  width: 100%;
}

.disqualify-msg {
  background: var(--gold-subtle);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}

.disqualify-msg h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.disqualify-msg p {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-pad: 60px 24px; }
  .hero h1 { font-size: 36px; }
  .hero { padding: 120px 24px 60px; }
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .what-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-inner, .what-inner, .about-inner, .contact-inner { padding: 0 24px; }
  .markets-row { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .floating-cta { bottom: 20px; right: 20px; }
  .section-title { font-size: 28px; }
  .checkbox-group { grid-template-columns: 1fr; }
}
