/**
 * Customer homepage — Premium gold-savings landing
 * Aligns with about/contact/news/faq: theme.css variables, Lucide, Bootstrap
 * Hero: slide-about.png. No random internet images.
 */
.home-page {
  background: var(--off-white);
  min-height: 100vh;
}

/* —— Hero (slide-about.png) —— */
.home-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
}
@media (min-width: 768px) {
  .home-hero { min-height: 640px; }
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: var(--charcoal);
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 20, 28, 0.96) 0%,
    rgba(15, 20, 28, 0.88) 28%,
    rgba(15, 20, 28, 0.6)  52%,
    rgba(15, 20, 28, 0.18) 72%,
    rgba(15, 20, 28, 0.0)  100%
  );
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 560px;
  text-align: left;
}
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(246, 231, 193, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(246, 231, 193, 0.25);
}
.home-hero-badge i { width: 14px; height: 14px; }
.home-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.home-hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 480px;
}
.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  align-items: center;
}
.home-hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-hero-cta .btn-hero-primary {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border: none;
  box-shadow: 0 4px 20px rgba(184,134,11,0.3);
}
.home-hero-cta .btn-hero-primary:hover {
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.home-hero-cta .btn-hero-outline {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(4px);
}
.home-hero-cta .btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.home-hero-cta .btn i { width: 18px; height: 18px; }
.home-hero-trust {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.home-hero-trust i { width: 14px; height: 14px; color: var(--gold-light); }

/* —— Section spacing & titles —— */
.home-section {
  padding: var(--space-3xl) 0;
}
.home-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home-section-title i { width: 1.5rem; height: 1.5rem; color: var(--gold-deep); }
.home-section-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* —— Value proposition cards —— */
.home-value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .home-value-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .home-value-cards { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.home-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.home-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-md);
  border-color: rgba(212, 168, 75, 0.3);
}
.home-value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--soft-gold-bg);
  color: var(--gold-deep);
}
.home-value-icon i { width: 26px; height: 26px; }
.home-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.home-value-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* —— How it works (process) —— */
.home-process {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
.home-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .home-process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
  }
  .home-process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--gold-mid), var(--border));
    opacity: 0.5;
    z-index: 0;
  }
}
.home-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.home-process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-soft);
}
.home-process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.home-process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* —— Gold price block —— */
.home-gold {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem;
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
.home-gold-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.home-gold-header i { width: 20px; height: 20px; color: var(--gold-deep); }
.home-gold-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .home-gold-grid { grid-template-columns: repeat(4, 1fr); }
}
.home-gold-box {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border);
}
.home-gold-box .lbl { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.home-gold-box .val { font-size: 1.25rem; font-weight: 800; color: var(--gold-deep); }
.home-gold-ts { font-size: 0.75rem; color: var(--text-subtle); margin-top: 0.75rem; text-align: right; }

/* —— Product / service showcase —— */
.home-products-wrap {
  margin-bottom: var(--space-2xl);
}
.home-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.home-cat-tab {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.home-cat-tab:hover, .home-cat-tab.active {
  background: var(--soft-gold-bg);
  border-color: rgba(212, 168, 75, 0.4);
  color: var(--gold-deep);
}
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .home-products-grid { grid-template-columns: repeat(4, 1fr); }
}
.home-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-md);
  border-color: rgba(212, 168, 75, 0.3);
}
.home-product-img {
  height: 140px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-product-body {
  padding: 1rem;
}
.home-product-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.home-product-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.home-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-deep);
}

/* —— Trust section —— */
.home-trust {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
.home-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .home-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .home-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.home-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.home-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--soft-gold-bg);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-trust-icon i { width: 22px; height: 22px; }
.home-trust-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.home-trust-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

/* —— Contact / support preview —— */
.home-contact-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}
@media (min-width: 576px) {
  .home-contact-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .home-contact-preview { grid-template-columns: repeat(4, 1fr); }
}
.home-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.home-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-md);
  border-color: rgba(212, 168, 75, 0.3);
  color: var(--charcoal);
}
.home-contact-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.home-contact-card .icon-wrap i { width: 24px; height: 24px; }
.home-contact-card .icon-wrap.line { background: rgba(6, 199, 85, 0.12); color: #06C755; }
.home-contact-card .icon-wrap.phone { background: var(--soft-gold-bg); color: var(--gold-deep); }
.home-contact-card .icon-wrap.mail { background: var(--info-light); color: var(--info); }
.home-contact-card .icon-wrap.map { background: var(--soft-gold-bg); color: var(--gold-deep); }
.home-contact-card .label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
}
.home-contact-card .sub { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }

/* —— News / FAQ preview blocks —— */
.home-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}
@media (min-width: 768px) {
  .home-preview { grid-template-columns: repeat(3, 1fr); }
}
.home-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.home-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-md);
  border-color: rgba(212, 168, 75, 0.3);
  color: var(--charcoal);
}
.home-preview-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--soft-gold-bg);
  color: var(--gold-deep);
}
.home-preview-card .icon-wrap i { width: 24px; height: 24px; }
.home-preview-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.home-preview-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.home-preview-card .link-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.home-preview-card .link-text i { width: 14px; height: 14px; }

/* —— FAQ accordion (home) —— */
.home-faq-wrap {
  margin-bottom: var(--space-2xl);
}
.home-faq .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.home-faq .accordion-button {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: none;
  padding: 1rem 1.25rem;
  box-shadow: none;
}
.home-faq .accordion-button:not(.collapsed) {
  background: var(--soft-gold-bg);
  color: var(--gold-deep);
}
.home-faq .accordion-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0 1.25rem 1rem;
}

