:root {
  --c-orange: #F4511E;
  --c-orange-dark: #D03E0E;
  --c-orange-light: #FF7043;
  --c-navy: #0D1B2A;
  --c-navy-mid: #1A2E44;
  --c-navy-light: #243B55;
  --c-teal: #00897B;
  --c-teal-dark: #00695C;
  --c-teal-light: #26A69A;
  --c-yellow: #FFD600;
  --c-yellow-dark: #F9A825;
  --c-cream: #FAF7F2;
  --c-cream-dark: #F0EBE3;
  --c-text-dark: #1A1A2E;
  --c-text-mid: #3D3D5C;
  --c-text-light: #F5F0E8;
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.10), 0 2px 6px rgba(13,27,42,0.08);
  --shadow-lg: 0 10px 30px rgba(13,27,42,0.14), 0 4px 12px rgba(13,27,42,0.10);
  --shadow-xl: 0 20px 50px rgba(13,27,42,0.18), 0 8px 20px rgba(13,27,42,0.12);
  --shadow-orange: 0 8px 25px rgba(244,81,30,0.35), 0 3px 10px rgba(244,81,30,0.20);
  --shadow-teal: 0 8px 25px rgba(0,137,123,0.30), 0 3px 10px rgba(0,137,123,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Schibsted Grotesk', sans-serif;
  color: var(--c-text-dark);
  background-color: var(--c-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


#main-nav {
  background: transparent;
}
#main-nav.nav-scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13,27,42,0.25);
}
.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-orange);
  transition: width 0.25s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link--active { color: #fff; }
.nav-link--active::after { width: 100%; }
.logo-text { color: #fff; }
.nav-cta-btn {
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  font-size: 0.95rem;
}
.nav-cta-btn:hover {
  background: var(--c-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(244,81,30,0.45);
}
.nav-pulse-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--c-yellow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}


.mobile-menu-icon { background: transparent; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger-line { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.mobile-menu-overlay { background: rgba(13,27,42,0.5); backdrop-filter: blur(4px); }
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }
.mobile-nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--c-orange-light); }
.mobile-nav-cta {
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  text-align: center;
  transition: background 0.25s;
}
.mobile-nav-cta:hover { background: var(--c-orange-dark); }


.hero-section {
  background: var(--c-navy);
  position: relative;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.90) 0%, rgba(13,27,42,0.60) 60%, rgba(0,137,123,0.25) 100%);
  z-index: 1;
}
.hero-badge {
  background: rgba(244,81,30,0.18);
  border: 1px solid rgba(244,81,30,0.4);
  color: var(--c-orange-light);
  font-size: 0.8rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-orange-light);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}
.hero-heading {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-heading-accent { color: var(--c-orange-light); }
.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.hero-btn-primary {
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  font-size: 1rem;
}
.hero-btn-primary:hover {
  background: var(--c-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(244,81,30,0.5);
}
.hero-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  font-size: 1rem;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
}
.scroll-text { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.scroll-arrow { font-size: 0.9rem; animation: bounce-down 2s infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}


.problem-section { background: var(--c-cream); }
.problem-card-grid { margin-top: -60px; }
.problem-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--c-orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.problem-card--alt { border-top-color: var(--c-teal); }
.problem-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(244,81,30,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--c-orange);
  font-size: 1.3rem;
}
.problem-card--alt .problem-icon-wrap { background: rgba(0,137,123,0.1); color: var(--c-teal); }
.problem-card-title { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.problem-card-text { font-size: 0.88rem; color: var(--c-text-mid); line-height: 1.6; }


.mission-section { background: var(--c-navy); position: relative; overflow: hidden; }
.mission-bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,137,123,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange-light);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}
.section-body { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.75; }
.mission-link {
  color: var(--c-orange-light);
  text-decoration: none;
  font-size: 0.95rem;
}
.mission-link:hover { color: var(--c-yellow); gap: 10px; }
.mission-image-wrap { position: relative; }
.mission-img { width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow-xl); }
.mission-image-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--c-orange);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow-orange);
  text-align: center;
}


