:root {
  color-scheme: light;
  --ink: #082133;
  --ink-soft: #345161;
  --navy: #0c2f4a;
  --teal: #0b6661;
  --teal-bright: #128c83;
  --gold: #e5b84d;
  --gold-soft: #fff0bf;
  --paper: #f5f8f7;
  --white: #ffffff;
  --line: rgba(8, 33, 51, 0.12);
  --shadow: 0 24px 64px rgba(7, 34, 54, 0.14);
  --shadow-soft: 0 18px 34px rgba(7, 34, 54, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 6%, rgba(229, 184, 77, 0.16), transparent 26rem),
    linear-gradient(180deg, #fbfcfb 0%, var(--paper) 48%, #ffffff 100%);
  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(12, 47, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 47, 74, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(180deg, black, transparent 74%);
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  cursor: pointer;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 20;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  width: var(--container);
  margin: 12px auto 0;
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(6, 35, 55, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.77rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(229, 184, 77, 0.95), transparent 54%),
    linear-gradient(145deg, var(--navy), var(--teal));
  box-shadow: 0 14px 28px rgba(12, 47, 74, 0.22);
  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-panel > a,
.service-menu summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink-soft);
  font-weight: 700;
  list-style: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-panel > a:hover,
.nav-panel > a:focus-visible,
.nav-panel > a[aria-current="true"],
.service-menu summary:hover,
.service-menu summary:focus-visible,
.service-menu[open] summary {
  color: var(--navy);
  background: rgba(11, 102, 97, 0.11);
}

.service-menu {
  position: relative;
}

.service-menu summary::-webkit-details-marker {
  display: none;
}

.service-menu summary::after {
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.service-menu[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: min(340px, calc(100vw - 40px));
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(8, 33, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.service-menu[open] .service-dropdown {
  animation: dropdown-in 180ms ease-out both;
}

.service-dropdown a {
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--ink-soft);
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible {
  color: var(--navy);
  background: rgba(229, 184, 77, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--navy);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(229, 184, 77, 0.28), transparent 40%),
    linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 16px 28px rgba(12, 47, 74, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 18px 34px rgba(12, 47, 74, 0.3),
    0 0 0 5px rgba(229, 184, 77, 0.18);
}

.button-secondary {
  border-color: rgba(8, 33, 51, 0.14);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(11, 102, 97, 0.34);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(7, 34, 54, 0.12);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 30px rgba(3, 19, 31, 0.2);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow:
    0 20px 38px rgba(3, 19, 31, 0.26),
    0 0 0 5px rgba(229, 184, 77, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0 72px;
}

.hero::before {
  position: absolute;
  inset: -70px -8vw auto;
  z-index: 0;
  height: min(72vw, 760px);
  background:
    linear-gradient(130deg, rgba(18, 140, 131, 0.15), transparent 44%),
    repeating-linear-gradient(
      90deg,
      rgba(12, 47, 74, 0.08) 0 1px,
      transparent 1px 74px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(12, 47, 74, 0.055) 0 1px,
      transparent 1px 74px
    );
  clip-path: polygon(35% 0, 100% 0, 100% 86%, 54% 100%, 22% 70%);
  content: "";
  opacity: 0.82;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-shift, 0px) * -1), 0);
  transition: transform 160ms ease-out;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: 8px;
  z-index: 0;
  width: min(58vw, 760px);
  height: min(42vw, 520px);
  border-radius: 56px;
  background:
    linear-gradient(135deg, rgba(229, 184, 77, 0.16), transparent 38%),
    repeating-linear-gradient(
      135deg,
      rgba(12, 47, 74, 0.09) 0 1px,
      transparent 1px 46px
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(11, 102, 97, 0.08));
  clip-path: polygon(16% 0, 100% 0, 100% 92%, 0 100%, 4% 22%);
  content: "";
  pointer-events: none;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  transition: transform 160ms ease-out;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 900;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5.5vw, 5.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3.15rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-badges span {
  border: 1px solid rgba(8, 33, 51, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(7, 34, 54, 0.08);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  padding: 42px 22px;
}

.tax-panel {
  position: relative;
  display: grid;
  min-height: 450px;
  gap: 22px;
  align-content: start;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 243, 0.9)),
    var(--white);
  box-shadow: var(--shadow);
}

.panel-topline,
.chart-card,
.form-grid {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.panel-topline strong {
  color: var(--navy);
}

.mini-ledger {
  display: grid;
  gap: 12px;
}

.mini-ledger span {
  position: relative;
  min-height: 18px;
  border-radius: 999px;
  background: rgba(12, 47, 74, 0.08);
  overflow: hidden;
}

.mini-ledger span::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--ledger-width, 72%);
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--teal), rgba(18, 140, 131, 0.24)),
    var(--teal);
  content: "";
}

