:root {
  --release-version: "20260729-1";
  --navy-950: #061c47;
  --navy-900: #092b64;
  --navy-800: #0c3f8f;
  --blue-700: #1559ba;
  --blue-500: #4d91e8;
  --blue-300: #a9cff7;
  --blue-200: #d5e9ff;
  --blue-100: #edf6ff;
  --ice: #f7fbff;
  --white: #ffffff;
  --text-dark: #11233f;
  --text-muted: #65748a;
  --border: rgba(31, 91, 169, 0.16);
  --shadow-soft: 0 18px 55px rgba(27, 76, 146, 0.1);
  --shadow-card: 0 10px 32px rgba(22, 68, 137, 0.09);
  --sans: "Lato", Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --primary-font: Georgia, "Times New Roman", serif;
  --container: min(1280px, calc(100vw - 96px));
  --header-height: 76px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-dark);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 90% 4%, rgba(169, 207, 247, 0.48), transparent 30rem),
    radial-gradient(circle at 0 42%, rgba(213, 233, 255, 0.5), transparent 34rem),
    linear-gradient(180deg, var(--white) 0%, var(--ice) 40%, var(--white) 100%);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(77, 145, 232, 0.55);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 800;
  transition: transform 180ms var(--ease);
}

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

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

.section-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 8vw, 116px) 0;
}

.section-shell > .container {
  position: relative;
  z-index: 2;
}

.section-shell:not(.hero)::before,
.section-shell:not(.hero)::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.78;
  filter: blur(0.2px);
}

