/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  --ink:       #0a0a0f;
  --ink2:      #1a1a28;
  --muted:     #6b6b80;
  --border:    rgba(255,255,255,.08);
  --surface:   #111118;
  --card:      #16161f;
  --accent:    #e8572a;
  --accent2:   #f7c35f;
  --white:     #f5f4f0;
  --ff-head:   'Bebas Neue', sans-serif;
  --ff-serif:  'Instrument Serif', serif;
  --ff-body:   'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6vw;
  backdrop-filter: blur(20px);
  background: rgba(10,10,15,.7);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(245,244,240,.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.btn-nav {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.btn-nav:hover { background: #d44520; transform: translateY(-1px); }

/* ─── MOBILE MENU ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,15,.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-family: var(--ff-head);
  font-size: 36px; letter-spacing: .08em;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.nav-mobile-overlay a:hover { color: var(--accent); }
.nav-close {
  position: absolute; top: 24px; right: 6vw;
  font-size: 28px; cursor: pointer; color: var(--white);
}

/* ─── PAGE HERO BANNER ─────────────────────────── */
.page-hero {
  padding: 160px 6vw 100px;
  background: var(--ink2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
}
.page-hero-inner { max-width: 900px; }
.page-hero .section-eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(48px, 7vw, 90px);
  line-height: .95;
  letter-spacing: .01em;
  color: var(--white);
}
.page-hero h1 em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--accent);
}
.page-hero p {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(245,244,240,.65);
  max-width: 600px;
  font-weight: 300;
}

/* ─── SECTION LAYOUT ────────────────────────────── */
section { padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--accent); }
h2 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: .95;
  letter-spacing: .01em;
}
h2 em { font-family: var(--ff-serif); font-style: italic; color: var(--accent); }

/* ─── BUTTONS ───────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff; border: none;
  padding: 16px 36px; font-family: var(--ff-body);
  font-weight: 600; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 40px rgba(232,87,42,.3);
}
.btn-primary:hover { background: #d44520; transform: translateY(-2px); box-shadow: 0 12px 50px rgba(232,87,42,.45); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(245,244,240,.3);
  padding: 16px 36px; font-family: var(--ff-body);
  font-weight: 500; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-white {
  background: #fff; color: var(--accent); border: none;
  padding: 18px 44px; font-family: var(--ff-body); font-weight: 700;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  white-space: nowrap; transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }

/* ─── TICKER ────────────────────────────────────── */
.ticker-wrap {
  background: var(--accent);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner { display: inline-block; animation: ticker 25s linear infinite; }
.ticker-inner span {
  font-family: var(--ff-head); font-size: 14px;
  letter-spacing: .1em; color: #fff; padding: 0 40px;
}
.ticker-inner span::before { content: '◆  '; color: rgba(255,255,255,.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES GRID ─────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  background: var(--surface); padding: 40px 36px;
  position: relative; overflow: hidden; cursor: default;
  transition: background .3s;
}
.service-card:hover { background: var(--card); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width .4s;
}
.service-card:hover::after { width: 100%; }
.service-num {
  font-family: var(--ff-head); font-size: 60px; line-height: 1;
  color: rgba(245,244,240,.06); position: absolute; top: 20px; right: 28px;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(232,87,42,.15); }
.service-icon {
  width: 48px; height: 48px; background: rgba(232,87,42,.12);
  border: 1px solid rgba(232,87,42,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; transition: background .3s;
}
.service-card:hover .service-icon { background: rgba(232,87,42,.2); }
.service-card h3 { font-family: var(--ff-head); font-size: 22px; letter-spacing: .04em; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-arrow {
  margin-top: 24px; font-size: 20px; color: var(--accent);
  opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── CITIES GRID ───────────────────────────────── */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.city-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.city-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.city-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.city-name { font-family: var(--ff-head); font-size: 32px; letter-spacing: .04em; color: var(--white); margin-bottom: 8px; }
.city-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.city-services { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.city-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(232,87,42,.3); padding: 3px 10px;
}

/* ─── PROCESS ───────────────────────────────────── */
.process-steps {
  margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.process-step { padding: 0 24px; }
.step-num {
  width: 56px; height: 56px; background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 22px; color: var(--accent);
  position: relative; z-index: 1; margin-bottom: 24px; transition: background .3s;
}
.process-step:hover .step-num { background: var(--accent); color: #fff; }
.process-step h4 { font-family: var(--ff-head); font-size: 20px; letter-spacing: .05em; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─── TESTIMONIALS ──────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 40px; position: relative; transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card::before {
  content: '"'; font-family: var(--ff-serif); font-size: 120px; line-height: .7;
  color: rgba(232,87,42,.12); position: absolute; top: 16px; right: 24px;
}
.testi-stars { color: var(--accent2); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-text { font-size: 16px; color: rgba(245,244,240,.8); line-height: 1.8; font-weight: 300; font-style: italic; }
.testi-author { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 48px; height: 48px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 20px; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 15px; }
.testi-company { font-size: 12px; color: var(--muted); }

/* ─── CTA BAND ──────────────────────────────────── */
.cta-band { background: var(--accent); max-width: 100%; padding: 0; }
.cta-inner {
  max-width: 1400px; margin: 0 auto; padding: 80px 6vw;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cta-inner h2 { font-family: var(--ff-head); font-size: clamp(36px, 4vw, 60px); color: #fff; line-height: .95; }
.cta-inner h2 em { font-family: var(--ff-serif); font-style: italic; color: rgba(255,255,255,.7); }

/* ─── FOOTER ────────────────────────────────────── */
footer { background: #050508; padding: 80px 6vw 40px; max-width: 100%; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: var(--ff-head); font-size: 32px; letter-spacing: 2px; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-contact { margin-top: 28px; }
.footer-contact a { display: block; color: rgba(245,244,240,.65); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color .2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h5 { font-family: var(--ff-head); font-size: 16px; letter-spacing: .08em; margin-bottom: 20px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 14px; transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

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

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  nav { padding: 16px 6vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
