:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --navy: #0b1f3a;
  --navy-deep: #07172c;
  --royal: #1d4ed8;
  --royal-bright: #2563eb;
  --blue-soft: #dbeafe;
  --blue-pale: #eff6ff;
  --silver: #cbd5e1;
  --slate: #64748b;
  --gray: #f8fafc;
  --gray-strong: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 56px;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-strong);
  backdrop-filter: blur(12px);
  animation: headerDrop 500ms ease both;
  transition: inset 220ms ease, border-color 220ms ease, border-radius 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-floating {
  top: 0.55rem;
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  transform: translateY(0);
}

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

.brand,
.footer-brand {
  text-decoration: none;
}

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

.brand-mark,
.footer-brand {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--silver);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  color: var(--navy);
  font-weight: 800;
}

.brand-tagline {
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--royal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-toggle,
.menu-toggle,
.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.lang-toggle {
  min-width: 44px;
  height: 34px;
  border: 1px solid var(--silver);
  border-radius: 8px;
  background: var(--white);
  color: var(--royal);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  padding: 0.65rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  border-radius: 2px;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.75rem) 0;
  background: var(--white);
}

.section-band {
  padding: clamp(0rem, 1.5vw, 1.75rem) 0 clamp(2.25rem, 4.75vw, 4rem);
}

.narrow-container {
  max-width: 860px;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2.5%;
  z-index: -2;
  background: url("elite-empire-notary-hero.png") center right / cover no-repeat;
  transform: scale(1.04);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.18) 0%, rgba(7, 23, 44, 0.12) 45%, rgba(11, 31, 58, 0.08) 72%, rgba(7, 23, 44, 0.04) 100%),
    radial-gradient(circle at 24% 34%, rgba(219, 234, 254, 0.08), transparent 24rem);
}

.page-hero {
  border-bottom: 1px solid var(--gray-strong);
}

.page-hero .container {
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  color: var(--navy);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-grid,
.why-grid,
.split-section,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 650px;
  display: grid;
  gap: 1.15rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-left: 4px solid rgba(219, 234, 254, 0.7);
  border-radius: 10px;
  background: rgba(7, 23, 44, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(4px);
  animation: fadeSlideUp 700ms ease both;
}

.eyebrow {
  margin: 0;
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue-soft);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
}

h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy,
.section-header p,
.why-grid p,
.split-section p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero .hero-copy {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn-primary {
  background: var(--royal);
  color: var(--navy);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--royal-bright);
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.22);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--silver);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--royal);
  color: var(--royal);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-panel,
.action-panel,
.contact-form {
  border: 1px solid var(--gray-strong);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(7, 23, 44, 0.48);
  border-color: rgba(219, 234, 254, 0.42);
  color: var(--white);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 780ms 120ms ease both;
}

.panel-kicker {
  margin: 0;
  color: var(--blue-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.credential-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.credential-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(219, 234, 254, 0.48);
  border-radius: 8px;
  background: rgba(7, 23, 44, 0.36);
  color: var(--white);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  animation: credentialLift 520ms ease both;
  animation-delay: calc(var(--credential-index, 0) * 90ms);
}

.credential-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  animation: checkPulse 2.4s ease-in-out infinite;
}

.credential-list li:nth-child(1) {
  --credential-index: 1;
}

.credential-list li:nth-child(2) {
  --credential-index: 2;
}

.credential-list li:nth-child(3) {
  --credential-index: 3;
}

.credential-list li:nth-child(4) {
  --credential-index: 4;
}

.credential-list li:nth-child(5) {
  --credential-index: 5;
}

.credential-list li:nth-child(6) {
  --credential-index: 6;
}

.offer-section {
  position: relative;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 25;
  padding: 0.18rem 0;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid var(--gray-strong);
  transition: top 220ms ease, left 220ms ease, right 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.offer-section.is-floating {
  top: 4.4rem;
  left: max(1rem, env(safe-area-inset-left));
  right: max(1rem, env(safe-area-inset-right));
  background: transparent;
  border-bottom-color: transparent;
}

.offer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--gray-strong);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--white), var(--blue-pale));
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
  animation: offerPop 820ms ease both, offerGlow 3.8s ease-in-out infinite;
  transition: border-radius 220ms ease, box-shadow 220ms ease;
}

.offer-section.is-floating .offer-card {
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 70%);
  opacity: 0;
  animation: offerSweep 3.6s ease-in-out infinite;
}

.offer-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.3);
  animation: offerBadgePulse 2.2s ease-in-out infinite;
}