.section-shell:not(.hero)::before {
  top: -210px;
  right: -300px;
  width: min(980px, 74vw);
  height: 520px;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(77, 145, 232, 0.1) 50.8%, transparent 52.4%),
    radial-gradient(ellipse at center, transparent 57%, rgba(77, 145, 232, 0.13) 57.6%, transparent 59.3%),
    radial-gradient(ellipse at center, transparent 64%, rgba(169, 207, 247, 0.3) 64.6%, transparent 68%),
    linear-gradient(145deg, rgba(213, 233, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(-15deg);
}

.section-shell:not(.hero)::after {
  left: -320px;
  bottom: -240px;
  width: min(1060px, 78vw);
  height: 540px;
  background:
    radial-gradient(ellipse at center, transparent 49%, rgba(77, 145, 232, 0.1) 49.8%, transparent 51.5%),
    radial-gradient(ellipse at center, transparent 58%, rgba(77, 145, 232, 0.12) 58.6%, transparent 60.4%),
    radial-gradient(ellipse at center, transparent 66%, rgba(169, 207, 247, 0.26) 66.6%, transparent 70%),
    linear-gradient(35deg, rgba(213, 233, 255, 0.44), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: var(--progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--navy-900));
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 35px rgba(9, 43, 100, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-950);
  line-height: 1;
  text-transform: uppercase;
}

.site-logo {
  display: block;
  width: clamp(168px, 15vw, 220px);
  height: auto;
}

.site-logo-mobile {
  width: 184px;
}

.site-logo-footer {
  width: min(240px, 100%);
}

.brand-partners {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.brand-partners span {
  color: #c5463a;
}

.brand-title {
  font-family: var(--primary-font);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-location {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(12px, 1.6vw, 26px);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-call,
.btn {
  --button-navy: #0b3f91;
  --button-fill-blue: #1672d4;
  --button-deep-blue: #0d56b3;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 174px;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid rgba(11, 63, 145, 0.78);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--button-navy);
  background: var(--white);
  box-shadow:
    0 14px 32px rgba(11, 63, 145, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.header-call::before,
.header-call::after,
.btn::before,
.btn::after {
  content: "";
  position: absolute;
  right: -16%;
  left: -16%;
  height: 210%;
  border-radius: 44%;
  transition: transform 1.85s cubic-bezier(0.16, 0.72, 0.12, 1);
}

.header-call::before,
.btn::before {
  bottom: -168%;
  z-index: 1;
  background: linear-gradient(180deg, #f5fbff 0%, #9fd0ff 48%, var(--button-fill-blue) 100%);
  transform: rotate(8deg);
}

.header-call::after,
.btn::after {
  bottom: -183%;
  z-index: 2;
  background: linear-gradient(180deg, #4d91e8 0%, var(--button-fill-blue) 44%, var(--button-deep-blue) 100%);
  transform: rotate(-7deg);
  transition-duration: 2.05s;
  transition-delay: 0ms;
}

.header-call span,
.btn span,
.header-call svg,
.btn svg,
.btn i {
  position: relative;
  z-index: 3;
}

.header-call svg,
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.header-call,
.btn-primary,
.btn-secondary {
  color: var(--button-navy);
  background: linear-gradient(135deg, #f5fbff 0%, #d8ecff 100%);
  border-color: rgba(77, 145, 232, 0.78);
}

.btn-light {
  color: var(--button-navy);
  background: var(--white);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--button-navy);
  background: rgba(255, 255, 255, 0.92);
}

.btn-small {
  min-height: 40px;
  min-width: 156px;
  padding: 0 18px;
  font-size: 12px;
}

.btn:hover,
.btn:focus-visible,
.header-call:hover,
.header-call:focus-visible {
  color: var(--white);
  border-color: rgba(55, 139, 230, 0.98);
  box-shadow:
    0 19px 42px rgba(11, 63, 145, 0.24),
    0 0 0 5px rgba(22, 114, 212, 0.08);
  transform: translateY(-3px);
}

.btn:hover::before,
.btn:focus-visible::before,
.header-call:hover::before,
.header-call:focus-visible::before {
  transform: translateY(-54%) rotate(2deg);
}

.btn:hover::after,
.btn:focus-visible::after,
.header-call:hover::after,
.header-call:focus-visible::after {
  transform: translateY(-58%) rotate(-2deg);
  transition-delay: 160ms;
}

.btn:hover svg,
.btn:focus-visible svg,
.btn:hover i,
.btn:focus-visible i,
.header-call:hover svg,
.header-call:focus-visible svg {
  transform: translateX(4px);
}

.btn:active,
.header-call:active {
  transform: translateY(-1px) scale(0.985);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.btn:disabled::before,
.btn:disabled::after {
  transform: none;
}

.btn:disabled:hover {
  color: var(--button-navy);
  border-color: rgba(77, 145, 232, 0.78);
  box-shadow:
    0 14px 32px rgba(11, 63, 145, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
}

.menu-toggle svg,
.menu-head button svg,
.modal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-panel,
.modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  pointer-events: none;
  visibility: hidden;
}

.menu-panel.is-open,
.modal.is-open,
.legal-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.menu-backdrop,
.modal-backdrop,
.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 28, 71, 0.36);
  opacity: 0;
  transition: opacity 200ms var(--ease);
}

.menu-panel.is-open .menu-backdrop,
.modal.is-open .modal-backdrop,
.legal-modal.is-open .legal-backdrop {
  opacity: 1;
}

.menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  width: min(360px, 88vw);
  min-height: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: -28px 0 60px rgba(6, 28, 71, 0.18);
  transform: translateX(104%);
  transition: transform 240ms var(--ease);
  backdrop-filter: blur(18px);
}

.menu-panel.is-open .menu-drawer {
  transform: translateX(0);
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-head button,
.modal-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy-900);
}

.menu-drawer nav {
  display: grid;
  gap: 6px;
}

.menu-drawer nav a {
  border: 1px solid transparent;
  border-bottom-color: var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--navy-900);
  background: transparent;
  font-weight: 800;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.menu-drawer nav a:hover,
.menu-drawer nav a:focus-visible,
.menu-drawer nav a.is-active {
  border-color: rgba(31, 91, 169, 0.14);
  color: var(--blue-700);
  background: rgba(232, 244, 255, 0.74);
  box-shadow: 0 10px 22px rgba(21, 89, 186, 0.1);
  transform: translateX(4px);
}

.menu-whatsapp-btn {
  --button-navy: #ffffff;
  --button-fill-blue: #1faa63;
  --button-deep-blue: #128c4a;
  border-color: rgba(22, 139, 85, 0.72);
  color: var(--white);
  background: linear-gradient(135deg, #25d366 0%, #168b55 100%);
  box-shadow:
    0 14px 30px rgba(22, 139, 85, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.menu-whatsapp-btn::before,
.menu-whatsapp-btn::after {
  display: none;
}

.menu-whatsapp-btn:hover,
.menu-whatsapp-btn:focus-visible {
  border-color: rgba(18, 140, 74, 0.9);
  color: var(--white);
  background: linear-gradient(135deg, #2ee978 0%, #128c4a 100%);
  box-shadow:
    0 18px 34px rgba(22, 139, 85, 0.28),
    0 0 0 6px rgba(37, 211, 102, 0.14);
}

.hero {
  position: relative;
  min-height: clamp(620px, 82svh, 760px);
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--header-height) + clamp(6px, 1vw, 14px));
  padding-bottom: clamp(18px, 2vw, 28px);
  background: url("../images/hero.webp") 58% center / cover no-repeat;
}

.hero-price-tab {
  position: absolute;
  top: calc(var(--header-height) + clamp(16px, 2vw, 28px));
  right: clamp(8px, 1.8vw, 34px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  min-height: 44px;
  padding: 8px 14px 8px 18px;
  border: 1px solid rgba(31, 91, 169, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92));
  box-shadow:
    0 14px 34px rgba(9, 43, 100, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: var(--navy-900);
  opacity: 0;
  transform: translateX(calc(100% + 96px));
  animation: heroPriceTabIn 650ms var(--ease) 3s forwards;
  backdrop-filter: blur(16px);
}

.hero-price-tab::before {
  content: "";
  width: 1px;
  height: 22px;
  order: 2;
  background: rgba(9, 43, 100, 0.2);
}

.hero-price-tab span {
  order: 1;
  color: var(--navy-900);
  font-family: var(--primary-font);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 700;
  white-space: nowrap;
}

.hero-price-tab strong {
  order: 3;
  color: var(--blue-700);
  font-family: var(--primary-font);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
  animation: heroPriceBlink 1.8s ease-in-out 3.65s infinite;
}

.hero-price-tab sup {
  top: -0.35em;
  position: relative;
  font-size: 0.45em;
}

@keyframes heroPriceTabIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroPriceBlink {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(21, 89, 186, 0);
    transform: scale(1);
  }

  50% {
    opacity: 0.68;
    text-shadow: 0 0 14px rgba(21, 89, 186, 0.24);
    transform: scale(1.025);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 585px);
  align-items: center;
  gap: clamp(34px, 4vw, 74px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 585px;
  padding-top: clamp(6px, 1.2vw, 16px);
}

.eyebrow {
  margin: 0 0 4px;
  color: #65748a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.center {
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: auto;
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(13px, 0.98vw, 15px);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
}

.hero-eyebrow span {
  color: var(--navy-900);
}

.hero-eyebrow strong {
  color: #c5463a;
  font: inherit;
}

.hero-logo-lockup {
  display: inline-grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 292px);
  margin-bottom: 6px;
}

.hero-logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-logo-lockup img:first-child {
  width: 150px;
}

.hero-logo-lockup img:last-child {
  width: 84px;
}

.hero-logo-lockup span {
  width: 1px;
  height: 36px;
  background: rgba(9, 43, 100, 0.28);
}

.hero-copy h1 {
  margin-top: 6px;
  font-size: clamp(40px, 4.65vw, 64px);
}

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

h1,
h2,
h3,
.brand-title {
  color: #050505;
  font-family: var(--primary-font);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.heading-blue {
  color: #004aad;
}

.heading-green {
  color: #20b20f;
}

.heading-dark {
  color: #050505;
}

.no-wrap {
  white-space: nowrap;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(44px, 5.2vw, 72px);
}

.hero-copy h2 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.18;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 0;
  color: #334766;
}

.hero-copy p,
.intro-copy p,
.location-copy p,
.action-card p,
.faq-panel p,
.final-cta p,
.disclaimer {
  color: var(--text-muted);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.75;
}

.section-shell:not(.hero) .eyebrow {
  font-size: 13px;
  line-height: 1.2;
}

.benefit-row span,
.reason-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.benefit-row svg,
.reason-pill svg,
.info-card > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: var(--blue-700);
}

.hero-pricing {
  display: grid;
  gap: 7px;
  margin: clamp(24px, 3vw, 36px) 0 clamp(24px, 4.4vw, 54px);
  color: var(--navy-900);
}

.hero-pricing strong {
  font-size: clamp(16px, 1.25vw, 21px);
}

.hero-pricing span {
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(20px, 3vw, 34px);
}

.hero-actions .btn {
  overflow: hidden;
}

.hero-actions .btn::before,
.hero-actions .btn::after {
  right: 0;
  left: 0;
}

.hero-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(108px, 1fr));
  gap: 10px;
  width: min(100%, 430px);
  margin: clamp(16px, 2vw, 24px) 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust-points li {
  display: grid;
  place-items: center;
  align-content: center;
  align-items: center;
  min-height: 72px;
  border: 1px solid rgba(31, 91, 169, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.74));
  box-shadow:
    0 14px 28px rgba(22, 68, 137, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.hero-trust-points li:hover {
  border-color: rgba(21, 89, 186, 0.28);
  box-shadow: 0 18px 34px rgba(22, 68, 137, 0.14);
  transform: translateY(-2px);
}

.hero-trust-points i,
.hero-trust-points svg {
  margin-bottom: 8px;
  color: var(--blue-700);
  fill: currentColor;
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.action-card h2 {
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.check-list,
.two-col-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.glass-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 255, 0.64));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.wave-layer {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.95;
  will-change: transform;
}

.wave-layer::before,
.wave-layer::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(77, 145, 232, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, 0.88), rgba(237, 246, 255, 0.28) 66%, transparent 72%),
    linear-gradient(135deg, rgba(169, 207, 247, 0.26), transparent);
  box-shadow: 0 0 40px rgba(77, 145, 232, 0.1);
  filter: blur(0.3px);
}

.wave-mid-left {
  left: -360px;
  top: -80px;
  width: 980px;
  height: 460px;
}

.wave-mid-left::before {
  inset: 70px auto auto 0;
  width: 850px;
  height: 250px;
  transform: rotate(-7deg);
}

.wave-mid-left::after {
  inset: 170px auto auto 120px;
  width: 740px;
  height: 180px;
  transform: rotate(-2deg);
}

.wave-mid-right {
  right: -420px;
  top: -30px;
  width: 1060px;
  height: 520px;
}

.wave-mid-right::before {
  inset: 70px 0 auto auto;
  width: 890px;
  height: 250px;
  transform: rotate(9deg);
}

.wave-mid-right::after {
  inset: 190px 80px auto auto;
  width: 780px;
  height: 190px;
  transform: rotate(4deg);
}

.wave-location {
  left: -330px;
  bottom: -110px;
  width: 980px;
  height: 500px;
}

.wave-location::before {
  inset: 110px 0 auto 0;
  width: 900px;
  height: 260px;
  transform: rotate(10deg);
}

.wave-location::after {
  inset: 200px 40px auto 100px;
  width: 760px;
  height: 170px;
  transform: rotate(4deg);
}

.wave-closing {
  right: -390px;
  bottom: -180px;
  width: 1050px;
  height: 520px;
}

.wave-closing::before {
  inset: 100px 0 auto auto;
  width: 940px;
  height: 250px;
  transform: rotate(-9deg);
}

.wave-closing::after {
  inset: 210px 80px auto auto;
  width: 780px;
  height: 170px;
  transform: rotate(-4deg);
}

.stats-section::before {
  top: -260px;
  right: -260px;
  opacity: 0.88;
}

.stats-section::after {
  left: -420px;
  bottom: -250px;
  opacity: 0.74;
}

.intro-section::before,
.amenities-section::before,
.lead-section::before {
  right: auto;
  left: -300px;
  top: -190px;
  transform: rotate(15deg);
}

.intro-section::after,
.amenities-section::after,
.lead-section::after {
  left: auto;
  right: -360px;
  bottom: -230px;
  transform: rotate(-12deg);
}

.apartments-section::before,
.investment-section::before,
.location-section::before,
.faq-cta-section::before {
  top: -180px;
  right: -220px;
  transform: rotate(-9deg);
}

.apartments-section::after,
.investment-section::after,
.location-section::after,
.faq-cta-section::after {
  left: -260px;
  bottom: -210px;
  transform: rotate(9deg);
}

.investment-section.section-shell {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.investment-section .section-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.center-heading,
.section-heading {
  margin-bottom: clamp(28px, 4vw, 48px);
  font-size: clamp(24px, 2.55vw, 36px);
}

.center-heading {
  text-align: center;
}

.stats-section {
  padding-top: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(22px, 3vw, 36px);
  background:
    radial-gradient(circle at 12% 12%, rgba(213, 233, 255, 0.4), transparent 28rem),
    radial-gradient(circle at 88% 88%, rgba(213, 233, 255, 0.48), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
}

.stats-title {
  margin-bottom: clamp(12px, 1.5vw, 18px);
  color: #050505;
  font-size: clamp(24px, 2.55vw, 36px);
  font-weight: 900;
  line-height: 1.02;
  text-align: left;
}

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

.luxury-stats-cards {
  perspective: 1000px;
}

.stat-card,
.amenity-card,
.reason-pill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.stat-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  min-height: 108px;
  border: 1px solid rgba(213, 233, 255, 0.9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(237, 246, 255, 0.86), transparent 74%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(22, 68, 137, 0.08);
  padding: 12px 10px;
  text-align: center;
  backdrop-filter: blur(12px);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
  will-change: transform;
}

.stat-card::before,
.amenity-card::before,
.reason-pill::before,
.benefit-row span::before,
.overview-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(77, 145, 232, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(77, 145, 232, 0.1));
  opacity: 0;
  transition: opacity 280ms var(--ease);
}

.overview-card::before {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(77, 145, 232, 0.13), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(77, 145, 232, 0.08));
}

.stat-card::after,
.amenity-card::after,
.reason-pill::after,
.benefit-row span::after,
.overview-card::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -55%;
  z-index: 2;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
  transition:
    opacity 220ms var(--ease),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat-card:hover,
.amenity-card:hover,
.reason-pill:hover,
.benefit-row span:hover,
.overview-card:hover {
  border-color: rgba(21, 89, 186, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 233, 255, 0.98), transparent 74%),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 38px rgba(22, 68, 137, 0.14),
    0 0 0 4px rgba(77, 145, 232, 0.08);
}

.stat-card:hover::before,
.amenity-card:hover::before,
.reason-pill:hover::before,
.benefit-row span:hover::before,
.overview-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after,
.amenity-card:hover::after,
.reason-pill:hover::after,
.benefit-row span:hover::after,
.overview-card:hover::after {
  opacity: 1;
  transform: skewX(-18deg) translateX(360%);
}

.stat-card:hover .icon-box {
  background: radial-gradient(circle, rgba(213, 233, 255, 1), rgba(237, 246, 255, 0.58));
  color: var(--blue-700);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 12px 24px rgba(21, 89, 186, 0.14);
}

.icon-box {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-700);
  background: radial-gradient(circle, rgba(237, 246, 255, 0.98), rgba(237, 246, 255, 0.48));
  box-shadow: none;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background 260ms var(--ease);
}

.icon-box i {
  font-size: 23px;
  line-height: 1;
}

.icon-box svg,
.stat-card svg,
.amenity-card svg,
.reason-pill svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.amenity-card i {
  font-size: 20px;
  line-height: 1;
}

.stat-card .icon-box svg {
  width: 24px;
  height: 24px;
}

.stat-card strong {
  position: relative;
  z-index: 3;
  color: var(--navy-900);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 900;
  line-height: 1.1;
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.stat-card span:last-child {
  position: relative;
  z-index: 3;
  color: #4b5a78;
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 700;
  line-height: 1.35;
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.stat-card:hover strong {
  color: var(--blue-700);
  transform: translateY(-1px);
}

.stat-card:hover span:last-child {
  color: var(--navy-900);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.intro-section {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.intro-copy h2,
.location-copy h2,
.faq-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.55vw, 36px);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.benefit-row span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
  will-change: transform;
}

.benefit-row span svg,
.benefit-row span {
  position: relative;
}

.benefit-row span {
  z-index: 1;
}

.benefit-row span svg {
  z-index: 3;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.benefit-row span > * {
  position: relative;
  z-index: 3;
}

.benefit-row span:hover svg {
  transform: translateY(-2px) scale(1.08);
}

.overview-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border-color: rgba(31, 91, 169, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.98), transparent 34%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 255, 0.74));
  box-shadow:
    0 28px 70px rgba(22, 68, 137, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
  will-change: transform;
}

.overview-card > * {
  position: relative;
  z-index: 3;
}

.overview-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(18px, 2vw, 24px);
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.1;
}

.overview-title-icon,
.spec-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  filter: drop-shadow(0 8px 12px rgba(21, 89, 186, 0.16));
}

.overview-title-icon {
  width: 34px;
  height: 34px;
}

.overview-title-icon i {
  font-size: 29px;
  line-height: 1;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(22px, 3vw, 34px);
  margin: 0;
}

.spec-grid > div {
  position: relative;
  display: block;
  min-height: 58px;
  padding: 10px 0 10px 46px;
  border-bottom: 1px solid rgba(31, 91, 169, 0.11);
}

.spec-grid dt {
  display: block;
  color: #65748a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.spec-grid dt > span:last-child {
  color: inherit;
}

.spec-icon {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}

.spec-icon i {
  font-size: 21px;
  line-height: 1;
}

.spec-grid dd {
  margin: 3px 0 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.apartments-section {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.apartments-section .section-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.apartments-section .eyebrow {
  margin-bottom: 6px;
}

.floor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.floor-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(260px, 1.1fr);
  grid-template-areas:
    "title title"
    "copy preview";
  align-items: center;
  row-gap: 8px;
  min-height: 280px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-card);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    border-color 180ms var(--ease);
  will-change: transform;
}

.floor-card:hover {
  border-color: rgba(21, 89, 186, 0.28);
  box-shadow: 0 22px 55px rgba(22, 68, 137, 0.14);
}

.floor-card .btn {
  overflow: hidden;
}

.floor-card .btn::before,
.floor-card .btn::after {
  right: -16%;
  left: -16%;
}

.floor-copy {
  position: relative;
  grid-area: copy;
  z-index: 2;
  min-width: 0;
}

.floor-title {
  grid-area: title;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(22px, 1.55vw, 26px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.floor-card p {
  margin-bottom: 16px;
  color: var(--navy-900);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.check-list li,
.two-col-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.check-list li::before,
.two-col-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 13px;
  height: 13px;
  background: var(--blue-700);
  clip-path: polygon(14% 48%, 36% 72%, 84% 18%, 96% 31%, 37% 92%, 4% 59%);
}

.floor-preview {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-area: preview;
  place-items: center;
  width: 100%;
  min-height: 230px;
  overflow: hidden;
  border-radius: 16px;
}

.floor-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.54) 76%),
    linear-gradient(135deg, rgba(237, 246, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.floor-preview img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-width: 100%;
  height: auto;
  justify-self: center;
  margin: 0;
  filter: blur(5px) saturate(0.92) contrast(0.96);
  transform: translateY(0) scale(1);
  transition:
    filter 240ms var(--ease),
    transform 240ms var(--ease);
}

.floor-card:hover .floor-preview img {
  filter: blur(3.5px) saturate(1) contrast(1);
  transform: translateY(-4px) scale(1.04);
}

.floor-view-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.floor-view-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  box-shadow:
    0 18px 34px rgba(9, 43, 100, 0.24),
    0 0 0 8px rgba(255, 255, 255, 0.14);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.floor-view-icon i {
  font-size: 28px;
  line-height: 1;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.16));
}