.learn-section { background: var(--c-teal); }
.section-label-light {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.section-heading-light {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}
.section-body-light { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.learn-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.learn-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.learn-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--c-yellow);
  margin-bottom: 16px;
}
.learn-card-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.learn-card-text { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 16px; }
.learn-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,214,0,0.2);
  color: var(--c-yellow);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.learn-splide .splide__pagination__page.is-active { background: var(--c-yellow); }
.learn-splide .splide__arrow { background: rgba(255,255,255,0.15); }
.learn-splide .splide__arrow svg { fill: #fff; }


.cta-split-section { background: var(--c-cream); }
.cta-split-card { box-shadow: var(--shadow-xl); }
.cta-split-left {
  background: var(--c-navy);
}
.cta-split-label { color: var(--c-orange-light); }
.cta-split-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.cta-split-body { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.cta-split-right { background: var(--c-orange); }
.cta-split-support { font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.65; }
.cta-split-btn {
  background: #fff;
  color: var(--c-orange);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 1rem;
}
.cta-split-btn:hover {
  background: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.resources-section { background: var(--c-yellow); }
.section-label-dark {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,46,0.6);
  margin-bottom: 12px;
}
.section-heading-dark {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-body-dark { font-size: 1rem; color: var(--c-text-mid); line-height: 1.75; }
.resources-intro { padding-top: 8px; }
.resource-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid var(--c-navy);
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.resource-card--accent { border-bottom-color: var(--c-orange); }
.resource-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(13,27,42,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--c-navy);
  margin-bottom: 14px;
}
.resource-card--accent .resource-icon-wrap { background: rgba(244,81,30,0.1); color: var(--c-orange); }
.resource-title { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.resource-desc { font-size: 0.87rem; color: var(--c-text-mid); line-height: 1.6; }
.resource-link {
  color: var(--c-navy);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.resource-link:hover { color: var(--c-orange); gap: 10px; }
.resource-card--accent .resource-link:hover { color: var(--c-orange); }


.calculator-section { background: var(--c-navy-mid); }
.section-label-calc {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-teal-light);
  margin-bottom: 12px;
}
.section-heading-calc {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-body-calc { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.7; }
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 768px) { .calc-wrapper { grid-template-columns: 1fr; } }
.calc-question-group { margin-bottom: 20px; }
.calc-label { display: block; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.calc-select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s;
  appearance: none;
}
.calc-select:focus { outline: none; border-color: var(--c-teal-light); }
.calc-select option { background: var(--c-navy); color: #fff; }
.calc-btn {
  width: 100%;
  background: var(--c-orange);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s ease;
  margin-top: 8px;
}
.calc-btn:hover {
  background: var(--c-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244,81,30,0.45);
}
.calc-result-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}
.calc-result-area.has-result { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.calc-result-icon { font-size: 2.5rem; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.calc-result-area.has-result .calc-result-icon { color: var(--c-teal-light); }
.calc-result-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.calc-result-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 20px; }
.calc-result-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.calc-result-bar {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1), background 0.5s;
}


.howworks-section { background: var(--c-cream); }
.section-label-hw {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 12px;
}
.section-heading-hw {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hw-step { text-align: center; }
.hw-step--offset { margin-top: 40px; }
@media (max-width: 1023px) { .hw-step--offset { margin-top: 0; } }
.hw-step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(244,81,30,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.hw-step-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.hw-step:hover .hw-step-img { transform: scale(1.02); }
.hw-step-title { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.hw-step-text { font-size: 0.87rem; color: var(--c-text-mid); line-height: 1.65; }


.forwhom-section { background: var(--c-teal-dark); }
.section-label-fw {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.section-heading-fw {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-body-fw { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.forwhom-image-wrap { position: relative; }
.forwhom-img { width: 100%; height: 450px; object-fit: cover; box-shadow: var(--shadow-xl); }
.forwhom-img-overlay {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--c-orange);
}
.forwhom-img-quote { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.5; }
.forwhom-list { display: flex; flex-direction: column; gap: 14px; }
.forwhom-item { display: flex; align-items: flex-start; gap: 12px; }
.forwhom-check { color: var(--c-yellow); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.forwhom-item span { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.forwhom-btn {
  background: var(--c-yellow);
  color: var(--c-navy);
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(255,214,0,0.35);
}
.forwhom-btn:hover {
  background: var(--c-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,214,0,0.45);
}


.site-footer { background: var(--c-navy); }
.footer-newsletter-bar { background: var(--c-navy-light); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-nl-heading { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-nl-sub { font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.footer-nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-nl-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.25s;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-nl-input:focus { outline: none; border-color: var(--c-orange-light); }
.footer-nl-btn {
  background: var(--c-orange);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}
.footer-nl-btn:hover { background: var(--c-orange-dark); transform: translateY(-1px); }
.footer-nl-success { color: var(--c-teal-light); font-weight: 600; font-size: 0.95rem; }
.footer-main { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-name { color: #fff; }
.footer-about-text { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--c-orange-light); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-icon { color: var(--c-orange-light); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-copy-sub { font-size: 0.82rem; color: rgba(255,255,255,0.3); }


.page-hero { position: relative; background: var(--c-navy); overflow: hidden; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.70) 100%);
  z-index: 1;
}
.mission-page-hero { background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%); }
.residents-page-hero { background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-navy) 100%); }
.services-page-hero { background: linear-gradient(135deg, var(--c-orange-dark) 0%, var(--c-navy) 100%); }
.contact-page-hero { background: linear-gradient(135deg, var(--c-navy-mid) 0%, var(--c-teal-dark) 100%); }
.page-hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange-light);
  margin-bottom: 12px;
}
.page-hero-heading {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; }


.why-section { background: var(--c-cream); }
.why-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.why-body { font-size: 1rem; color: var(--c-text-mid); line-height: 1.75; }
.why-img { width: 100%; height: 380px; object-fit: cover; box-shadow: var(--shadow-lg); }
.why-image-wrap { position: relative; }

.values-section { background: var(--c-teal); }
.value-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.3s, transform 0.3s;
}
.value-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.value-card--b, .value-card--d { background: rgba(255,255,255,0.07); }
.value-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--c-yellow);
  margin-bottom: 16px;
}
.value-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.value-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

.approach-section { background: var(--c-yellow); }
.approach-img { width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }
.approach-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.approach-body { font-size: 1rem; color: var(--c-text-mid); line-height: 1.75; }


.program-section { background: var(--c-cream); }
.program-blocks { display: flex; flex-direction: column; gap: 0; }
.program-block {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(13,27,42,0.08);
}
.program-block:last-child { border-bottom: none; }
.program-block-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(244,81,30,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  margin-top: 4px;
}
.program-block-title { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.program-block-text { font-size: 0.9rem; color: var(--c-text-mid); line-height: 1.7; }
.program-sidebar { position: sticky; top: 100px; }
.program-info-card {
  background: var(--c-navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.program-info-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.program-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.program-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.78);
}
.program-info-item i { color: var(--c-orange-light); width: 16px; }
.program-info-cta {
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  font-size: 0.95rem;
}
.program-info-cta:hover { background: var(--c-orange-dark); transform: translateY(-2px); }
.program-note-card {
  background: rgba(0,137,123,0.1);
  border: 1px solid rgba(0,137,123,0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.program-note-icon { color: var(--c-teal); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.program-note-text { font-size: 0.85rem; color: var(--c-text-mid); line-height: 1.6; }

.schedule-section { background: var(--c-navy); }
.schedule-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  .schedule-timeline::before { left: 60px; }
}
.schedule-item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  gap: 0 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  .schedule-item { grid-template-columns: 60px 20px 1fr; }
}
.schedule-time { font-size: 0.85rem; font-weight: 700; color: var(--c-orange-light); padding-top: 2px; text-align: right; }
.schedule-dot {
  width: 14px; height: 14px;
  background: var(--c-orange);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(244,81,30,0.2);
}
.schedule-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.schedule-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

.faq-section { background: var(--c-cream); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(13,27,42,0.1); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--c-orange); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--c-orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p { padding: 0 0 20px; font-size: 0.95rem; color: var(--c-text-mid); line-height: 1.7; }


.emergency-alert-section { background: var(--c-orange); }
.emergency-alert-card {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.emergency-alert-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.emergency-alert-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.emergency-alert-text { font-size: 0.92rem; color: rgba(255,255,255,0.9); line-height: 1.65; }

.services-section { background: var(--c-cream); }
.services-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card--emergency { border-top-color: #ef4444; }
.service-card--gas { border-top-color: var(--c-orange); }
.service-card--fire { border-top-color: #dc2626; }
.service-card--medical { border-top-color: #3b82f6; }
.service-card--kyrgaz { border-top-color: var(--c-teal); }
.service-card--police { border-top-color: var(--c-navy); }
.service-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.service-card-icon { font-size: 1.1rem; color: var(--c-orange); }
.service-card--emergency .service-card-icon { color: #ef4444; }
.service-card--fire .service-card-icon { color: #dc2626; }
.service-card--medical .service-card-icon { color: #3b82f6; }
.service-card--kyrgaz .service-card-icon { color: var(--c-teal); }
.service-card--police .service-card-icon { color: var(--c-navy); }
.service-card-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-mid); }
.service-card-name { font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 10px; }
.service-card-desc { font-size: 0.87rem; color: var(--c-text-mid); line-height: 1.65; margin-bottom: 16px; }
.service-card-phone {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-orange);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.service-card-phone:hover { color: var(--c-orange-dark); }
.service-card--emergency .service-card-phone { color: #ef4444; }
.service-card--fire .service-card-phone { color: #dc2626; }
.service-card--medical .service-card-phone { color: #3b82f6; }
.service-card--kyrgaz .service-card-phone { color: var(--c-teal); font-size: 1.2rem; }
.service-card--police .service-card-phone { color: var(--c-navy); }

.dispatcher-section { background: var(--c-yellow); }
.dispatcher-list { display: flex; flex-direction: column; gap: 12px; }
.dispatcher-item { display: flex; align-items: flex-start; gap: 14px; }
.dispatcher-num {
  width: 28px; height: 28px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.dispatcher-text { font-size: 0.95rem; color: var(--c-text-mid); line-height: 1.55; padding-top: 3px; }
.dispatcher-card {
  background: var(--c-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.dispatcher-card-icon { font-size: 2rem; color: #ef4444; margin-bottom: 16px; }
.dispatcher-card-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.dispatcher-dont-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dispatcher-dont-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.5;
}
.dispatcher-dont-list li::before {
  content: '✕';
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


.contact-section { background: var(--c-cream); }
.contact-form-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}
.contact-form-sub { font-size: 0.95rem; color: var(--c-text-mid); line-height: 1.65; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--c-navy); margin-bottom: 7px; }
.form-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(13,27,42,0.15);
  color: var(--c-text-dark);
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.form-input:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(244,81,30,0.12), var(--shadow-sm);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-checkbox-group { margin-bottom: 24px; }
.form-checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-orange); cursor: pointer; }
.form-checkbox-text { font-size: 0.87rem; color: var(--c-text-mid); line-height: 1.55; }
.form-checkbox-link { color: var(--c-orange); text-decoration: none; }
.form-checkbox-link:hover { text-decoration: underline; }
.form-submit-btn {
  width: 100%;
  background: var(--c-orange);
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s;
}
.form-submit-btn:hover {
  background: var(--c-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244,81,30,0.45);
}


.iti { width: 100%; }
.iti__tel-input {
  background: #fff;
  border: 1.5px solid rgba(13,27,42,0.15);
  color: var(--c-text-dark);
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.iti__tel-input:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(244,81,30,0.12), var(--shadow-sm);
}

.contact-info-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(244,81,30,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-mid); margin-bottom: 3px; }
.contact-info-value { font-size: 0.95rem; color: var(--c-navy); text-decoration: none; font-weight: 500; }
a.contact-info-value:hover { color: var(--c-orange); }
.contact-map-wrap { box-shadow: var(--shadow-lg); }


.thanks-page { background: var(--c-cream); padding-top: 80px; }
.thanks-card { padding: 48px 32px; }
.thanks-icon-wrap { display: flex; justify-content: center; }
.thanks-icon { font-size: 4rem; color: var(--c-teal); }
.thanks-heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}
.thanks-body { font-size: 1rem; color: var(--c-text-mid); line-height: 1.75; }
.thanks-phone { color: var(--c-orange); text-decoration: none; font-weight: 600; }
.thanks-phone:hover { text-decoration: underline; }
.thanks-btn-primary {
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  font-size: 0.95rem;
}
.thanks-btn-primary:hover { background: var(--c-orange-dark); transform: translateY(-2px); }
.thanks-btn-secondary {
  background: #fff;
  color: var(--c-navy);
  text-decoration: none;
  border: 1.5px solid rgba(13,27,42,0.2);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.thanks-btn-secondary:hover { border-color: var(--c-orange); color: var(--c-orange); transform: translateY(-2px); }


.legal-page-wrap { background: var(--c-cream); min-height: 100vh; }
.legal-header { border-bottom: 2px solid rgba(13,27,42,0.08); padding-bottom: 24px; }
.legal-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-date { font-size: 0.87rem; color: var(--c-text-mid); }
.legal-content { }
.legal-intro { font-size: 1rem; color: var(--c-text-mid); line-height: 1.75; margin-bottom: 32px; padding: 20px; background: rgba(13,27,42,0.04); border-radius: var(--radius-md); border-left: 3px solid var(--c-orange); }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--c-navy); margin: 32px 0 12px; }
.legal-content p { font-size: 0.95rem; color: var(--c-text-mid); line-height: 1.75; margin-bottom: 14px; }
.legal-cookie-btn-wrap { margin-top: 32px; }
.legal-cookie-settings-btn {
  background: var(--c-navy);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.legal-cookie-settings-btn:hover { background: var(--c-navy-mid); transform: translateY(-2px); }


#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c-navy);
  border-top: 2px solid var(--c-orange);
  padding: 20px 24px;
  box-shadow: 0 -8px 30px rgba(13,27,42,0.25);
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-banner-text { font-size: 0.87rem; color: rgba(255,255,255,0.78); line-height: 1.6; }
.cookie-banner-text a { color: var(--c-orange-light); text-decoration: none; }
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.cookie-btn-accept { background: var(--c-orange); color: #fff; }
.cookie-btn-accept:hover { background: var(--c-orange-dark); transform: translateY(-1px); }
.cookie-btn-reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.18); }
.cookie-btn-customize { background: transparent; color: rgba(255,255,255,0.6); text-decoration: underline; }
.cookie-btn-customize:hover { color: #fff; }


#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13,27,42,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-title { font-size: 1.3rem; font-weight: 800; color: var(--c-navy); margin-bottom: 16px; }
.cookie-modal-desc { font-size: 0.88rem; color: var(--c-text-mid); line-height: 1.65; margin-bottom: 24px; }
.cookie-category { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(13,27,42,0.08); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--c-navy); margin-bottom: 4px; }
.cookie-category-info p { font-size: 0.82rem; color: var(--c-text-mid); line-height: 1.5; }
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--c-orange); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--c-teal); cursor: not-allowed; opacity: 0.7; }
.cookie-modal-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.cookie-modal-save {
  flex: 1;
  background: var(--c-orange);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}
.cookie-modal-save:hover { background: var(--c-orange-dark); transform: translateY(-1px); }
.cookie-modal-cancel {
  background: transparent;
  color: var(--c-text-mid);
  border: 1.5px solid rgba(13,27,42,0.2);
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}
.cookie-modal-cancel:hover { border-color: var(--c-navy); color: var(--c-navy); }


.splide__pagination__page { background: rgba(255,255,255,0.4); }
.splide__pagination__page.is-active { background: #fff; transform: scale(1.2); }
.splide__arrow { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); }
.splide__arrow:hover { background: rgba(255,255,255,0.25); }
.splide__arrow svg { fill: #fff; }
.splide__track { padding-bottom: 8px !important; }


.hidden { display: none !important; }
.flex { display: flex; }

@media (max-width: 640px) {
  .mission-image-badge { bottom: -12px; left: 12px; padding: 12px 14px; }
  .calc-wrapper { padding: 24px; }
  .schedule-item { grid-template-columns: 55px 16px 1fr; gap: 0 12px; }
  .schedule-time { font-size: 0.78rem; }
}