/* ORBI — brand colours: gold #fcb900, deep navy #0C2340 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #06111f;
  --surface: #0b1b30;
  --card: #0f2540;
  --card-hover: #14304f;
  --border: rgba(252,185,0,0.14);
  --border-soft: rgba(255,255,255,0.07);
  --navy: #0C2340;
  --gold: #fcb900;
  --gold-soft: rgba(252,185,0,0.10);
  --orange: #ff6f00;
  --red: #ff2e2e;
  --green: #2FAE60;
  --text: #eaf1fb;
  --muted: #8aa2c0;
  --muted-2: #64809f;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Century Gothic', 'CenturyGothic', 'Questrial', 'Poppins', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.2px;
}

/* photographic background image (fixed) */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: url('assets/slide3.jpg') center center / cover no-repeat fixed;
  opacity: 0.28;
}
/* grid + glow + darkening overlay on top of the photo */
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(252,185,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,185,0,0.05) 1px, transparent 1px),
    radial-gradient(ellipse 70% 55% at 12% 12%, rgba(252,185,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 88% 82%, rgba(255,111,0,0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(6,17,31,0.82) 0%, rgba(6,17,31,0.9) 100%);
  background-size: 62px 62px, 62px 62px, 100% 100%, 100% 100%, 100% 100%;
}

a { color: inherit; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 74px;
  background: rgba(6,17,31,0.86); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img {
  height: 42px;
  width: auto;
  aspect-ratio: 1 / 1;   /* or the real ratio of your logo, e.g. 3 / 1 */
  display: block;
}
}
.logo-mark {
  width: auto; height: 42px; border-radius: 50%;
  border: 2px solid var(--gold); position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(252,185,0,0.35);
}
.logo-mark::after {
  content: ''; position: absolute; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%; box-shadow: 0 0 8px var(--gold);
}
.logo-mark::before {
  content: ''; position: absolute; width: 28px; height: 28px;
  border: 1px solid rgba(252,185,0,0.45); border-radius: 50%;
  animation: orbit 3s linear infinite;
}
@keyframes orbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 3px; color: var(--text); }
.logo-text span { color: var(--gold); }

nav ul { display: flex; gap: 34px; list-style: none; }
nav ul a {
  text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px; transition: color 0.2s; position: relative;
}
nav ul a:hover, nav ul a.active { color: var(--gold); }
nav ul a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta {
  margin-left: auto;
}

.btn-outline {
  padding: 9px 22px; border: 1px solid var(--gold); color: var(--gold);
  border-radius: 5px; text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-solid {
  padding: 9px 22px; background: var(--gold); color: var(--navy);
  border: 1px solid var(--gold); border-radius: 5px; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px; transition: all 0.2s;
}
.btn-solid:hover { background: transparent; color: var(--gold); }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: 0.3s; }


/* ─── HERO (shared) ─── */
.hero {
  position: relative; z-index: 1; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 130px 5vw 80px; overflow: hidden;
}
/* fading/sliding slideshow background inside hero */
.hero-slides {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  animation: heroFade 32s linear infinite;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,17,31,0.72) 0%, rgba(6,17,31,0.85) 60%, rgba(6,17,31,0.94) 100%);
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }
@keyframes heroFade {
  0%    { opacity: 0; transform: scale(1.08); }
  4%    { opacity: 1; transform: scale(1.12); }
  22%   { opacity: 1; transform: scale(1.16); }
  28%   { opacity: 0; transform: scale(1.18); }
  100%  { opacity: 0; transform: scale(1.08); }
}
/* everything below sits above the slideshow */
.hero > *:not(.hero-slides) { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px;
  font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 30px; background: var(--gold-soft); animation: fadeUp 0.8s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.6); } }