.floor-view-button:hover .floor-view-icon,
.floor-view-button:focus-visible .floor-view-icon {
  box-shadow:
    0 22px 40px rgba(9, 43, 100, 0.3),
    0 0 0 10px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.04);
}

.difference-section.section-shell {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 16% 14%, rgba(213, 233, 255, 0.48), transparent 28rem),
    radial-gradient(circle at 86% 84%, rgba(213, 233, 255, 0.55), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
}

.difference-section::before {
  top: -180px;
  right: -220px;
  transform: rotate(-9deg);
}

.difference-section::after {
  left: -260px;
  bottom: -210px;
  transform: rotate(9deg);
}

.difference-head {
  max-width: 1160px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: left;
}

.difference-head .section-heading {
  margin-bottom: 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  max-width: 1160px;
  margin-inline: auto;
}

.difference-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 246px;
  border: 1px solid rgba(31, 91, 169, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 246, 255, 0.92), transparent 62%),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 34px rgba(22, 68, 137, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(0);
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.difference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.08) 72%),
    radial-gradient(circle at 14% 16%, rgba(213, 233, 255, 0.96), transparent 18%);
}

.difference-card:hover {
  border-color: rgba(21, 89, 186, 0.3);
  box-shadow:
    0 22px 50px rgba(22, 68, 137, 0.16),
    0 0 0 4px rgba(77, 145, 232, 0.07);
  transform: translateY(-5px);
}