.offer-badge::after {
  content: "OFF";
  position: absolute;
  bottom: 0.25rem;
  font-size: 0.34rem;
  letter-spacing: 0.1em;
}

.offer-copy {
  position: relative;
  display: grid;
  gap: 0.1rem;
}

.offer-copy h2 {
  font-size: clamp(0.86rem, 1.45vw, 1rem);
}

.offer-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.offer-card .btn {
  position: relative;
  white-space: nowrap;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 1rem;
}

.offer-modal.is-open {
  display: grid;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 44, 0.68);
  backdrop-filter: blur(5px);
}

.offer-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--gray-strong);
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--white), var(--blue-pale)),
    var(--white);
  box-shadow: 0 28px 74px rgba(7, 23, 44, 0.28);
  animation: offerPop 240ms ease both;
}

.offer-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray-strong);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
}

.offer-modal-badge {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.3);
}

.offer-modal-card h2 {
  max-width: 360px;
  color: var(--navy);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.offer-modal-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.offer-lead-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@keyframes credentialLift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes checkPulse {
  0%,
  72%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.32);
  }

  36% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

@keyframes offerPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

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

@keyframes offerGlow {
  0%,
  100% {
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14), 0 0 0 0 rgba(34, 197, 94, 0);
  }

  50% {
    box-shadow: 0 28px 74px rgba(15, 23, 42, 0.17), 0 0 0 8px rgba(34, 197, 94, 0.08);
  }
}

@keyframes offerBadgePulse {
  0%,
  100% {
    transform: scale(1) rotate(-2deg);
  }

  50% {
    transform: scale(1.06) rotate(2deg);
  }
}

@keyframes offerSweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-120%);
  }

  72% {
    opacity: 0.65;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.4rem, -0.6rem, 0);
  }
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-divider {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--royal);
}

.services-luxury {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), var(--gray) 48%, var(--white));
}

.services-luxury .section-header {
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.services-title {
  color: var(--navy);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: none;
}

.services-luxury .section-header h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.4rem);
}

.service-category-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(145px, 0.38fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  min-height: 100%;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.82)),
    var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(29, 78, 216, 0.12), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-category-card:hover,
.service-category-card:focus-within {
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.service-category-card:hover::before,
.service-category-card:focus-within::before {
  opacity: 1;
}

.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 172px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 10px;
  background: radial-gradient(circle at 50% 46%, rgba(219, 234, 254, 0.82), transparent 64%);
  filter: drop-shadow(0 18px 18px rgba(15, 23, 42, 0.16));
  transition: transform 180ms ease, filter 180ms ease;
}

.service-visual img {
  width: min(92%, 230px);
  max-height: 230px;
  object-fit: contain;
  transform: translateZ(0);
}

.service-category-card:hover .service-visual {
  filter: drop-shadow(0 24px 24px rgba(15, 23, 42, 0.2));
  transform: scale(1.025);
}

