/* ============================================================
   KMG Assist — main stylesheet
   Dark teal theme · #0E1212 body · #14B8A6 accent
   ============================================================ */

:root {
  --bg: #0E1212;
  --bg-soft: #131919;
  --surface: #172020;
  --surface-2: #1C2727;
  --border: #223333;
  --border-soft: #1A2828;
  --text: #E8F0F0;
  --text-soft: #C3D1D1;
  --text-muted: #8FA6A6;
  --accent: #14B8A6;
  --accent-strong: #0D9488;
  --accent-light: #99F6E4;
  --accent-deep: #06201D;
  --accent-ink: #05251F;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 10px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  background-color: #0E1212;
  color: #E8F0F0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
}

h1, h2, h3, h4 {
  line-height: 1.15;
  color: #F2FAFA;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   UMBRELLA NAVIGATION
   ============================================================ */
.umbrella-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0B1010;
  border-bottom: 1px solid var(--border);
}

.umbrella-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* CSS-drawn umbrella mark */
.umbrella-mark {
  position: relative;
  width: 44px;
  height: 48px;
  display: inline-block;
  flex-shrink: 0;
}

.umbrella-canopy {
  position: absolute;
  top: 6px;
  left: 4px;
  width: 36px;
  height: 20px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-radius: 18px 18px 0 0;
}

.umbrella-canopy::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 36px;
  height: 8px;
  background:
    radial-gradient(circle at 4px 0, var(--accent) 4px, transparent 4.5px),
    radial-gradient(circle at 12px 0, var(--accent) 4px, transparent 4.5px),
    radial-gradient(circle at 20px 0, var(--accent) 4px, transparent 4.5px),
    radial-gradient(circle at 28px 0, var(--accent) 4px, transparent 4.5px);
  background-repeat: no-repeat;
}

.umbrella-rib {
  position: absolute;
  top: 8px;
  width: 2px;
  height: 14px;
  background: var(--accent-deep);
  border-radius: 1px;
}

.umbrella-rib.r1 { left: 12px; transform: rotate(-18deg); }
.umbrella-rib.r2 { left: 21px; }
.umbrella-rib.r3 { left: 30px; transform: rotate(18deg); }

.umbrella-tip {
  position: absolute;
  top: 0;
  left: 21px;
  width: 3px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 2px;
}

.umbrella-shaft {
  position: absolute;
  top: 24px;
  left: 21px;
  width: 3px;
  height: 16px;
  background: var(--accent-light);
  border-radius: 2px;
}

.umbrella-handle {
  position: absolute;
  top: 36px;
  left: 16px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--accent-light);
  border-top: none;
  border-left: none;
  border-radius: 0 0 12px 0;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 800;
  color: #F2FAFA;
  letter-spacing: -0.02em;
}

.wordmark span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  list-style: none;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-cta {
  display: inline-block;
  background-color: var(--accent);
  color: #04221D;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--accent-light);
  color: #04221D;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   SKYLINE HERO
   ============================================================ */
.skyline-hero {
  position: relative;
  background: radial-gradient(1100px 500px at 80% -10%, #0C2A26 0%, #0E1212 60%);
  padding: 96px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.skyline-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-deep);
  border: 1px solid #11584F;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
}

.skyline-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}

.skyline-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  color: var(--text-soft);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent);
  color: #04221D;
}

.btn-primary:hover {
  background-color: var(--accent-light);
  color: #04221D;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-strong);
}

.btn-ghost:hover {
  border-color: var(--accent-light);
  color: #D6FFF8;
}

/* CSS-drawn Toronto skyline */
.skyline-scene {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  justify-content: center;
  padding-bottom: 0;
}

.skyline-glow {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 240px;
  background: radial-gradient(closest-side, rgba(20, 184, 166, 0.28), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.building {
  position: relative;
  background: #132323;
  border: 1px solid #1D3030;
  border-bottom: none;
  z-index: 1;
}

.building.win::before {
  content: "";
  position: absolute;
  inset: 10px;
  background-image:
    linear-gradient(rgba(153, 246, 228, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 246, 228, 0.16) 1px, transparent 1px);
  background-size: 14px 16px;
}

.b1 { width: 62px; height: 190px; }
.b2 { width: 78px; height: 260px; }
.b3 { width: 56px; height: 150px; }
.b4 { width: 66px; height: 220px; }

.b1 .antenna,
.b3 .antenna {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 26px;
  background: var(--accent-light);
}

.b1 .antenna::after,
.b3 .antenna::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.b1 .crown {
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--accent-strong);
  border-radius: 4px 4px 0 0;
}

/* CN Tower */
.cn-tower {
  position: relative;
  width: 34px;
  height: 330px;
  z-index: 2;
}

.cn-shaft {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-strong) 0%, #123532 60%);
}

