/* ═══════════════════════════════════════
   ROOT THEME — FROM FIRST CODE
═══════════════════════════════════════ */
:root {
  --gold: #f7b63d;
  --gold-light: #F5D98B;
  --gold-dark: #c58817;
  --bg: #3a0303;
  --bg2: #111111;
  --bg3: #181818;
  --text: #F5F0E8;
  --text2: #B8AFA0;
  --border: rgba(201,146,42,0.2);
  --green: #2ECC71;
  --gold-pale: rgba(247,182,61,0.08);
  --gold-deep: #c58817;
  --ink: #111111;
  --ink-soft: #B8AFA0;
  --cream: #3a0303;
  --warm-white: #181818;
  --muted: #B8AFA0;
  --red: #E74C3C;
  --shadow: 0 4px 32px rgba(247,182,61,0.12);
  --shadow-lg: 0 16px 64px rgba(247,182,61,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* ═══════════════════════════════════════
   TICKER — FROM FIRST CODE
═══════════════════════════════════════ */
.ticker-wrap {
  background: var(--gold);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  padding: 0 32px;
  letter-spacing: 0.03em;
}
.ticker-track span i { margin-right: 6px; }
.ticker-track span::after { content: '•'; margin-left: 32px; opacity: 0.4; }

/* ═══════════════════════════════════════
   NAVBAR — FROM FIRST CODE
═══════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  width: 170px;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-right: 200px;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta i { margin-right: 6px; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }


/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--gold);
  cursor: pointer;
}
.menu-toggle i { pointer-events: none; }

/* MENU WRAPPER */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* TABLET + MOBILE */
@media (max-width: 1024px) {

  nav {
    position: sticky;
    top: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--bg2);
    border-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-menu.open {
    max-height: 500px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-right: 0;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 92vh;
  background: var(--bg);
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
    grid-template-rows: 1fr auto auto auto;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 1200px; height: 400px;
  background: radial-gradient(circle, rgba(247,182,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { 
  padding: 4rem 4rem 4rem 12vw; 
  position: relative;
   z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,182,61,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s ease both;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}
.hero h1 {
  font-size: clamp(3rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-offer {
  background: rgba(247,182,61,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  display: inline-block;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-offer strong { color: var(--gold); font-size: 1.1rem; }
.hero-offer p { color: var(--text2); font-size: 0.88rem; margin-top: 0.2rem; }
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.btn-primary {
  background: var(--gold); color: #000;
  padding: 14px 28px; border-radius: 4px; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,182,61,0.4); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 4px; border: 1.5px solid var(--border);
  font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-secondary i { margin-right: 2px; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust { display: flex; gap: 2rem; align-items: center; }
.trust-item { text-align: center; }
.trust-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); }
.trust-label { font-size: 0.72rem; color: var(--text2); text-transform: uppercase; letter-spacing: 0.06em; }
.trust-div { width: 1px; height: 36px; background: var(--border); }
.hero-right {
  padding: 4rem 8vw 4rem 2rem;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeLeft 0.7s 0.2s ease both;
}
.hero-rate-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.2rem;
  width: 100%; max-width: 380px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(247,182,61,0.1);
}
.rate-card-title { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.5rem; }
.rate-rows { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.6rem; }
.rate-row { display: flex; justify-content: space-between; align-items: center; background: var(--bg2); border-radius: 8px; padding: 0.75rem 1rem; border: 1px solid var(--border); }
.rate-label { color: var(--text2); font-size: 0.9rem; }
.rate-label small { display: block; color: var(--text2); font-size: 0.72rem; opacity: 0.5; }
.rate-value { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.25rem; font-weight: 700; }
.rate-value small { font-size: 0.7rem; color: var(--text2); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.rate-update { color: var(--text2); font-size: 0.72rem; text-align: right; margin-bottom: 1.2rem; opacity: 0.5; }
.rate-cta-btn { width: 100%; background: var(--gold); color: #000; border: none; padding: 0.9rem; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.rate-cta-btn:hover { background: var(--gold-light); }
.rate-disclaimer { color: var(--text2); font-size: 0.68rem; text-align: center; margin-top: 0.7rem; opacity: 0.5; }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section { padding: 5rem 8vw; }
.section-dark { background: var(--bg2); }
.section-warm { background: var(--bg3); }
.section-label, .section-tag {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem; display: block;
}
.section-h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 1rem; color: var(--text); }
.section-sub { color: var(--text2); font-size: 1rem; line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 3rem; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════
   RATE TABLE
═══════════════════════════════════════ */
.rate-table-wrap { overflow-x: auto; }
.rate-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.rate-table thead tr { background: var(--bg2); }
.rate-table thead th { color: var(--gold); padding: 0.9rem 1.2rem; text-align: left; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.rate-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.rate-table tbody tr:hover { background: rgba(247,182,61,0.06); color: var(--text); }
.rate-table td { padding: 0.9rem 1.2rem; color: var(--text2); }
.rate-table td:nth-child(3) { font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.rate-table td.change-up { color: var(--green); font-weight: 600; }
.rate-table td.change-dn { color: var(--red); font-weight: 600; }
.rate-note { font-size: 1rem; color: var(--text1); margin-top: 1.9rem; opacity: 0.9; }
.rate-note i { margin-right: 6px; color: var(--gold); }

/* ═══════════════════════════════════════
   CALCULATOR — FROM FIRST CODE
═══════════════════════════════════════ */
.calc-section { background: var(--bg2); }
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.calc-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; color: var(--text2); font-weight: 500; }
.form-input, .form-select {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--bg3); color: var(--text); }
.quick-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.quick-btn {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.quick-btn:hover, .quick-btn.active {
  background: rgba(247,182,61,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.calc-result {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  position: sticky;
  top: 80px;
}
.result-label { font-size: 13px; color: var(--text2); margin-bottom: 12px; }
.result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.result-breakdown {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--bg2);
  border-radius: 8px;
  text-align: left;
}
.result-breakdown div { display: flex; justify-content: space-between; padding: 4px 0; }
.result-breakdown div span:last-child { color: var(--text); font-weight: 600; }
.disclaimer { font-size: 15px; color: var(--gold-light); opacity: 0.8; margin-top: 16px; }

/* ═══════════════════════════════════════
   HISTORY
═══════════════════════════════════════ */
.history-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; }
.history-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; text-align: center; transition: all 0.2s; }
.history-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.history-date { font-size: 0.72rem; color: var(--text2); margin-bottom: 0.4rem; }
.history-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.history-change { font-size: 0.75rem; margin-top: 0.25rem; font-weight: 600; }
.history-change.up { color: var(--green); }
.history-change.dn { color: var(--red); }
.mini-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 2rem; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bar { width: 100%; background: linear-gradient(to top, var(--gold-dark), var(--gold)); border-radius: 3px 3px 0 0; }
.bar-day { font-size: 0.62rem; color: var(--text2); }

/* ═══════════════════════════════════════
   PREDICTION
═══════════════════════════════════════ */
.prediction-section { background: var(--bg); }
.prediction-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.prediction-card {
  background: rgba(247,182,61,0.05);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.6rem;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: all 0.5s ease;
}
.prediction-card.visible { opacity: 1; transform: translateY(0); }
.prediction-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.pred-period { color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.pred-signal { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; margin-bottom: 0.8rem; }
.signal-up { background: rgba(46,204,113,0.15); color: var(--green); }
.signal-neutral { background: rgba(247,182,61,0.15); color: var(--gold); }
.pred-text { color: var(--text2); font-size: 0.88rem; line-height: 1.6; }
.pred-disclaimer { color: var(--text2); font-size: 0.72rem; margin-top: 0.7rem; opacity: 0.4; }

/* ═══════════════════════════════════════
   SELL SECTION
═══════════════════════════════════════ */
.sell-section { background: var(--bg3); }
.sell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.sell-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.sell-list li { display: flex; gap: 1rem; align-items: flex-start; }
.sell-icon { width: 44px; height: 44px; background: rgba(247,182,61,0.1); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.sell-icon i { line-height: 1; }
.sell-item-text strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 0.2rem; }
.sell-item-text span { color: var(--text2); font-size: 0.88rem; }
.lead-form-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-lg); }
.lead-form-wrap h3 { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--text); }
.lead-form-wrap p { color: var(--text2); font-size: 0.85rem; margin-bottom: 1.5rem; }
.lf-group { margin-bottom: 1rem; }
.lf-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text2); margin-bottom: 0.35rem; }
.lf-group input, .lf-group select { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 0.7rem 0.9rem; font-size: 0.92rem; font-family: 'DM Sans', sans-serif; color: var(--text); outline: none; transition: border-color 0.2s; background: var(--bg3); }
.lf-group input:focus, .lf-group select:focus { border-color: var(--gold); }
.lf-group select option { background: var(--bg3); color: var(--text); }
.lf-submit { width: 100%; background: var(--gold); color: #000; border: none; padding: 0.85rem; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.lf-submit:hover { background: var(--gold-light); }
.lf-privacy { font-size: 0.7rem; color: var(--text2); text-align: center; margin-top: 0.6rem; opacity: 0.6; }
.lf-result-box { display: none; background: rgba(247,182,61,0.08); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; text-align: center; margin-top: 1rem; }
.lf-result-box.show { display: block; }
.lf-result-box .est-val { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 900; }
.lf-result-box p { color: var(--text2); font-size: 0.82rem; margin-top: 0.3rem; }
.result-total-label { color: var(--text2); font-size: 0.8rem; margin-bottom: 0.3rem; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-section { background: var(--bg2); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 2rem; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); z-index: 0; }
.step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--bg3); border: 3px solid var(--gold); color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; transition: background 0.3s; }

.step h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.step p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════ */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 0.5rem; }
.why-card {
  background: var(--bg3);
  border: 1px solid rgba(247,182,61,0.1);
  border-radius: 14px; padding: 1.8rem;
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(20px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { background: rgba(247,182,61,0.07); border-color: var(--border); transform: translateY(-4px) !important; }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-icon i { line-height: 1; }
.why-card h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   BREAKDOWN
═══════════════════════════════════════ */
.breakdown-section { background: var(--bg3); }
.breakdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.formula-box { background: var(--bg2); border-radius: 14px; padding: 2rem; border: 1px solid var(--border); }
.formula-box h4 { color: var(--gold); margin-bottom: 1.2rem; font-size: 1.1rem; }
.formula-line { color: var(--text2); font-size: 0.9rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 0.5rem; align-items: center; }
.formula-line .op { color: var(--gold); font-weight: 700; min-width: 20px; }
.formula-result { margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--border); color: var(--gold); font-weight: 700; font-size: 1rem; }
.breakdown-text h4 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--text); }
.breakdown-text p { color: var(--text2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem; }

/* ═══════════════════════════════════════
   PURITY
═══════════════════════════════════════ */
.purity-section { background: var(--bg2); }
.purity-table-wrap { overflow-x: auto; }
.purity-table { width: 100%; border-collapse: collapse; }
.purity-table thead th { background: rgba(247,182,61,0.1); color: var(--gold); padding: 0.9rem 1.2rem; 
  text-align: center;
   font-size: 0.8rem; 
  letter-spacing: 0.06em;
   text-transform: uppercase;
 }
.purity-table tbody tr { border-bottom: 1px solid var(--border); }
.purity-table tbody tr:hover { background: rgba(247,182,61,0.05); }
.purity-table td { padding: 0.9rem 1.2rem; color: var(--text2); font-size: 0.9rem;  text-align: center; }
.purity-table td:nth-child(4) { color: var(--gold); font-weight: 600; }
.hallmark-badge { display: inline-block; background: rgba(247,182,61,0.2); border: 1px solid var(--border); color: var(--gold); padding: 0.15rem 0.55rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; }

/* ═══════════════════════════════════════
   LOAN VS SELL
═══════════════════════════════════════ */
.loan-section { background: var(--bg3); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.compare-card { border-radius: 14px; padding: 2rem; border: 2px solid; }
.compare-card.loan { border-color: var(--border); background: var(--bg2); }
.compare-card.sell { border-color: var(--gold); background: rgba(247,182,61,0.06); }
.compare-card .tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; display: block; }
.compare-card.sell .tag { color: var(--gold); }
.compare-card.loan .tag { color: var(--text2); }
.compare-card h4 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.compare-list li { display: flex; gap: 0.6rem; font-size: 0.88rem; color: var(--text2); }
.compare-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.compare-list li.pro::before { content: '✓'; color: var(--green); }
.compare-list li.con::before { content: '✗'; color: var(--red); }
.verdict-box { grid-column: 1/-1; background: var(--bg2); color: var(--text2); border-radius: 12px; padding: 1.5rem; font-size: 0.9rem; line-height: 1.7; border: 1px solid var(--border); }
.verdict-box strong { color: var(--gold); }

/* ═══════════════════════════════════════
   MISTAKES
═══════════════════════════════════════ */
.mistakes-section { background: var(--bg2); }
.mistakes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.mistake-card { border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; background: var(--bg3); }
.mistake-num { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 0.6rem; }
.mistake-card h4 { color: var(--text); font-size: 1rem; margin-bottom: 0.5rem; }
.mistake-card p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   INVEST
═══════════════════════════════════════ */
.invest-section { background: var(--bg3); }
.invest-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.invest-table thead th { background: var(--bg2); color: var(--gold); padding: 0.85rem 1.2rem; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.invest-table tbody tr { border-bottom: 1px solid var(--border); }
.invest-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.invest-table td { padding: 0.85rem 1.2rem; font-size: 0.9rem; color: var(--text2); }
.invest-table td:first-child { font-weight: 700; color: var(--text); }
.badge-good { background: rgba(46,204,113,0.15); color: var(--green); padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; }
.badge-mod { background: rgba(247,182,61,0.15); color: var(--gold); padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; }
.badge-low { background: rgba(231,76,60,0.15); color: var(--red); padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; }

/* ═══════════════════════════════════════
   AREAS
═══════════════════════════════════════ */
.areas-section { background: var(--bg); }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1rem; }
.area-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; text-align: center; transition: all 0.2s; }
.area-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.area-name { font-weight: 700; color: var(--text); font-size: 0.95rem; margin-bottom: 0.3rem; }
.area-rate { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.3rem; font-weight: 700; }
.area-sub { font-size: 0.72rem; color: var(--text2); }

/* ═══════════════════════════════════════
   INSIGHTS
═══════════════════════════════════════ */
.insights-section { background: var(--bg2); }
.insights-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.insight-main { display: flex; flex-direction: column; gap: 1.2rem; }
.insight-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; }
.insight-tag { background: rgba(247,182,61,0.15); color: var(--gold); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.insight-card h4 { color: var(--text); font-size: 0.95rem; margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.insight-card p { color: var(--text2); font-size: 0.84rem; line-height: 1.6; }
.insight-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.factor-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; }
.factor-card h5 { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.factor-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.84rem; }
.factor-row:last-child { border: none; }
.factor-row span:first-child { color: var(--text2); }
.factor-row span:last-child { font-weight: 600; }
.factor-up { color: var(--green); }
.factor-dn { color: var(--red); }
.factor-flat { color: var(--gold); }

/* ═══════════════════════════════════════
   NO BILL
═══════════════════════════════════════ */
.nobill-section { background: var(--bg3); }
.nobill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 1.5rem 0; }
.doc-list li { display: flex; gap: 0.8rem; align-items: center; background: rgba(247,182,61,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--text2); }
.doc-list li i { color: var(--gold); width: 16px; text-align: center; }
.legal-note { background: rgba(247,182,61,0.06); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; font-size: 0.85rem; color: var(--text2); line-height: 1.7; }

/* ═══════════════════════════════════════
   PURITY TESTING
═══════════════════════════════════════ */
.purity-test-section { background: var(--bg2); }
.purity-test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.test-card { border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem; background: var(--bg3); }
.test-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.test-icon i { line-height: 1; }
.test-card h4 { color: var(--gold); font-size: 1.05rem; margin-bottom: 0.5rem; }
.test-card p { color: var(--text2); font-size: 0.86rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.6rem;
  opacity: 0; transform: translateY(20px);
  transition: all 0.5s ease;
}
.review-card.visible { opacity: 1; transform: translateY(0); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-stars i { margin-right: 2px; }
.review-stars i:last-child { margin-right: 0; }
.review-text { color: var(--text2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-meta { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(247,182,61,0.1); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: 0.9rem; }
.review-name { font-weight: 700; color: var(--text); font-size: 0.88rem; }
.review-date { color: var(--text2); font-size: 0.75rem; }
.rating-bar { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.big-rating { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.rating-stars { color: var(--gold); font-size: 1.4rem; }
.rating-stars i { margin-right: 2px; }
.rating-stars i:last-child { margin-right: 0; }
.rating-count { color: var(--text2); font-size: 0.85rem; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { background: var(--bg2); }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--bg3); color: var(--text); font-weight: 600; font-size: 0.92rem; gap: 1rem; transition: background 0.2s; user-select: none; }
.faq-q:hover { background: rgba(247,182,61,0.07); }
.faq-arrow { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 1.4rem 1.1rem; color: var(--text2); font-size: 0.88rem; line-height: 1.7; background: var(--bg3); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--gold); }

/* ═══════════════════════════════════════
   CTA + FOOTER
═══════════════════════════════════════ */
.cta-section {
  background: var(--bg2);
  position: relative; overflow: hidden;
  padding: 6rem 8vw; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,182,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--text); font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; position: relative; }
.cta-section h2 em { color: var(--gold); font-style: normal; }
.cta-section > p { color: var(--text2); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }
.phone-btn { background: transparent; border: 1.5px solid var(--border); color: var(--gold); padding: 0.9rem 2rem; border-radius: 6px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.2s; }
.phone-btn i { margin-right: 8px; }
.phone-btn:hover { border-color: var(--gold); background: rgba(247,182,61,0.08); }
.branch-pills { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.branch-pill { background: rgba(247,182,61,0.08); border: 1px solid var(--border); color: var(--text2); padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.82rem; }
.branch-pill i { color: var(--gold); margin-right: 6px; }
.branch-pill strong { color: var(--gold); }
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3rem 8vw 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.foot-brand 
{  width: 200px;
  height: 130px;
   }
   .foot-brand img {
    width: 100%;
    height: 100%;
   }
.foot-tagline { color: var(--text2); font-size: 1rem; line-height: 1.6; max-width: 220px; }
.foot-h { 
    color: var(--gold); font-size: 1.4rem; 
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
 }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
 }
.foot-links a { color: var(--text2); text-decoration: none; font-size: 1rem; transition: color 0.2s; }
.foot-links a:hover { color: var(--gold); }
.foot-bottom { grid-column: 1/-1; border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.foot-copy { color: var(--text2); font-size: 0.78rem; }
.foot-certs { display: flex; gap: 0.8rem; }
.cert-badge { background: rgba(247,182,61,0.08); border: 1px solid var(--border); color: var(--gold); padding: 0.25rem 0.7rem; border-radius: 4px; font-size: 0.72rem; font-weight: 700; }

/* ═══════════════════════════════════════
   ANIMATIONS — FROM FIRST CODE
═══════════════════════════════════════ */
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding: 0 8vw 4rem; }
  .calc-wrap, .sell-grid, .breakdown-grid, .nobill-grid, .compare-grid { grid-template-columns: 1fr; }
  .prediction-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 5vw; }
  nav { padding: 0 20px; }
  /* .nav-links { display: none; } */
  .hero-left { padding: 4rem 5vw 2rem; }
  .hero-right { padding: 0 5vw 3rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .mistakes-grid, .purity-test-grid, .prediction-grid, .insights-grid { grid-template-columns: 1fr; }
  .reviews-grid, .faq-cols { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .history-grid { grid-template-columns: repeat(2,1fr); }
  footer { grid-template-columns: 1fr; }
}



/* CALL POPUP */
.call-popup {
  position: fixed;
  top: 90px; /* 🔥 navbar கீழ थोड़ा gap */
  right: 40px;

  width: 300px;
  height: 80px;

  background: #ffffff; /* 🔥 white background */
  color: #111;

  border-radius: 10px;
  border: 1px solid #eee;

  padding: 12px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow: 0 15px 40px rgba(0,0,0,0.2);

  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  pointer-events: none;

  transition: all 0.4s ease;
  z-index: 999;
}

/* TEXT */
.call-popup p {
  font-size: 13px;
  font-weight: 500;
}
.call-popup p i { margin-right: 6px; }

/* SHOW */
.call-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* BUTTON */
.call-popup button {
  background: #f7b63d;
  border: none;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-end;
}


/* LIVE RATE POPUP */
.live-rate-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;

  padding: 10px 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;

  transition: all 0.4s ease;
  z-index: 999;
}

/* SHOW */
.live-rate-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* DOT */
.live-dot {
  width: 10px;
  height: 10px;
  background: #2ECC71;
  border-radius: 50%;
  animation: pulseLive 1.2s infinite;
}

/* TEXT */
.live-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.live-text strong {
  color: var(--text);
  font-size: 12px;
}

.live-text span {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

/* ANIMATION */
@keyframes pulseLive {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .call-popup {
    display: none !important;
  }
}












/* ═══════════════════════════════════════
   RESPONSIVE — ALL SECTIONS
═══════════════════════════════════════ */

/* ── LARGE TABLETS (max 1024px) ── */
@media (max-width: 1024px) {

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 2.4rem 6vw 1.4rem;
  }
  .hero-right {
    padding: 0 6vw 3rem;
    justify-content: center;
  }
  .hero-rate-card {
    max-width: 100%;
  }

  /* CALCULATOR */
  .calc-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .calc-result {
    position: static;
  }

  /* SELL */
  .sell-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* BREAKDOWN */
  .breakdown-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* PROCESS */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .steps-grid::before {
    display: none;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* PREDICTION */
  .prediction-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  /* HISTORY */
  .history-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* LOAN VS SELL */
  .compare-grid {
    grid-template-columns: 1fr;
  }

  /* MISTAKES */
  .mistakes-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* INVEST TABLE */
  .invest-table {
    font-size: 0.82rem;
  }
  .invest-table thead th,
  .invest-table td {
    padding: 0.7rem 0.8rem;
  }

  /* AREAS */
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* INSIGHTS */
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* NO BILL */
  .nobill-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* PURITY TEST */
  .purity-test-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* FAQ */
  .faq-cols {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* CTA */
  .branch-pills {
    flex-direction: column;
    align-items: center;
  }
}


/* ── TABLETS (max 768px) ── */
@media (max-width: 768px) {

  /* GLOBAL SECTION */
  .section {
    padding: 3rem 5vw;
  }
  .section-h2 {
    font-size: 1.6rem;
  }

  /* TICKER */
  .ticker-track span {
    font-size: 11px;
    padding: 0 16px;
  }

  /* NAVBAR */
  nav {
    padding: 0 16px;
    position: relative;
  }
  .nav-logo {
    width: 130px;
    height: 56px;
  }

  /* HERO */
  .hero-left {
    padding: 1.5rem 5vw 1rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-offer strong {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-right {
    padding: 0 5vw 2rem;
  }
  .hero-rate-card {
    padding: 1.6rem;
  }
  .rate-value {
    font-size: 1.05rem;
  }

  /* RATE TABLE */
  .rate-table {
    font-size: 0.78rem;
  }
  .rate-table thead th,
  .rate-table td {
    padding: 0.65rem 0.7rem;
  }

  /* CALCULATOR */
  .calc-wrap {
    grid-template-columns: 1fr;
  }
  .result-amount {
    font-size: 36px;
  }
  .quick-btns {
    flex-wrap: wrap;
  }

  /* HISTORY */
  .history-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .mini-chart {
    height: 60px;
  }

  /* PREDICTION */
  .prediction-grid {
    grid-template-columns: 1fr;
  }

  /* SELL */
  .sell-grid {
    grid-template-columns: 1fr;
  }
  .lead-form-wrap {
    padding: 1.5rem;
  }

  /* PROCESS */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .step-num {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
  .step h4 {
    font-size: 0.9rem;
  }
  .step p {
    font-size: 0.78rem;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .why-card {
    padding: 1.3rem;
  }
  .why-icon {
    font-size: 1.6rem;
  }
  .why-card h4 {
    font-size: 0.95rem;
  }

  /* BREAKDOWN */
  .breakdown-grid {
    grid-template-columns: 1fr;
  }
  .formula-box {
    padding: 1.4rem;
  }

  /* PURITY TABLE */
  .purity-table {
    font-size: 0.8rem;
  }
  .purity-table thead th,
  .purity-table td {
    padding: 0.65rem 0.7rem;
  }

  /* LOAN VS SELL */
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .compare-card {
    padding: 1.5rem;
  }

  /* MISTAKES */
  .mistakes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* INVEST TABLE */
  .invest-table {
    font-size: 0.75rem;
  }
  .invest-table thead th,
  .invest-table td {
    padding: 0.55rem 0.55rem;
  }
  .badge-good,
  .badge-mod,
  .badge-low {
    font-size: 0.68rem;
    padding: 0.1rem 0.35rem;
  }

  /* AREAS */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .area-rate {
    font-size: 1.1rem;
  }

  /* INSIGHTS */
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .insight-card {
    flex-direction: column;
    gap: 0.6rem;
  }

  /* NO BILL */
  .nobill-grid {
    grid-template-columns: 1fr;
  }
  .doc-list li {
    font-size: 0.82rem;
  }

  /* PURITY TEST */
  .purity-test-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .test-card {
    padding: 1.4rem;
  }

  /* TESTIMONIALS */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .rating-bar {
    gap: 1rem;
  }
  .big-rating {
    font-size: 3rem;
  }

  /* FAQ */
  .faq-cols {
    grid-template-columns: 1fr;
  }
  .faq-q {
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
  }
  .faq-a {
    font-size: 0.83rem;
    padding: 0 1rem 0.9rem;
  }

  /* CTA */
  .cta-section {
    padding: 4rem 5vw;
  }
  .cta-section h2 {
    font-size: 1.7rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .btn-primary,
  .phone-btn {
    width: 100%;
    text-align: center;
  }
  .branch-pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .branch-pill {
    font-size: 0.78rem;
    text-align: left;
  }

  /* FOOTER */
  footer {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 2.5rem 5vw 1.5rem;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .foot-certs {
    flex-wrap: wrap;
  }

  /* POPUPS */
  .call-popup {
    display: none !important;
  }
  .live-rate-popup {
    bottom: 16px;
    left: 16px;
    padding: 8px 12px;
  }
}


/* ── SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {

  /* HERO */
  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
  .hero-offer {
    padding: 0.8rem 1rem;
  }
  .hero-offer strong {
    font-size: 0.95rem;
  }
  .hero-rate-card {
    padding: 1.2rem;
  }
  .rate-value {
    font-size: 0.95rem;
  }

  /* SECTION HEADERS */
  .section-h2 {
    font-size: 1.4rem;
  }
  .section-sub {
    font-size: 0.88rem;
  }

  /* RATE TABLE — horizontal scroll */
  .rate-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rate-table {
    min-width: 540px;
  }

  /* CALCULATOR */
  .result-amount {
    font-size: 28px;
  }
  .quick-btns {
    gap: 6px;
  }
  .quick-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* HISTORY */
  .history-grid {
    grid-template-columns: 1fr 1fr;
  }
  .history-price {
    font-size: 1rem;
  }

  /* PROCESS */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step {
    padding: 0;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* AREAS */
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* INVEST TABLE — horizontal scroll */
  .invest-table {
    min-width: 560px;
  }
  .invest-section > .reveal {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* PURITY TABLE — horizontal scroll */
  .purity-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .purity-table {
    min-width: 480px;
  }

  /* BREAKDOWN formula */
  .formula-line {
    font-size: 0.82rem;
  }
  .formula-result {
    font-size: 0.9rem;
  }

  /* LEAD FORM */
  .lead-form-wrap {
    padding: 1.2rem;
  }
  .lf-submit {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  .est-val {
    font-size: 1.7rem;
  }

  /* TESTIMONIALS */
  .review-card {
    padding: 1.2rem;
  }
  .big-rating {
    font-size: 2.4rem;
  }
  .rating-stars {
    font-size: 1.1rem;
  }

  /* COMPARE CARDS */
  .compare-card {
    padding: 1.2rem;
  }
  .compare-list li {
    font-size: 0.82rem;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.45rem;
  }
  .branch-pill {
    font-size: 0.73rem;
    padding: 0.45rem 0.9rem;
  }

  /* FOOTER */
  .foot-brand {
    font-size: 1.3rem;
  }
  .foot-links a {
    font-size: 0.8rem;
  }
  .cert-badge {
    font-size: 0.66rem;
  }

  /* LIVE POPUP */
  .live-rate-popup {
    bottom: 12px;
    left: 12px;
    padding: 7px 10px;
    gap: 7px;
  }
  .live-text strong,
  .live-text span {
    font-size: 11px;
  }
}

/* ==========================================
   TOP EXPERIENCE REVAMP
========================================== */
.top-flash-bar {
  position: sticky;
  top: 0;
  z-index: 230;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  background: #d3a635;
  border-bottom: 1px solid rgba(247,182,61,0.2);
  color: #000000;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
#topFlashText {
  transition: opacity 0.28s ease, transform 0.28s ease;
}
#topFlashText.fade {
  opacity: 0;
  transform: translateY(-6px);
}

.main-nav {
  position: sticky;
  top: 36px;
  z-index: 220;
  height: 72px;
  padding: 0 2.8vw;
  /* background: #fdb03d; */
  border-bottom: 1px solid rgba(247,182,61,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.main-nav .nav-left {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}
.main-nav .nav-logo {
  width: 120px;
  height: 80px;
  /* border-radius: 12px;
  background: rgba(247,182,61,0.12);
  border: 1px solid rgba(247,182,61,0.28);
  padding: 6px; */
}
.main-nav .nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-copy strong {
  color: #f5f0e8;
  font-size: 1.18rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.nav-brand-copy span {
  color: #f7c84e;
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.58rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(247,182,61,0.4);
  background: rgba(247,182,61,0.08);
  color: #ffd973;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-rate-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.2);
}
.nav-rate-pill strong {
  color: #ffd233;
  font-size: 1.42rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.nav-rate-pill small {
  opacity: 0.9;
}

.main-nav .menu-toggle {
  display: none;
}
.main-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.main-nav .nav-links {
  margin-right: 0;
  gap: 0.9rem;
}
.main-nav .nav-links a {
  color: #c6cfdd;
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.52rem 0.78rem;
  border-radius: 9px;
}
.main-nav .nav-links a:hover {
  color: #f5f0e8;
  background: rgba(247,182,61,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.58rem;
}
.nav-action-btn {
  border: 1px solid rgba(247,182,61,0.35);
  background: rgba(247,182,61,0.08);
  color: #ffcf49;
  text-decoration: none;
  padding: 0.58rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.nav-action-btn:hover {
  background: rgba(247,182,61,0.18);
  transform: translateY(-1px);
}
.nav-call-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(247,182,61,0.4);
  color: #ffcf49;
  background: rgba(247,182,61,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.08rem;
}
.nav-call-btn:hover {
  transform: translateY(-1px);
  background: rgba(247,182,61,0.22);
}

.main-nav + .ticker-wrap {
  background: #010203;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(247,182,61,0.24);
}
.main-nav + .ticker-wrap .ticker-track span {
  color: #ffcf49;
  font-size: 1rem;
}
.main-nav + .ticker-wrap .ticker-track span:nth-child(2),
.main-nav + .ticker-wrap .ticker-track span:nth-child(9) {
  color: #f5f0e8;
  font-weight: 700;
}

#hero.hero {
  min-height: 100vh;
  /* background:
    radial-gradient(circle at 80% 18%, rgba(247,182,61,0.14) 0%, rgba(247,182,61,0) 42%),
    linear-gradient(100deg, #061227 0%, #071a35 45%, #082246 100%); */
  display: block;
  overflow: hidden;
}
#hero .hero-left {
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem 2vw 1.4rem;
  text-align: center;
}
#hero .hero-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 700px);
  align-items: center;
  gap: clamp(1rem, 1vw, 1rem);
  margin-bottom: 1.2rem;
}
#hero .hero-top-copy {
  min-width: 550px;
  text-align: left;
}
#hero .hero-image-wrap {
  justify-self: start;
  width: min(410px, 100%);
}
#hero .hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35); */
}
#hero .hero-kicker {
  background: transparent;
  border: none;
  color: #f7c84e;
  letter-spacing: 0.22em;
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
  padding: 0;
}
#hero .hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}
#hero .hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  font-size: 0.98rem;
  font-weight: 700;
  border: 1px solid rgba(247,182,61,0.24);
  background: rgba(247,182,61,0.08);
}
#hero .chip-live {
  color: #25d366;
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.12);
}
#hero .chip-rating {
  color: #ffd447;
}
#hero .chip-years {
  color: #8ec9ff;
  border-color: rgba(72,145,255,0.45);
  background: rgba(72,145,255,0.14);
}
#hero .chip-quote {
  color: #7ef2a7;
  border-color: rgba(37,211,102,0.42);
  background: rgba(37,211,102,0.12);
}
#hero .chip-rating small {
  color: rgba(245,240,232,0.55);
}
#hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.06;
  max-width: 760px;
  color: #f4f6fb;
  text-align: left;
}
#hero h1 em {
  color: #ffd11f;
}
#hero .hero-offer-pill {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,0.44);
  background: rgba(11,64,48,0.62);
  padding: 0.72rem 1.3rem;
  margin-bottom: 1.35rem;
}
#hero .hero-offer-pill strong {
  color: #6af4a7;
  font-size: 1.22rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
#hero .hero-offer-pill p {
  color: #ffd447;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
#hero .hero-sub {
  margin: 0 auto 1.85rem;
  max-width: 860px;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.2rem);
  color: rgba(245,240,232,0.82);
  line-height: 1.45;
  padding-top: 30px;
}
#hero .hero-btns {
  justify-content: center;
  margin-bottom: 0;
}
#hero .hero-right {
  padding: 0 5vw 3rem;
}
#hero .hero-rate-card {
  margin: 0 auto;
  width: min(920px, 100%);
  border-radius: 22px;
  background: transparent;
  border: 2px solid rgba(247,182,61,0.68);
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
}
#hero .rate-card-title {
  justify-content: center;
  font-size: 0.95rem;
}
#hero .rate-disclaimer {
  text-align: center;
}

