/* ============================================================
   THE IGOE SCORE — LUXURY BRAND STYLESHEET
   Colors: Gold (#C9A84C / #B8962E / gradient) | Black (#0A0A0A) | Off-white (#F5F0E8)
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E2C97E;
  --gold-dark:    #9A7A2E;
  --gold-grad:    linear-gradient(135deg, #C9A84C 0%, #E2C97E 50%, #B8962E 100%);
  --gold-grad-h:  linear-gradient(135deg, #E2C97E 0%, #C9A84C 50%, #E2C97E 100%);
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-card:   #161616;
  --black-border: #2A2A2A;
  --white:        #FFFFFF;
  --off-white:    #F5F0E8;
  --light-gray:   #F0EBE1;
  --text-dark:    #1A1A1A;
  --text-mid:     #555555;
  --text-light:   #CCCCCC;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(0,0,0,0.18);
  --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.18);
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.gold { color: var(--gold); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark  { background: var(--black); }
.section-light { background: var(--off-white); color: var(--text-dark); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
.section-label.light { color: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-light .section-title { color: var(--text-dark); }
.section-dark  .section-title { color: var(--white); }
.section-title.light { color: var(--white); }
.section-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 3.5rem;
  opacity: 0.85;
}
.section-light .section-intro { color: var(--text-mid); }
.section-dark  .section-intro { color: var(--text-light); }
.section-intro.light { color: rgba(255,255,255,0.8); max-width: 680px; margin-inline: auto; text-align: center; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-grad);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-grad-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-light {
  border-color: rgba(201,168,76,0.5);
  color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1);
  transition: var(--transition);
}
.nav-logo img:hover { opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold-grad);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold-grad) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 14px rgba(201,168,76,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger, .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span, .nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-cta-btn {
  background: var(--gold-grad) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 14px rgba(201,168,76,0.3);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ---------- HERO ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 140px 2rem 100px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 860px;
}
.hero-logo-wrap {
  margin-bottom: 0.25rem;
}
.hero-logo {
  width: min(390px, 72vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 32px rgba(201,168,76,0.25));
}
.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  max-width: 560px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}
.hero-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.hero-cred span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-cred i { color: var(--gold); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bounce {
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ---------- REAL SCORE EXAMPLE ---------- */
.score-example-card {
  background: #ffffff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(0,0,0,0.28);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Subtle dot-grid background on the whole card */
.score-example-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 20px;
}

/* LEFT panel */
.se-left {
  background: #f8f9fb;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.se-badge-wrap { position: relative; }
.se-badge-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}
.se-badge-img:hover { transform: scale(1.05) rotate(-2deg); }
.se-vendor-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d1f4c;
  text-align: center;
  margin: 0;
}
.se-approved-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
}

/* RIGHT panel */
.se-right {
  padding: 2.2rem 2.4rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.se-breakdown-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #f0f0f0;
}
.se-breakdown-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #e3f0ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1565c0;
}
.se-breakdown-header h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1f4c;
  margin: 0 0 0.2rem;
}
.se-breakdown-header p {
  font-size: 0.82rem;
  color: #9e9e9e;
  margin: 0;
}

/* Bar rows */
.se-bars { display: flex; flex-direction: column; gap: 1.1rem; }
.se-bar-row {}
.se-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.se-bar-label {
  font-size: 0.87rem;
  color: #333;
  font-weight: 500;
}
.se-bar-score {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0d1f4c;
}
.se-bar-track {
  width: 100%;
  height: 8px;
  background: #e8e8e8;
  border-radius: 50px;
  overflow: hidden;
}
.se-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #2e7d32, #43a047, #66bb6a);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.se-bar-fill.animated { width: var(--bar-w); }

/* Responsive */
@media (max-width: 700px) {
  .score-example-card { grid-template-columns: 1fr; }
  .se-left { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 2rem; }
  .se-badge-img { width: 120px; height: 120px; }
}

/* ---------- SIMPLE. CLEAR. ACTIONABLE. ---------- */
.sca-section {
  background: #f4f6f9;
  color: var(--text-dark);
}

