:root {
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --radius-sm: .375rem; --radius-md: .5rem; --radius-lg: .75rem; --radius-xl: 1rem; --radius-full: 9999px;
  --content-default: 960px; --content-wide: 1200px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
:root, [data-theme="dark"] {
  --color-bg: #0a0d12; --color-surface: #0e1219; --color-surface-2: #131822; --color-surface-offset: #181f2e; --color-border: #253050; --color-divider: #1f2940;
  --color-text: #e2e8f0; --color-text-muted: #93a4c2; --color-text-faint: #60728f; --color-text-inverse: #071019;
  --color-primary: #00b4d8; --color-primary-hover: #0096c7; --color-primary-highlight: rgba(0,180,216,.12); --color-gold: #f5a623;
  --shadow-md: 0 8px 24px rgba(0,0,0,.35); --shadow-lg: 0 18px 48px rgba(0,0,0,.45); --shadow-glow: 0 0 40px rgba(0,180,216,.28);
}
[data-theme="light"] {
  --color-bg: #f2f6fb; --color-surface: #ffffff; --color-surface-2: #f8fbff; --color-surface-offset: #eaf1f8; --color-border: #c6d4e4; --color-divider: #dbe5ef;
  --color-text: #101c2e; --color-text-muted: #536882; --color-text-faint: #8294aa; --color-text-inverse: #eff6fc;
  --color-primary: #007aa8; --color-primary-hover: #005f84; --color-primary-highlight: rgba(0,122,168,.1); --color-gold: #d48e12;
  --shadow-md: 0 8px 20px rgba(20,40,70,.10); --shadow-lg: 0 18px 48px rgba(20,40,70,.14); --shadow-glow: 0 0 32px rgba(0,122,168,.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { min-height: 100vh; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); font-size: var(--text-base); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; line-height: 1.02; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--color-primary); color: var(--color-text-inverse); padding: .75rem 1rem; border-radius: var(--radius-md); z-index: 999; }
.container, .container--narrow { width: min(100% - 2rem, var(--content-wide)); margin: 0 auto; }
.container--narrow { width: min(100% - 2rem, var(--content-default)); }
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; backdrop-filter: blur(18px); background: rgba(10,13,18,.78); border-bottom: 1px solid rgba(37,48,80,.45); }
[data-theme="light"] .site-header { background: rgba(242,246,251,.84); }
.nav-inner { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { width: 48px; height: 48px; object-fit: cover; border-radius: .65rem; }
.nav-logo-text { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 900; }
.nav-logo-text span { color: var(--color-primary); }
.nav-logo-sub { color: var(--color-text-muted); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .08em; font-size: var(--text-sm); font-weight: 700; }
.nav-links a:hover { color: var(--color-primary); }
.nav-cta { background: var(--color-primary); color: var(--color-text-inverse) !important; padding: .75rem 1.2rem; border-radius: var(--radius-full); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.theme-toggle, .hamburger { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; }
.theme-toggle:hover, .hamburger:hover { background: var(--color-surface-offset); }
.hamburger { display: none; position: relative; }
.hamburger span { width: 22px; height: 2px; background: var(--color-text); display: block; margin: 2px 0; }
.mobile-menu { display: none; flex-direction: column; gap: .5rem; padding: 0 0 1rem; }
.mobile-menu a { padding: .85rem 0; border-bottom: 1px solid var(--color-divider); color: var(--color-text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: .06em; }
.mobile-menu.open { display: flex; }
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 5rem; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 65% 35%, rgba(0,180,216,.15), transparent 32%), radial-gradient(circle at 15% 80%, rgba(0,150,199,.08), transparent 30%), linear-gradient(160deg, var(--color-bg), var(--color-surface)); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .04; background-image: linear-gradient(var(--color-primary) 1px, transparent 1px), linear-gradient(90deg, var(--color-primary) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-12); align-items: center; padding: var(--space-20) 0 var(--space-16); }
.hero-eyebrow, .section-eyebrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-primary); text-transform: uppercase; letter-spacing: .14em; font-size: var(--text-xs); font-weight: 800; margin-bottom: var(--space-4); }
.hero-heading { font-size: var(--text-hero); font-weight: 900; margin-bottom: var(--space-5); }
.hero-heading .accent { color: var(--color-primary); }
.hero-heading .gold { color: var(--color-gold); }
.hero-desc, .section-subtitle { max-width: 56ch; color: var(--color-text-muted); }
.hero-desc { font-size: var(--text-lg); margin-bottom: var(--space-8); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-8); }
.btn-primary, .btn-ghost { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .95rem 1.5rem; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .06em; font-weight: 800; font-family: var(--font-display); }
.btn-primary { background: var(--color-primary); color: var(--color-text-inverse); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-ghost { border: 1px solid var(--color-border); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge { padding: .55rem .9rem; border: 1px solid var(--color-border); border-radius: var(--radius-full); color: var(--color-text-muted); font-size: var(--text-sm); background: rgba(255,255,255,.02); }
.hero-visual { display: flex; justify-content: center; }
.hero-logo-wrap::before { content: ''; position: absolute; inset: -40px; background: radial-gradient(circle, rgba(0,180,216,.18), transparent 70%); filter: blur(8px); }
.hero-logo-wrap { position: relative; }
.hero-logo { width: min(420px, 86vw); filter: drop-shadow(0 20px 50px rgba(0,180,216,.35)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.stats-strip { background: var(--color-surface); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); padding: var(--space-8) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--color-primary); font-weight: 900; }
.stat-label { color: var(--color-text-muted); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.section { padding: clamp(4rem, 7vw, 6rem) 0; }
.section-title { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.services-bg, .steps-bg { background: var(--color-surface); }
.services-grid { display: grid; gap: var(--space-6); }
.services-grid--three { grid-template-columns: repeat(3,1fr); }
.service-card, .why-feature, .contact-card, .map-panel, .promo-banner { background: var(--color-surface-2); border: 1px solid rgba(37,48,80,.5); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.service-card { padding: var(--space-8); }
.service-card.featured { background: linear-gradient(135deg, var(--color-primary-highlight), var(--color-surface-2) 55%); border-color: var(--color-primary); }
.service-badge, .promo-label { display: inline-block; margin-bottom: var(--space-3); padding: .35rem .7rem; border-radius: var(--radius-full); background: rgba(245,166,35,.12); color: var(--color-gold); text-transform: uppercase; letter-spacing: .1em; font-size: var(--text-xs); font-weight: 800; }
.service-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.service-card p { color: var(--color-text-muted); margin-bottom: var(--space-5); }
.service-list { list-style: none; display: grid; gap: .7rem; }
.service-list li { color: var(--color-text-muted); position: relative; padding-left: 1rem; }
.service-list li::before { content: ''; position: absolute; left: 0; top: .65rem; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); }
.why-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.why-features, .contact-info { display: grid; gap: var(--space-5); }
.why-feature, .contact-card { padding: var(--space-6); }
.why-feature h4, .step-card h4, .map-copy h3 { font-size: var(--text-lg); margin-bottom: .5rem; }
.why-feature p, .step-card p, .contact-card-sub, .map-copy p, .footer-brand-desc { color: var(--color-text-muted); }
.why-visual { display: grid; place-items: center; min-height: 520px; background: linear-gradient(160deg, var(--color-surface), var(--color-surface-offset)); border: 1px solid var(--color-border); border-radius: var(--radius-xl); }
.why-visual-inner { text-align: center; padding: var(--space-8); }
.why-visual-inner img { width: 200px; margin: 0 auto var(--space-6); filter: drop-shadow(0 12px 30px rgba(0,180,216,.25)); }
.why-promise { font-size: var(--text-xl); font-family: var(--font-display); font-weight: 900; text-transform: uppercase; }
.why-promise span { color: var(--color-primary); }
.why-promise-sub { margin-top: .5rem; color: var(--color-text-muted); }
.section-heading-center { text-align: center; margin-bottom: var(--space-12); }
.section-eyebrow.center, .section-title.center, .section-subtitle.center { margin-inline: auto; justify-content: center; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-6); }
.step-card { text-align: center; padding: var(--space-6) var(--space-4); }
.step-number { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto var(--space-4); border-radius: 50%; background: var(--color-primary-highlight); border: 2px solid var(--color-primary); color: var(--color-primary); font-size: var(--text-xl); font-family: var(--font-display); font-weight: 900; }
.promo-banner { padding: clamp(2rem, 5vw, 4rem); text-align: center; background: linear-gradient(135deg, var(--color-primary-highlight), var(--color-surface-offset)); border-color: var(--color-primary); }
.promo-banner p { max-width: 54ch; margin: 0 auto var(--space-8); color: var(--color-text-muted); }
.center-flex { justify-content: center; }
.contact-card-label { color: var(--color-text-faint); text-transform: uppercase; letter-spacing: .1em; font-size: var(--text-xs); font-weight: 800; margin-bottom: .35rem; }
.contact-card-value { font-weight: 700; }
.map-panel { min-height: 100%; display: grid; align-items: center; padding: var(--space-8); background: linear-gradient(160deg, var(--color-surface-offset), var(--color-surface)); }
.map-copy p { margin: var(--space-3) 0 var(--space-6); }
.footer { background: var(--color-surface); border-top: 1px solid var(--color-divider); padding: var(--space-10) 0 var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-8); }
.footer-brand-name, .footer-col-title { font-family: var(--font-display); text-transform: uppercase; }
.footer-brand-name { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.footer-brand-name span { color: var(--color-primary); }
.footer-col-title { font-size: var(--text-sm); margin-bottom: var(--space-4); letter-spacing: .08em; }
.footer-contact-mini, .footer-links { display: grid; gap: .75rem; }
.footer-contact-mini a, .footer-links a, .footer-bottom { color: var(--color-text-muted); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: var(--space-6); border-top: 1px solid var(--color-divider); font-size: var(--text-xs); }
.back-to-top { position: fixed; right: 1.25rem; bottom: 1.25rem; width: 44px; height: 44px; display: grid; place-items: center; background: var(--color-primary); color: var(--color-text-inverse); border-radius: 999px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .hero-content, .why-grid, .contact-grid, .footer-grid, .services-grid--three, .steps-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-desc, .section-subtitle { margin-inline: auto; }
  .hero-ctas, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .why-visual { min-height: 340px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