.support-popup {
  position: fixed;
  top: 122px;
  right: 26px;
  z-index: 280;
  width: min(360px, calc(100vw - 30px));
  background: #f3f4f7;
  color: #0d1a2f;
  border-radius: 16px;
  border: 1px solid rgba(247,182,61,0.48);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  padding: 14px 14px 14px 12px;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.support-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.support-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #8f96a6;
  cursor: pointer;
}
.support-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.support-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #570202, #8a0000);
  color: #ffd447;
  font-size: 1rem;
}
.support-avatar .status-dot {
  position: absolute;
  right: -1px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23c15f;
  border: 2px solid #f3f4f7;
}
.support-body {
  padding-right: 20px;
}
.support-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.support-head strong {
  font-size: 1.07rem;
}
.support-tag {
  background: rgba(247,182,61,0.2);
  color: #c07b00;
  border-radius: 7px;
  padding: 2px 7px;
  font-size: 0.74rem;
  font-weight: 700;
}
.support-body p {
  margin: 0 0 6px;
  font-size: 0.97rem;
  line-height: 1.35;
  color: #29364f;
}
.support-body small {
  color: #19924a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.support-body .online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ad368;
}

.sale-popup {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 280;
  width: min(400px, calc(100vw - 28px));
  background: #f1f3f7;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  padding: 14px 15px 14px 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.sale-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sale-close {
  position: absolute;
  top: 9px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #9ca4b4;
  cursor: pointer;
}
.sale-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37,211,102,0.18);
  color: #11a94e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.13rem;
  flex-shrink: 0;
}
.sale-content p {
  margin: 0 0 4px;
  color: #2a3449;
  line-height: 1.34;
  font-size: 1.05rem;
}
.sale-content p strong {
  color: #101826;
}
#saleSaved {
  color: #05a84f;
  font-weight: 800;
}
.sale-content small {
  color: #6e7688;
  font-size: 0.86rem;
}
.sale-content #liveRateValue {
  color: #c98b09;
  font-weight: 700;
}

