/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Color Scheme: copied from IUOE Local 478 (sswipyxf.gensparkspace.com) ── */
:root {
  /* Primary Brand */
  --primary:        #1B3A6B;
  --primary-mid:    #224882;
  --primary-light:  #2D5FA8;
  --primary-deep:   #102240;
  --accent:         #B22234;
  --accent-light:   #CC2B40;
  --accent-dark:    #8C1A28;
  --silver:         #C0C8D4;
  --silver-light:   #E2E7EE;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #F4F6F9;
  --light-gray:     #E8ECF1;
  --mid-gray:       #8A96A8;
  --dark-gray:      #3A3F4A;
  --text:           #161C2D;
  --text-light:     #5A6478;

  /* Utility */
  --gold:           #C8A84B;
  --success:        #1E7B4B;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.18);
  --shadow-blue:    0 8px 32px rgba(27,58,107,0.28);
  --shadow-red:     0 8px 28px rgba(178,34,52,0.28);

  /* Layout */
  --font:           'Inter', system-ui, sans-serif;
  --font-heading:   'Oswald', sans-serif;
  --radius:         12px;
  --radius-lg:      20px;
  --trans:          0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── CONTAINER ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── SECTION LABELS ───────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(178,34,52,0.08);
  border: 1px solid rgba(178,34,52,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-label.light {
  color: var(--silver);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 40px;
}

.section-headline.light { color: var(--white); }

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

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(178,34,52,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

/* ─── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
}

.nav.scrolled {
  background: rgba(16,34,64,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-seal {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(178,34,52,0.4));
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-local {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-by {
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.04em;
}

.logo-by strong {
  color: var(--gold);
}

/* legacy selectors kept in case referenced elsewhere */
.logo-krane { color: var(--gold); }
.logo-digital { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: all var(--trans) !important;
  box-shadow: var(--shadow-red);
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(178,34,52,0.5) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(16,34,64,0.99);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 32px 24px;
}

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

.mobile-link {
  padding: 12px 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-light);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--trans);
}
.mobile-link:hover { color: var(--gold); }
.mobile-link:last-child { border-bottom: none; }

.mobile-cta {
  margin-top: 12px;
  color: var(--accent) !important;
  font-weight: 700;
}

/* ─── REVEAL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 100px;
  background: var(--primary-deep);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.hero-accent--1 {
  width: 650px; height: 650px;
  background: rgba(27,58,107,0.75);
  top: -220px; right: -150px;
}
.hero-accent--2 {
  width: 450px; height: 450px;
  background: rgba(178,34,52,0.22);
  bottom: -120px; left: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── Two-column hero layout ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-text-col {
  max-width: 680px;
}

/* ── Hero logo column ── */
.hero-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo-ring {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing halo behind the seal */
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178,34,52,0.18) 0%, rgba(27,58,107,0.22) 50%, transparent 75%);
  animation: sealPulse 4s ease-in-out infinite;
}

/* Slow rotating outer ring */
.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(200,168,75,0.28);
  animation: sealRotate 24s linear infinite;
}

@keyframes sealPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

@keyframes sealRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-seal {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 40px rgba(178,34,52,0.35))
    drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  animation: sealFloat 6s ease-in-out infinite;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero-logo-caption {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
  opacity: 0.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.35);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--silver-light);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 400;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-pill { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--silver);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── OPPORTUNITY ──────────────────────────────────────── */
.opportunity {
  padding: 120px 0;
  background: var(--primary-deep);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.opp-body p {
  color: var(--silver-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.opp-emphasis {
  color: var(--white) !important;
  font-weight: 600 !important;
}

.opp-list {
  list-style: none;
  margin-top: 8px;
}

.opp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--silver-light);
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.opp-list li:last-child { border-bottom: none; }

.opp-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.opp-callout {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.opp-callout blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.opp-callout p {
  color: var(--silver);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── SOLVES ───────────────────────────────────────────── */
.solves {
  padding: 120px 0;
  background: var(--off-white);
}

.solves-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solve-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: border-top-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.solve-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.solve-icon {
  width: 56px; height: 56px;
  background: rgba(27,58,107,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: background var(--trans), color var(--trans);
}
.solve-card:hover .solve-icon {
  background: var(--accent);
  color: var(--white);
}

.solve-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.solve-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── APPROACH ─────────────────────────────────────────── */
.approach {
  padding: 120px 0;
  background: var(--primary);
}

.approach-intro {
  color: var(--silver-light);
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 60px;
}

.pillars-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 32px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 44px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--trans);
}
.pillar:hover { background: rgba(255,255,255,0.09); }

.pillar-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: rgba(200,168,75,0.2);
  line-height: 1;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  user-select: none;
  transition: color var(--trans);
}
.pillar:hover .pillar-num { color: rgba(200,168,75,0.55); }

.pillar-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.pillar-content p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── SCOPE ────────────────────────────────────────────── */
.scope {
  padding: 120px 0;
  background: var(--white);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.scope-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.scope-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}

.scope-icon {
  width: 48px; height: 48px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--trans), color var(--trans);
}
.scope-card:hover .scope-icon {
  background: var(--primary);
  color: var(--white);
}

.scope-info h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.scope-info p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── PERFORMANCE ──────────────────────────────────────── */
.performance {
  padding: 120px 0;
  background: var(--off-white);
}

.performance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.perf-left .section-headline { margin-bottom: 16px; }

.perf-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.perf-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color var(--trans);
}
.perf-item:last-child { border-bottom: none; }
.perf-item:hover { color: var(--accent); }