.difference-card-copy {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.2vw, 24px) 10px;
}

.difference-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--navy-900);
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.96), rgba(213, 233, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(21, 89, 186, 0.1);
}

.difference-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  line-height: 1;
}

.difference-card h3 {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.12;
}

.difference-card p {
  margin: 0;
  color: #263956;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  line-height: 1.55;
}

.difference-card > img {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 320ms var(--ease), filter 320ms var(--ease);
}

.difference-card:hover > img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.035);
}

.difference-brand-card {
  padding-bottom: clamp(28px, 4vw, 42px);
}

.difference-brand-card::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(213, 233, 255, 0.92), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76));
}

.brand-lockup {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 1px minmax(96px, 0.72fr);
  align-items: center;
  gap: clamp(16px, 1.6vw, 22px);
  margin: auto clamp(18px, 2.4vw, 26px) 0;
  padding-top: clamp(18px, 2.6vw, 30px);
}

.brand-lockup span {
  width: 1px;
  height: 48px;
  background: rgba(9, 43, 100, 0.22);
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-conscient {
  max-width: 180px;
}

.brand-logo-hines {
  max-width: 118px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(98px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  perspective: 1000px;
}

.amenity-card {
  position: relative;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 88px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px 10px;
  color: var(--blue-700);
  text-align: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
  will-change: transform;
}

.amenity-card svg,
.amenity-card i,
.amenity-card span {
  position: relative;
  z-index: 3;
}

.amenity-card svg,
.amenity-card i {
  width: 20px;
  height: 20px;
  color: var(--blue-700);
  fill: currentColor;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.amenity-card span {
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.amenity-card:hover {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
}

.amenity-card:hover svg,
.amenity-card:hover i {
  transform: translateY(-2px) scale(1.08);
}

.amenities-section.section-shell {
  position: relative;
  overflow: hidden;
  padding-top: clamp(58px, 7vw, 78px);
  padding-bottom: clamp(58px, 7vw, 78px);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(77, 145, 232, 0.12), transparent 38%),
    radial-gradient(ellipse at 90% 100%, rgba(21, 89, 186, 0.08), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 46%, #f8fbff 100%);
}

.amenities-section::before,
.amenities-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(77, 145, 232, 0.16);
  border-color: rgba(77, 145, 232, 0.16) transparent transparent transparent;
  border-radius: 50%;
  filter: blur(0.2px);
}

.amenities-section::before {
  width: 820px;
  height: 260px;
  left: -190px;
  top: -18px;
  transform: rotate(-18deg);
  box-shadow:
    0 16px 0 -15px rgba(77, 145, 232, 0.12),
    0 32px 0 -31px rgba(77, 145, 232, 0.1);
}

.amenities-section::after {
  width: 1080px;
  height: 280px;
  right: -260px;
  bottom: -64px;
  transform: rotate(-8deg);
  box-shadow:
    0 -16px 0 -15px rgba(77, 145, 232, 0.12),
    0 -32px 0 -31px rgba(77, 145, 232, 0.1);
}

.amenities-section .container {
  position: relative;
  z-index: 1;
  width: min(100% - 72px, 1450px);
  max-width: none;
}

.amenities-section .eyebrow.center {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0 auto 14px;
  color: var(--blue-700);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 900;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-align: center;
}

.amenities-section .eyebrow.center::after {
  content: "";
  display: block;
  width: min(260px, 30vw);
  height: 16px;
  margin-top: 10px;
  background:
    linear-gradient(90deg, transparent 0, rgba(192, 153, 80, 0.72) 34%, transparent 34%, transparent 66%, rgba(192, 153, 80, 0.72) 66%, transparent 100%) center / 100% 1px no-repeat,
    linear-gradient(45deg, transparent 30%, rgba(192, 153, 80, 0.92) 30% 70%, transparent 70%) center / 12px 12px no-repeat;
}

.amenities-section .center-heading {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(36px, 4vw, 52px);
  color: #071e48;
  font-size: clamp(40px, 4.45vw, 68px);
  line-height: 0.98;
  text-align: center;
}

.amenities-section .center-heading::after {
  content: "";
  display: block;
  width: min(330px, 34vw);
  height: 16px;
  margin: 14px auto 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(192, 153, 80, 0.72) 36%, transparent 36%, transparent 64%, rgba(192, 153, 80, 0.72) 64%, transparent 100%) center / 100% 1px no-repeat,
    linear-gradient(45deg, transparent 30%, rgba(192, 153, 80, 0.92) 30% 70%, transparent 70%) center / 12px 12px no-repeat;
}

.amenities-section .center-heading .heading-blue {
  color: #0759ba;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(10px, 0.95vw, 14px);
  perspective: none;
}

.amenities-section .amenity-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: clamp(272px, 19vw, 298px);
  overflow: hidden;
  padding: clamp(20px, 1.7vw, 26px) 12px 0;
  border: 1px solid rgba(31, 91, 169, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 55%, rgba(232, 244, 255, 0.76) 100%);
  box-shadow:
    0 15px 30px rgba(6, 28, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  text-align: center;
  transform: none;
}

.amenities-section .amenity-card::before,
.amenities-section .amenity-card::after {
  display: none;
}

.amenity-icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 78px;
  height: 68px;
  margin-bottom: 10px;
  color: #092b64;
}

.amenity-icon::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 58px;
  border: 2px solid rgba(192, 153, 80, 0.82);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.amenity-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 8px;
  height: 2px;
  background:
    radial-gradient(circle, #c09950 0 2px, transparent 3px) left center / 10px 2px no-repeat,
    radial-gradient(circle, #c09950 0 2px, transparent 3px) right center / 10px 2px no-repeat;
}

.amenities-section .amenity-card i {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  color: #092b64;
  font-size: clamp(28px, 2.4vw, 36px);
  filter: drop-shadow(0 8px 10px rgba(9, 43, 100, 0.12));
}

.amenities-section .amenity-card h3 {
  position: relative;
  z-index: 3;
  min-height: 54px;
  margin: 0;
  color: #09213f;
  font-size: clamp(15px, 1.28vw, 21px);
  font-weight: 900;
  line-height: 1.15;
}

.amenity-media {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 37%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(237, 246, 255, 0.24) 16%, rgba(6, 28, 71, 0.08) 100%),
    var(--amenity-image) center / cover no-repeat;
}

.amenity-media::before {
  content: "";
  position: absolute;
  inset: -52px 0 auto;
  height: 82px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.amenities-section .amenity-card:hover,
.amenities-section .amenity-card:active {
  border-color: rgba(192, 153, 80, 0.34);
  box-shadow:
    0 18px 38px rgba(6, 28, 71, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-4px);
}

.amenities-section.section-shell {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(ellipse at 15% -20%, rgba(77, 145, 232, 0.12), transparent 42%),
    radial-gradient(ellipse at 85% 118%, rgba(21, 89, 186, 0.08), transparent 38%),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 48%, #f8fbff 100%);
}

.amenities-section .container {
  width: min(100% - 56px, 1280px);
}

.amenities-section .eyebrow.center {
  display: block;
  margin: 0 0 4px;
  color: #65748a;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: left;
}

.amenities-section .eyebrow.center::after,
.amenities-section .center-heading::after {
  display: none;
}

.amenities-section .center-heading {
  width: auto;
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: var(--text-dark);
  font-size: clamp(24px, 2.55vw, 36px);
  line-height: 1.05;
  text-align: left;
}

.amenities-section .center-heading .heading-blue {
  color: var(--blue-700);
}

.amenities-section .amenity-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(98px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  perspective: 1000px;
}

.amenities-section .amenity-card {
  position: relative;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 88px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue-700);
  text-align: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
  will-change: transform;
}

.amenities-section .amenity-icon,
.amenities-section .amenity-media,
.amenities-section .amenity-card h3 {
  display: none;
}

.amenities-section .amenity-card i,
.amenities-section .amenity-card span {
  position: relative;
  z-index: 3;
}

.amenities-section .amenity-card i {
  width: auto;
  height: auto;
  color: var(--blue-700);
  font-size: 20px;
  line-height: 1;
  filter: none;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.amenities-section .amenity-card span {
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.amenities-section .amenity-card:hover {
  border-color: rgba(77, 145, 232, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 1), rgba(238, 248, 255, 0.92) 68%),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 38px rgba(22, 68, 137, 0.14),
    0 0 0 4px rgba(77, 145, 232, 0.16),
    0 0 22px rgba(77, 145, 232, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-3px);
}

.amenities-section .amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(77, 145, 232, 0.16), transparent 34%, rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 50% 0%, rgba(77, 145, 232, 0.18), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease);
}