.chat-float-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffbf1f;
  color: #101826;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 12px 35px rgba(255,191,31,0.4);
  z-index: 281;
}
.chat-live-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ad368;
  border: 2px solid #f4f6fb;
}

@media (max-width: 1200px) {
  .main-nav .nav-brand-copy {
    display: none;
  }
  .nav-rate-pill strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .top-flash-bar {
    height: 32px;
    font-size: 0.82rem;
  }
  .main-nav {
    top: 32px;
    height: 64px;
  }
  .main-nav .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
  }
  .main-nav .nav-rate-pill {
    margin-left: 0.35rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }
  .main-nav .nav-rate-pill strong {
    font-size: 1rem;
  }
  .main-nav .nav-menu {
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    background: #081a35;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.28s ease;
  }
  .main-nav .nav-menu.open {
    max-height: 560px;
    padding: 16px 18px 18px;
    border-bottom: 1px solid rgba(247,182,61,0.22);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .main-nav .nav-links a {
    width: 100%;
    font-size: 0.98rem;
    background: rgba(255,255,255,0.03);
  }
  .main-nav .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .nav-action-btn {
    width: 100%;
    text-align: center;
  }
  .nav-call-btn {
    width: 44px;
    align-self: flex-end;
  }
  #hero .hero-left {
    max-width: 1000px;
    padding-top: 2.5rem;
  }
  #hero .hero-top-row {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 340px);
    align-items: flex-end;
    gap: 1.25rem;
  }
  #hero h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }
  #hero .hero-sub {
    font-size: 1.08rem;
  }
  #hero .hero-offer-pill strong {
    font-size: 1rem;
  }
  #hero .hero-offer-pill p {
    font-size: 0.9rem;
  }
  .support-popup {
    top: 106px;
  }
}

