:root {
  --navy: #001b4f;
  --navy-2: #062a74;
  --navy-3: #0a3a93;
  --orange: #ff7300;
  --orange-2: #ff8f2b;
  --gold: #d49b22;
  --cream: #fff7ec;
  --paper: #ffffff;
  --mist: #f3f6fb;
  --ink: #101828;
  --muted: #667085;
  --border: rgba(0, 27, 79, 0.12);
  --shadow: 0 24px 70px rgba(0, 27, 79, 0.14);
  --soft-shadow: 0 16px 40px rgba(0, 27, 79, 0.1);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf3;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(90deg, var(--navy), #00133a);
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar strong {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid rgba(0, 27, 79, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 27, 79, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 12px 16px rgba(0, 27, 79, 0.12));
}

.brand .brand-logo-full {
  width: 300px;
  height: auto;
  max-height: 92px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: grid;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: 1.25rem;
}

.brand-text small {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--navy);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.nav > a:hover,
.nav > a.active,
.nav-item:hover > button,
.nav-item > button:focus-visible {
  color: #fff;
  background: var(--navy);
}

.nav-item {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 12px;
  min-width: 540px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.nav-item:hover .dropdown-panel,
.nav-item:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 247, 236, 0.95), rgba(243, 246, 251, 0.95));
}

.dropdown-card strong {
  color: var(--navy);
}

.dropdown-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.dropdown-card:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.dropdown-card:hover strong,
.dropdown-card:hover span {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f05e00);
  box-shadow: 0 12px 28px rgba(255, 115, 0, 0.24);
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 62px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 115, 0, 0.34), transparent 26%),
    radial-gradient(circle at 15% 5%, rgba(212, 155, 34, 0.2), transparent 24%),
    linear-gradient(135deg, var(--navy), #001133 72%);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 320px;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 115, 0, 0.22) 0 12%, transparent 13%),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 10%, transparent 11%);
  background-size: 70px 70px, 110px 110px;
  opacity: 0.55;
  transform: rotate(-5deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffe4c8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange);
  border-color: rgba(255, 115, 0, 0.2);
  background: rgba(255, 115, 0, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero p,
.page-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f05e00);
  box-shadow: 0 16px 35px rgba(255, 115, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(255, 115, 0, 0.34);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  color: #fff;
  background: var(--navy-3);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--border);
}

.btn-outline:hover {
  color: #fff;
  background: var(--navy);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.stat-tile {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-tile strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-tile span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  inset: 22px 20px auto auto;
  width: min(420px, 100%);
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(0, 27, 79, 0.22);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-logo {
  width: 190px;
  height: 190px;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.22));
}

.hero-logo-full {
  width: min(100%, 368px);
  height: auto;
  margin-bottom: 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hero-card h2 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.floating-note {
  position: absolute;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  font-size: 1.35rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.note-one {
  left: -96px;
  top: 68px;
}

.note-two {
  right: 0;
  bottom: 34px;
}

.section {
  padding: 88px 0;
}

.section.light {
  background: var(--paper);
}

.section.soft {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 115, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf3, #f5f8ff);
}

.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 115, 0, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), #00143e);
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section.dark p,
.section.dark .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-header p {
  max-width: 560px;
  color: var(--muted);
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.card::after {
  position: absolute;
  right: -55px;
  top: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 115, 0, 0.08);
}

.card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: rgba(255, 255, 255, 0.12);
}

.card.featured h3,
.card.featured p,
.card.featured li {
  color: #fff;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  font-weight: 900;
}

.card p,
.rich-text p,
.feature-list li,
.timeline-card p {
  color: var(--muted);
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at center, #fff 0 27%, transparent 28%),
    var(--orange);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 46px;
}

.image-panel {
  min-height: 480px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.78), transparent 18%),
    radial-gradient(circle at 72% 32%, rgba(255, 115, 0, 0.55), transparent 22%),
    linear-gradient(135deg, var(--navy), #001034);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-panel::before {
  position: absolute;
  inset: 42px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
}

.image-panel .mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  border-radius: 34px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.22));
}