.amenities-section .amenity-card:hover::before,
.amenities-section .amenity-card:active::before {
  opacity: 1;
}

.amenities-section .amenity-card:hover span,
.amenities-section .amenity-card:active span {
  color: var(--navy-900);
  text-shadow: 0 6px 18px rgba(21, 89, 186, 0.22);
}

.amenities-section .amenity-card:hover i,
.amenities-section .amenity-card:active i {
  color: var(--blue-700);
  text-shadow: 0 10px 22px rgba(21, 89, 186, 0.22);
  transform: translateY(-2px) scale(1.08);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(500px, 1.12fr);
  align-items: start;
  gap: clamp(34px, 5vw, 82px);
}

.location-section.section-shell {
  padding-top: clamp(18px, 3vw, 36px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.location-copy {
  max-width: 620px;
}

.location-section .eyebrow {
  margin-bottom: 8px;
}

.location-copy h2 {
  margin-bottom: 18px;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.location-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 14px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 12px 28px rgba(22, 68, 137, 0.08);
  backdrop-filter: blur(10px);
}

.location-points i {
  color: var(--blue-700);
  font-size: 17px;
}

.radar {
  position: relative;
  justify-self: end;
  width: min(100%, 610px);
  height: clamp(360px, 32vw, 410px);
  overflow: hidden;
  border: 1px solid rgba(188, 219, 255, 0.86);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 247, 255, 0.76)),
    #f7fbff;
  box-shadow:
    0 22px 60px rgba(22, 68, 137, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.map-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #eaf4ff;
  pointer-events: none;
}

.map-backdrop iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.94;
  filter: saturate(0.96) contrast(1.12) brightness(1.03);
  pointer-events: none;
}

.map-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 145, 232, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.2)),
    linear-gradient(145deg, rgba(227, 243, 255, 0.08), rgba(10, 70, 150, 0.08));
}

.map-backdrop::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(130px, 17vw, 190px);
  height: clamp(130px, 17vw, 190px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 145, 232, 0.16), rgba(77, 145, 232, 0.07) 54%, transparent 70%);
  transform: translate(-50%, -50%);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: clamp(220px, 32vw, 310px);
  height: clamp(220px, 32vw, 310px);
  margin: auto;
  border: 1px solid rgba(21, 89, 186, 0.18);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(21, 89, 186, 0.22), transparent 26%, transparent 100%);
  animation: radarSpin 18s linear infinite;
}

.radar::after {
  width: clamp(140px, 22vw, 220px);
  height: clamp(140px, 22vw, 220px);
  animation-duration: 28s;
  animation-direction: reverse;
}

.radar-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  color: var(--white);
  box-shadow: 0 20px 38px rgba(9, 43, 100, 0.24);
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition:
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.radar-pin:hover,
.radar-pin:focus-visible {
  box-shadow:
    0 24px 46px rgba(9, 43, 100, 0.32),
    0 0 0 10px rgba(77, 145, 232, 0.18);
  transform: translate(-50%, -50%) scale(1.06);
}

.radar-pin svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.orbit {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: clamp(240px, 35vw, 330px);
  height: clamp(240px, 35vw, 330px);
  margin: auto;
  border: 1px dashed rgba(21, 89, 186, 0.22);
  border-radius: 50%;
  animation: radarSpin 34s linear infinite;
}

.orbit-two {
  width: clamp(170px, 25vw, 240px);
  height: clamp(170px, 25vw, 240px);
  animation-duration: 24s;
  animation-direction: reverse;
}

.orbit-three {
  width: clamp(110px, 18vw, 165px);
  height: clamp(110px, 18vw, 165px);
  animation-duration: 42s;
}

.radar ul {
  position: absolute;
  inset: 0;
  z-index: 5;
  margin: 0;
  padding: 0;
  list-style: none;
}

.radar li {
  position: absolute;
  left: var(--x);
  top: var(--y);
  max-width: 126px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 10px;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-card);
  transform: translate(-50%, -50%);
}

.radar li b {
  display: block;
  color: var(--blue-700);
  font-size: 12px;
}

.location-cards {
  display: grid;
  gap: 18px;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
}

.info-card h3 {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  perspective: 1000px;
}

.reason-pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 158px;
  border-radius: 16px;
  padding: 24px 16px;
  color: var(--blue-700);
  text-align: center;
  line-height: 1.25;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease),
    background 280ms var(--ease);
  will-change: transform;
}

.reason-pill svg,
.reason-pill i,
.reason-pill span {
  position: relative;
  z-index: 3;
}

.reason-pill svg,
.reason-pill i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(77, 145, 232, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.98), rgba(213, 233, 255, 0.62) 62%, rgba(169, 207, 247, 0.5)),
    rgba(237, 246, 255, 0.94);
  color: var(--blue-700);
  box-shadow:
    0 16px 28px rgba(21, 89, 186, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 26px;
  line-height: 1;
  transition:
    transform 260ms var(--ease),
    color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background 260ms var(--ease);
}

.reason-pill span {
  color: var(--text-dark);
  min-height: 36px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.reason-pill:hover {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
}

.reason-pill:hover svg,
.reason-pill:hover i {
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 1), rgba(213, 233, 255, 0.72) 58%, rgba(77, 145, 232, 0.42)),
    rgba(237, 246, 255, 1);
  box-shadow:
    0 18px 34px rgba(21, 89, 186, 0.2),
    0 0 0 7px rgba(77, 145, 232, 0.08);
  transform: translateY(-3px) scale(1.1);
}

.lead-section.section-shell {
  padding-top: clamp(12px, 2vw, 26px);
  padding-bottom: clamp(12px, 2vw, 26px);
}

.lead-stack {
  display: grid;
  gap: clamp(12px, 1.6vw, 20px);
}

.developer-strip {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 3vw, 34px);
}

.developer-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 233, 255, 0.5), transparent 34%),
    linear-gradient(90deg, rgba(237, 246, 255, 0.45), transparent 22%, transparent 78%, rgba(237, 246, 255, 0.45));
}

.developer-strip h2 {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(14px, 1.8vw, 20px);
  color: var(--navy-900);
  font-family: var(--primary-font);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

.developer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 60px);
}

.developer-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 32px);
  min-height: 92px;
}

.developer-card + .developer-card {
  border-left: 1px solid rgba(31, 91, 169, 0.12);
  padding-left: clamp(22px, 4vw, 60px);
}

.developer-logo-box {
  display: grid;
  place-items: center start;
}