@media (max-width: 768px) {
  .top-flash-bar {
    font-size: 0.74rem;
    gap: 6px;
    text-align: center;
  }
  .main-nav + .ticker-wrap .ticker-track span {
    font-size: 0.86rem;
  }
  .main-nav .nav-rate-pill {
    display: none;
  }
  #hero .hero-left {
    padding: 1.8rem 5vw 1rem;
  }
  #hero .hero-top-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  #hero .hero-top-copy {
    text-align: center;
  }
  #hero .hero-image-wrap {
    order: -1;
    width: min(320px, 78vw);
    justify-self: center;
  }
  #hero .hero-kicker {
    margin-bottom: 0.9rem;
  }
  #hero .hero-chip-row {
    justify-content: center;
    gap: 0.45rem;
  }
  #hero h1 {
    margin: 0 auto;
    text-align: center;
  }
  #hero .hero-chip {
    font-size: 0.82rem;
    padding: 0.38rem 0.64rem;
  }
  #hero .hero-sub {
    font-size: 0.95rem;
  }
  #hero .hero-rate-card {
    border-radius: 16px;
  }
  .support-popup {
    top: 96px;
    right: 12px;
    width: calc(100vw - 24px);
  }
  .sale-popup {
    left: 12px;
    width: calc(100vw - 24px);
    bottom: 12px;
  }
  .chat-float-btn {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}




