/* ══════════════════════════════════════════════════════════════
   Landing Page Styles (home.css) — Premium Redesign
   Imports shared design tokens from style.css via the cascade.
   ══════════════════════════════════════════════════════════════ */

/* ── Keyframes (pulse-live is hero-specific; skeleton-shimmer is in style.css) ── */
@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(74 222 128 / 55%);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgb(74 222 128 / 0%);
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--gradient-dark);
  color: var(--text-on-dark);
  padding: var(--space-8) var(--space-5) var(--space-7);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgb(196 153 62 / 6%) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgb(196 153 62 / 4%) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 75% 50%,
    rgb(196 153 62 / 10%) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Hero badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(196 153 62 / 12%);
  border: 1px solid rgb(196 153 62 / 30%);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-gold-light, #e5c96e);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-live 2s ease-in-out infinite;
}

/* ── Hero headings ── */
.hero-title-main {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.025em;
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgb(255 255 255 / 60%);
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin-top: 1.1rem;
  font-size: 1rem;
  color: rgb(255 255 255 / 72%);
  line-height: 1.75;
  max-width: 500px;
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero-ctas .btn-primary {
  font-size: 1rem;
  padding: 0.95rem 2rem;
}

.hero-ctas-secondary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-secondary-link {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 50%);
  text-decoration: none;
  transition: color 0.15s;
}

.hero-secondary-link:hover {
  color: rgb(255 255 255 / 85%);
  text-decoration: none;
}

.hero-secondary-sep {
  color: rgb(255 255 255 / 20%);
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS — Hero dark-background variants only.
   Base .btn, .btn-outline, .btn-sm, .btn-lg are defined in style.css.
   Only hero-specific dark-bg overrides live here, scoped to .hero.
   ══════════════════════════════════════════════════════════════ */

/* Hero primary: gold background with dark text (for dark hero bg) */
.hero .btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-gold, #c99a3e) 0%,
    var(--color-gold-light, #e5c96e) 100%
  );
  color: #1e0e03;
  border-color: var(--color-gold, #c99a3e);
  text-shadow: 0 1px 0 rgb(255 255 255 / 15%);
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light, #e5c96e) 0%, #f0d070 100%);
  border-color: var(--color-gold-light, #e5c96e);
  color: #1a0c02;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgb(196 153 62 / 50%),
    0 0 0 1px rgb(224 184 74 / 20%);
}

/* Outline light — white-bordered on dark bg (hero only) */
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgb(255 255 255 / 42%);
  color: rgb(255 255 255 / 88%);
}

.btn-outline-light:hover {
  border-color: rgb(255 255 255 / 82%);
  background: rgb(255 255 255 / 10%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Ghost light — minimal on dark bg (hero only) */
.btn-ghost-light {
  background: transparent;
  border-color: transparent;
  color: rgb(255 255 255 / 60%);
}

.btn-ghost-light:hover {
  background: rgb(255 255 255 / 8%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Hero ghost: white-on-dark variant */
.hero .btn-ghost {
  background: rgb(255 255 255 / 8%);
  border-color: transparent;
  color: rgb(255 255 255 / 72%);
}

.hero .btn-ghost:hover {
  background: rgb(255 255 255 / 14%);
  color: #fff;
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO LIVE CARD — Glassmorphism
   ══════════════════════════════════════════════════════════════ */
.hero-live-card {
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-card);
  padding: var(--space-6) var(--space-5);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 6%) inset,
    var(--elev-5),
    0 6px 20px rgb(196 153 62 / 12%);
  position: relative;
  overflow: hidden;
}

/* Subtle gold rim at the top */
.hero-live-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(196 153 62 / 50%), transparent);
}

.hlc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.hlc-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold-light, #e5c96e);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hlc-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgb(196 153 62 / 18%);
  color: var(--color-gold-light, #e5c96e);
  border: 1px solid rgb(196 153 62 / 32%);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
  letter-spacing: 0.04em;
}

.hlc-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.hlc-sub {
  font-size: 0.75rem;
  color: rgb(255 255 255 / 45%);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

/* ── HLC indicators row ── */
.hlc-indicators {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  flex-wrap: wrap;
}

.hlc-change {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill, 999px);
}

.hlc-change.badge-up {
  background: rgb(26 122 56 / 20%);
  color: #5dd887;
  border: 1px solid rgb(26 122 56 / 30%);
}

.hlc-change.badge-down {
  background: rgb(220 38 38 / 18%);
  color: #f87171;
  border: 1px solid rgb(220 38 38 / 25%);
}

.hlc-market {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill, 999px);
}

.hlc-market--open {
  color: #86efac;
  background: rgb(34 197 94 / 15%);
  border: 1px solid rgb(34 197 94 / 28%);
}

.hlc-market--closed {
  color: rgb(255 255 255 / 45%);
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 12%);
}