.developer-logo-box img {
  width: 100%;
  max-width: 180px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.developer-logo-box img[src*="hines"] {
  max-width: 126px;
}

.developer-card h3 {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: var(--primary-font);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 900;
  line-height: 1.12;
}

.developer-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(13px, 0.9vw, 14px);
  font-weight: 500;
  line-height: 1.65;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  max-width: none;
  margin-inline: 0;
  align-items: stretch;
}

.action-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 2vw, 28px);
  align-items: center;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(22, 68, 137, 0.1);
  overflow: hidden;
}

.action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, rgba(213, 233, 255, 0.46), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.lead-section .action-card h2,
.lead-section .action-card p {
  margin-bottom: 0;
}

.lead-section .action-card .btn {
  width: min(270px, 72%);
  min-width: 0;
  overflow: hidden;
}

.lead-section .action-card .btn::before,
.lead-section .action-card .btn::after {
  right: -16%;
  left: -16%;
}

.action-card-media {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
  background: var(--blue-100);
  box-shadow: inset 0 0 0 1px rgba(31, 91, 169, 0.1);
}

.action-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brochure-media {
  display: grid;
  place-items: center;
  aspect-ratio: 0.76 / 1;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.98), rgba(232, 244, 255, 0.72));
}

.brochure-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow:
    0 18px 34px rgba(22, 68, 137, 0.18),
    0 0 0 1px rgba(31, 91, 169, 0.08);
}

.action-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 14px;
}

.action-card-copy h2 {
  color: var(--navy-900);
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.08;
}

.action-card-copy p {
  color: var(--text-muted);
  font-size: clamp(13px, 0.96vw, 15px);
  line-height: 1.65;
}

.action-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.action-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: var(--blue-700);
  clip-path: polygon(14% 48%, 36% 72%, 84% 18%, 96% 31%, 37% 92%, 4% 59%);
}

.lead-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  align-self: end;
}

.field {
  display: grid;
  gap: 4px;
}

.field label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(31, 91, 169, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.92));
  color: var(--text-dark);
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.field input:focus {
  border-color: rgba(77, 145, 232, 0.78);
  background: var(--white);
  box-shadow:
    0 0 0 3px rgba(77, 145, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  outline: none;
}

.lead-form-card .btn {
  width: 100%;
  min-height: 48px;
}

.field input::placeholder {
  color: rgba(101, 116, 138, 0.78);
  font-weight: 800;
}

.field input[aria-invalid="true"] {
  border-color: #c93737;
  box-shadow: 0 0 0 3px rgba(201, 55, 55, 0.12);
}

.field-error {
  min-height: 0;
  color: #c93737;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.lead-form-card .field-error {
  color: #ffd5d5;
}

.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
  margin-bottom: 6px;
}

.visit-card {
  padding-bottom: 24px;
}

.calendar-illustration {
  position: relative;
  justify-self: end;
  align-self: end;
  width: 112px;
  height: 112px;
  margin: 0 6px 4px 0;
  color: rgba(21, 89, 186, 0.15);
  transform: rotate(-8deg);
}

.calendar-illustration svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.calendar-illustration span {
  position: absolute;
  left: 50%;
  top: 56%;
  color: var(--blue-700);
  font-size: 44px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.plan-card img {
  align-self: end;
  width: 118%;
  max-width: none;
  margin: 0 -22% -24px 4%;
  filter: drop-shadow(0 18px 24px rgba(6, 28, 71, 0.16));
}

.faq-cta-section.section-shell {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
}

.faq-cta-section .container {
  width: var(--container);
}

.faq-panel {
  width: 100%;
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(31, 91, 169, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 233, 255, 0.54), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.92));
  box-shadow: 0 22px 60px rgba(22, 68, 137, 0.1);
}

.faq-panel .eyebrow.center {
  margin-bottom: 6px;
}

.faq-panel .center-heading {
  margin-bottom: clamp(20px, 2.6vw, 32px);
  color: #050505;
}

.accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  counter-reset: faq-counter;
}

.faq-item {
  position: relative;
  counter-increment: faq-counter;
  border: 1px solid rgba(31, 91, 169, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 26px rgba(22, 68, 137, 0.06);
  overflow: hidden;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(21, 89, 186, 0.28);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(22, 68, 137, 0.12);
  transform: translateY(-2px);
}

.faq-item:has(button[aria-expanded="true"]) {
  border-color: rgba(21, 89, 186, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.94));
  box-shadow: 0 20px 46px rgba(21, 89, 186, 0.14);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(21, 89, 186, 0.22);
  outline-offset: -3px;
}

.faq-item button::before {
  content: counter(faq-counter) ".";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(21, 89, 186, 0.18);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.faq-item button::after {
  content: "+";
  display: grid;
  place-items: center;
  justify-self: end;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(21, 89, 186, 0.2);
  border-radius: 50%;
  background: rgba(237, 246, 255, 0.82);
  color: var(--blue-700);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
  background: var(--blue-700);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item div {
  padding: 0 58px 18px 66px;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(31, 91, 169, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 242, 255, 0.88), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.86));
  padding: 34px 0 18px;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.site-footer::before {
  left: -12%;
  bottom: -58px;
  width: 42%;
  height: 180px;
  background:
    repeating-radial-gradient(ellipse at left bottom, transparent 0 10px, rgba(77, 145, 232, 0.12) 11px 12px, transparent 13px 19px);
  transform: rotate(3deg);
}

.site-footer::after {
  right: -9%;
  top: -110px;
  width: 34%;
  height: 230px;
  background:
    repeating-radial-gradient(ellipse at right top, transparent 0 9px, rgba(77, 145, 232, 0.12) 10px 11px, transparent 12px 18px);
  transform: rotate(-8deg);
}

.footer-simple {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.footer-tabs {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(260px, 1fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.footer-tab-card {
  display: grid;
  align-content: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--navy-900);
  font-style: normal;
}

.footer-tab-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.footer-tab-card h2::after {
  display: none;
}

.footer-tab-card h2 span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  box-shadow: 0 10px 22px rgba(9, 43, 100, 0.14);
}

.footer-tab-card h2 svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-brand-card {
  justify-items: start;
  gap: 12px;
}

.footer-brand-card .site-logo-footer {
  width: min(230px, 100%);
}

.footer-brand-card h2 {
  margin: 8px 0 0;
  color: var(--navy-900);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.footer-brand-card h2::after {
  display: none;
}

.footer-brand-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  border-bottom: 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.footer-links a:last-child {
  border-bottom: 0;
}

.footer-links a svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--blue-700);
  fill: currentColor;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue-700);
  transform: translateX(4px);
}

.footer-contact a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 46px;
  border-bottom: 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease),
    border-color 180ms var(--ease);
}

.footer-contact a:last-child {
  border-bottom: 0;
}

.footer-contact a > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 91, 169, 0.16);
  border-radius: 9px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.44);
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  border-color: transparent;
  border-radius: 10px;
  color: var(--blue-700);
  background: rgba(232, 244, 255, 0.5);
  box-shadow: 0 10px 22px rgba(21, 89, 186, 0.1);
  transform: translateX(4px);
}