/* ---- */

/* hero-right: image + card side by side */
#hero .hero-right {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 6vw 2rem 5rem;
}

#hero .hero-right-image {
  width: 100%;
}

#hero .hero-right-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#hero .hero-right .hero-rate-card {
  width: 100%;
  max-width: 100%;
}

/* Tablet (max 1024px) — stack ஆகும் */
@media (max-width: 1024px) {
  #hero .hero-right {
    grid-template-columns: 1fr 1fr;
    padding: 0 5vw 2rem;
    gap: 1.2rem;
  }
}

/* Mobile (max 768px) — image மேல, card கீழ */
@media (max-width: 768px) {
  #hero .hero-right {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 5vw 2rem;
  }

  #hero .hero-right-image {
    width: min(260px, 65vw);
    margin: 0 auto;
  }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
  #hero .hero-right {
    padding: 0 4vw 1.5rem;
  }

  #hero .hero-right-image {
    width: min(200px, 60vw);
  }
}


/* IMAGE BOX WITH BLUR BACKGROUND */
#hero .hero-right-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(247, 182, 61, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 182, 61, 0.25);
  
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

/* BLUR GLOW BEHIND IMAGE */
#hero .hero-right-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(247, 182, 61, 0.18) 0%,
    rgba(58, 3, 3, 0.4) 70%
  );
  z-index: 0;
  border-radius: 20px;
}