.perf-check {
  width: 44px; height: 44px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--trans), color var(--trans);
}
.perf-item:hover .perf-check {
  background: var(--accent);
  color: var(--white);
}

/* ─── TIMELINE ─────────────────────────────────────────── */
.timeline {
  padding: 120px 0;
  background: var(--primary-deep);
}

.timeline-track {
  position: relative;
  margin-top: 20px;
}

.timeline-bar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.tstep {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tstep-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all var(--trans);
}
.tstep-dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--silver);
  transition: background var(--trans);
}

.tstep--final .tstep-dot {
  border-color: var(--accent);
  background: rgba(178,34,52,0.15);
}
.tstep--final .tstep-dot::after { background: var(--accent); }

.tstep-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tstep-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.65;
}

/* ─── INVESTMENT ───────────────────────────────────────── */
.investment {
  padding: 120px 0;
  background: var(--white);
}

.inv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.inv-card {
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.inv-card--primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}

.inv-card--secondary {
  background: var(--off-white);
  border-color: var(--light-gray);
}

.inv-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.18);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.inv-tag--opt {
  color: var(--text-light);
  background: rgba(27,58,107,0.08);
}

.inv-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.inv-card--primary h3 { color: var(--white); }

.inv-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 20px;
}
.inv-price span {
  font-size: 32px;
  font-weight: 600;
  color: var(--mid-gray);
}
.inv-price small { font-size: 18px; }

.inv-card--primary .inv-price { color: var(--white); }
.inv-card--primary .inv-price span { color: var(--silver); }

.inv-card > p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.inv-card--primary > p { color: var(--silver-light); }

.inv-features {
  list-style: none;
  margin-bottom: 40px;
}
.inv-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-gray);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}
.inv-features li:last-child { border-bottom: none; }
.inv-features li i { color: var(--success); }

.inv-card--primary .inv-features li {
  color: var(--silver-light);
  border-bottom-color: rgba(255,255,255,0.1);
}
.inv-card--primary .inv-features li i { color: var(--gold); }

.inv-btn { width: 100%; justify-content: center; }

/* ─── WHY KRANE ────────────────────────────────────────── */
.why {
  padding: 120px 0;
  background: var(--off-white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.why-left .section-headline { margin-bottom: 24px; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-gray);
}
.why-item:last-child { border-bottom: none; }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.why-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── NEXT STEPS ───────────────────────────────────────── */
.next-steps {
  padding: 120px 0;
  background: var(--primary-deep);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: background var(--trans), border-color var(--trans);
}
.step:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,168,75,0.35);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 12px;
}

.step p {
  color: var(--silver-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.step-arrow {
  color: var(--silver);
  font-size: 20px;
  flex-shrink: 0;
}

.next-cta {
  text-align: center;
}

/* ─── CLOSING ──────────────────────────────────────────── */
.closing {
  position: relative;
  padding: 160px 0;
  background: var(--primary-deep);
  overflow: hidden;
  border-top: 4px solid var(--accent);
}

.closing-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.closing-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.closing-accent--1 {
  width: 700px; height: 700px;
  background: rgba(27,58,107,0.65);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.closing-accent--2 {
  width: 400px; height: 400px;
  background: rgba(178,34,52,0.18);
  bottom: -100px; right: 10%;
}

.closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing-line1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 8px;
}

.closing-line2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 68px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1.08;
  margin-bottom: 60px;
}

.closing-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--primary-deep);
  border-top: 3px solid var(--accent);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer p {
  color: var(--silver);
  font-size: 13px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 140px 0 80px; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-logo-col {
    order: -1;
  }

  .hero-logo-ring {
    width: 240px;
    height: 240px;
  }

  .hero-seal {
    width: 210px;
    height: 210px;
  }

  .nav-seal { width: 36px; height: 36px; }
  .logo-by { display: none; }

  .opportunity-grid,
  .performance-inner,
  .why-inner,
  .inv-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .solves-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-bar { display: none; }

  .steps-row {
    flex-direction: column;
    align-items: stretch;
  }
  .step-arrow { text-align: center; transform: rotate(90deg); }

  .inv-card { padding: 40px 32px; }
  .opp-callout { padding: 36px 28px; }
}

@media (max-width: 600px) {
  .section-headline { font-size: 28px; }
  .hero-headline { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .timeline-steps { grid-template-columns: 1fr; }
  .closing-line1, .closing-line2 { font-size: 30px; }
  .pillar { flex-direction: column; gap: 12px; }
  .pillar-num { font-size: 36px; }
  .inv-price { font-size: 36px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-inner { padding: 16px 20px; }
  .container { padding: 0 20px; }

  .hero-logo-ring {
    width: 200px;
    height: 200px;
  }
  .hero-seal {
    width: 175px;
    height: 175px;
  }
  .logo-local { font-size: 13px; }
}