.footer-contact a:hover > span,
.footer-contact a:focus-visible > span {
  border-color: var(--blue-700);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  transform: scale(1.04);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(31, 91, 169, 0.14);
  padding-top: 14px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom > span {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom button {
  border: 0;
  padding: 0;
  color: var(--blue-700);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom button:hover,
.footer-bottom button:focus-visible {
  color: var(--navy-900);
}

.footer-bottom > span:last-child i {
  width: 1px;
  height: 18px;
  background: rgba(31, 91, 169, 0.28);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 34px;
  z-index: 90;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(22, 139, 85, 0.3);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.float-whatsapp {
  background: #168b55;
}

.float-whatsapp i {
  font-size: 28px;
  line-height: 1;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  box-shadow: 0 22px 42px rgba(22, 139, 85, 0.38);
  transform: translateY(-3px) scale(1.04);
}

.modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(77, 145, 232, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.97);
  padding: 30px 30px 28px;
  box-shadow: 0 28px 72px rgba(6, 28, 71, 0.24);
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  transition:
    transform 220ms var(--ease),
    opacity 220ms var(--ease);
  backdrop-filter: blur(18px);
}

.modal-dialog:focus {
  outline: none;
}

.modal.is-open .modal-dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
}

.modal-dialog h2 {
  max-width: calc(100% - 42px);
  margin-bottom: 0;
  color: var(--navy-900);
  font-family: var(--primary-font);
  font-size: clamp(24px, 4vw, 31px);
  line-height: 1.08;
}

.modal-copy {
  margin-bottom: 22px;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-dialog .btn[type="submit"] {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  border-radius: 999px;
}

.modal-dialog .form-status {
  margin-top: 2px;
}

@media (max-width: 520px) {
  .modal-dialog {
    width: min(390px, calc(100vw - 24px));
    padding: 26px 18px 22px;
    border-radius: 16px;
  }

  .modal-close {
    right: 12px;
    top: 12px;
  }

  .modal-dialog h2 {
    font-size: 24px;
  }
}

.legal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  border: 1px solid rgba(31, 91, 169, 0.15);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 88%, rgba(225, 242, 255, 0.92), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(232, 246, 255, 0.96), transparent 28%),
    rgba(255, 255, 255, 0.98);
  padding: 28px 28px 24px;
  box-shadow: 0 30px 80px rgba(6, 28, 71, 0.26);
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  transition:
    transform 220ms var(--ease),
    opacity 220ms var(--ease);
  backdrop-filter: blur(18px);
}

.legal-modal.is-open .legal-dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.legal-dialog::before,
.legal-dialog::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.48;
}

.legal-dialog::before {
  right: -90px;
  top: -70px;
  width: 260px;
  height: 180px;
  background:
    repeating-radial-gradient(ellipse at right top, transparent 0 9px, rgba(77, 145, 232, 0.14) 10px 11px, transparent 12px 18px);
}

.legal-dialog::after {
  left: -120px;
  bottom: -80px;
  width: 260px;
  height: 160px;
  background:
    repeating-radial-gradient(ellipse at left bottom, transparent 0 9px, rgba(77, 145, 232, 0.12) 10px 11px, transparent 12px 18px);
}

.legal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
}

.legal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal-shield {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  color: var(--navy-900);
}

.legal-shield svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.legal-dialog h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: clamp(26px, 6vw, 34px);
  line-height: 1.05;
  text-align: center;
}

.legal-dialog h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue-700);
  transform: translateX(-50%) rotate(45deg);
}

.legal-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.legal-list p {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.55;
}

.legal-list p > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--blue-700);
  background: rgba(231, 243, 255, 0.78);
}

.legal-list svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.legal-actions .btn {
  min-width: 0;
  min-height: 48px;
  width: 100%;
}

.toast-stack {
  position: fixed;
  right: 20px;
  top: calc(var(--header-height) + 16px);
  z-index: 160;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
}

.toast {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  transform: translateY(-10px);
  opacity: 0;
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
}

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

.toast[data-type="success"] {
  border-color: rgba(22, 139, 85, 0.3);
}

.toast[data-type="error"] {
  border-color: rgba(201, 55, 55, 0.32);
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.thank-you-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 28, 71, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.thank-you-modal-backdrop[hidden] {
  display: none;
}

.thank-you-modal-backdrop.is-visible {
  opacity: 1;
}

.thank-you-modal-card {
  position: relative;
  width: min(100%, 460px);
  overflow: hidden;
  padding: 38px 34px 32px;
  border: 1px solid rgba(31, 91, 169, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(36, 162, 99, 0.1), transparent 36%),
    linear-gradient(180deg, var(--white) 0%, var(--ice) 100%);
  box-shadow: 0 30px 90px rgba(6, 28, 71, 0.28);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms var(--ease);
}

.thank-you-modal-backdrop.is-visible .thank-you-modal-card {
  transform: translateY(0) scale(1);
}

.thank-you-modal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), #24a263);
}

.thank-you-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--text-muted);
  font: 900 20px/1 var(--sans);
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    background 180ms var(--ease);
}

.thank-you-modal-close:hover,
.thank-you-modal-close:focus-visible {
  border-color: rgba(21, 89, 186, 0.35);
  background: var(--blue-100);
  color: var(--blue-700);
  outline: none;
}

.thank-you-modal-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border: 1px solid rgba(36, 162, 99, 0.28);
  border-radius: 50%;
  background: rgba(36, 162, 99, 0.1);
  color: #168b55;
  font-size: 30px;
  font-weight: 900;
}

.thank-you-modal-eyebrow {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thank-you-modal-card h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.12;
}

.thank-you-modal-message {
  max-width: 360px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.thank-you-modal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.thank-you-modal-note i {
  color: #168b55;
}

.thank-you-modal-action {
  width: 100%;
  min-height: 46px;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.thank-you-modal-action:hover,
.thank-you-modal-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(21, 89, 186, 0.22);
  outline: none;
}

@media (max-width: 520px) {
  .thank-you-modal-backdrop {
    padding: 16px;
  }

  .thank-you-modal-card {
    padding: 34px 22px 24px;
    border-radius: 14px;
  }

  .thank-you-modal-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    font-size: 26px;
  }

  .thank-you-modal-message {
    font-size: 13px;
  }
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 560ms var(--ease),
    transform 560ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.magnetic-card.reveal.is-visible {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) rotateX(var(--magnet-rx, 0deg)) rotateY(var(--magnet-ry, 0deg));
}

@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 56px, 1120px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 540px);
  }

  .hero {
    min-height: clamp(600px, 84svh, 720px);
    padding-top: calc(var(--header-height) + 10px);
    background-position: 62% center;
  }

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

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

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

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

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

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

  .developer-grid {
    gap: 28px;
  }

  .developer-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .developer-card + .developer-card {
    padding-left: 28px;
  }

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