#hero .hero-right-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 460px;
  filter: drop-shadow(0 12px 32px rgba(247, 182, 61, 0.2));
}

/* RATE CARD FIT */
#hero .hero-right .hero-rate-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  box-sizing: border-box;
}

#hero .hero-right .rate-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

#hero .hero-right .rate-cta-btn {
  margin-top: auto;
}

/* TABLET */
@media (max-width: 1024px) {
  #hero .hero-right-image {
    min-height: 320px;
    min-width: 100%;
  }

  #hero .hero-right-image img {
    max-height: 340px;
   
  }

  #hero .hero-right .hero-rate-card {
    padding: 1.3rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  #hero .hero-right-image {
    width: min(260px, 65vw);
    min-height: 200px;
    margin: 0 auto;
  }

  #hero .hero-right-image img {
    max-height: 300px;
  }

  #hero .hero-right .hero-rate-card {
    padding: 1.2rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  #hero .hero-right-image {
    width: 100%;
    min-height: 170px;
  }

  #hero .hero-right-image img {
    max-height: 170px;
  }

  #hero .hero-right .hero-rate-card {
    padding: 1rem;
  }

  #hero .hero-right .rate-value {
    font-size: 0.95rem;
  }
}



@media (max-width: 768px) {
  .support-popup,
  .sale-popup {
    display: none !important;
  }
}







