:root {
  --navy: #1a3a8a;
  --navy-dark: #122970;
  --lime: #78b800;
  --lime-dark: #5a8a00;
  --sky: #d6eaf8;
  --white: #ffffff;
  --off-white: #f0f2f5;
  --light-bg: #eef4fb;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --border: rgba(26, 58, 138, 0.12);
  /* Amber / Warning theme colors */
  --amber: #b45309;
  --amber-bg: #fffbeb;
  --amber-border: #fde68a;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  line-height: 1.75;
  background-color: var(--off-white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h1 {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0.02em;
}

h2 {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: 0.02em;
}

p {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Punchy text on light backgrounds */
.bg-white p,
.bg-light p,
.about-text p,
.strategy-intro p,
.partners-grid p,
.faq-sidebar p,
.contact-info p,
.checklist .check-item {
  font-size: 17.5px;
  font-weight: 600;
  /* Bolder and punchier */
  color: var(--text-dark);
  line-height: 1.85;
}

.tag {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime-dark);
  display: block;
  margin-bottom: 12px;
}

.accent-italic {
  font-family: "Lora", serif;
  font-style: italic;
}

/* Layout & Utils */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: 80px;
}

.bg-white {
  background-color: var(--off-white);
}

.bg-light {
  background-color: var(--light-bg);
}

.bg-navy {
  background-color: var(--navy);
  color: var(--white);
}

.bg-navy h2 {
  color: var(--white);
}

.bg-navy p {
  color: rgba(255, 255, 255, 0.72);
}

.bg-navy .tag {
  color: var(--lime);
}

.btn {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
  color: var(--navy);
}

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

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

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--off-white);
  border-bottom: 2px solid var(--lime);
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(26, 58, 138, 0.08);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.logo-dome {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 2px;
  text-shadow: 2px 3px 0px var(--lime);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-prop {
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.65em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
  margin-right: -0.65em;
}

.logo-jv {
  font-weight: 500;
  font-size: 8.5px;
  color: var(--text-muted);
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a.link {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 14px;
  transition: color 0.3s ease;
}

.nav-links a.link:hover {
  color: var(--lime-dark);
}

.nav-underline {
  position: absolute;
  bottom: 0px;
  height: 3px;
  background-color: var(--lime);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 5;
  left: 0;
  width: 0;
  opacity: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--off-white);
  border-bottom: 2px solid var(--lime);
  padding: 24px 48px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

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

.mobile-menu a.link {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  position: relative;
  background: var(--sky);
  padding: 0;
  overflow: hidden;
}

.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 1904px;
  margin: 0 auto;
  aspect-ratio: 1904 / 480;
  background: var(--sky);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-container img.fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 4;
  opacity: 1;
  transition: opacity 1s ease;
}

.hero-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 2;
}

.hero-video-container video.active {
  opacity: 1;
  z-index: 3;
}

.video-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--lime);
  transform: scale(1.25);
  border-color: var(--lime);
}