/* —— CTA section —— */
.home-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-soft-lg);
}
.home-cta h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.home-cta h3 i { width: 1.5rem; height: 1.5rem; color: var(--gold-light); }
.home-cta p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.home-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-cta .btn-cta-primary {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border: none;
}
.home-cta .btn-cta-primary:hover {
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.home-cta .btn-cta-outline {
  background: transparent;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-light);
}
.home-cta .btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.home-cta .btn-cta i { width: 18px; height: 18px; }

/* —— Navbar —— */
.home-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 0;
  z-index: 100;
}
.home-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  text-decoration: none;
}
.home-nav .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--gold-gradient);
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-nav .logo-icon i { width: 20px; height: 20px; }
.home-nav .nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}
.home-nav .nav-link:hover { color: var(--gold-deep); background: var(--soft-gold-bg); }
.home-nav .nav-link.active { color: var(--gold-deep); font-weight: 600; }
.home-nav .btn-outline-primary {
  border-color: var(--gold-mid);
  color: var(--gold-deep);
  font-weight: 600;
  border-radius: var(--radius);
}
.home-nav .btn-outline-primary:hover {
  background: var(--soft-gold-bg);
  border-color: var(--gold-mid);
  color: var(--gold-deep);
}
.home-nav .btn-primary {
  background: var(--gold-gradient);
  border: none;
  color: var(--charcoal);
  font-weight: 600;
  border-radius: var(--radius);
}
.home-nav .btn-primary:hover {
  filter: brightness(1.05);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

/* —— Footer —— */
.home-footer {
  background: var(--charcoal);
  color: var(--text-muted);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}
.home-footer .footer-brand h3 { color: var(--gold-light); font-weight: 700; }
.home-footer .footer-col h4 { color: #fff; font-size: 0.875rem; font-weight: 600; }
.home-footer a { color: var(--text-muted); text-decoration: none; }
.home-footer a:hover { color: var(--gold-light); }

/* —— Responsive —— */
@media (max-width: 991px) {
  .home-hero { min-height: 300px; }
  .home-hero-content { padding: 3rem 0; }
  .home-section { padding: var(--space-2xl) 0; }
}
@media (max-width: 767px) {
  .home-hero { min-height: 280px; }
  .home-hero-title { font-size: 1.625rem; }
  .home-hero-content { text-align: left; }
  .home-hero-cta { flex-direction: column; align-items: flex-start; }
  .home-hero-cta .btn { width: 100%; justify-content: center; max-width: 280px; }
  .home-process-steps::before { display: none; }
  .home-cta-actions { flex-direction: column; }
  .home-cta .btn-cta { width: 100%; justify-content: center; max-width: 280px; }
}
@media (max-width: 575px) {
  .home-nav .navbar-collapse { padding: 0.75rem 0; }
  .home-product-img { height: 120px; }
}

/* ═══════════════════════════════════════════
   PREMIUM REDESIGN — Gold Savings 2026
   ═══════════════════════════════════════════ */

/* — Stats strip (below hero) — */
.home-stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(31,41,55,0.05);
}
.home-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.home-stat-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.2s;
}
.home-stat-item:last-child { border-right: none; }
.home-stat-item:hover { background: var(--soft-gold-bg); }
.home-stat-item .stat-val {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.home-stat-item .stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
@media (max-width: 575px) {
  .home-stats-strip .home-stat-item { min-width: 50%; }
  .home-stats-strip .home-stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .home-stats-strip .home-stat-item:nth-child(even) { border-right: none; }
  .home-stats-strip .home-stat-item:nth-child(3),
  .home-stats-strip .home-stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* — Enhanced section titles — */
.home-section-title {
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.4rem;
}
.home-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  border-radius: 999px;
  background: var(--gold-gradient);
}
.home-section-lead { margin-bottom: 2rem; }

/* — Gold price — full-width dark premium section — */
.home-gold-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.home-gold-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4A84B 20%, #F6E7C1 50%, #D4A84B 80%, transparent);
}
.home-gold-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,231,193,0.15) 50%, transparent);
}
.home-gold-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.home-gold-header-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: #F6E7C1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home-gold-header-title i { width: 1.5rem; height: 1.5rem; }
.home-gold-header-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.42); }
.home-gold-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.22);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.home-gold-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: gs-live-pulse 1.5s ease-in-out infinite;
}
@keyframes gs-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.home-gold-section .home-gold-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .home-gold-section .home-gold-grid { grid-template-columns: repeat(4, 1fr); }
}
.home-gold-section .home-gold-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(246,231,193,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.22s;
}
.home-gold-section .home-gold-box:hover {
  background: rgba(246,231,193,0.07);
  border-color: rgba(246,231,193,0.22);
  transform: translateY(-3px);
}
.home-gold-section .home-gold-box .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.home-gold-section .home-gold-box .val {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #F6E7C1;
  letter-spacing: -0.03em;
  line-height: 1;
}
.home-gold-section .home-gold-ts {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  margin-top: 1.25rem;
  text-align: right;
}

/* — Section separator — */
.home-section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, rgba(212,168,75,0.25) 50%, var(--border) 85%, transparent);
  border: none;
  margin: 2.5rem 0;
}

/* — Section background box (process, trust) — */
.home-section-box {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-2xl);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
