/* ═══════════════════════════════════════════════
   WhiteHorse RPO Solutions — Main Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --black: #080A0F;
  --white: #F4F1EA;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8A6A1F;
  --slate: #1A1F2E;
  --slate-mid: #252B3B;
  --slate-light: #323A52;
  --muted: #7A8299;
  --accent: #4A7FD4;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  font-weight: 700;
  z-index: 10000;
}
.skip-link:focus { top: 0.5rem; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: var(--nav-height);
  background: rgba(8,10,15,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(8,10,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { width: 38px; height: 38px; }

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--gold); }

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

.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 4rem) 4rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(74,127,212,0.06) 0%, transparent 55%),
    linear-gradient(160deg, var(--black) 0%, var(--slate) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  padding: 0.4rem 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-subtitle strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Orbital graphic */
.hero-visual {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
}
.hero-orb {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(201,168,76,0.15) 25%, transparent 50%, rgba(74,127,212,0.1) 75%, transparent 100%);
  animation: spin 12s linear infinite;
}
.hero-orb-2 {
  position: absolute; inset: 30px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: spin 8s linear infinite reverse;
}
.hero-orb-3 {
  position: absolute; inset: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: spin 6s linear infinite;
}
.orb-center {
  position: absolute; inset: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.3) 0%, rgba(201,168,76,0.05) 60%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
}
.orb-icon { font-size: 2.5rem; }
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: ripple 3s ease-out infinite;
}
.orb-ring:nth-child(1) { inset: -20px; animation-delay: 0s; }
.orb-ring:nth-child(2) { inset: -50px; animation-delay: 1s; }
.orb-ring:nth-child(3) { inset: -80px; animation-delay: 2s; }

@keyframes ripple { 0% { opacity: 0.6; } 100% { opacity: 0; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--gold);
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}

.btn-secondary {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--slate);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
}

/* ── SERVICES ── */
.services {
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
}
.service-card {
  background: var(--slate-mid);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--slate-light); }
.service-card:hover::after { width: 100%; }
.service-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-desc { font-size: 0.88rem; line-height: 1.7; color: var(--muted); }
.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ── HOW IT WORKS ── */
.how { background: var(--black); position: relative; }
.how-header { margin-bottom: 5rem; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.how-step { padding: 0 2rem; text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--slate);
  border: 1px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  position: relative; z-index: 2;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.step-desc { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

/* ── AI SECTION ── */
.ai-section { background: var(--slate); position: relative; overflow: hidden; }
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ai-visual { position: relative; height: 460px; }
.ai-card {
  position: absolute;
  background: var(--slate-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
}
.ai-card-main { left: 0; top: 50%; transform: translateY(-50%); width: 260px; border-left: 3px solid var(--gold); }
.ai-card-1 { right: 0; top: 10%; width: 200px; }
.ai-card-2 { right: 20px; bottom: 10%; width: 220px; }
.ai-card-3 { left: 20px; top: 8%; width: 180px; }
.ai-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.ai-card-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); line-height: 1; }
.ai-card-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.ai-features { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.ai-feat { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--muted); }
.ai-feat::before { content: '◆'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }

/* ── WHY ── */
.why { background: var(--black); }
.why-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(201,168,76,0.08); }
.why-card { background: var(--slate); padding: 2rem; }
.why-card-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.why-card-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.why-card-desc { font-size: 0.83rem; line-height: 1.6; color: var(--muted); }

/* ── INDUSTRIES ── */
.industries { background: var(--slate); text-align: center; }
.industries-header { margin-bottom: 4rem; }
.industries-header .section-tag { justify-content: center; }
.industries-header .section-tag::before { display: none; }
.industries-header .section-tag::after { content: ''; width: 24px; height: 1px; background: var(--gold); }
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
}
.industry-pill {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black); padding: 7rem 4rem; }
.testimonials > .reveal { margin-bottom: 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.08);
}
.testimonial-card {
  background: var(--slate);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.3s;
}
.testimonial-card:hover { background: var(--slate-mid); }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.testimonial-text::before { content: '"'; color: var(--gold); font-size: 2rem; font-style: normal; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; }
.testimonial-footer { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.testimonial-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); font-style: normal; display: block; }
.testimonial-role { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--black);
  text-align: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-tag { justify-content: center; }
.cta-section .section-tag::before { display: none; }
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
}
.cta-title .gold { color: var(--gold); }
.cta-desc { font-size: 1rem; font-weight: 300; color: var(--muted); max-width: 500px; margin: 0 auto 3rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { background: var(--slate); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--slate-mid); }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: -0.4rem; }
.form-success {
  background: rgba(74,127,212,0.15);
  border: 1px solid rgba(74,127,212,0.4);
  border-radius: 2px;
  padding: 1rem;
  color: #9FC8FF;
  font-size: 0.9rem;
  text-align: center;
}
.contact-info { padding-top: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.contact-item-val { font-size: 0.95rem; color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-top {
  padding: 4rem 4rem 3rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.2rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-visual { width: 340px; height: 340px; right: 2rem; }
}

@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.5rem; }
  .hero { padding: calc(var(--nav-height) + 3rem) 2rem 5rem; }
  .hero-visual { display: none; }
  section { padding: 5rem 2rem; }
  .stats-bar { padding: 2rem; grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .how-steps::before { display: none; }
  .ai-inner, .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ai-visual { height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { padding: 1.5rem 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,10,15,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav-cta { margin-top: 0.5rem; display: inline-block; }
  .hero { padding: calc(var(--nav-height) + 2rem) 1.2rem 4rem; }
  section { padding: 4rem 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { padding: 1.5rem 1.2rem; }
  .testimonials { padding: 4rem 1.2rem; }
  .testimonials-grid { gap: 2px; }
  .footer-top { padding: 3rem 1.2rem 2rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-links { gap: 1rem; flex-wrap: wrap; }
  .cta-section { padding: 5rem 1.2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ── FOCUS STYLES (Accessibility) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── PRINT ── */
@media print {
  nav, .hero-visual, .cta-section { display: none; }
  body { background: white; color: black; }
}