.nav-call-btn {
  min-width: 42px;
  min-height: 42px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav-call-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    align-self: center;
  }
  .nav-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .nav-action-btn {
    flex: 1;
    min-width: 100px;
    text-align: center;
    font-size: 0.88rem;
    padding: 0.5rem 0.7rem;
  }
}


#hero .hero-top-copy {
  min-width: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  #hero .hero-top-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  #hero .hero-image-wrap {
    width: min(300px, 100%);
    justify-self: center;
  }
}
@media (max-width: 768px) {
  #hero .hero-top-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  #hero .hero-top-copy {
    text-align: center;
  }
  #hero .hero-image-wrap {
    order: -1;
    width: min(240px, 70vw);
    margin: 0 auto;
  }
  #hero .hero-right {
    grid-template-columns: 1fr;
    padding: 0 4vw 2rem;
    gap: 1rem;
  }
  
}


@media (max-width: 1024px) {
  .history-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
  }
}
@media (max-width: 768px) {
  .history-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
}
@media (max-width: 480px) {
  .history-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .history-price { font-size: 0.95rem; }
  .history-date  { font-size: 0.68rem; }
}




/* ═══════════════════════════════════════
   TABLE RESPONSIVE — FINAL FIX
═══════════════════════════════════════ */

.rate-table-wrap,
.purity-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  width: 100%;
}