.cn-pod {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 44px;
  background: var(--accent-strong);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.55);
}

.cn-pod::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 30px;
  background: var(--accent-light);
  border-radius: 50%;
}

.cn-needle {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 48px;
  background: var(--accent-light);
}

.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1A2828;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   FULL-WIDTH STATEMENT ROW
   ============================================================ */
.statement-section {
  background-color: #0A0E0E;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 120px 0;
}

.statement-section .statement {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.25;
  color: #F2FAFA;
  max-width: 1000px;
}

.statement-section .statement em {
  font-style: normal;
  color: var(--accent);
}

.statement-attrib {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.statement-attrib::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* ============================================================
   BIG-NUMERAL STAT COLUMNS
   ============================================================ */
.stats-section {
  background-color: #0E1212;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 28px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 1rem;
}

.stat-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ============================================================
   SERVICES OVERVIEW (2-column feature rows)
   ============================================================ */
.services-section {
  background-color: #0B1010;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.services-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-deep);
  border: 1px solid #11584F;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-size: 1.4rem;
  font-weight: 700;
}

.service-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-panel p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ============================================================
   NUMBERED SERVICE PROCESS LIST
   ============================================================ */
.process-section {
  background-color: #0E1212;
}

.process-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 30px;
  padding: 34px 0;
  position: relative;
  counter-increment: step;
}

.process-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 70px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-strong), var(--border));
}

.process-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent-deep);
  border: 2px solid var(--accent-strong);
  color: var(--accent-light);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.process-num::before {
  content: "0" counter(step);
}

.process-item h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.process-item p {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 0.98rem;
}

.process-item .process-meta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.process-meta span {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent-light);
  font-size: 0.8rem;
  padding: 5px 13px;
  border-radius: 999px;
}

/* ============================================================
   COVERAGE CARDS — HORIZONTAL SCROLL
   ============================================================ */
.coverage-section {
  background-color: #0B1010;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 96px;
}

.coverage-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.coverage-scroll::-webkit-scrollbar {
  height: 8px;
}

.coverage-scroll::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 999px;
}

.coverage-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-strong);
  border-radius: 999px;
}

.coverage-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}

.coverage-card .cov-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--accent-deep);
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.coverage-card .cov-glyph {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-deep);
  border: 1px solid #11584F;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.coverage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coverage-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 18px;
}

.coverage-card .cov-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section {
  background-color: #0E1212;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.compare-table thead th {
  background: var(--accent-deep);
  color: #F2FAFA;
  font-size: 1rem;
}

.compare-table thead th:first-child {
  color: var(--accent-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.compare-table thead th .plan-tag {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.compare-table tbody th {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--surface);
}

.compare-table td {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.compare-table td.flag {
  color: var(--accent-light);
  font-weight: 700;
}

.compare-table td.flag-off {
  color: #5E7171;
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: var(--surface-2);
}

/* ============================================================
   TABBED COVERAGE PANELS
   ============================================================ */
.tabs-section {
  background-color: #0B1010;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tab-btn {
  background: var(--surface);
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--accent-strong);
  color: var(--accent-light);
}

.tab-btn.active {
  background: var(--accent);
  color: #04221D;
  border-color: var(--accent);
}

.tab-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.tab-panel p {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 18px;
}

.tab-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tab-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.tab-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */
.cta-section {
  background-color: #0E1212;
  padding: 96px 0;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, var(--accent-deep) 0%, #0C2621 100%);
  border: 1px solid #11584F;
  border-radius: 24px;
  padding: 54px;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--text-soft);
  max-width: 520px;
}

.cta-band .cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background-color: #0B1010;
  border-top: 1px solid var(--border-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-line .ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-deep);
  border: 1px solid #11584F;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-weight: 700;
}

.contact-line h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-line a,
.contact-line p {
  color: var(--text-soft);
  font-size: 1rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0E1313;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #F2FAFA;
  padding: 13px 15px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-light);
  min-height: 22px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #080C0C;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-brand .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.93rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--accent-light);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .skyline-hero .container {
    grid-template-columns: 1fr;
  }
  .skyline-scene {
    height: 280px;
  }
  .services-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #0B1010;
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .umbrella-nav-inner {
    height: 66px;
    justify-content: space-between;
  }

  .nav-links {
    top: 66px;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-item:not(:last-child)::before {
    display: none;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 72px 0;
  }
}