.mini-ledger span:nth-child(2) {
  --ledger-width: 52%;
}

.mini-ledger span:nth-child(3) {
  --ledger-width: 84%;
}

.chart-card {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(8, 33, 51, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(12, 47, 74, 0.96), rgba(11, 102, 97, 0.92));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.chart-card small,
.chart-card strong {
  display: block;
}

.chart-card small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.chart-card strong {
  max-width: 270px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.chart-card svg {
  color: var(--gold);
  stroke-width: 3;
}

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

.form-grid span {
  border: 1px solid rgba(8, 33, 51, 0.1);
  border-radius: 16px;
  padding: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  font-weight: 900;
}

.visual-orbit {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.visual-orbit svg {
  width: 38px;
  height: 38px;
}

.visual-orbit-top {
  top: 0;
  left: 0;
}

.visual-orbit-right {
  top: 150px;
  right: 0;
  color: var(--teal);
}

.visual-orbit-bottom {
  bottom: 0;
  left: 42px;
  color: #9b6a00;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading p,
.contact-intro p,
.cta-shell p,
.site-footer p {
  margin: 0;
}

.section-heading > p:last-child,
.contact-intro p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 700px;
}

.services {
  background: rgba(255, 255, 255, 0.72);
}

.service-grid,
.benefit-grid,
.stats-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.benefit-card,
.stat-card,
.contact-card,
.map-card {
  border: 1px solid rgba(8, 33, 51, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: grid;
  min-height: 250px;
  gap: 16px;
  align-content: start;
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.service-card:hover {
  border-color: rgba(11, 102, 97, 0.24);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card p,
.benefit-card p,
.audience-card p,
.faq-item p,
.map-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(229, 184, 77, 0.22), transparent 58%),
    rgba(11, 102, 97, 0.12);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.why-us {
  position: relative;
}

.why-grid {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
}

.benefit-card {
  position: relative;
  display: grid;
  overflow: hidden;
  gap: 12px;
  min-height: 220px;
  align-content: start;
  border-radius: var(--radius-md);
  padding: clamp(22px, 2.4vw, 30px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.benefit-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(18, 140, 131, 0.7), transparent);
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 260ms ease;
}

.benefit-card:hover {
  border-color: rgba(11, 102, 97, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card h3 {
  text-wrap: balance;
}

.benefit-card p {
  overflow-wrap: anywhere;
}

.audience {
  padding-top: 0;
}

.audience-grid {
  display: grid;
  gap: 18px;
}

.audience-card {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.audience-card h2,
.audience-card p {
  max-width: 560px;
}

.audience-card a {
  width: fit-content;
  color: currentColor;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.individuals {
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 191, 0.72)),
    var(--gold-soft);
}

.businesses {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 47, 74, 0.96), rgba(11, 102, 97, 0.92)),
    var(--navy);
}

.businesses h2,
.businesses .eyebrow {
  color: var(--white);
}

.businesses p {
  color: rgba(255, 255, 255, 0.82);
}

.businesses .eyebrow::before {
  background: var(--gold);
}

.stats {
  background: rgba(12, 47, 74, 0.045);
}

.stat-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 220px;
  gap: 12px;
  align-content: center;
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.stat-card::before {
  position: absolute;
  inset: -22% auto -22% -68%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(229, 184, 77, 0.28), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
  transition:
    left 720ms ease,
    opacity 240ms ease;
}

.stat-card::after {
  position: absolute;
  inset: auto 24px 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold), transparent);
  content: "";
  opacity: 0.76;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 320ms ease;
}

.stat-card:hover {
  border-color: rgba(11, 102, 97, 0.25);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(229, 184, 77, 0.14);
  transform: translateY(-6px);
}

.stat-card:hover::before {
  left: 122%;
  opacity: 1;
}

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

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-card strong {
  color: var(--navy);
  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.stat-card span {
  min-height: 52px;
  color: var(--ink);
  font-weight: 900;
}

.stat-card .static-stat {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.parallax-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 126px) 0;
  color: var(--white);
  background: #071f31;
}

.parallax-layer {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(120deg, rgba(229, 184, 77, 0.2), transparent 28%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.1) 0 1px,
      transparent 1px 74px
    ),
    radial-gradient(circle at 74% 24%, rgba(18, 140, 131, 0.7), transparent 24rem),
    linear-gradient(135deg, #071f31, #0c2f4a 45%, #0b6661);
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  transition: transform 120ms ease-out;
}

.cta-shell {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.cta-shell h2,
.cta-shell .eyebrow {
  color: var(--white);
}

.cta-shell p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  gap: 34px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 33, 51, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 26px rgba(7, 34, 54, 0.08);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.faq-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 280ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(11, 102, 97, 0.22);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item summary {
  position: relative;
  min-height: 76px;
  padding: 24px 70px 24px 24px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item p {
  transform-origin: top;
  padding: 0 24px 24px;
}

.faq-item[open] p {
  animation: accordion-in 360ms ease-out both;
}

.contact {
  padding-top: 0;
}

.contact-intro {
  display: grid;
  max-width: 720px;
  gap: 16px;
  margin-bottom: 24px;
}

.form-card {
  display: grid;
  gap: 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(8, 33, 51, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 243, 0.88)),
    var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  max-width: 680px;
  gap: 12px;
}

.form-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.form-heading .eyebrow {
  color: var(--teal);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(8, 33, 51, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font: inherit;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input,
.field select {
  min-height: 58px;
  padding: 0 16px;
}

.field textarea {
  min-height: 168px;
  resize: vertical;
  padding: 16px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(11, 102, 97, 0.52);
  background: var(--white);
  box-shadow:
    0 0 0 5px rgba(18, 140, 131, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #607784;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: grid;
  gap: 18px;
  align-items: start;
}

.recaptcha-shell {
  display: grid;
  min-height: 0;
  gap: 10px;
  align-content: center;
  padding: 2px 0;
  overflow-x: auto;
}

.recaptcha-mount {
  min-height: 0;
}

.form-note,
.form-privacy,
.form-status {
  margin: 0;
  color: var(--ink-soft);
}

.form-note,
.form-privacy {
  font-size: 0.86rem;
  font-weight: 700;
}

.form-submit {
  display: grid;
  gap: 10px;
}

.button:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #687b86, #4f666f);
  box-shadow: none;
}

.form-status {
  min-height: 28px;
  border-radius: var(--radius-sm);
  padding: 0;
  font-weight: 900;
}

.form-status.is-success,
.form-status.is-error {
  padding: 14px 16px;
}

.form-status.is-success {
  color: #064238;
  background: rgba(18, 140, 131, 0.14);
}

.form-status.is-error {
  color: #7b3500;
  background: rgba(229, 184, 77, 0.22);
}

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

.contact-card,
.map-card {
  border-radius: var(--radius-lg);
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.contact-card dl > div {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-card dt {
  color: var(--ink-soft);
  font-weight: 900;
}

.contact-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.contact-card dd a,
.site-footer a[data-contact] {
  text-decoration: underline;
  text-decoration-color: rgba(11, 102, 97, 0.36);
  text-underline-offset: 4px;
}

.map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--white);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #061a29;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-brand strong,
.site-footer h2 {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer a {
  width: fit-content;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease-out,
    transform 520ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordion-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(-10px) scaleY(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 3px solid rgba(229, 184, 77, 0.9);
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .hero-grid,
  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .audience-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .cta-shell {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }

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

  .field-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
  }

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

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

@media (max-width: 1039px) {
  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    margin-top: 8px;
  }

  .nav-shell {
    flex-wrap: wrap;
    min-height: 70px;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    display: none;
    order: 3;
    width: 100%;
    flex-basis: 100%;
    align-items: stretch;
    gap: 4px;
    padding: 6px 0 2px;
  }

  .nav-panel.is-open {
    display: grid;
  }

  .nav-panel > a,
  .service-menu summary {
    justify-content: space-between;
    border-radius: 14px;
  }

  .service-dropdown {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .nav-cta {
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-visual {
    min-height: auto;
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 719px) {
  :root {
    --container: min(100vw - 24px, 1180px);
    --radius-lg: 24px;
  }

  .nav-shell {
    padding: 10px;
  }

  .brand small {
    max-width: 140px;
    white-space: normal;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 490px;
    padding-top: 56px;
  }

  .visual-orbit {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  .visual-orbit svg {
    width: 30px;
    height: 30px;
  }

  .visual-orbit-right {
    top: 178px;
  }

  .visual-orbit-bottom {
    left: 12px;
  }

  .tax-panel {
    min-height: 410px;
  }

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

  .service-card,
  .benefit-card,
  .stat-card {
    min-height: auto;
  }

  .audience-card {
    min-height: 300px;
  }

  .faq-item summary {
    min-height: 68px;
    padding-right: 58px;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    right: 20px;
  }

  .map-card {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-layer {
    transform: none;
  }

  .hero::before,
  .hero::after {
    transform: none;
  }
}