/* Header */
.sca-header {
  text-align: center;
  margin-bottom: 3rem;
}
.sca-logo-text {
  font-family: 'Barlow Condensed', var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.sca-black { color: #111; }
.sca-gold  { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.sca-headline {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
}
.sca-blue { color: #1a73e8; }

/* Grid */
.sca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */
.sca-card {
  border-radius: 20px;
  padding: 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.sca-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.sca-card-approved { background: #edfaf4; }
.sca-card-caution  { background: #fffbea; }
.sca-card-avoid    { background: #fff0f0; }

/* Badge */
.sca-badge-wrap {
  margin-bottom: 1.2rem;
}
.sca-badge-wrap img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  transition: transform 0.35s ease;
}
.sca-card:hover .sca-badge-wrap img { transform: scale(1.08) rotate(-3deg); }

/* Text */
.sca-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.sca-range {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1;
}
.sca-desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

/* Bullets */
.sca-bullets {
  list-style: none;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.sca-bullets li {
  font-size: 0.87rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.sca-bullets i { font-size: 0.8rem; flex-shrink: 0; }

/* Footer icon */
.sca-card-footer { margin-top: auto; }
.sca-foot-icon { font-size: 1.8rem; opacity: 0.7; }

/* Color tokens */
.sca-teal  { color: #00a878; }
.sca-amber { color: #d4860a; }
.sca-red   { color: #e53935; }

/* Responsive */
@media (max-width: 768px) {
  .sca-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 3.5rem 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ---------- PILLARS (WHAT IS IT) ---------- */

/* ---------- PILLARS (WHAT IS IT) — INFOGRAPHIC PANEL ---------- */

/* Outer panel */
.info-panel {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
  color: var(--text-dark);
}

/* Panel header */
.info-panel-header {
  background: #f4f6f9;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  padding: 1.6rem 2rem 1.4rem;
}
.info-panel-standard {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.4rem;
}
.info-panel-standard i { color: var(--gold); margin-right: 0.3rem; }
.info-panel-title {
  font-family: 'Barlow Condensed', var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #0d1f4c;
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-panel-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #0d1f4c;
  margin-bottom: 0.3rem;
}
.info-panel-tagline {
  font-size: 0.82rem;
  color: #9e9e9e;
}

/* Three columns */
.info-panel-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0;
}
.info-col {
  padding: 1.8rem 1.6rem;
  border-right: 1px solid #e8e8e8;
}
.info-col:last-child { border-right: none; }
.info-col-center { text-align: center; }

/* Column headings */
.info-col-heading {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #e8e8e8;
}
.info-green { color: #2e7d32; border-bottom-color: #2e7d32; }
.info-blue  { color: #1565c0; border-bottom-color: #1565c0; }
.info-averaged {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9e9e9e;
  text-transform: none;
  letter-spacing: 0;
}

/* Icon circles */
.info-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.info-icon-circle.green { background: #2e7d32; color: #fff; width: 26px; height: 26px; font-size: 0.85rem; }
.info-icon-circle.red   { background: #c62828; color: #fff; width: 26px; height: 26px; font-size: 0.85rem; }
.info-icon-circle.sm    { width: 20px; height: 20px; font-size: 0.65rem; }

/* Problem list */
.info-problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}
.info-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
}

/* Fix box */
.info-fix-box {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.info-fix-box p {
  font-size: 0.88rem;
  color: #1b5e20;
  line-height: 1.55;
  margin: 0;
}
.info-fix-box strong { color: #1b5e20; }

/* Badge examples */
.info-badge-examples {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.info-badge-examples img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.info-badge-caption {
  text-align: center;
  font-size: 0.72rem;
  color: #9e9e9e;
  margin: 0;
}

/* Gauge */
.info-gauge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.info-gauge { width: 130px; height: 130px; }

/* Rating tiers */
.info-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.info-tier span { display: flex; align-items: center; gap: 0.45rem; }
.info-tier-approved { background: #e8f5e9; color: #2e7d32; }
.info-tier-caution  { background: #fff8e1; color: #f9a825; }
.info-tier-avoid    { background: #ffebee; color: #c62828; }

/* Cost section */
.info-cost {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e8e8;
  text-align: center;
}
.info-cost-label  { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: #9e9e9e; margin-bottom: 0.3rem; }
.info-cost-dollars { font-size: 1.2rem; font-weight: 700; color: #0d1f4c; }
.info-cost-dollars .faded { color: #ccc; }
.info-cost-sub    { font-size: 0.75rem; color: #9e9e9e; margin-top: 0.2rem; }

/* Criteria table */
.info-criteria-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.info-criteria-table thead tr { border-bottom: 2px solid #e0e0e0; }
.info-criteria-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1565c0;
  padding: 0 0.5rem 0.7rem 0;
}
.info-criteria-table td {
  padding: 0.65rem 0.5rem 0.65rem 0;
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  line-height: 1.45;
}
.info-criteria-table td:first-child  { color: #0d1f4c; min-width: 130px; }
.info-criteria-table td:nth-child(2) { color: #0d1f4c; white-space: nowrap; }
.info-criteria-table td:last-child   { color: #757575; font-size: 0.8rem; }
.info-criteria-table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 900px) {
  .info-panel-cols { grid-template-columns: 1fr; }
  .info-col {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.5rem 1.2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .info-col:last-child { border-bottom: none; }

  /* Keep scoring system col centered on mobile */
  .info-col-center { text-align: center; }
  .info-gauge-wrap { justify-content: center; }

  /* Tier rows — full width on mobile */
  .info-tier {
    width: 100%;
    box-sizing: border-box;
  }

  /* Cost block centered */
  .info-cost { text-align: center; }

  /* Criteria table — make it scroll if needed */
  .info-criteria-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Fix problem list items wrapping correctly */
  .info-problem-list li {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .info-fix-box {
    flex-direction: row;
    align-items: flex-start;
  }
  .info-fix-box p {
    font-size: 0.84rem;
  }
}

/* ---------- WHY IT EXISTS — PHOTO ---------- */
.why-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(201,168,76,0.2);
}
.why-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}
.why-photo-wrap:hover .why-photo {
  transform: scale(1.02);
}
.why-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  padding: 2.5rem 2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
}
.why-photo-caption i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .why-photo { height: 260px; }
}

/* ---------- PROBLEMS (WHY IT EXISTS) ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: var(--gold-dark); }
.problem-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-dark);
}
.problem-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.problem-card p  { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; }

.solution-banner {
  background: var(--black);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.solution-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.solution-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.solution-icon {
  width: 64px;
  min-width: 64px;
  height: 64px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--black);
}
.solution-inner h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.solution-inner p  { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }

/* ---------- HOW IT WORKS — VIDEO ---------- */
.hiw-video-wrap {
  max-width: 820px;
  margin: 0 auto 4rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(201,168,76,0.35);
  box-shadow: 0 12px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.08);
  background: #0a0a0a;
}
.hiw-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}
.hiw-video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: rgba(201,168,76,0.07);
  border-top: 1px solid rgba(201,168,76,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  letter-spacing: 0.02em;
}
.hiw-video-label i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- HOW IT WORKS (STEPS) ---------- */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
.step-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2rem 0 2rem 0;
  position: relative;
  transition: var(--transition);
}
.step-number {
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--black-card);
  border: 2px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-item:hover .step-number {
  background: var(--gold-grad);
  border-color: var(--gold);
  color: var(--black);
}
.step-content { padding-top: 1rem; }
.step-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-content p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.75; max-width: 640px; }

/* ---------- CATEGORIES ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.category-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.category-card:hover::after { transform: scaleX(1); }
.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.category-card:hover .cat-icon {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold-dark);
}
.category-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.category-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ---------- WHO IT'S FOR — PHOTO ---------- */
.who-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(201,168,76,0.25);
}
.who-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s ease;
}
.who-photo-wrap:hover .who-photo { transform: scale(1.02); }
.who-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  padding: 2.5rem 2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
}
.who-photo-caption i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

@media (max-width: 768px) {
  .who-photo { height: 260px; }
}

/* ---------- WHO IT'S FOR ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.audience-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  transition: var(--transition);
}
.audience-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.aud-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.audience-card:hover .aud-icon { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.audience-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.audience-card p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.about-stat {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.about-stat span { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 900; display: block; margin-bottom: 0.3rem; }

/* ---------- ABOUT PHOTO ---------- */
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.8rem;
  border: 1.5px solid rgba(201,168,76,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.about-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.about-photo-wrap:hover .about-photo {
  transform: scale(1.03);
}

.about-card-graphic {
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.acg-badge {
  background: var(--gold-grad);
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
}
.acg-badge i { font-size: 2rem; }
.acg-quote {
  padding: 2rem;
  border-bottom: 1px solid var(--black-border);
}
.acg-quote p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin: 0.8rem 0 1rem; font-style: italic; }
.acg-quote strong { font-size: 0.9rem; }
.acg-credentials {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.acg-credentials div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.acg-credentials i { font-size: 0.9rem; }

/* ---------- TRUST SECTION ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
}
.trust-item:hover { transform: translateY(-3px); }
.trust-item.is-gold { border-color: rgba(201,168,76,0.25); }
.trust-item.is-gold:hover { border-color: rgba(201,168,76,0.5); box-shadow: var(--shadow-gold); }
.trust-check {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,70,70,0.1);
  border: 1.5px solid rgba(255,70,70,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ff4646;
}
.gold-check {
  background: rgba(201,168,76,0.1) !important;
  border-color: rgba(201,168,76,0.4) !important;
  color: var(--gold) !important;
}
.trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.trust-item p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--black-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cta-trust-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.cta-trust-row span { display: flex; align-items: center; gap: 0.4rem; }
.cta-trust-row i { font-size: 0.9rem; }

/* ---------- HOMEPAGE BLOG PREVIEW ---------- */
.homepage-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #111;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.homepage-blog-featured:hover {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 12px 50px rgba(201,168,76,0.12);
}
.homepage-blog-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.homepage-blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.homepage-blog-featured:hover .homepage-blog-img img { transform: scale(1.04); }
.homepage-blog-badge {
  position: absolute;
  bottom: 14px; left: 14px;
}
.homepage-blog-badge img { display: none; }
.homepage-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,10,10,0.82);
  border: 2px solid #22c55e;
  color: #fff;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  padding: 5px 13px 5px 10px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.homepage-score-pill .pill-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: #22c55e;
}
.homepage-score-pill.caution { border-color: #eab308; }
.homepage-score-pill.caution .pill-num { color: #eab308; }
.homepage-score-pill.avoid   { border-color: #ef4444; }
.homepage-score-pill.avoid   .pill-num { color: #ef4444; }
.homepage-blog-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.homepage-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.homepage-blog-meta i { margin-right: 4px; color: rgba(201,168,76,0.6); }
.homepage-blog-cat {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
}
.homepage-blog-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}
.homepage-blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.homepage-blog-title a:hover { color: var(--gold); }
.homepage-blog-excerpt {
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}
.homepage-blog-score { display: flex; }
.homepage-blog-score .score-pill-approved {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.homepage-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A84C, #E2C97E);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.homepage-blog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.homepage-blog-footer {
  text-align: center;
  margin-top: 36px;
}
.homepage-blog-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(201,168,76,0.45);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.homepage-blog-all-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .homepage-blog-featured { grid-template-columns: 1fr; }
  .homepage-blog-img { min-height: 240px; }
  .homepage-blog-body { padding: 28px 24px; }
}
.homepage-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.homepage-blog-card {
  background: #111;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.homepage-blog-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
  transform: translateY(-3px);
}
.homepage-blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.homepage-blog-card-img img:first-child {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.homepage-blog-card:hover .homepage-blog-card-img img:first-child { transform: scale(1.05); }
.homepage-blog-card-badge {
  position: absolute !important;
  bottom: 10px; left: 10px;
  width: 52px !important;
  height: auto !important;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.homepage-blog-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.homepage-blog-card-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}
.homepage-blog-card-body h4 a { color: inherit; text-decoration: none; }
.homepage-blog-card-body h4 a:hover { color: var(--gold); }
.homepage-blog-card-body p { color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.6; margin: 0; }

/* ---------- FOOTER ---------- */
#footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--black-border);
}
.footer-logo img {
  height: 33px;
  width: auto;
  margin-bottom: 1.2rem;
}
.footer-logo p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul li,
.footer-contact ul li { margin-bottom: 0.7rem; }
.footer-links ul li a,
.footer-contact ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links ul li a:hover,
.footer-contact ul li a:hover { color: var(--gold); }
.footer-tagline {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-style: italic;
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ---------- HERO VIDEO BOXES ---------- */
.hero-video-box {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201,168,76,0.08);
  background: #0e0e0e;
}
.hero-video-box video {
  width: 100%;
  height: auto;
  display: block;
}
/* Placeholder shown when no video src is set */
.hero-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 340px;
  background: linear-gradient(160deg, #161616 0%, #0e0e0e 100%);
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.hero-video-placeholder:hover {
  color: rgba(201,168,76,0.6);
  background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
}
.hero-video-placeholder i {
  font-size: 3.5rem;
  color: rgba(201,168,76,0.4);
  transition: var(--transition);
}
.hero-video-placeholder:hover i {
  color: var(--gold);
  transform: scale(1.08);
}
.hero-video-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- HERO SCORE ICONS (small badges under headline) ---------- */
.hero-score-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}
.hero-score-icons img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.25s ease;
}
.hero-score-icons img:hover {
  transform: scale(1.12);
}

/* ---------- FADE-IN ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats    { grid-template-columns: repeat(4, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .problems-grid  { grid-template-columns: 1fr; }
  .categories-grid{ grid-template-columns: 1fr; }
  .audience-grid  { grid-template-columns: 1fr; }
  .trust-grid     { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-stats    { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline::before { display: none; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }

  /* Stack icon cards vertically on mobile */
  .problem-card {
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.5rem;
    align-items: flex-start;
  }
  .problem-icon {
    width: 46px; height: 46px; min-width: 46px;
    font-size: 1.15rem;
  }
  .problem-card h3 { font-size: 1rem; }
  .problem-card p  { font-size: 0.88rem; }

  .audience-card {
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.5rem;
    align-items: flex-start;
  }
  .aud-icon {
    width: 46px; height: 46px; min-width: 46px;
    font-size: 1.2rem;
  }
  .audience-card h3 { font-size: 1rem; }
  .audience-card p  { font-size: 0.88rem; }

  .hamburger, .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--black-card);
    border-left: 1px solid var(--black-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 1rem; }

  .hero-video-placeholder { height: 220px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-cred { flex-direction: column; align-items: center; gap: 0.6rem; }

  .solution-inner { flex-direction: column; gap: 1rem; }

  .cta-trust-row { gap: 1.2rem; font-size: 0.8rem; }
  .cta-actions    { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-badge-row { gap: 0.6rem; }
  .hero-actions   { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