/* ─── HERO HEADLINE (two lines, large on every device) ─── */
.hero h1 {
  font-family: 'Bebas Neue', 'Century Gothic', 'Questrial', 'Poppins', sans-serif;
  font-size: clamp(62px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 4px;
  margin-bottom: 8px;
  white-space: normal;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 .line1 {
  display: block;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.hero h1 .line2 {
  display: block;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.hero h1 .line3 {
  display: block;
  color: #fff;
  -webkit-text-fill-color: var(--muted);
  font-size: 0.30em;
  letter-spacing: 12px;
  margin-top: 6px;
}

.hero-sub {
  max-width: 580px; font-size: 17px; color: var(--muted); margin: 26px auto 42px;
  line-height: 1.8; font-weight: 300; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.btn-hero { padding: 14px 36px; font-size: 15px; font-weight: 700; letter-spacing: 1px; border-radius: 6px; text-decoration: none; transition: all 0.25s; }
.btn-hero-primary { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); box-shadow: 0 0 30px rgba(252,185,0,0.3); }
.btn-hero-primary:hover { background: transparent; color: var(--gold); box-shadow: 0 0 50px rgba(252,185,0,0.5); }
.btn-hero-ghost { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 68px; padding-top: 40px; border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shine { to { background-position: 200% center; } }

/* ─── SECTION COMMON ─── */
section { position: relative; z-index: 1; }
.wrap { width: 100%; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Century Gothic', 'Questrial', 'Poppins', sans-serif; font-size: clamp(30px, 5vw, 52px); font-weight: 800; line-height: 1.12; letter-spacing: 0.5px; }
.section-title em { font-style: normal; color: var(--gold); }
.section-desc { color: var(--muted); max-width: 620px; font-size: 16px; line-height: 1.75; margin-top: 16px; }

/* page hero (interior pages) */
.page-hero {
  position: relative; z-index: 1; padding: 150px 5vw 70px; text-align: center;
}
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 { font-family: 'Century Gothic', 'Questrial', 'Poppins', sans-serif; font-size: clamp(38px, 6vw, 66px); font-weight: 800; line-height: 1.05; letter-spacing: 0.5px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: var(--muted); max-width: 620px; margin: 18px auto 0; font-size: 17px; line-height: 1.75; }

/* ─── SERVICES GRID ─── */
#services, .services-block { padding: 90px 5vw 110px; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-desc { margin: 16px auto 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 0 5vw; align-items: stretch;
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.3);
}
.service-card {
  background: var(--card); padding: 40px 30px; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  border-right: 1px solid var(--border-soft);
  transition: background 0.28s ease;
}
.service-card:last-child { border-right: none; }
.service-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.service-card:hover { background: var(--card-hover); }
.service-card:hover::before { opacity: 1; }
.sc-1::before { background: radial-gradient(ellipse at top left, rgba(252,185,0,0.10), transparent 60%); }
.sc-2::before { background: radial-gradient(ellipse at top left, rgba(255,111,0,0.10), transparent 60%); }
.sc-3::before { background: radial-gradient(ellipse at top left, rgba(47,174,96,0.10), transparent 60%); }
.sc-4::before { background: radial-gradient(ellipse at top left, rgba(255,46,46,0.09), transparent 60%); }

.service-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 26px; position: relative; z-index: 1; }
.service-icon svg { width: 28px; height: 28px; display: block; }
.ic-1 { background: rgba(252,185,0,0.12); border: 1px solid rgba(252,185,0,0.3); color: var(--gold); }
.ic-2 { background: rgba(255,111,0,0.12); border: 1px solid rgba(255,111,0,0.3); color: var(--orange); }
.ic-3 { background: rgba(47,174,96,0.12); border: 1px solid rgba(47,174,96,0.3); color: var(--green); }
.ic-4 { background: rgba(255,46,46,0.12); border: 1px solid rgba(255,46,46,0.3); color: var(--red); }

.service-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; position: relative; z-index: 1; }
.t-1 { color: var(--gold); } .t-2 { color: var(--orange); } .t-3 { color: var(--green); } .t-4 { color: var(--red); }
.service-name { font-size: 20px; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; line-height: 1.25; }
.service-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; margin-bottom: 22px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.service-features li::before { content: '→'; font-size: 12px; }
.sc-1 .service-features li::before { color: var(--gold); }
.sc-2 .service-features li::before { color: var(--orange); }
.sc-3 .service-features li::before { color: var(--green); }
.sc-4 .service-features li::before { color: var(--red); }
.service-cta {
  position: relative; z-index: 1; margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 10px 18px; border-radius: 8px; border: 1px solid var(--border);
  color: var(--gold); transition: all 0.2s;
}
.service-url {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; letter-spacing: 0.3px; color: var(--muted);
  margin-bottom: 18px; font-family: 'Century Gothic','Questrial',monospace; word-break: break-all;
}
.service-url svg { width: 13px; height: 13px; flex: 0 0 13px; }
.sc-1 .service-url { color: var(--gold); }
.sc-2 .service-url { color: var(--orange); }
.sc-3 .service-url { color: var(--green); }
.sc-4 .service-url { color: var(--red); }
.service-card:hover .service-cta { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.service-corner { position: absolute; top: 22px; right: 24px; font-family: 'Bebas Neue', sans-serif; font-size: 68px; opacity: 0.05; line-height: 1; pointer-events: none; }

/* ─── ABOUT / ORB ─── */
.about-grid { padding: 90px 5vw 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: none; margin: 0 5vw; }
.about-visual { position: relative; }
.orb-container { width: 100%; aspect-ratio: 1; max-width: 420px; margin: auto; position: relative; display: flex; align-items: center; justify-content: center; }
.orb-core {
  width: 128px; height: 128px; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,185,0,0.3), rgba(252,185,0,0.05));
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 3px; color: var(--gold);
  box-shadow: 0 0 44px rgba(252,185,0,0.22); position: relative; z-index: 4;
}
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.orb-ring-1 { width: 200px; height: 200px; border-color: rgba(252,185,0,0.22); animation: spin1 8s linear infinite; }
.orb-ring-2 { width: 290px; height: 290px; border-color: rgba(255,111,0,0.18); animation: spin2 12s linear infinite; }
.orb-ring-3 { width: 380px; height: 380px; border-color: rgba(47,174,96,0.14); animation: spin1 18s linear infinite; }
@keyframes spin1 { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spin2 { from { transform: rotate(0); } to { transform: rotate(-360deg); } }
.about-content .section-title { margin-bottom: 22px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill { padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1px solid var(--border-soft); color: var(--muted); background: var(--surface); }

/* value cards */
.value-block { padding: 20px 5vw 100px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: none; margin: 0 5vw; }
.value-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 30px 28px; transition: border-color 0.25s, transform 0.25s; }
.value-card:hover { border-color: var(--border); transform: translateY(-4px); }
.value-card .vc-icon { font-size: 28px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* parent company strip */
.parent-strip { max-width: none; margin: 0 5vw 100px; padding: 46px 44px; background: linear-gradient(135deg, rgba(252,185,0,0.08), rgba(12,35,64,0.4)); border: 1px solid var(--border); border-radius: 16px; }
.parent-strip h3 { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.parent-strip h2 { font-size: clamp(24px,3.5vw,34px); font-weight: 800; margin-bottom: 14px; }
.parent-strip p { color: var(--muted); line-height: 1.75; max-width: 760px; }
.parent-strip .plink { display: inline-block; margin-top: 20px; color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ─── CONTACT ─── */
.contact-grid { padding: 20px 5vw 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: none; margin: 0 5vw; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; background: var(--card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 24px 26px; text-decoration: none; color: inherit; transition: border-color 0.25s, transform 0.2s; }
.contact-item:hover { border-color: var(--border); transform: translateX(4px); }
.contact-item .ci-icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 10px; background: var(--gold-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-item .ci-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item .ci-value { font-size: 16px; font-weight: 600; word-break: break-word; }
.contact-item .ci-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.contact-form { background: var(--card); border: 1px solid var(--border-soft); border-radius: 16px; padding: 36px 34px; }
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form .cf-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 8px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.form-submit { width: 100%; margin-top: 8px; }
button.form-submit { background: var(--gold); color: var(--navy); border: 0; padding: 14px; border-radius: 8px; font-weight: 700; font-size: 15px; letter-spacing: 0.5px; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
button.form-submit:hover { opacity: 0.88; }

/* ─── CTA STRIP ─── */
.cta-strip {
  margin: 0 5vw 110px; max-width: none;
  background: linear-gradient(135deg, rgba(252,185,0,0.12), rgba(252,185,0,0.03));
  border: 1px solid var(--border); border-radius: 16px; padding: 66px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; position: relative; z-index: 1; overflow: hidden;
}
.cta-strip::after { content: 'ORBI'; position: absolute; right: -20px; bottom: -30px; font-family: 'Bebas Neue', sans-serif; font-size: 160px; color: rgba(252,185,0,0.05); pointer-events: none; }
.cta-strip h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.12; }
.cta-strip h2 span { color: var(--gold); }
.cta-strip p { color: var(--muted); margin-top: 10px; max-width: 420px; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 54px 5vw 40px; }
.footer-top { max-width: none; margin: 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; color: var(--text); margin-bottom: 12px; }
.footer-brand-name span { color: var(--gold); }
.footer-blurb { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-bottom { max-width: none; margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); }

/* login redirect notice modal-ish */
.notice { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(1), .service-card:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
  .service-card:nth-child(3) { border-right: 1px solid var(--border-soft); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav ul {
    position: fixed; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(6,17,31,0.98); border-bottom: 1px solid var(--border);
    padding: 12px 5vw; display: none;
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { padding: 7px 14px; font-size: 13px; }
  .cta-strip { padding: 44px 30px; }
  .hero-stats { gap: 26px; }
  .footer-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .service-card:last-child { border-bottom: none; }
  .hero h1 { letter-spacing: 2px; }
  .hero h1 .line3 { letter-spacing: 8px; }
}
@media (max-width: 420px) {
  .hero h1 { letter-spacing: 1px; }
  .hero h1 .line3 { letter-spacing: 5px; }
}