.image-panel .metric {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 220px;
  padding: 20px;
  border-radius: 24px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.active,
.tab-button:hover {
  color: #fff;
  background: var(--navy);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.plan-card .rate {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  font-size: 0.86rem;
  font-weight: 900;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(212, 155, 34, 0.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(212, 155, 34, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(0, 27, 79, 0.92), rgba(0, 19, 58, 0.72));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.calculator label {
  display: grid;
  gap: 8px;
  color: #f8dfb5;
  font-weight: 800;
}

.calculator input,
.calculator select {
  width: 100%;
  border: 1px solid rgba(212, 155, 34, 0.34);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--navy);
  background: #fff7ec;
  outline: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 27, 79, 0.13);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.calculator input:focus,
.calculator select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 155, 34, 0.18);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.14);
}

.calc-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calc-result {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(212, 155, 34, 0.28);
  border-radius: 24px;
  color: var(--navy);
  background: linear-gradient(145deg, #fff7ec, #f7dfb8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.result-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.result-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.result-line span {
  color: var(--muted);
  font-weight: 800;
}

.result-line strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.section.dark .calc-result .notice {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.45);
  border-left-color: var(--gold);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.timeline-year {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  font-size: 1.45rem;
  font-weight: 900;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.impact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-card strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.impact-card span {
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 27, 79, 0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 20px 22px;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  transition: 0.2s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 115, 0, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy), #00133a);
}

.page-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) 280px;
  gap: 36px;
  align-items: center;
}

.page-hero h1 {
  max-width: 850px;
}

.page-mark {
  justify-self: end;
  width: 230px;
  border-radius: 34px;
  opacity: 0.9;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.24));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #fff;
}

.rich-text {
  font-size: 1.05rem;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  color: var(--navy);
  background: #fff3e3;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

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

th {
  color: #fff;
  background: var(--navy);
}

tr:last-child td {
  border-bottom: 0;
}

td strong {
  color: var(--navy);
}

.process {
  counter-reset: step;
}

.process .card {
  counter-increment: step;
}

.process .card::before {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  content: counter(step);
  background: linear-gradient(135deg, var(--navy), var(--orange));
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-row {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--navy);
  background: #eaf8ef;
  font-weight: 800;
}

.form-message.show {
  display: block;
}

.map-panel {
  min-height: 360px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(0, 27, 79, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 27, 79, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 115, 0, 0.28), transparent 20%),
    #fff;
  background-size: 36px 36px, 36px 36px, auto, auto;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.branch-locations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: var(--orange);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 18px 36px rgba(255, 115, 0, 0.24);
}

.map-pin img {
  width: 52px;
  transform: rotate(45deg);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 115, 0, 0.38), transparent 26%),
    linear-gradient(135deg, var(--navy), #00133a);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #00143e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.8fr));
  gap: 34px;
  padding: 64px 0;
}

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

.footer-brand img {
  width: 64px;
  border-radius: 16px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .page-hero .container,
  .contact-layout,
  .calculator {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    margin-left: auto;
  }

  .note-one {
    top: 18px;
  }

  .page-mark {
    justify-self: start;
  }

  .grid-4,
  .impact-strip,
  .branch-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav {
    position: fixed;
    inset: 130px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 150px);
    overflow: auto;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav > a,
  .nav-item > button {
    justify-content: space-between;
    width: 100%;
    border-radius: 16px;
  }

  .nav-item {
    display: grid;
    gap: 8px;
  }

  .dropdown-panel {
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: var(--mist);
  }

  .topbar .container,
  .section-header,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid-3,
  .plans-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand .brand-logo-full {
    width: 210px;
    max-height: 78px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .nav {
    inset: 92px 14px auto 14px;
  }

  .hero,
  .page-hero {
    padding: 56px 0;
  }

  .hero-stats,
  .grid-2,
  .grid-4,
  .impact-strip,
  .calc-fields,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-card {
    min-height: 0;
    padding: 26px;
  }

  .hero-logo-full {
    width: 100%;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .timeline-card,
  .branch-locations {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .cta-band {
    padding: 28px;
  }
}
