:root {
  --bg: #0f1317;
  --surface: #171d22;
  --surface-2: #1e262c;
  --surface-3: #243039;
  --text: #edf3f4;
  --muted: #aac0c2;
  --muted-2: #89a2a5;
  --border: rgba(255,255,255,0.08);
  --primary: #1f7f86;
  --primary-soft: rgba(31,127,134,0.18);
  --accent: #7dd2d4;
  --shadow: 0 18px 45px rgba(0,0,0,0.25);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #0d1114 0%, #13191d 100%);
  color: var(--text);
}

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

.site-shell { overflow: hidden; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(12, 15, 18, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand img {
  width: clamp(200px, 24vw, 320px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.96rem;
  color: #d7e4e5;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--accent); }

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(125,210,212,0.2);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px auto;
}

.hero-section {
  position: relative;
  padding: 78px 0 54px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(31,127,134,0.18), transparent 24%),
    radial-gradient(circle at 18% 38%, rgba(125,210,212,0.10), transparent 26%);
  pointer-events: none;
}

.hero-grid,
.two-col,
.territory-grid,
.footer-wrap {
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy,
.hero-visual,
.info-card,
.service-card,
.feature-item,
.territory-panel,
.cta-box {
  position: relative;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-copy h1,
.section-head h2,
.section-copy h2,
.territory-copy h2,
.cta-copy h2 {
  margin: 18px 0 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.hero-lead,
.section-head p,
.section-copy p,
.feature-item p,
.service-card p,
.territory-copy p,
.cta-copy p,
.site-footer p,
.info-card dd {
  color: var(--muted);
  line-height: 1.8;
}

.hero-lead {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, #1f7f86, #2fa5ad);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-highlights li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d9e9ea;
  font-size: 0.94rem;
}

.hero-visual img,
.service-card img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.section {
  padding: 88px 0;
}

.two-col,
.territory-grid,
.footer-wrap {
  grid-template-columns: 1fr 0.95fr;
  align-items: start;
}

.info-card,
.feature-item,
.territory-panel,
.cta-box,
.service-card-body,
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 30px;
}

.info-card h3,
.feature-item h3,
.service-card h3,
.cta-copy h2,
.territory-panel strong {
  margin-top: 0;
}

.info-card dl {
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

.info-card dl div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.info-card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-card dt {
  color: #f0f7f8;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card dd { margin: 0; }

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(31,127,134,0.14), rgba(31,127,134,0.05)),
    linear-gradient(180deg, #10161a, #121a1f);
}

.centered {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.services-grid,
.features-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
}

.service-card-body {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 28px;
  background: rgba(16,20,24,0.55);
}

.service-card p,
.service-card ul {
  margin-top: 14px;
}

.service-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
  padding: 28px;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.territory-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.territory-pills span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.09);
}

.territory-panel {
  padding: 26px;
}

.panel-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.panel-line:last-child { border-bottom: 0; }
.panel-line strong { color: white; }
.panel-line span { color: var(--muted); }

.cta-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.contact-placeholders {
  display: grid;
  gap: 16px;
}

.placeholder-item {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.placeholder-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.placeholder-item strong {
  color: #f1f7f8;
  font-size: 1rem;
}

.site-footer {
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  width: 220px;
  margin-bottom: 14px;
}

.footer-note {
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .territory-grid,
  .cta-box,
  .footer-wrap,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 { max-width: 100%; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(16,20,24,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .nav-wrap { min-height: 74px; }
  .brand img { width: 210px; }
  .section { padding: 70px 0; }
  .hero-section { padding-top: 50px; }
  .hero-copy h1 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
  .hero-actions,
  .hero-highlights { flex-direction: column; }
  .btn,
  .hero-highlights li { width: 100%; }
  .info-card,
  .feature-item,
  .service-card-body,
  .territory-panel,
  .cta-box { padding: 22px; }
}