.service-card-body {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.service-card-body h3 {
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.service-card-body ul {
  columns: 2;
  column-gap: 1.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card-body li {
  break-inside: avoid;
  position: relative;
  margin: 0 0 0.45rem;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

.service-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--royal);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.service-btn {
  width: fit-content;
  min-height: 42px;
  margin-top: 0.15rem;
  padding: 0.68rem 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible {
  animation: revealUp 620ms ease both;
}

.story-section {
  border-top: 1px solid var(--gray-strong);
  border-bottom: 1px solid var(--gray-strong);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32rem),
    var(--gray);
}

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

.story-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: clamp(1.1rem, 3vw, 1.45rem);
  border: 1px solid var(--gray-strong);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: fadeSlideUp 620ms ease both;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.story-card:hover {
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.story-label {
  width: fit-content;
  margin: 0;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--royal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.story-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-section {
  padding-top: 3rem;
}

.legal-section {
  padding-top: 3rem;
  background:
    linear-gradient(180deg, var(--gray), var(--white) 18rem);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.policy-updated {
  margin: 0 0 0.35rem;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 700;
}

.policy-block {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.05rem, 3vw, 1.4rem);
  border: 1px solid var(--gray-strong);
  border-left: 4px solid var(--royal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.policy-block h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.policy-block p {
  margin: 0;
  color: var(--muted);
}

.policy-block a {
  color: var(--royal);
  font-weight: 800;
}

.legal-callout {
  border-left-color: #16a34a;
  background: linear-gradient(135deg, var(--white), #f0fdf4);
}

.legal-callout p {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-disclaimer {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--gray-strong);
  border-left: 4px solid var(--royal);
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--muted);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--gray-strong);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-item:hover,
.faq-item:focus-visible,
.faq-item[aria-expanded="true"] {
  border-color: rgba(37, 99, 235, 0.45);
  background: var(--blue-pale);
}

.faq-question {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.faq-toggle {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--silver);
  border-radius: 6px;
  background: var(--white);
  color: var(--royal);
  font-weight: 800;
  transition: transform 160ms ease;
}

.faq-item[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  transition: max-height 220ms ease, opacity 180ms ease;
}

.faq-item[aria-expanded="true"] .faq-answer {
  max-height: 260px;
  opacity: 1;
}

.thank-you-section {
  min-height: calc(100vh - 260px);
  display: grid;
  align-items: center;
}

.thank-you-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.thank-you-card h1 {
  color: var(--navy);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-strong);
  border-left: 4px solid var(--royal);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: border-color 160ms ease, transform 160ms ease;
}

.feature-list li:hover {
  border-color: rgba(37, 99, 235, 0.38);
  transform: translateX(4px);
}

.why-image-panel {
  position: relative;
  min-height: clamp(280px, 33vw, 440px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 234, 254, 0.48);
  border-radius: 10px;
  background: var(--navy-deep);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.18);
}

.why-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(7, 23, 44, 0.2), transparent 46%),
    linear-gradient(0deg, rgba(7, 23, 44, 0.28), transparent 38%);
}

.why-image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trusted-section {
  overflow: hidden;
  border-top: 1px solid var(--gray-strong);
  border-bottom: 1px solid var(--gray-strong);
  background:
    radial-gradient(circle at 14% 28%, rgba(37, 99, 235, 0.12), transparent 24rem),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.trusted-header {
  display: grid;
  gap: 0.5rem;
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.trusted-header .eyebrow {
  color: var(--blue-soft);
}

.trusted-header h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
}

.trusted-carousel {
  position: relative;
  overflow: hidden;
  padding: 0.25rem 0;
}

.trusted-carousel::before,
.trusted-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 120px);
  pointer-events: none;
}

.trusted-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}

.trusted-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy), transparent);
}

.trusted-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: trustedScroll 22s linear infinite;
}

.trusted-carousel:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-logo-card {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(115px, 14vw, 155px);
  height: clamp(42px, 5.6vw, 58px);
  padding: 0.35rem;
  border: 1px solid rgba(219, 234, 254, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.trusted-logo-card-light {
  background: rgba(255, 255, 255, 0.94);
}

.trusted-logo-card-dark {
  background: rgba(7, 23, 44, 0.92);
}

.trusted-logo-card img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.action-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.75rem);
}

.payment-panel {
  justify-items: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--gray);
}

.paypal-hosted-button {
  width: min(100%, 420px);
  min-height: 48px;
}

.embed-placeholder {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px dashed var(--silver);
  border-radius: 8px;
  background: var(--gray);
  color: var(--muted);
  text-align: center;
}

.embed-placeholder:empty {
  display: none;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-strong);
  border-left: 4px solid var(--royal);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-list li:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateX(4px);
}

.contact-list strong {
  color: var(--royal);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  animation: fadeSlideUp 620ms ease both;
}

.form-honey {
  display: none;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid var(--gray-strong);
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.45;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.16rem;
  accent-color: var(--royal);
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--silver);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.facebook-section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--gray-strong);
  background: var(--white);
}

.facebook-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.facebook-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.facebook-inner p:not(.eyebrow) {
  max-width: 560px;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.facebook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.facebook-btn:hover,
.facebook-btn:focus-visible {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-1px);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

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

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes trustedScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }

  .trusted-carousel::before,
  .trusted-carousel::after {
    display: none;
  }
}

.facebook-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 2.25rem 0;
  border-top: 1px solid var(--gray-strong);
  background: var(--white);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  max-width: 840px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--royal);
  text-decoration: underline;
}

.ncna-logo {
  width: min(422px, 82vw);
  max-height: 170px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .service-category-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category-card {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 210px;
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .why-grid,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--navy-deep);
  }

  .hero::before {
    background-position: center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 23, 44, 0.28) 0%, rgba(7, 23, 44, 0.18) 58%, rgba(7, 23, 44, 0.12) 100%);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-top: 56px;
  }

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

  .nav {
    position: fixed;
    inset: 64px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--gray-strong);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 8px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--blue-pale);
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand-tagline {
    display: none;
  }

  .service-category-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body ul {
    columns: 1;
  }

  .service-btn {
    width: 100%;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .facebook-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .facebook-btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .brand-name {
    max-width: 172px;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 2.45rem;
  }
}
