@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #0a1628;
  --secondary: #112240;
  --accent: #c9a84c;
  --accent-light: #e8c96e;
  --accent-dim: rgba(201, 168, 76, 0.12);
  --surface: #0d1f3c;
  --surface-2: #152a4a;
  --text: #e8edf5;
  --text-muted: #8a9bb8;
  --text-dim: #5a6e8c;
  --white: #ffffff;
  --success: #3ecf8e;
  --border: rgba(201, 168, 76, 0.18);
  --border-subtle: rgba(255,255,255,0.07);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo i { color: var(--accent); width: 22px; height: 22px; }

.logo span em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  color: var(--primary) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .mobile-toggle { display: flex; align-items: center; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--secondary);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

/* ─── SECTIONS (ALL CONTENT ON ONE PAGE) ─── */
section { scroll-margin-top: 72px; }

/* ─── HERO ─── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.78) 50%,
    rgba(17,34,64,0.88) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge i { width: 14px; height: 14px; }

.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-inner h1 span { color: var(--accent); }

.hero-inner p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-sub {
  font-size: 0.9rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 40px !important;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  letter-spacing: -0.01em;
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
}

.btn-gold:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn i { width: 18px; height: 18px; }

/* ─── SECTION TITLES ─── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title span { color: var(--accent); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ─── DIVIDER ─── */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 0;
}

.gold-line.centered { margin: 16px auto 0; }

/* ─── WELCOME SECTION ─── */
#welcome {
  padding: 100px 0;
  background: var(--secondary);
  border-top: 1px solid var(--border-subtle);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.welcome-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── WHY WORK WITH US ─── */
#why {
  padding: 100px 0;
  background: var(--primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.why-icon i { width: 26px; height: 26px; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── PRODUCTS ─── */
#products {
  padding: 100px 0;
  background: var(--secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-header {
  background: linear-gradient(135deg, var(--surface-2), var(--secondary));
  padding: 28px 24px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.product-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px;
  width: 40px; height: 2px;
  background: var(--accent);
}

.product-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.product-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-card-body {
  padding: 24px;
}

.product-card-body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.product-card-body h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.specs-list {
  list-style: none;
  margin-bottom: 20px;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.specs-list li:last-child { border-bottom: none; }
.specs-list li strong { color: var(--text-muted); font-weight: 500; }
.specs-list li span { color: var(--white); font-weight: 600; }

.product-card-body .use-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}

@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }

/* ─── GAME CHANGER ─── */
#game-changer {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

#game-changer::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gc-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.gc-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.gc-intro .big-claim {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin: 24px 0 12px;
}

.gc-intro .sub-claim {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Products categories */
.gc-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.gc-cat {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.gc-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.gc-cat-title i { color: var(--accent); width: 22px; height: 22px; }

.gc-cat-title h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.gc-cat ul { list-style: none; }

.gc-cat li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.gc-cat li:last-child { border-bottom: none; }

.gc-cat li strong { color: var(--white); font-weight: 600; }

.gc-cat li .moq {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 768px) { .gc-products { grid-template-columns: 1fr; } }

/* Deal structure */
.gc-deal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
}

.gc-deal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gc-deal-title i { color: var(--accent); width: 24px; height: 24px; }

.gc-deal-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
}

.gc-deal-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.gc-deal-points li i {
  color: var(--success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gc-deal-points li strong { color: var(--white); }

@media (max-width: 600px) { .gc-deal-points { grid-template-columns: 1fr; } }

/* Documentation */
.gc-docs {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
}

.gc-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.doc-item i { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 768px) { .gc-docs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gc-docs-grid { grid-template-columns: 1fr; } }

/* Comparison table */
.gc-comparison {
  margin-bottom: 60px;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table thead tr th {
  padding: 20px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.compare-table thead tr th:first-child {
  background: var(--surface-2);
  color: var(--text-muted);
  border-right: 1px solid var(--border-subtle);
}

.compare-table thead tr th:last-child {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  color: var(--accent);
}

.compare-table tbody tr td {
  padding: 18px 28px;
  font-size: 0.875rem;
  border-top: 1px solid var(--border-subtle);
  vertical-align: top;
  line-height: 1.6;
}

.compare-table tbody tr td:first-child {
  color: var(--text-dim);
  border-right: 1px solid var(--border-subtle);
}

.compare-table tbody tr td:last-child {
  color: var(--text);
  font-weight: 500;
}

.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* Steps */
.gc-steps {
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.step-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 auto 14px;
}

.step-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }

/* CIF CTA */
.gc-cta {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
}

.gc-cta h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.gc-cta h3 span { color: var(--accent); }

.gc-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.gc-cta .discuss-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  list-style: none;
}

.gc-cta .discuss-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
}

.gc-cta .discuss-list li i { color: var(--accent); width: 14px; height: 14px; }

.gc-cta .email-highlight {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ─── QUALITY ─── */
#quality {
  padding: 100px 0;
  background: var(--secondary);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quality-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.25s, border-color 0.25s;
}

.quality-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.quality-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.quality-icon i { width: 24px; height: 24px; }

.quality-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.quality-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 600px) { .quality-grid { grid-template-columns: 1fr; } }

/* ─── ABOUT ─── */
#about {
  padding: 100px 0;
  background: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  margin-top: 28px;
  letter-spacing: 0.02em;
}

.about-text-block h3:first-child { margin-top: 0; }

.about-text-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.capabilities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.capabilities-list li i {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-list { grid-template-columns: 1fr; }
}

/* ─── CONTACT ─── */
#contact {
  padding: 100px 0;
  background: var(--secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-icon i { width: 22px; height: 22px; }

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-email-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.contact-email-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-email-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.email-pill {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 100px;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── TOS / PRIVACY ─── */
#tos {
  padding: 100px 0;
  background: var(--primary);
}

.tos-inner {
  max-width: 780px;
  margin: 0 auto;
}

.tos-block {
  margin-bottom: 56px;
}

.tos-block h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.tos-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 28px 0 10px;
}

.tos-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.tos-block ul {
  padding-left: 20px;
  margin: 10px 0 16px;
}

.tos-block ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-col ul li span {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

#back-to-top i { width: 20px; height: 20px; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ─── SEPARATOR ─── */
.section-sep {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

/* ─── CRITICAL FIXES ─── */

/* Prevent flash of unstyled text */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  font-display: swap;
}

/* Ensure hero badge is visible */
.hero-badge {
  animation: fadeInDown 0.8s ease-out both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure mobile menu is above everything */
.nav-links {
  z-index: 1001;
}

/* Smooth section transitions */
section {
  transition: opacity 0.3s ease;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header, footer, #back-to-top, .hero-bg {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  section {
    page-break-inside: avoid;
  }
}
