/* ═══════════════════════════════════════════════════════════
   WEBB DYNASTY FINANCE — Global CSS
   Colours: Royal Blue (#0a1628 / #0d2044 / #1a3a6b) + Gold (#c9a227 / #f0c040)
   Matches: design mockup images + fuelgo.co.za colour palette
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  /* Blues */
  --navy:        #06101f;
  --blue-deep:   #0a1628;
  --blue-mid:    #0d2044;
  --blue-royal:  #1a3a6b;
  --blue-light:  #1e4d8c;
  --blue-accent: #2563b0;

  /* Golds */
  --gold:        #c9a227;
  --gold-light:  #f0c040;
  --gold-bright: #ffd700;
  --gold-dark:   #8a6c0e;
  --gold-pale:   #f5e4a0;

  /* Parchment/light sections */
  --parchment:   #f5f0e8;
  --parchment2:  #ede5d0;

  /* Text */
  --text-on-dark:  #d4c07a;
  --text-body-light: #6b5c3e;
  --text-muted:    rgba(212,192,122,0.7);

  /* Borders */
  --border-gold:   1px solid rgba(201,162,39,0.4);
  --border-blue:   1px solid rgba(26,58,107,0.6);

  /* Gradients */
  --grad-navy:    linear-gradient(180deg, #06101f 0%, #0a1628 50%, #06101f 100%);
  --grad-blue:    linear-gradient(180deg, #0a1628 0%, #0d2044 60%, #0a1628 100%);
  --grad-blue2:   linear-gradient(135deg, #0a1628 0%, #0d2044 50%, #1a3a6b 100%);
  --grad-gold-btn: linear-gradient(135deg, #8a6c0e 0%, #c9a227 35%, #f0c040 60%, #c9a227 80%, #8a6c0e 100%);
  --grad-gold-line: linear-gradient(90deg, transparent 0%, #c9a227 30%, #f0c040 50%, #c9a227 70%, transparent 100%);
  --grad-parchment: linear-gradient(180deg, #f5f0e8 0%, #ede5d0 100%);

  /* Section BGs matching design images */
  --bg-services-card: linear-gradient(135deg, #0a1628 0%, #0d2044 100%);
  --bg-dark-section:  linear-gradient(180deg, #080e1c 0%, #0a1628 100%);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--blue-deep);
  color: var(--text-on-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CONTAINER ────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,16,31,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  transition: height 0.3s;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; filter: drop-shadow(0 0 10px rgba(201,162,39,0.5)); }

.nav-links { display: flex; list-style: none; gap: 0.1rem; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,192,122,0.8);
  padding: 0.45rem 0.85rem;
  border-radius: 3px;
  transition: all 0.25s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(201,162,39,0.12);
  border-bottom: 1px solid var(--gold);
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { display:block; width:24px; height:2px; background:var(--gold); transition:0.3s; }

/* ══════════════════════════════════════
   BUTTONS — gradient matching images
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, filter 0.2s;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Gold gradient button — matches the dark gold buttons in images */
.btn-gold {
  background: var(--grad-gold-btn);
  color: #1a0f00;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35), inset 0 1px 0 rgba(255,220,80,0.3);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,162,39,0.5); filter: brightness(1.08); }

/* Outline gold button */
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(201,162,39,0.1); color: var(--gold-bright); }

/* Dark blue button with gold border (matching "GET IN TOUCH" style) */
.btn-dark-gold {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 50%, #0a1628 100%);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  box-shadow: 0 2px 12px rgba(201,162,39,0.2);
}
.btn-dark-gold:hover { box-shadow: 0 6px 24px rgba(201,162,39,0.4); color: var(--gold-bright); }

/* WhatsApp button */
.btn-whatsapp {
  background: linear-gradient(135deg, #145224 0%, #25a244 50%, #145224 100%);
  color: #fff;
  letter-spacing: 0.14em;
  padding: 0.85rem 2.4rem;
  box-shadow: 0 4px 16px rgba(37,162,68,0.3);
}

/* ══════════════════════════════════════
   ORNAMENTS & DIVIDERS
══════════════════════════════════════ */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}
/* gold ornament arrows matching images ❧ ← → */
.section-title .orn { font-size: 0.75em; opacity: 0.8; }

/* On parchment sections */
.title-dark { color: #1a1a1a; }
.title-dark .orn { color: var(--gold-dark); }

/* On blue/dark sections */
.title-gold { color: var(--gold-light); }
.title-gold .orn { color: var(--gold); }

.gold-rule {
  height: 1px;
  background: var(--grad-gold-line);
  opacity: 0.5;
  margin: 1.5rem 0;
}

.ornament { text-align:center; color:var(--gold); font-size:1.2rem; opacity:0.6; letter-spacing:0.4em; margin:0.5rem 0; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-navy);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

/* The glowing particle/wave bg from the design images */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(26,58,107,0.8) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 15% 100%, rgba(201,162,39,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(201,162,39,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-waves {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-waves svg {
  position: absolute; width: 100%; height: 100%;
}

.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(240,192,64,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(240,192,64,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 70%, rgba(240,192,64,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 80%, rgba(240,192,64,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(240,192,64,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 50%, rgba(240,192,64,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(240,192,64,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 40%, rgba(240,192,64,0.2) 0%, transparent 100%);
}

.hero-logo {
  width: clamp(160px, 28vw, 240px);
  filter: drop-shadow(0 0 30px rgba(201,162,39,0.7));
  margin-bottom: 1.2rem;
  animation: float 4s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes float {
  0%,100% { transform:translateY(0);    filter:drop-shadow(0 0 30px rgba(201,162,39,0.7)); }
  50%      { transform:translateY(-8px); filter:drop-shadow(0 0 50px rgba(201,162,39,0.9)); }
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 0 60px rgba(26,58,107,0.8);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.hero h1 .gold-text {
  background: var(--grad-gold-btn);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  color: rgba(212,192,122,0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  position: relative; z-index: 1;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   SECTION WRAPPERS
══════════════════════════════════════ */

/* Parchment sections (cream/beige like in the design images) */
.sec-parchment {
  background: var(--grad-parchment);
  padding: 5rem 2rem;
  color: #1a1a1a;
}
.sec-parchment .section-title { color: #1a1a1a; }

/* Dark blue sections */
.sec-dark {
  background: var(--grad-blue);
  padding: 5rem 2rem;
}

/* Very dark (navy) sections */
.sec-navy {
  background: var(--grad-navy);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

/* ══════════════════════════════════════
   SERVICE CARDS — matching design images
══════════════════════════════════════ */
.svc-card {
  background: linear-gradient(135deg, #0a1628 0%, #0d2044 60%, #0a1628 100%);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 6px;
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold-btn);
  opacity: 0.8;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,162,39,0.2);
  border-color: rgba(201,162,39,0.6);
}

/* Icon area inside card - right side */
.svc-card-wrap { display: flex; gap: 1.5rem; align-items: flex-start; }
.svc-icon-wrap {
  flex-shrink: 0; width: 90px; height: 90px;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.4));
}
.svc-card-body { flex: 1; }

.svc-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.svc-card p { font-size: 0.85rem; color: rgba(212,192,122,0.8); margin-bottom: 0.8rem; line-height: 1.6; }
.svc-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.svc-card ul li {
  font-size: 0.82rem; color: var(--parchment);
  padding-left: 1.1rem; position: relative;
}
.svc-card ul li::before { content: '•'; position:absolute; left:0; color:var(--gold); }

/* Footer bar on service cards */
.svc-footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(201,162,39,0.2);
  padding: 0.65rem 1.2rem;
  margin: 1.5rem -2rem -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold-light);
}

/* ══════════════════════════════════════
   PROCESS FLOW — horizontal arrow steps
══════════════════════════════════════ */
.process-flow {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; margin: 2rem 0;
}
.proc-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.5rem; min-width: 90px; max-width: 120px; flex: 1;
}
.proc-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 18px rgba(201,162,39,0.12);
}
.proc-step span {
  font-family: 'Cinzel', serif;
  font-size: 0.67rem; color: var(--text-on-dark);
  letter-spacing: 0.04em; line-height: 1.4;
}
.proc-arrow {
  color: var(--gold); font-size: 1.3rem;
  flex-shrink: 0; margin: 0 0.4rem;
  opacity: 0.8;
  padding-bottom: 1.6rem;
}

/* ══════════════════════════════════════
   GRIDS
══════════════════════════════════════ */
.g2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.g3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.g4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.g5 { display:grid; grid-template-columns:repeat(5,1fr); gap:1.2rem; }

/* ══════════════════════════════════════
   WHO WE ARE CARDS — dark cards
══════════════════════════════════════ */
.who-card {
  background: linear-gradient(135deg, #080e1c 0%, #0d2044 100%);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 6px;
  padding: 2rem 1.5rem; text-align: center;
  transition: 0.3s;
}
.who-card:hover { border-color:rgba(201,162,39,0.65); transform:translateY(-3px); box-shadow:0 10px 35px rgba(201,162,39,0.15); }
.who-card .wc-icon { color:var(--gold); width:60px; height:60px; margin:0 auto; }
.who-card h3 { font-family:'Cinzel',serif; font-size:0.95rem; color:var(--gold-light); margin:0.9rem 0 0.6rem; }
.who-card ul { list-style:none; text-align:left; font-size:0.82rem; color:rgba(212,192,122,0.8); display:flex; flex-direction:column; gap:0.35rem; }
.who-card ul li::before { content:'• '; color:var(--gold); }

/* ══════════════════════════════════════
   APPROACH ICONS
══════════════════════════════════════ */
.approach-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:2rem; max-width:900px; margin:0 auto; }
.app-item { display:flex; flex-direction:column; align-items:center; text-align:center; gap:0.6rem; width:120px; }
.app-icon { width:60px; height:60px; color:var(--gold); }
.app-item span { font-family:'Cinzel',serif; font-size:0.68rem; color:var(--text-on-dark); letter-spacing:0.04em; line-height:1.4; }

/* ══════════════════════════════════════
   VISION BAND
══════════════════════════════════════ */
.vision-band {
  background: linear-gradient(135deg, #06101f 0%, #0a1628 50%, #06101f 100%);
  border-top: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  padding: 3.5rem 2rem; text-align: center;
}
.vision-band p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold-light);
  max-width: 680px; margin: 0 auto; line-height: 1.9;
}

/* ══════════════════════════════════════
   HOME SERVICE MINI CARDS (parchment bg)
══════════════════════════════════════ */
.svc-mini {
  background: linear-gradient(135deg, #0a1628 0%, #0d2044 100%);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 6px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  color: var(--parchment);
  transition: 0.3s;
  display: block;
}
.svc-mini:hover { border-color:rgba(201,162,39,0.65); transform:translateY(-3px); box-shadow:0 10px 30px rgba(201,162,39,0.18); }
.svc-mini .sm-icon { color:var(--gold); width:52px; height:52px; margin:0 auto 0.8rem; }
.svc-mini h3 { font-family:'Cinzel',serif; font-size:0.88rem; color:var(--gold-light); margin-bottom:0.4rem; }
.svc-mini p { font-size:0.76rem; color:rgba(212,192,122,0.75); line-height:1.5; }

/* ══════════════════════════════════════
   INVESTOR TIERS
══════════════════════════════════════ */
.inv-tier {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 5px;
  padding: 1.2rem 1.8rem;
  margin-bottom: 1rem;
  transition: 0.3s;
}
.inv-tier:hover { background:rgba(201,162,39,0.1); border-color:rgba(201,162,39,0.5); }
.inv-tier .amt { font-family:'Cinzel',serif; font-size:1.3rem; color:var(--gold-light); min-width:110px; }
.inv-tier .arr { color:var(--gold); font-size:1.3rem; flex:1; text-align:center; }
.inv-tier .ret { font-family:'Cinzel',serif; color:var(--gold-bright); font-size:1.1rem; min-width:160px; text-align:right; }
.inv-tier .ret small { display:block; font-family:'Open Sans',sans-serif; font-size:0.68rem; color:var(--text-muted); font-weight:300; }

/* ══════════════════════════════════════
   WHY INVEST CARDS
══════════════════════════════════════ */
.why-card {
  background: rgba(201,162,39,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 6px;
  padding: 1.6rem 1.2rem; text-align: center;
  transition: 0.3s;
}
.why-card:hover { background:rgba(201,162,39,0.1); border-color:rgba(201,162,39,0.45); }
.why-card h3 { font-family:'Cinzel',serif; font-size:0.88rem; color:var(--gold-light); margin:0.8rem 0 0.4rem; }
.why-card p { font-size:0.79rem; color:rgba(212,192,122,0.75); line-height:1.5; }

/* ══════════════════════════════════════
   OTC CARDS (parchment background)
══════════════════════════════════════ */
.otc-card {
  background: var(--grad-parchment);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 6px;
  padding: 2rem 1.5rem; text-align: center;
  color: #1a1a1a;
  transition: 0.3s;
}
.otc-card:hover { box-shadow:0 8px 28px rgba(201,162,39,0.2); transform:translateY(-3px); }
.otc-card h3 { font-family:'Cinzel',serif; font-size:0.95rem; color:var(--gold-dark); margin:0.8rem 0 0.5rem; }
.otc-card p { font-size:0.82rem; color:#4a3a1e; line-height:1.6; }
.otc-card .oc-icon { color:var(--gold-dark); width:58px; height:58px; margin:0 auto; }

/* ══════════════════════════════════════
   TRUSTED BAND (dark)
══════════════════════════════════════ */
.trusted-band {
  background: linear-gradient(180deg,#040c18 0%,#08122a 100%);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.trusted-band > .container > p {
  text-align:center;
  font-family:'Cormorant Garamond',serif; font-style:italic;
  color:var(--gold-light); font-size:1.05rem;
  max-width:580px; margin:0 auto 2.5rem;
}

/* ══════════════════════════════════════
   TRUST ITEMS (home compliance section)
══════════════════════════════════════ */
.trust-item { text-align:center; padding:1.5rem 1rem; }
.trust-icon { width:54px; height:54px; color:var(--gold-dark); margin:0 auto 0.8rem; }
.trust-item h4 { font-family:'Cinzel',serif; font-size:0.8rem; color:#1a1a1a; margin-bottom:0.4rem; letter-spacing:0.05em; }
.trust-item p { font-size:0.77rem; color:#5a4a2e; line-height:1.5; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.ci-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; max-width:800px; margin:2rem auto; }
.ci-item {
  background: var(--grad-parchment);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 6px; padding:1.6rem; text-align:center;
  color: #1a1a1a;
}
.ci-icon {
  width:52px; height:52px;
  background: var(--grad-gold-btn);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 0.8rem; color:#1a0f00;
}
.ci-label { font-family:'Cinzel',serif; font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:0.25rem; }
.ci-value { font-size:0.85rem; color:#3a2e10; }
.ci-value a { color:#3a2e10; }

/* Contact form */
.cf-label { display:block; font-family:'Cinzel',serif; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:0.35rem; }
.cf-input, .cf-select, .cf-textarea {
  width:100%;
  padding:0.7rem 1rem;
  border:1px solid rgba(201,162,39,0.4);
  border-radius:4px;
  background:rgba(255,255,255,0.7);
  color:#2a1e08;
  font-family:'Open Sans',sans-serif;
  font-size:0.87rem;
  outline:none;
  transition:border-color 0.25s;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color:var(--gold); }
.cf-textarea { resize:vertical; }

/* ══════════════════════════════════════
   DISCLAIMER
══════════════════════════════════════ */
.disclaimer {
  background: var(--grad-parchment);
  padding: 2.5rem 2rem; text-align:center;
  border-top: 1px solid rgba(201,162,39,0.3);
}
.disclaimer h3 { font-family:'Cinzel',serif; font-size:1.1rem; color:var(--gold-dark); margin-bottom:0.7rem; }
.disclaimer p { font-size:0.84rem; color:#4a3a1e; max-width:580px; margin:0 auto; line-height:1.7; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #030812;
  border-top: 1px solid rgba(201,162,39,0.2);
  padding: 3.5rem 2rem 2rem;
  font-size: 0.82rem;
}
.footer-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2.5rem; margin-bottom:2rem; }
.foot-logo img { height:52px; filter:drop-shadow(0 0 12px rgba(201,162,39,0.4)); margin-bottom:0.8rem; }
.foot-logo p { font-size:0.77rem; color:rgba(212,192,122,0.6); line-height:1.6; max-width:240px; }
.foot-col h4 { font-family:'Cinzel',serif; font-size:0.75rem; letter-spacing:0.1em; color:var(--gold-light); margin-bottom:0.8rem; text-transform:uppercase; }
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:0.4rem; }
.foot-col ul a { color:rgba(212,192,122,0.55); font-size:0.78rem; transition:color 0.2s; }
.foot-col ul a:hover { color:var(--gold-light); }
.foot-col p { color:rgba(212,192,122,0.6); font-size:0.78rem; margin-bottom:0.3rem; }
.foot-bottom {
  max-width:1100px; margin:0 auto;
  border-top:1px solid rgba(201,162,39,0.12);
  padding-top:1.4rem;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:0.8rem;
  font-size:0.73rem; color:rgba(212,192,122,0.3);
}
.foot-links { display:flex; gap:1.5rem; }
.foot-links a { color:rgba(212,192,122,0.3); transition:color 0.2s; }
.foot-links a:hover { color:var(--gold-light); }

/* ══════════════════════════════════════
   FUELGO hero special
══════════════════════════════════════ */
.fuelgo-badge {
  font-family:'Cinzel',serif;
  font-size:0.78rem; letter-spacing:0.35em; text-transform:uppercase;
  color:var(--gold); opacity:0.8; margin-bottom:0.4rem;
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width:768px) {
  .hamburger { display:flex; }
  .nav-links { position:fixed; top:64px; left:0; right:0; background:rgba(6,16,31,0.98); border-bottom:1px solid rgba(201,162,39,0.25); flex-direction:column; padding:1rem; display:none; }
  .nav-links.open { display:flex; }
  .g2,.g3,.g4,.g5 { grid-template-columns:1fr; }
  .ci-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .process-flow { flex-direction:column; }
  .proc-arrow { transform:rotate(90deg); margin:0; padding-bottom:0; }
  .svc-card-wrap { flex-direction:column; }
  .inv-tier { flex-direction:column; }
  .inv-tier .ret { text-align:left; }
}