@media (max-width: 860px) {
  .section-shell {
    padding: 64px 0;
  }

  .section-shell:not(.hero)::before {
    top: -180px;
    right: -360px;
    width: 720px;
    height: 390px;
    opacity: 0.55;
  }

  .section-shell:not(.hero)::after {
    left: -390px;
    bottom: -190px;
    width: 760px;
    height: 400px;
    opacity: 0.5;
  }

  .header-call {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
  }

  .brand {
    justify-self: start;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero {
    padding-top: calc(var(--header-height) + 16px);
    align-items: flex-start;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.18) 100%),
      url("../images/hero.webp") 66% top / auto 100% no-repeat;
  }

  .hero-price-tab {
    top: calc(var(--header-height) + 12px);
    right: 8px;
    min-height: 38px;
    padding: 7px 10px 7px 12px;
    gap: 8px;
  }

  .hero-price-tab::before {
    height: 18px;
  }

  .hero-price-tab span {
    font-size: 9px;
  }

  .hero-price-tab strong {
    font-size: 22px;
  }

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

  .hero-copy {
    max-width: 520px;
  }

  .hero-copy h2,
  .hero-copy > p {
    max-width: 500px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-trust-points {
    gap: 10px 14px;
  }

  .split-grid,
  .location-grid,
  .floor-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .footer-simple {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

  .footer-brand-card {
    grid-column: 1 / -1;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

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

  .developer-card + .developer-card {
    border-top: 1px solid rgba(31, 91, 169, 0.12);
    border-left: 0;
    padding-top: 22px;
    padding-left: 0;
  }

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

  .floor-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "preview";
    overflow: hidden;
  }

  .floor-preview {
    width: min(100%, 430px);
    margin: 10px auto 0;
  }

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

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

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

  .faq-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .reason-pill {
    min-height: 140px;
    padding: 20px 14px;
  }

  .reason-pill svg,
  .reason-pill i {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .stat-card {
    min-height: 88px;
  }

  .radar {
    height: 370px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 32px, 100%);
    --header-height: 70px;
  }

  .site-footer {
    padding: 20px 0 16px;
  }

  .footer-simple {
    gap: 16px;
  }

  .footer-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .footer-brand-card {
    grid-column: 1 / -1;
  }

  .footer-tab-card {
    padding: 14px 0;
    text-align: left;
  }

  .footer-tab-card h2 {
    font-size: 19px;
  }

  .footer-simple-disclaimer {
    margin-top: -2px;
    font-size: 11px;
  }

  .footer-bottom {
    padding-top: 12px;
    font-size: 11px;
  }

  .footer-bottom > span:last-child {
    flex-wrap: wrap;
    justify-content: center;
  }

  .legal-dialog {
    padding: 26px 18px 20px;
  }

  .legal-list p {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    font-size: 12px;
  }

  .legal-list p > span {
    width: 38px;
    height: 38px;
  }

  .legal-actions {
    gap: 10px;
  }

  .brand-title {
    font-size: 25px;
  }

  .menu-drawer {
    gap: 12px;
    width: min(340px, 88vw);
    padding: 18px;
  }

  .menu-head {
    gap: 12px;
  }

  .menu-head .site-logo-mobile {
    width: 158px;
  }

  .menu-head button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .menu-drawer nav {
    gap: 4px;
  }

  .menu-drawer nav a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .menu-drawer .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .brand-partners,
  .brand-location {
    font-size: 8px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 56px);
  }

  .hero-logo-lockup {
    gap: 12px;
    width: 232px;
    margin-bottom: 4px;
  }

  .hero-logo-lockup img:first-child {
    width: 122px;
  }

  .hero-logo-lockup img:last-child {
    width: 68px;
  }

  .hero-logo-lockup span {
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 54%, rgba(255, 255, 255, 0.64) 100%),
      url("../images/hero.webp") 67% top / auto 100% no-repeat;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 52px;
  }

  .hero-copy h2,
  .hero-copy > p {
    max-width: 100%;
  }

  .hero-copy h2,
  .center-heading,
  .section-heading,
  .intro-copy h2,
  .location-copy h2,
  .faq-panel h2 {
    line-height: 1.03;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .faq-panel {
    padding: 14px;
    border-radius: 14px;
  }

  .accordion {
    gap: 10px;
  }

  .faq-item button {
    grid-template-columns: 32px minmax(0, 1fr) 30px;
    gap: 9px;
    min-height: 60px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .faq-item button::before {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .faq-item button::after {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .faq-item div {
    padding: 0 42px 14px 53px;
  }

  .faq-item p {
    font-size: 12px;
    line-height: 1.6;
  }

  .hero-trust-points {
    display: grid;
    gap: 10px;
  }

  .hero-trust-points li {
    min-height: 66px;
    padding: 8px 5px;
    font-size: 8px;
  }

  .hero-trust-points i,
  .hero-trust-points svg {
    margin-bottom: 6px;
    font-size: 21px;
    width: 21px;
    height: 21px;
  }

  .btn,
  .header-call {
    width: 100%;
    min-height: 48px;
  }

  .hero-price-tab {
    top: calc(var(--header-height) + 10px);
    right: 6px;
    max-width: calc(100vw - 24px);
  }

  .hero-price-tab span {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lead-section .action-card .btn {
    width: min(260px, 78%);
  }

  .stats-grid,
  .benefit-row,
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reason-grid {
    gap: 14px;
  }

  .reason-pill {
    min-height: 132px;
  }

  .amenity-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 4);
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(102px, auto));
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .amenity-grid::-webkit-scrollbar {
    height: 4px;
  }

  .amenity-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(21, 89, 186, 0.32);
  }

  .amenities-section .amenity-card {
    min-width: 0;
    min-height: 102px;
    scroll-snap-align: start;
  }

  .action-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px 20px;
    align-items: start;
  }

  .action-feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .action-card-media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    justify-self: center;
  }

  .action-card-media.brochure-media {
    width: min(210px, 72vw);
    max-width: 210px;
    aspect-ratio: 0.76 / 1;
    padding: 8px;
  }

  .action-card-copy {
    gap: 13px;
  }

  .lead-section .action-card .btn {
    width: 100%;
    max-width: none;
    justify-self: start;
  }

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

  .difference-card {
    min-height: 230px;
  }

  .difference-card-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 14px 10px 8px;
    text-align: center;
  }

  .difference-icon {
    width: 42px;
    height: 42px;
  }

  .difference-icon svg {
    width: 19px;
    height: 19px;
  }

  .difference-card h3 {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .difference-card p {
    font-size: 10px;
    line-height: 1.45;
  }

  .brand-lockup {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    margin: auto 10px 0;
    padding-top: 10px;
  }

  .brand-lockup span {
    width: 48px;
    height: 1px;
  }

  .brand-logo {
    max-height: 38px;
    object-position: center;
  }

  .location-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .location-points li {
    min-height: 64px;
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.25;
  }

  .location-points i {
    font-size: 15px;
  }

  .amenity-card {
    min-height: 88px;
  }

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

  .overview-title {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .spec-grid div {
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 104px;
    padding: 10px 6px;
    border: 1px solid rgba(31, 91, 169, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
    text-align: center;
  }

  .spec-grid dt {
    display: grid;
    justify-items: center;
    gap: 7px;
    font-size: 8px;
    letter-spacing: 0.06em;
    line-height: 1.15;
  }

  .spec-icon {
    position: static;
    width: 26px;
    height: 26px;
    transform: none;
  }

  .spec-icon i {
    font-size: 20px;
  }

  .spec-grid dd {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }

  .floor-card {
    grid-template-columns: minmax(0, 1fr) minmax(116px, 0.78fr);
    grid-template-areas:
      "title title"
      "copy preview";
    gap: 10px;
    align-items: center;
    min-height: auto;
    padding: 18px 14px;
  }

  .floor-copy {
    min-width: 0;
  }

  .floor-title {
    font-size: clamp(16px, 5vw, 24px);
  }

  .floor-card p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .floor-card .check-list {
    gap: 8px;
    margin-bottom: 16px;
  }

  .floor-card .check-list li {
    padding-left: 18px;
    font-size: 11px;
    line-height: 1.35;
  }

  .floor-card .check-list li::before {
    width: 11px;
    height: 11px;
  }

  .floor-card .btn-small {
    min-width: 134px;
    min-height: 38px;
    padding: 0 12px;
    gap: 8px;
    font-size: 10px;
  }

  .floor-preview {
    width: 100%;
    min-height: 176px;
    margin: 0;
    border-radius: 14px;
  }

  .floor-preview img {
    width: 220px;
    max-width: 180%;
  }

  .floor-view-button {
    gap: 6px;
    font-size: 10px;
  }

  .floor-view-icon {
    width: 54px;
    height: 54px;
    border-width: 2px;
  }

  .floor-view-icon i {
    font-size: 22px;
  }

  .radar {
    height: 340px;
  }

  .radar li {
    max-width: 108px;
    font-size: 10px;
  }

  .final-actions {
    display: grid;
  }

  .floating-actions {
    right: 12px;
    bottom: 28px;
  }

  .toast-stack {
    left: 14px;
    right: 14px;
    width: auto;
  }
}

@media (max-width: 420px) {
  .stats-grid,
  .benefit-row,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 82px;
  }

  .floor-title {
    font-size: clamp(15px, 4.35vw, 18px);
  }

  .action-card,
  .faq-panel,
  .difference-card-copy,
  .overview-card {
    padding: 20px;
  }

  .brand-lockup {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
    padding-top: 16px;
  }

  .brand-lockup span {
    width: 86px;
    height: 1px;
  }

  .brand-logo-conscient {
    max-width: 170px;
  }

  .brand-logo-hines {
    max-width: 106px;
  }
}

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

  .wave-layer,
  .magnetic-card,
  .floor-card,
  .hero-price-tab {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}


/* JR Real Buildwell shared site branding */
.site-header .site-logo {
  width: clamp(205px, 17vw, 245px);
}
.menu-head .site-logo-mobile {
  width: 190px;
}
.footer-brand-card .site-logo-footer {
  width: min(260px, 100%);
}
.brand--mobile-home {
  display: inline-flex;
  text-decoration: none;
}
@media (max-width: 760px) {
  .site-header .site-logo {
    width: 184px;
  }
  .menu-head .site-logo-mobile {
    width: 176px;
  }
  .footer-brand-card .site-logo-footer {
    width: min(230px, 100%);
  }
}