/* Trust Bar */
.trust-bar {
  background: var(--navy);
  width: 100%;
  padding: 24px 0;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.trust-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.trust-separator {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 14px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-visual img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  object-position: 80% center;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(26, 58, 138, 0.1);
}

.about-badge {
  background: var(--navy);
  padding: 24px 32px;
  border-radius: 8px;
  border-left: 4px solid var(--lime);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.about-badge-val {
  font-weight: 800;
  font-size: 24px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-text {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.about-text p {
  font-size: 16px;
  margin-bottom: 24px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--off-white);
}

.pillar-card {
  background: var(--light-bg);
  padding: 48px 32px;
  border-left: 4px solid var(--lime);
  transition: all 0.3s ease;
  cursor: default;
}

.pillar-card:hover {
  background: var(--navy);
}

.pillar-num {
  font-weight: 800;
  font-size: 24px;
  color: var(--lime-dark);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.pillar-card h3 {
  color: var(--navy);
  transition: color 0.3s ease;
}

.pillar-card p {
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-num {
  color: var(--lime);
}

.pillar-card:hover h3,
.pillar-card:hover p {
  color: var(--white);
}

/* Invest With Us */
.invest-header {
  max-width: 700px;
  margin-bottom: 64px;
}

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

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 41, 112, 0.5);
  padding: 40px 32px;
  border-radius: 8px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--lime);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.feature-card p {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0;
}

.cta-banner {
  border: 2px solid var(--lime);
  border-radius: 8px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: rgba(18, 41, 112, 0.3);
}

.cta-banner .cta-text {
  font-size: 22px;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.cta-banner .cta-text strong {
  color: var(--lime);
  font-weight: 500;
}

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  background: var(--off-white);
  padding: 24px;
  border-left: 4px solid var(--lime);
  box-shadow: 0 4px 12px rgba(26, 58, 138, 0.05);
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

/* Vertical Pillars (Why Partner With DOME) */
.pillars-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.pillar-v-card {
  background: var(--off-white);
  padding: 24px;
  border-left: 4px solid var(--lime);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 12px rgba(26, 58, 138, 0.05);
}

.pillar-v-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
}

.pillar-v-card h3 span {
  color: var(--lime);
  font-weight: 800;
}

.pillar-v-card p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  color: var(--text-mid);
}

.vision-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-row {
  display: flex;
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 58, 138, 0.05);
}

.vision-label {
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  width: 160px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.vision-val {
  padding: 24px;
  font-size: 15px;
  color: var(--text-mid);
}

/* Dark vision/mission table styles for Section B */
.vision-table-dark {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.vision-row-dark {
  display: flex;
  background: rgba(18, 41, 112, 0.4);
  border: 1.5px solid rgba(120, 184, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vision-label-dark {
  background: var(--navy-dark);
  color: var(--lime);
  padding: 24px;
  width: 220px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  border-right: 1.5px solid rgba(120, 184, 0, 0.25);
}

.vision-val-dark {
  padding: 24px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Strategy Section */
.strategy-intro {
  max-width: 700px;
  margin-bottom: 64px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--off-white);
  margin-bottom: 64px;
}

.strategy-card {
  background: var(--light-bg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}

.strategy-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.strategy-card:hover {
  background: var(--navy);
}

.strategy-card:hover::after {
  transform: scaleX(1);
}

.strategy-card h3 {
  color: var(--navy);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.strategy-card h3 span {
  color: var(--lime);
  font-size: 14px;
}

.strategy-card p {
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.strategy-card:hover h3,
.strategy-card:hover p {
  color: var(--white);
}

.sustain-banner {
  background: var(--navy-dark);
  padding: 48px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.sustain-banner .sustain-text {
  font-size: 24px;
  color: var(--white);
  margin: 0;
}

.sustain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sustain-tag {
  background: rgba(120, 184, 0, 0.15);
  color: var(--lime);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(120, 184, 0, 0.3);
}

.sme-network {
  text-align: center;
  padding: 40px;
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 40px;
}

.sme-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.sme-list {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  line-height: 2;
}

.governance-note {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 24px;
  border: 1.5px dashed rgba(26, 58, 138, 0.2);
  border-radius: 8px;
  background: var(--light-bg);
}

.governance-note p.gov-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 12px;
}

.governance-note p.gov-body {
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

/* Neighbourhoods */
.nhood-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.nhood-card {
  background: var(--light-bg);
  padding: 32px 24px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  cursor: default;
}

.nhood-card:hover {
  background: var(--navy);
  border-bottom-color: var(--lime);
  transform: translateY(-4px);
}

.nhood-emoji {
  font-size: 32px;
  margin-bottom: 16px;
}

.nhood-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nhood-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.nhood-card:hover h3 {
  color: var(--white);
}

.nhood-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  gap: 64px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-mini-cta {
  background: var(--navy);
  padding: 32px;
  border-left: 4px solid var(--lime);
  border-radius: 0 8px 8px 0;
  margin-top: 32px;
}

.faq-mini-cta p {
  color: var(--white);
  margin-bottom: 24px;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.accordion-item details {
  padding: 24px 0;
}

.accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
  transition: color 0.2s ease;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--lime);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.accordion-item details[open] summary {
  color: var(--lime-dark);
}

.accordion-item details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--white);
}

.accordion-answer {
  padding-top: 16px;
  padding-right: 48px;
  color: var(--text-mid);
  font-size: 15px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding-right: 32px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.contact-detail-label {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.contact-detail-val {
  font-size: 15px;
  color: var(--text-mid);
}

.nhood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.chip {
  border: 1px solid var(--navy);
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-form {
  background: var(--off-white);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(26, 58, 138, 0.05);
}

.contact-form h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(120, 184, 0, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  padding: 18px;
  margin-top: 8px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  background: var(--lime);
  color: var(--navy);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Premium Form Submission Loading State */
.btn-submit.is-loading {
  color: transparent !important;
  pointer-events: none;
}

.btn-submit.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btn-submit-spinner 0.6s linear infinite;
}

/* Spinner color matches text color when button has hover colors */
.btn-submit.is-loading:hover::after {
  border-color: rgba(26, 58, 138, 0.3);
  border-top-color: var(--navy);
}

@keyframes btn-submit-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 32px;
}

footer .logo-stack {
  margin-bottom: 16px;
}

footer .logo-dome,
footer .logo-prop {
  color: var(--white);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-text {
  text-align: center;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col-title {
  color: var(--lime);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-links a,
.footer-text {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a.active {
  color: var(--lime);
  font-weight: 600;
  border-bottom: 1.5px solid var(--lime);
  padding-bottom: 2px;
  pointer-events: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav-container {
    padding: 0 32px;
  }

  .site-header .nav-links,
  .site-header .btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .about-grid,
  .partners-grid,
  .strategy-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-sidebar {
    position: static;
  }

  .trust-separator {
    display: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
  }

  .pillar-card {
    border-radius: 8px;
    border-left: none;
    border-top: 4px solid var(--lime);
    padding: 32px;
  }

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .sustain-banner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 32px;
  }

  .sustain-tags {
    justify-content: center;
  }

  .nhood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .mobile-menu {
    padding: 20px;
  }

  section {
    padding: 64px 0;
  }

  h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .trust-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .trust-separator {
    display: none;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 0;
  }

  .contact-form {
    padding: 32px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .logo-dome {
    font-size: 26px;
  }

  .logo-prop {
    font-size: 7.5px;
  }

  .logo-jv {
    font-size: 7.5px;
  }

  .about-badge {
    position: relative;
    padding: 24px;
    margin-top: 16px;
    border-radius: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
  }

  .hero-video-container {
    aspect-ratio: 4/3;
  }

  .strategy-card {
    padding: 32px 24px;
  }

  .vision-row {
    flex-direction: column;
  }

  .vision-label {
    width: 100%;
    text-align: center;
    padding: 16px;
    justify-content: center;
  }

  .vision-row-dark {
    flex-direction: column;
  }

  .vision-label-dark {
    width: 100%;
    text-align: center;
    padding: 16px;
    justify-content: center;
    border-right: none;
    border-bottom: 1.5px solid rgba(120, 184, 0, 0.25);
  }
}