/* ── HLC grid ── */
.hlc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding-top: 1rem;
}

.hlc-item {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.hlc-item-label {
  font-size: 0.67rem;
  color: rgb(255 255 255 / 45%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hlc-item-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold-light, #e5c96e);
  font-variant-numeric: tabular-nums;
}

/* ── HLC footer ── */
.hlc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding-top: 0.85rem;
}

.hlc-updated {
  font-size: 0.7rem;
  color: rgb(255 255 255 / 38%);
}

.hlc-tracker-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(255 255 255 / 48%);
  text-decoration: none;
  transition: color 0.15s;
}

.hlc-tracker-link:hover {
  color: var(--color-gold-light, #e5c96e);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   LIVE KARAT PRICE STRIP
   ══════════════════════════════════════════════════════════════ */
.karat-strip {
  background: linear-gradient(180deg, #1a1206 0%, #1e1608 100%);
  border-top: 1px solid rgb(196 153 62 / 15%);
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  padding: 0.6rem 1.5rem;
}

.karat-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.karat-strip-inner::-webkit-scrollbar {
  display: none;
}

.karat-strip-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgb(196 153 62 / 60%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  white-space: nowrap;
}

.karat-strip-prices {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.karat-strip-prices::-webkit-scrollbar {
  display: none;
}

.karat-strip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(196 153 62 / 15%);
  border-radius: var(--radius-pill, 999px);
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.karat-strip-item:hover {
  background: rgb(196 153 62 / 10%);
  border-color: rgb(196 153 62 / 35%);
}

.karat-strip-k {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgb(196 153 62 / 70%);
  letter-spacing: 0.02em;
}

.karat-strip-v {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f0d070;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.karat-strip-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgb(196 153 62 / 55%);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  transition: color 0.15s;
  padding: 0.3rem 0.5rem;
}

.karat-strip-link:hover {
  color: var(--color-gold-light, #e5c96e);
}

@media (width <= 480px) {
  .karat-strip {
    padding: 0.5rem 0.85rem;
  }

  .karat-strip-link {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--color-surface, #fff);
  border-bottom: 1px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  padding: 0.7rem 1.5rem;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-muted, #6b7280);
  white-space: nowrap;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  background: var(--color-surface-2, #f9f7f3);
  transition:
    border-color 0.18s,
    color 0.18s;
}

.trust-item:hover {
  border-color: var(--color-gold, #c99a3e);
  color: var(--color-gold-dark, #8c6d24);
}

.trust-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.trust-sub {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════════════════════
   DATA TRUST BANNER
   ══════════════════════════════════════════════════════════════ */
.home-section--trust-banner {
  background: linear-gradient(135deg, rgb(255 248 240 / 80%) 0%, rgb(255 251 245 / 60%) 100%);
  border-top: 1px solid #f0e6d2;
  border-bottom: 1px solid #f0e6d2;
  padding: 1.5rem;
}

.trust-banner-box {
  background: #fff;
  border: 1px solid #e8ddc4;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.trust-banner-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.trust-banner-content {
  flex: 1;
}

.trust-banner-content h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text, #1a1612);
  margin-bottom: 0.3rem;
}

.trust-banner-content p {
  font-size: 0.82rem;
  color: var(--color-text-muted, #6b7280);
  line-height: 1.6;
  margin: 0;
}

.trust-banner-content a {
  color: var(--color-gold-dark, #8c6d24);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgb(140 109 36 / 30%);
  transition: border-color 0.15s;
}

.trust-banner-content a:hover {
  border-bottom-color: var(--color-gold-dark, #8c6d24);
}

/* ══════════════════════════════════════════════════════════════
   HOME SECTIONS — shared scaffolding
   ══════════════════════════════════════════════════════════════ */
.home-section {
  padding: var(--space-7) var(--space-5);
}

.home-section--alt {
  background: var(--color-surface-2, #f9f7f3);
  border-top: 1px solid rgb(196 153 62 / 8%);
  border-bottom: 1px solid rgb(196 153 62 / 8%);
}

.home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-inner--narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-intro.centered {
  justify-content: center;
  text-align: center;
}

.section-intro.centered .home-section-title {
  text-align: center;
}

.home-section-title {
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 800;
  color: var(--color-gold-deep, #5a3a0a);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home-section-sub {
  font-size: 0.88rem;
  color: var(--color-text-muted, #6b7280);
  margin-top: 0.3rem;
  line-height: 1.5;
}

.section-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-gold-dark, #8c6d24);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.section-link:hover {
  color: var(--color-gold-deep, #5a3a0a);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════
   GCC REGION TABS
   ══════════════════════════════════════════════════════════════ */
.gcc-region-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  padding-bottom: 1rem;
}

.gcc-region-tab {
  background: none;
  border: none;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted, #6b7280);
  cursor: pointer;
  transition: all 0.2s ease-out;
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1rem;
  padding-bottom: 1rem;
}

.gcc-region-tab:hover {
  color: var(--color-gold-dark, #8c6d24);
}

.gcc-region-tab.is-active {
  color: var(--color-gold-deep, #5a3a0a);
  font-weight: 700;
  border-bottom-color: var(--color-gold, #c99a3e);
}

/* ══════════════════════════════════════════════════════════════
   GCC QUICK GRID
   ══════════════════════════════════════════════════════════════ */
.gcc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gcc-card {
  background: linear-gradient(180deg, #fff 0%, #fdfbf7 100%);
  border: 1.5px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: var(--color-text, #1a1a1a);
  transition:
    transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.gcc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold, #c99a3e), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gcc-card:hover {
  box-shadow:
    0 10px 32px rgb(196 153 62 / 22%),
    0 2px 8px rgb(0 0 0 / 6%);
  border-color: var(--color-gold, #c99a3e);
  transform: translateY(-4px);
  text-decoration: none;
  color: var(--color-text, #1a1a1a);
}

.gcc-card:hover::before {
  opacity: 1;
}

.gcc-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.gcc-flag {
  font-size: 1.45rem;
  flex-shrink: 0;
}

.gcc-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.gcc-name {
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.2;
}

.gcc-currency {
  font-size: 0.67rem;
  color: var(--color-text-muted, #6b7280);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gcc-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gold-deep, #5a3a0a);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.gcc-unit {
  font-size: 0.68rem;
  color: var(--color-text-muted, #6b7280);
}

.gcc-change {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* ── Skeleton loaders ── */
.skeleton-card {
  pointer-events: none;
}

.skeleton-flag,
.skeleton-line,
.skeleton-value {
  border-radius: var(--radius-xs);
  background: linear-gradient(
    90deg,
    var(--color-border-subtle, #e5e7eb) 25%,
    rgb(255 255 255 / 60%) 50%,
    var(--color-border-subtle, #e5e7eb) 75%
  );
  background-size: 400px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.skeleton-line {
  width: 60%;
  height: 12px;
  margin-bottom: 0.4rem;
}

.skeleton-value {
  width: 80%;
  height: 22px;
}

/* ══════════════════════════════════════════════════════════════
   TOOLS GRID
   ══════════════════════════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.tool-card {
  background: linear-gradient(180deg, #fff 0%, #fdfbf7 100%);
  border: 1.5px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold, #c99a3e), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.tool-card:hover {
  box-shadow:
    0 10px 32px rgb(196 153 62 / 20%),
    0 2px 8px rgb(0 0 0 / 5%);
  border-color: var(--color-gold, #c99a3e);
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card-icon {
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.tool-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
  margin: 0;
  line-height: 1.3;
}

.tool-card-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted, #6b7280);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.tool-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold-dark, #8c6d24);
  margin-top: 0.1rem;
  transition: color 0.15s;
}

.tool-card:hover .tool-card-cta {
  text-decoration: underline;
  color: var(--color-gold-deep, #5a3a0a);
}

/* ── Compact alert row at the bottom of the tools section ── */
.tools-alert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  background: var(--color-gold-bg, #fdf6e3);
  border: 1px solid rgb(196 153 62 / 28%);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  color: var(--color-text-muted, #6b7280);
}

/* ══════════════════════════════════════════════════════════════
   COUNTRY TILES
   ══════════════════════════════════════════════════════════════ */
.country-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.country-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  min-height: 44px;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text, #1a1a1a);
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.country-tile:hover {
  border-color: var(--color-gold, #c99a3e);
  background: var(--color-gold-tint, rgb(196 153 62 / 7%));
  color: var(--color-gold-dark, #8c6d24);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgb(196 153 62 / 14%);
}

.country-tile--more {
  background: var(--color-gold-bg, #fdf6e3);
  color: var(--color-gold-dark, #8c6d24);
  border-color: rgb(196 153 62 / 35%);
  font-weight: 700;
}

.country-tile--more:hover {
  background: var(--color-gold, #c99a3e);
  color: #fff;
  border-color: var(--color-gold, #c99a3e);
}

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--color-gold, #c99a3e);
}

.faq-item[open] .faq-q {
  color: var(--color-gold-deep, #5a3a0a);
}

.faq-q {
  padding: 1rem 1.3rem;
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.4;
  transition: color 0.15s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--color-gold-dark, #8c6d24);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-q::after {
  content: '\2212';
}

.faq-more-row {
  text-align: center;
  margin-top: 1.5rem;
}

.faq-a {
  padding: 0 1.3rem 1.1rem;
  font-size: 0.87rem;
  color: var(--color-text-muted, #6b7280);
  line-height: 1.75;
  border-top: 1px solid var(--color-border-subtle, rgb(0 0 0 / 7%));
}

.faq-a a {
  color: var(--color-gold-dark, #8c6d24);
  font-weight: 600;
}

.faq-a a:hover {
  color: var(--color-gold-deep, #5a3a0a);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 900px
   ══════════════════════════════════════════════════════════════ */
@media (width <= 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-live-card {
    max-width: 480px;
  }

  .hero-lead {
    max-width: 100%;
  }

  .gcc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════════ */
@media (width <= 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 640px
   ══════════════════════════════════════════════════════════════ */
@media (width <= 640px) {
  .hero {
    padding: 2.5rem 1.1rem 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-ctas-secondary {
    justify-content: center;
  }

  .trust-inner {
    gap: 0.35rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .trust-item {
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
    flex-shrink: 0;
  }

  .trust-sub {
    display: none;
  } /* hide sub-labels to save space on small screens */

  .home-section {
    padding: 2rem 1rem;
  }

  /* Region tabs responsive */
  .gcc-region-tabs {
    gap: 0.4rem;
    padding-bottom: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .gcc-region-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    margin-bottom: -0.8rem;
    padding-bottom: 0.8rem;
  }

  /* GCC grid: MUST go to 2-col max at 640px, then 1-col at 480px */
  .gcc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tools-alert-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .section-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════════════════════ */
@media (width <= 480px) {
  .gcc-grid {
    grid-template-columns: 1fr !important;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  /* Hero live card spacing */
  .hlc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-live-card {
    padding: 1.1rem;
  }

  .hlc-price {
    font-size: 1.7rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 380px
   ══════════════════════════════════════════════════════════════ */
@media (width <= 380px) {
  .hlc-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .home-section {
    padding: 1.5rem 0.85rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 320px (very small phones)
   ══════════════════════════════════════════════════════════════ */
@media (width <= 320px) {
  .hero {
    padding: 2rem 0.75rem 1.5rem;
  }

  .home-section {
    padding: 1.25rem 0.75rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   RTL OVERRIDES
   ══════════════════════════════════════════════════════════════ */
[dir='rtl'] .hero-inner {
  direction: rtl;
}

[dir='rtl'] .hero-badge {
  flex-direction: row-reverse;
}

[dir='rtl'] .hero-ctas {
  flex-direction: row-reverse;
}

[dir='rtl'] .hero-ctas-secondary {
  flex-direction: row-reverse;
}

[dir='rtl'] .hero-lead {
  text-align: right;
}

[dir='rtl'] .trust-inner {
  flex-direction: row-reverse;
}

[dir='rtl'] .trust-item {
  flex-direction: row-reverse;
}

[dir='rtl'] .section-intro {
  flex-direction: row-reverse;
}

[dir='rtl'] .gcc-card-header {
  flex-direction: row-reverse;
}

[dir='rtl'] .hlc-header {
  flex-direction: row-reverse;
}

[dir='rtl'] .hlc-indicators {
  flex-direction: row-reverse;
}

[dir='rtl'] .hlc-footer {
  flex-direction: row-reverse;
}

[dir='rtl'] .hlc-grid {
  direction: rtl;
}

[dir='rtl'] .faq-q {
  flex-direction: row-reverse;
}

[dir='rtl'] .faq-q::after {
  margin-inline: 0 auto;
}

[dir='rtl'] .footer-inner {
  direction: rtl;
}

[dir='rtl'] .country-tiles {
  direction: rtl;
}

[dir='rtl'] .tool-card {
  text-align: right;
}

[dir='rtl'] .tools-alert-row {
  flex-direction: row-reverse;
}

@media (width <= 640px) {
  [dir='rtl'] .hero-ctas {
    flex-direction: column;
  }

  [dir='rtl'] .section-intro {
    flex-direction: column;
    align-items: flex-end;
  }
}

/* ── Freshness banner ── */
.home-freshness-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-live-bg);
  border-bottom: 1px solid var(--color-live-border);
  color: var(--color-live);
  font-size: 0.83rem;
  font-weight: 600;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.home-freshness-bar--stale {
  background: var(--color-daily-bg);
  border-bottom-color: var(--color-daily-border);
  color: var(--color-daily);
}

.hfb-dismiss {
  margin-inline-start: auto;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 0.25rem;
  line-height: 1;
}

.hfb-dismiss:hover {
  opacity: 1;
}

/* ── Copy button on country cards ── */
.gcc-card-wrapper {
  position: relative;
}

.gcc-copy-btn {
  position: absolute;
  top: 0.5rem;
  inset-inline-end: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-faint);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
  z-index: 2;
}

.gcc-card-wrapper:hover .gcc-copy-btn,
.gcc-card-wrapper:focus-within .gcc-copy-btn {
  opacity: 1;
}

.gcc-copy-btn:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold);
}