.invest-section .reveal {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .rate-table   { min-width: 500px; }
  .purity-table { min-width: 460px; }
  .invest-table { min-width: 520px; }

  .rate-table thead th,
  .rate-table td {
    padding: 0.55rem 0.6rem;
    font-size: 0.73rem;
    white-space: nowrap;
  }

  .purity-table thead th,
  .purity-table td {
    padding: 0.55rem 0.65rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .invest-table thead th,
  .invest-table td {
    padding: 0.5rem 0.55rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .rate-table   { min-width: 460px; }
  .purity-table { min-width: 420px; }
  .invest-table { min-width: 490px; }

  .rate-table thead th,
  .rate-table td {
    padding: 0.45rem 0.5rem;
    font-size: 0.68rem;
  }

  .purity-table thead th,
  .purity-table td {
    padding: 0.45rem 0.5rem;
    font-size: 0.69rem;
  }

  .invest-table thead th,
  .invest-table td {
    padding: 0.42rem 0.45rem;
    font-size: 0.67rem;
  }

  .badge-good,
  .badge-mod,
  .badge-low {
    font-size: 0.62rem;
    padding: 0.08rem 0.3rem;
  }

  .hallmark-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
  }
}


/* ═══════════════════════════════════════
   TABLE SCROLL — FINAL ROOT FIX
═══════════════════════════════════════ */

.rate-table-wrap,
.purity-table-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.invest-section .reveal {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  transform: none !important;
}

.rate-table,
.purity-table,
.invest-table {
  width: max-content !important;
  min-width: 100%;
  white-space: nowrap;
}

.rate-table td, .rate-table thead th,
.purity-table td, .purity-table thead th,
.invest-table td, .invest-table thead th {
  white-space: nowrap !important;
}



/* ═══════════════════════════════════════
   FOOTER — RESPONSIVE FIX
═══════════════════════════════════════ */

footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 8vw 2rem;
}

@media (max-width: 1024px) {
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 6vw 2rem;
  }
  .foot-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    padding: 2.5rem 5vw 1.5rem;
  }
  .foot-brand {
    width: 160px;
    height: 100px;
  }
  .foot-tagline {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .foot-h {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .foot-links a {
    font-size: 0.88rem;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .foot-certs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .cert-badge {
    font-size: 0.68rem;
  }
  .foot-copy {
    font-size: 0.72rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 5vw 1.5rem;
  }
  .foot-brand {
    width: 140px;
    height: 85px;
  }
  .foot-h {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  .foot-links {
    gap: 0.5rem;
  }
  .foot-links a {
    font-size: 0.85rem;
  }
  .foot-tagline {
    font-size: 0.85rem;
  }
  .foot-bottom {
    padding-top: 1rem;
    gap: 0.6rem;
  }
  .foot-copy {
    font-size: 0.7rem;
  }
  .cert-badge {
    font-size: 0.64rem;
    padding: 0.2rem 0.55rem;
  }
}


/* ═══════════════════════════════════════
   NAV MOBILE/TAB — PREMIUM REDESIGN
═══════════════════════════════════════ */

@media (max-width: 1024px) {

  .main-nav .nav-menu {
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid rgba(247,182,61,0.15);
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.32s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }

  .main-nav .nav-menu.open {
    max-height: 600px;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(247,182,61,0.15);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* NAV LINKS */
  .main-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    padding: 0 1rem;
  }

  .main-nav .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .main-nav .nav-links li:last-child {
    border-bottom: none;
  }

  .main-nav .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #c6cfdd;
    border-radius: 0;
    background: transparent;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }

  .main-nav .nav-links a:hover,
  .main-nav .nav-links a:active {
    color: var(--gold);
    background: rgba(247,182,61,0.06);
    border-left: 3px solid var(--gold);
    padding-left: 1.3rem;
  }

  /* DIVIDER between links and actions */
  .main-nav .nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem 0;
    border-top: 1px solid rgba(247,182,61,0.1);
    margin-top: 0.4rem;
  }

  .nav-action-btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(247,182,61,0.35);
    background: rgba(247,182,61,0.08);
    color: #ffcf49;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .nav-action-btn:hover {
    background: rgba(247,182,61,0.18);
    border-color: var(--gold);
  }

  /* CALL BUTTON — right aligned, fixed size */
  .nav-call-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(247,182,61,0.4);
    color: #ffcf49;
    background: rgba(247,182,61,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    align-self: center;
  }

  .nav-call-btn:hover {
    background: rgba(247,182,61,0.25);
    border-color: var(--gold);
  }
}

@media (max-width: 768px) {

  .main-nav .nav-menu {
    top: 60px;
  }

  .main-nav .nav-links a {
    font-size: 0.9rem;
    padding: 0.78rem 1rem;
  }

  .main-nav .nav-actions {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.7rem 1rem 0;
  }

  .nav-action-btn {
    font-size: 0.8rem;
    padding: 0.55rem 0.6rem;
  }

  .nav-call-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {

  .main-nav .nav-links a {
    font-size: 0.88rem;
    padding: 0.72rem 1rem;
  }

  .main-nav .nav-actions {
    gap: 0.4rem;
    padding: 0.65rem 1rem 0;
  }

  .nav-action-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
  }

  .nav-call-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════
   NAV MENU TOP FIX — FIRST LINK VISIBLE
═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .main-nav .nav-menu {
    top: 100%;
    margin-top: 0;
  }

  .main-nav .nav-menu.open {
    padding: 2rem 0 1rem;
  }

  .main-nav .nav-links {
    padding: 0 1rem;
  }

  .main-nav .nav-links li:first-child a {
    margin-top: 0.2rem;
  }
}

@media (max-width: 768px) {
  .main-nav .nav-menu {
    top: 100%;
  }

  .main-nav .nav-menu.open {
    padding: 2rem 0 1rem;
  }
}

/* ═══════════════════════════════════════
   TABLE SCROLL DOTS — MOBILE ONLY
═══════════════════════════════════════ */

@media (max-width: 768px) {

  .rate-table-wrap,
  .purity-table-wrap {
    position: relative;
  }

  /* DOTS CONTAINER */
  .rate-table-wrap::after,
  .purity-table-wrap::after {
    content: '● ● ● ● ●';
    display: block;
    text-align: center;
    font-size: 0.45rem;
    letter-spacing: 6px;
    padding: 8px 0 2px;
    color: rgba(247,182,61,0.25);
    transition: all 0.3s ease;
  }

  .invest-section .reveal::after {
    content: '● ● ● ● ●';
    display: block;
    text-align: center;
    font-size: 0.45rem;
    letter-spacing: 6px;
    padding: 8px 0 2px;
    color: rgba(247,182,61,0.25);
  }
}