/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #d7da0b;
  --action:    #d7da0b;
  --action-text: #0a0a0a;
  --dark:      #0a0a0a;
  --surface:   #F8FAFC;
  --white:     #FFFFFF;
  --text:      #1E293B;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background: var(--white);
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.label-white { color: rgba(255,255,255,.6); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { background: #c4b809; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-action  { background: var(--action); color: var(--action-text); }
.btn-action:hover { background: #e8ec30; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: rgba(215,218,11,.6); color: var(--primary); }
.btn-outline:hover { background: rgba(215,218,11,.08); border-color: var(--primary); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  border-bottom: 2px solid rgba(215,218,11,.3);
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
  padding: .875rem 2rem;
  border-bottom-color: var(--border);
}
.nav-logo img {
  height: 80px; width: auto; display: block;
  transition: height var(--transition);
}
nav.scrolled .nav-logo img { height: 80px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a { font-weight: 500; font-size: .9rem; color: rgba(255,255,255,.85); transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta .btn { padding: .625rem 1.25rem; font-size: .875rem; }
nav.scrolled .btn-outline { border-color: var(--primary); color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.5rem; font-weight: 700; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(215,218,11,.12);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 11rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(215,218,11,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 760px; position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 580px; }

/* trust chips */
.trust-chips { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-chip {
  background: rgba(215,218,11,.12);
  border: 1px solid rgba(215,218,11,.3);
  color: var(--primary);
  border-radius: 100px;
  padding: .375rem 1rem;
  font-size: .8rem;
  font-weight: 600;
}

/* ── Proof Strip ─────────────────────────────────────────────────────────── */
.proof-strip { background: #111; color: #fff; padding: 2.5rem 0; border-top: 1px solid rgba(215,218,11,.2); border-bottom: 1px solid rgba(215,218,11,.2); }
.proof-stats { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-num { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.proof-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .25rem; font-weight: 500; letter-spacing: .05em; }
.proof-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }

/* ── Value grid (5-card: 3 top row + 2 centered bottom row) ─────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
/* Row 1: 3 equal cards, each spanning 2 of 6 columns */
.value-grid .value-card:nth-child(1) { grid-column: 1 / 3; }
.value-grid .value-card:nth-child(2) { grid-column: 3 / 5; }
.value-grid .value-card:nth-child(3) { grid-column: 5 / 7; }
/* Row 2: 2 cards centered — starting at col 2 and col 4 */
.value-grid .value-card:nth-child(4) { grid-column: 2 / 4; }
.value-grid .value-card:nth-child(5) { grid-column: 4 / 6; }

.value-card {
  padding: 2rem;
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px;
  background: var(--text);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-icon svg {
  width: 26px; height: 26px;
  stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: .625rem; color: var(--text); }
.value-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── Process steps ───────────────────────────────────────────────────────── */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.step-card { text-align: center; padding: 2.5rem 2rem; }
/* ── Hero logo ───────────────────────────────────────────────────────────── */
.hero-logo {
  margin-bottom: 2.5rem;
}
.hero-logo img {
  height: 90px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(215,218,11,.35));
}

.step-num {
  width: 56px; height: 56px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 1.5rem;
}
.step-card h3 { margin-bottom: .75rem; }

/* ── Services Grid ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: #0a0a0a;
  border: 1px solid rgba(215,218,11,.35);
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; stroke: #d7da0b; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: .5rem; }

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(215,218,11,.15) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.65); position: relative; z-index: 1; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-section .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer { background: #050505; color: rgba(255,255,255,.6); padding: 4rem 0 2rem; border-top: 1px solid rgba(215,218,11,.2); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: .75rem; }
.footer-col h4 { color: var(--primary); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--primary); }

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-hero { background: var(--dark); color: #fff; padding: 10rem 2rem 3rem; text-align: center; border-bottom: 2px solid rgba(215,218,11,.3); }
.legal-hero h1 { font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 800; margin-bottom: .75rem; }
.legal-hero p { color: rgba(255,255,255,.5); font-size: 1rem; }
.legal-body { max-width: 760px; margin: 3rem auto 5rem; padding: 0 2rem; }
.legal-body h2 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 2.5rem 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid rgba(215,218,11,.3); }
.legal-body p, .legal-body li { color: var(--muted); line-height: 1.8; margin-bottom: .75rem; }
.legal-body ul { padding-left: 1.5rem; }
.legal-body a { color: var(--action); }
.legal-effective { background: #F1F5F9; border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 2rem; color: var(--muted); font-size: .9rem; border-left: 4px solid var(--primary); }
.sms-box { background: rgba(215,218,11,.06); border: 1px solid rgba(215,218,11,.3); border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.sms-box h3 { font-size: 1rem; color: var(--dark); margin-bottom: .75rem; }
.sms-box ul { list-style: none; padding: 0; }
.sms-box ul li { padding: .35rem 0; font-size: .9rem; color: var(--muted); }
.sms-box ul li::before { content: "→ "; color: var(--primary); font-weight: 700; }

/* submit button on dark/gold theme */
.submit-btn { background: var(--action) !important; color: var(--action-text) !important; }

/* ── Contact page ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .2rem; }
.contact-item strong { display: block; color: var(--text); margin-bottom: .25rem; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .5rem; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .9rem; color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(215,218,11,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.sms-consent { background: var(--surface); border-radius: 8px; padding: 1rem; font-size: .8rem; color: var(--muted); border: 1px solid var(--border); margin-top: 1rem; line-height: 1.6; }

/* ── Fade animations ─────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .value-grid .value-card:nth-child(1),
  .value-grid .value-card:nth-child(2),
  .value-grid .value-card:nth-child(3),
  .value-grid .value-card:nth-child(4),
  .value-grid .value-card:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4, .step-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { gap: 1.5rem; }
  .proof-divider { display: none; }
  .hero { padding: 9rem 1.5rem 4rem; }
  .value-grid {
    grid-template-columns: 1fr !important;
  }
}
