:root {
  --ink-950: #031019;
  --ink-900: #071c2b;
  --ink-850: #0a2637;
  --ink-800: #0e3045;
  --blue-700: #0e6f9c;
  --blue-600: #168bb3;
  --cyan-500: #32c8d3;
  --cyan-300: #79e2e7;
  --cyan-100: #dcf8f8;
  --gold-500: #f6bd3f;
  --gold-300: #ffd675;
  --white: #ffffff;
  --cloud-50: #f8fbfc;
  --cloud-100: #eef5f7;
  --cloud-200: #dbe7eb;
  --slate-900: #182832;
  --slate-700: #3e5360;
  --slate-500: #6b7e89;
  --success: #1f916f;
  --danger: #b42318;
  --container: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --shadow-xs: 0 8px 24px rgba(3, 16, 25, 0.06);
  --shadow-sm: 0 14px 34px rgba(3, 16, 25, 0.09);
  --shadow-md: 0 24px 60px rgba(3, 16, 25, 0.13);
  --shadow-lg: 0 34px 90px rgba(3, 16, 25, 0.2);
  --ease: 220ms cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--slate-900);
  background: var(--cloud-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--ink-950);
  background: var(--cyan-300);
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-900);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 2.25rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.eyebrow,
.small-kicker,
.showcase-label,
.placeholder-label,
.depth-label {
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(2.3rem, 5vw, 4rem);
}

.section-heading h2 {
  max-width: 720px;
  margin-top: 0.7rem;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--slate-500);
  font-size: 1.05rem;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 3rem;
}

.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink-900);
  border-radius: 999px;
  transform: translateY(-180%);
}

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

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

/* Announcement and header */
.announcement-bar {
  position: relative;
  z-index: 1100;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
}

.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.announcement-inner strong {
  color: var(--cyan-300);
}

.announcement-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--white);
  background: rgba(7, 28, 43, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 28, 43, 0.96);
  box-shadow: 0 12px 30px rgba(3, 16, 25, 0.2);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  color: var(--ink-950);
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(246, 189, 63, 0.2);
}

.brand-mark::after {
  position: absolute;
  width: 54px;
  height: 14px;
  right: -18px;
  bottom: 5px;
  content: "";
  border: 2px solid rgba(7, 28, 43, 0.3);
  border-radius: 50%;
}

.brand-wave {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-copy strong {
  margin-top: 0.18rem;
  color: var(--cyan-300);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

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

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
  transition: color var(--ease);
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-300);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible,
.primary-nav > a[aria-current="page"] {
  color: var(--white);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  padding: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.2rem;
  color: var(--ink-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(246, 189, 63, 0.2);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 38px rgba(246, 189, 63, 0.28);
  filter: brightness(1.04);
  transform: translateY(-3px);
}

.button-small {
  min-height: 42px;
  padding: 0.62rem 1rem;
  font-size: 0.86rem;
}

.button-large {
  min-height: 56px;
  padding: 0.95rem 1.35rem;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button-dark {
  color: var(--white);
  background: var(--ink-900);
  border-color: var(--ink-900);
  box-shadow: 0 14px 30px rgba(7, 28, 43, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 4%, rgba(50, 200, 211, 0.12), transparent 30%),
    linear-gradient(135deg, var(--ink-950), var(--ink-900) 52%, #0e3c51);
}

.hero-grid-overlay,
.subpage-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  width: 460px;
  height: 460px;
  top: -220px;
  right: 10%;
  background: rgba(50, 200, 211, 0.12);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -120px;
  background: rgba(246, 189, 63, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(5.5rem, 9vw, 8.5rem);
}

.hero-content h1 {
  max-width: 740px;
  margin-top: 1rem;
  color: var(--white);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(115deg, var(--cyan-300), var(--white) 42%, var(--gold-300));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.48rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-300);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(121, 226, 231, 0.12);
}

.hero-copy {
  max-width: 650px;
  margin: 1.45rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-chips i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: var(--cyan-300);
  border-radius: 50%;
  font-size: 0.68rem;
  font-style: normal;
}

.disclosure {
  max-width: 700px;
  margin-top: 1.5rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.52);
  border-left: 2px solid rgba(246, 189, 63, 0.75);
  font-size: 0.78rem;
}

/* Hero showcase */
.hero-showcase {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.showcase-glass {
  position: relative;
  width: min(100%, 500px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.showcase-glass::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.showcase-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-header > div {
  display: grid;
  gap: 0.2rem;
}

.showcase-label {
  color: var(--cyan-300);
}

.showcase-header strong {
  font-size: 1.18rem;
}

.availability-pill {
  padding: 0.42rem 0.65rem;
  color: var(--ink-950);
  background: var(--gold-300);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
}

.boat-scene {
  position: relative;
  height: 310px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, #356f87 0%, #75b9c8 50%, #10384b 51%, #082536 100%);
}

.scene-sun {
  position: absolute;
  width: 82px;
  height: 82px;
  top: 36px;
  right: 54px;
  background: radial-gradient(circle, #fff9d7 0 38%, #ffd675 42%, rgba(255, 214, 117, 0.1) 72%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 214, 117, 0.45);
}

.scene-mountain {
  position: absolute;
  bottom: 48%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.mountain-one {
  width: 320px;
  height: 150px;
  left: -70px;
  background: #24586c;
  opacity: 0.8;
}

.mountain-two {
  width: 250px;
  height: 120px;
  right: -30px;
  background: #1a475b;
}

.boat-silhouette {
  position: absolute;
  z-index: 4;
  width: 280px;
  height: 115px;
  right: 75px;
  bottom: 65px;
}

.boat-hull {
  position: absolute;
  width: 250px;
  height: 54px;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #ffffff, #d9edf0);
  border-radius: 10px 18px 70px 38px;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 19% 100%);
  box-shadow: 0 18px 30px rgba(2, 14, 22, 0.36);
}

.boat-cabin {
  position: absolute;
  width: 115px;
  height: 54px;
  right: 62px;
  bottom: 45px;
  background: linear-gradient(130deg, #eafafb 0 35%, #1a5067 36% 68%, #ffffff 69%);
  border-radius: 34px 34px 8px 8px;
  clip-path: polygon(22% 0, 80% 0, 100% 100%, 0 100%);
}

.boat-trim {
  position: absolute;
  width: 190px;
  height: 5px;
  right: 28px;
  bottom: 26px;
  background: var(--cyan-500);
  border-radius: 999px;
}

.water-line {
  position: absolute;
  right: -80px;
  left: -80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.water-line-one { bottom: 44px; transform: rotate(-2deg); }
.water-line-two { bottom: 27px; transform: rotate(1deg); }
.water-line-three { bottom: 10px; transform: rotate(-1deg); opacity: 0.65; }

.showcase-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.showcase-metrics > div {
  min-height: 105px;
  display: grid;
  align-content: center;
  gap: 0.15rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.showcase-metrics > div:last-child {
  border-right: 0;
}

.showcase-metrics span {
  color: var(--cyan-300);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showcase-metrics strong {
  font-size: 0.95rem;
}

.showcase-metrics small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.floating-card > div {
  display: grid;
  gap: 0.06rem;
}

.floating-card strong {
  font-size: 0.78rem;
}

.floating-card small {
  color: var(--slate-500);
  font-size: 0.65rem;
}

.floating-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: var(--cyan-100);
  border-radius: 10px;
  font-weight: 900;
}

.floating-card-top {
  top: 36px;
  right: -32px;
}

.floating-card-bottom {
  bottom: 26px;
  left: -38px;
}

/* Proof band */
.proof-band {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: var(--ink-900);
  background: linear-gradient(110deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 20px 45px rgba(7, 28, 43, 0.14);
}

.proof-band-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-band-grid > div {
  display: grid;
  align-content: center;
  gap: 0.15rem;
  padding: 1.25rem 1.4rem;
  border-right: 1px solid rgba(7, 28, 43, 0.16);
}

.proof-band-grid > div:last-child {
  border-right: 0;
}

.proof-number {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.proof-band-grid strong {
  font-size: 0.92rem;
}

.proof-band-grid small {
  color: rgba(7, 28, 43, 0.68);
  font-size: 0.72rem;
}

/* Service cards */
.services-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(50, 200, 211, 0.08), transparent 25%),
    var(--cloud-50);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 1.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 28, 43, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.feature-card::before {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -90px;
  bottom: -100px;
  content: "";
  background: radial-gradient(circle, rgba(50, 200, 211, 0.18), transparent 70%);
}

.feature-card:hover {
  border-color: rgba(50, 200, 211, 0.36);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  color: var(--ink-900);
  background: linear-gradient(145deg, var(--cyan-100), #f5ffff);
  border: 1px solid rgba(50, 200, 211, 0.2);
  border-radius: 16px;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-number {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  color: var(--cloud-200);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin-bottom: 0.7rem;
}

.feature-card p {
  color: var(--slate-500);
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

/* Transformation */
.transformation-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.transformation-section::before {
  position: absolute;
  width: 470px;
  height: 470px;
  left: -260px;
  bottom: -230px;
  content: "";
  background: radial-gradient(circle, rgba(50, 200, 211, 0.12), transparent 70%);
}

.transformation-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.transformation-copy h2 {
  margin: 0.75rem 0 1.3rem;
}

.transformation-copy > p:not(.eyebrow) {
  color: var(--slate-500);
}

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

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--slate-700);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue-700);
  content: "✓";
  font-weight: 900;
}

.before-after-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--cloud-100);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.before-after-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--white);
  border-radius: 23px;
}

.before-card {
  background:
    linear-gradient(to top, rgba(3, 16, 25, 0.94), rgba(3, 16, 25, 0.04)),
    repeating-linear-gradient(120deg, #394854 0 18px, #50606a 18px 36px);
}

.after-card {
  background:
    linear-gradient(to top, rgba(3, 16, 25, 0.82), rgba(3, 16, 25, 0.03)),
    linear-gradient(145deg, #0d6e99, #32c8d3 58%, #c7fbfb);
}

.image-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.6rem;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after-card strong {
  font-size: 1.18rem;
}

.before-after-card small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.66);
}

.before-after-divider {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: var(--gold-300);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.surface-texture,
.surface-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.surface-texture {
  opacity: 0.35;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.22) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 20%, rgba(255,255,255,.18) 0 3px, transparent 4px);
  background-size: 45px 45px, 70px 70px;
}

.surface-shine {
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 44%, transparent 56%);
  transform: translateX(-70%);
}

/* Process */
.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(50, 200, 211, 0.18), transparent 27%),
    linear-gradient(140deg, var(--ink-950), var(--ink-900));
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .eyebrow {
  color: var(--cyan-300);
}

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

.process-card {
  position: relative;
  min-height: 310px;
  padding: 1.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.process-card::after {
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -70px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.025);
}

.process-step {
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 3.2rem 0 1.5rem;
  color: var(--ink-950);
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  border-radius: 18px;
  font-size: 1.35rem;
  font-weight: 900;
}

.process-card p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
}

/* Quote factors */
.quote-factors-section {
  background: var(--cloud-100);
}

.quote-factors-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.quote-factors-visual {
  position: relative;
  min-height: 520px;
}

.depth-card {
  position: absolute;
  width: min(100%, 420px);
  height: 390px;
  border-radius: 32px;
}

.depth-card-back {
  top: 78px;
  left: 52px;
  background: rgba(14, 111, 156, 0.16);
  border: 1px solid rgba(14, 111, 156, 0.14);
  transform: rotate(8deg);
}

.depth-card-middle {
  top: 52px;
  left: 26px;
  background: rgba(50, 200, 211, 0.23);
  border: 1px solid rgba(50, 200, 211, 0.18);
  transform: rotate(4deg);
}

.depth-card-front {
  top: 24px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(50, 200, 211, 0.24), transparent 32%),
    linear-gradient(145deg, var(--ink-950), var(--ink-800));
  box-shadow: var(--shadow-lg);
}

.depth-label {
  color: var(--cyan-300);
}

.depth-card-front strong {
  max-width: 300px;
  margin-top: 0.8rem;
  font-size: 2.3rem;
  line-height: 1.05;
}

.factor-bars {
  display: grid;
  gap: 0.65rem;
  margin: 2.4rem 0 1.2rem;
}

.factor-bars span {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.factor-bars span::after {
  width: var(--bar);
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(90deg, var(--cyan-300), var(--gold-300));
  border-radius: inherit;
}

.depth-card-front small {
  color: rgba(255, 255, 255, 0.54);
}

.quote-factors-copy h2 {
  margin: 0.75rem 0 1.25rem;
}

.quote-factors-copy > p:not(.eyebrow) {
  color: var(--slate-500);
}

.factor-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.factor-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 28, 43, 0.07);
  border-radius: 16px;
}

.factor-list > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink-900);
  background: var(--cyan-100);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 900;
}

.factor-list p {
  display: grid;
  gap: 0.12rem;
}

.factor-list small {
  color: var(--slate-500);
}

/* Area */
.area-section {
  background: var(--white);
}

.area-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.area-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 28, 43, 0.03), rgba(7, 28, 43, 0.03)),
    linear-gradient(145deg, #d7f0f1, #f7fbfc 45%, #dce9ed);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(7, 28, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 28, 43, 0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  transform: rotate(-8deg) scale(1.15);
}

.area-map::before,
.area-map::after {
  position: absolute;
  content: "";
  border-radius: 45% 55% 56% 44% / 54% 42% 58% 46%;
}

.area-map::before {
  width: 370px;
  height: 360px;
  top: 60px;
  left: 80px;
  background: #afd9dd;
  border: 8px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(7, 28, 43, 0.08);
  transform: rotate(-14deg);
}

.area-map::after {
  width: 210px;
  height: 180px;
  right: 34px;
  bottom: 36px;
  background: rgba(255, 255, 255, 0.55);
}

.map-pin {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  background: var(--gold-500);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(7, 28, 43, 0.22);
}

.pin-one { top: 32%; left: 38%; }
.pin-two { top: 48%; left: 52%; }
.pin-three { top: 59%; left: 33%; }
.pin-four { top: 28%; left: 61%; }

.map-label {
  position: absolute;
  z-index: 4;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: var(--ink-900);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 850;
}

.area-list {
  display: grid;
  gap: 0.8rem;
}

.area-list a {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 0.2rem 1rem;
  padding: 1.4rem;
  background: var(--cloud-50);
  border: 1px solid var(--cloud-200);
  border-radius: 18px;
  text-decoration: none;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.area-list a:hover {
  border-color: rgba(50, 200, 211, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.area-list span {
  color: var(--ink-900);
  font-weight: 850;
}

.area-list small {
  color: var(--slate-500);
}

.area-list b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--blue-700);
  font-size: 1.25rem;
}

/* FAQ */
.faq-preview-section {
  background: var(--cloud-100);
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.faq-preview-grid .section-heading {
  position: sticky;
  top: 130px;
}

.faq-preview-grid .section-heading h2 {
  margin: 0.75rem 0 1.1rem;
}

.faq-preview-grid .section-heading > p {
  margin-bottom: 1.5rem;
  color: var(--slate-500);
}

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

details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 28, 43, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-xs);
}

summary {
  position: relative;
  padding: 1.35rem 3.5rem 1.35rem 1.35rem;
  color: var(--ink-900);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 1.1rem;
  top: 50%;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--ink-900);
  background: var(--cyan-100);
  border-radius: 10px;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "–";
}

details p {
  padding: 0 1.35rem 1.35rem;
  color: var(--slate-500);
}

/* Final CTA */
.final-cta-section {
  padding: 1.3rem 0;
  background: var(--cloud-50);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(50, 200, 211, 0.22), transparent 30%),
    linear-gradient(135deg, var(--ink-950), var(--ink-800));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.final-cta::after {
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  bottom: -140px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025);
}

.final-cta h2 {
  max-width: 720px;
  margin-top: 0.75rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.final-cta .eyebrow {
  color: var(--cyan-300);
}

.final-cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
}

/* Subpages */
.subpage-body {
  background: var(--cloud-50);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(50, 200, 211, 0.18), transparent 26%),
    linear-gradient(140deg, var(--ink-950), var(--ink-900) 58%, var(--ink-800));
}

.subpage-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.subpage-copy h1 {
  max-width: 760px;
  margin: 0.7rem 0 1.2rem;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.subpage-copy > p:last-child {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
}

.subpage-copy .eyebrow {
  color: var(--cyan-300);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.subpage-orbit {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit-ring-large {
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.025),
    0 0 0 90px rgba(255, 255, 255, 0.018);
}

.orbit-ring-small {
  inset: 23%;
  border-color: rgba(121, 226, 231, 0.34);
}

.orbit-symbol {
  position: absolute;
  inset: 35%;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  transform: rotate(-7deg);
}

.orbit-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--cyan-300);
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.orbit-dot-one {
  top: 16%;
  left: 18%;
}

.orbit-dot-two {
  right: 12%;
  bottom: 22%;
  background: var(--gold-300);
}

.page-builder-section {
  min-height: 650px;
}

.builder-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.builder-heading h2 {
  max-width: 780px;
  margin-top: 0.7rem;
}

.draft-badge {
  flex: 0 0 auto;
  padding: 0.55rem 0.8rem;
  color: var(--slate-700);
  background: var(--cloud-100);
  border: 1px solid var(--cloud-200);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.page-builder-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.content-placeholder,
.form-placeholder {
  position: relative;
  min-height: 260px;
  padding: 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.content-placeholder-large {
  grid-row: span 2;
  min-height: 540px;
}

.placeholder-label {
  color: var(--slate-500);
}

.skeleton {
  width: 100%;
  height: 11px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--cloud-100), var(--cloud-200), var(--cloud-100));
  border-radius: 999px;
}

.skeleton-title {
  width: 68%;
  height: 28px;
  margin-top: 2rem;
}

.skeleton-title-small {
  width: 74%;
  height: 20px;
  margin-top: 2rem;
}

.skeleton-short {
  width: 58%;
}

.placeholder-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  margin-top: 2.2rem;
  color: var(--slate-500);
  background:
    linear-gradient(145deg, rgba(50, 200, 211, 0.08), rgba(14, 111, 156, 0.08)),
    var(--cloud-100);
  border: 1px dashed rgba(14, 111, 156, 0.24);
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 800;
}

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  padding: 1.2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(3, 16, 25, 0.76), transparent 65%),
    linear-gradient(145deg, #0d6e99, #32c8d3 55%, #d2fbfb);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.gallery-placeholder::before {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -120px;
  right: -80px;
  content: "";
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.04);
}

.gallery-placeholder-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder span {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 850;
}

.contact-shell-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.content-placeholder-dark {
  min-height: 520px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(50, 200, 211, 0.2), transparent 30%),
    linear-gradient(145deg, var(--ink-950), var(--ink-800));
  border-color: rgba(255,255,255,.08);
}

.content-placeholder-dark .placeholder-label {
  color: var(--cyan-300);
}

.content-placeholder-dark .skeleton {
  background: rgba(255,255,255,.11);
}

.placeholder-contact-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 3rem;
}

.placeholder-contact-lines span {
  height: 54px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.form-placeholder {
  min-height: 520px;
}

.placeholder-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.placeholder-input,
.placeholder-textarea,
.placeholder-button,
.placeholder-input-row i {
  display: block;
  background: var(--cloud-100);
  border: 1px solid var(--cloud-200);
  border-radius: 12px;
}

.placeholder-input,
.placeholder-input-row i {
  height: 56px;
  margin-top: 0.8rem;
}

.placeholder-textarea {
  height: 140px;
  margin-top: 0.8rem;
}

.placeholder-button {
  width: 180px;
  height: 52px;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 0;
  border-radius: 999px;
}

.subpage-cta {
  padding: 0 0 5rem;
}

.subpage-cta-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.subpage-cta-inner > div {
  display: grid;
  gap: 0.3rem;
}

.subpage-cta-inner strong {
  color: var(--ink-900);
}

/* Existing forms and legal compatibility */
.lead-form,
.calculator {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.88rem 0.95rem;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid var(--cloud-200);
  border-radius: 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(50, 200, 211, 0.13);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  font-weight: 550;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.form-status {
  min-height: 1.3em;
  color: var(--success);
  font-weight: 850;
}

.form-note {
  color: var(--slate-500);
  font-size: 0.82rem;
}

.legal-page {
  padding: 6rem 0;
}

.legal-page h1 {
  max-width: 760px;
}

.legal-page h2 {
  margin: 2.2rem 0 0.7rem;
  font-size: 1.7rem;
}

/* Footer */
.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 8% 10%, rgba(50, 200, 211, 0.1), transparent 25%),
    var(--ink-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 0.7fr);
  gap: 3rem;
}

.footer-intro {
  max-width: 430px;
}

.footer-intro p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column strong {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 0.84rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--cyan-300);
}

.footer-brand {
  width: fit-content;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

/* Mobile quick actions */
.mobile-cta {
  position: fixed;
  z-index: 950;
  right: 1rem;
  bottom: 1rem;
  display: none;
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}

.mobile-cta a {
  padding: 0.78rem 1rem;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-cta a:last-child {
  color: var(--ink-950);
  background: var(--gold-500);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

/* Responsive */
@media (max-width: 1060px) {
  .primary-nav {
    gap: 0.95rem;
  }

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

  .hero-content {
    max-width: 820px;
  }

  .hero-showcase {
    width: min(100%, 700px);
    justify-self: center;
  }

  .transformation-grid,
  .quote-factors-grid,
  .faq-preview-grid,
  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage-orbit {
    width: min(70vw, 340px);
    justify-self: center;
  }

  .faq-preview-grid .section-heading {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 2rem;
  }
}

@media (max-width: 920px) {
  .announcement-inner > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    color: var(--white);
    background: rgba(7, 28, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }

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

  .primary-nav a {
    padding: 0.75rem 0.8rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

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

  .proof-band-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-band-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 28, 43, 0.16);
  }

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

  .area-showcase {
    grid-template-columns: 1fr;
  }

  .heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .announcement-inner {
    min-height: 34px;
  }

  .announcement-inner a {
    display: none;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    padding-block: 4.6rem 6rem;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-showcase {
    min-height: 470px;
  }

  .showcase-glass {
    width: 100%;
  }

  .floating-card-top {
    top: 4px;
    right: -4px;
  }

  .floating-card-bottom {
    bottom: 2px;
    left: -4px;
  }

  .proof-band-grid,
  .service-grid,
  .process-grid,
  .gallery-placeholder-grid,
  .contact-shell-grid,
  .page-builder-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .proof-band-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 28, 43, 0.16);
  }

  .proof-band-grid > div:last-child {
    border-bottom: 0;
  }

  .before-after-panel {
    grid-template-columns: 1fr;
  }

  .before-after-divider {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .before-after-card {
    min-height: 300px;
  }

  .quote-factors-visual {
    min-height: 440px;
  }

  .depth-card {
    height: 340px;
  }

  .area-map {
    min-height: 390px;
  }

  .area-map::before {
    width: 280px;
    height: 270px;
    left: 40px;
  }

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

  .final-cta-actions {
    width: 100%;
  }

  .subpage-hero-grid {
    min-height: 560px;
  }

  .subpage-orbit {
    width: min(72vw, 280px);
  }

  .builder-heading {
    align-items: start;
    flex-direction: column;
  }

  .content-placeholder-large {
    grid-row: auto;
  }

  .gallery-placeholder-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .placeholder-input-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .subpage-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 64px;
  }
}

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

  .announcement-inner {
    font-size: 0.7rem;
  }

  .brand-name {
    font-size: 0.68rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .boat-scene {
    height: 255px;
  }

  .boat-silhouette {
    right: 22px;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .floating-card {
    display: none;
  }

  .showcase-metrics > div {
    min-height: 92px;
    padding: 0.8rem;
  }

  .showcase-metrics small {
    display: none;
  }

  .feature-card {
    min-height: 270px;
  }

  .depth-card-back {
    left: 28px;
  }

  .depth-card-middle {
    left: 14px;
  }

  .depth-card-front {
    padding: 1.7rem;
  }

  .depth-card-front strong {
    font-size: 1.8rem;
  }

  .subpage-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .gallery-placeholder-grid {
    grid-auto-rows: 210px;
  }
}

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

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

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

/* Utility pages and private agency page */
.legal-card {
  max-width: 920px;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-card > p {
  color: var(--slate-700);
}

.legal-card h2 {
  margin: 2.3rem 0 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card a {
  color: var(--blue-700);
}

.legal-notice {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.1rem;
  background: var(--cyan-100);
  border: 1px solid rgba(50, 200, 211, 0.25);
  border-radius: 15px;
}

.legal-notice span {
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.template-section-card {
  min-height: 270px;
  padding: 1.7rem;
  background: var(--white);
  border: 1px solid var(--cloud-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.template-section-card > span {
  color: var(--cyan-500);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.template-section-card h2 {
  margin: 2.8rem 0 0.9rem;
  font-size: 1.65rem;
}

.template-section-card p {
  color: var(--slate-500);
}

.not-found {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(50, 200, 211, 0.2), transparent 30%),
    linear-gradient(140deg, var(--ink-950), var(--ink-800));
}

.not-found-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.not-found-content {
  position: relative;
  z-index: 2;
}

.not-found h1 {
  max-width: 760px;
  margin: 0.8rem 0 1rem;
  color: var(--white);
}

.not-found-content > p:not(.eyebrow) {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
}

.not-found-orbit {
  position: absolute;
  width: min(58vw, 600px);
  aspect-ratio: 1;
  right: -10vw;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,255,255,.025),
    0 0 0 140px rgba(255,255,255,.018);
  font-size: clamp(7rem, 20vw, 16rem);
  font-weight: 950;
}

.agency-brand-mark {
  color: var(--ink-950);
  font-size: 0.8rem;
  font-weight: 950;
}

.agency-dashboard {
  width: min(100%, 510px);
  justify-self: end;
  padding: 1.3rem;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0.2rem 1.3rem;
}

.dashboard-top > div {
  display: grid;
  gap: 0.2rem;
}

.dashboard-chart {
  height: 300px;
  display: flex;
  align-items: end;
  gap: 0.65rem;
  padding: 2rem 1.3rem 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 100% 25%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
}

.dashboard-chart span {
  width: 100%;
  height: var(--height);
  background: linear-gradient(to top, var(--blue-600), var(--cyan-300));
  border-radius: 10px 10px 3px 3px;
  box-shadow: 0 10px 25px rgba(50,200,211,.13);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.dashboard-metrics > div {
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
}

.dashboard-metrics small {
  color: rgba(255,255,255,.48);
}

.calculator-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem 1rem;
  margin-top: 0.4rem;
  padding: 1rem;
  color: var(--white);
  background: var(--ink-900);
  border-radius: 14px;
}

.calculator-result strong {
  color: var(--gold-300);
}

.content-placeholder-dark h2 {
  margin: 0.8rem 0 1rem;
  color: var(--white);
}

.content-placeholder-dark > p:not(.eyebrow) {
  color: rgba(255,255,255,.62);
}

@media (max-width: 720px) {
  .location-template-grid {
    grid-template-columns: 1fr;
  }

  .not-found-orbit {
    right: -35vw;
  }

  .agency-dashboard {
    justify-self: center;
  }

  .dashboard-chart {
    height: 240px;
    gap: 0.4rem;
    padding-inline: 0.8rem;
  }
}

/* Lake Norman photographic hero slideshow */
.hero-photo-slider {
  position: relative;
  min-height: 790px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(50, 200, 211, 0.24), transparent 32%),
    linear-gradient(135deg, var(--ink-950), var(--ink-800));
}

.hero-photo-slider::after {
  z-index: 2;
  pointer-events: none;
}

.hero-slideshow,
.hero-photo-scrim,
.hero-photo-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slideshow {
  z-index: 0;
  overflow: hidden;
  background: var(--ink-950);
}

.hero-slide {
  position: absolute;
  inset: -3%;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.035);
  transition:
    opacity 1.25s ease,
    transform 8s cubic-bezier(.2, .65, .25, 1);
  will-change: opacity, transform;
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1.11);
}

.hero-slide.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: scale(1.14);
}

.hero-photo-scrim {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 14, 22, 0.91) 0%,
      rgba(2, 14, 22, 0.78) 34%,
      rgba(2, 14, 22, 0.43) 67%,
      rgba(2, 14, 22, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 14, 22, 0.24) 0%,
      rgba(2, 14, 22, 0.08) 45%,
      rgba(2, 14, 22, 0.66) 100%
    );
}

.hero-photo-vignette {
  z-index: 2;
  box-shadow:
    inset 0 0 180px rgba(2, 14, 22, 0.38),
    inset 0 -150px 180px rgba(2, 14, 22, 0.42);
}

.hero-photo-slider .hero-grid-overlay {
  z-index: 3;
  opacity: 0.12;
}

.hero-photo-grid {
  position: relative;
  z-index: 4;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  padding-bottom: 7.5rem;
}

.hero-photo-content {
  max-width: 760px;
}

.hero-photo-content h1 {
  max-width: 790px;
  text-shadow: 0 15px 45px rgba(0, 0, 0, 0.32);
}

.hero-button-row {
  margin-top: 1.9rem;
}

.hero-primary-button {
  box-shadow:
    0 18px 42px rgba(246, 189, 63, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-service-panel {
  align-self: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 29px;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(125%);
}

.hero-panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-panel-topline > div {
  display: grid;
  gap: 0.25rem;
}

.hero-panel-topline strong {
  font-size: 1.18rem;
}

.hero-panel-services {
  display: grid;
}

.hero-panel-services a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.35rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition:
    background var(--ease),
    transform var(--ease);
}

.hero-panel-services a:hover,
.hero-panel-services a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.hero-panel-services a > span:nth-child(2) {
  display: grid;
  gap: 0.14rem;
}

.hero-panel-services small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-panel-services b {
  color: var(--cyan-300);
  font-size: 1.1rem;
}

.hero-panel-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: rgba(121, 226, 231, 0.9);
  border-radius: 11px;
  font-size: 0.69rem;
  font-weight: 900;
}

.hero-panel-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.panel-pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan-300);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(121, 226, 231, 0.12);
}

.hero-slider-controls {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 2.2rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-slider-dots {
  display: flex;
  gap: 0.45rem;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    width var(--ease),
    background var(--ease);
}

.hero-slider-dot.is-active {
  width: 32px;
  background: var(--gold-300);
  border-radius: 999px;
}

.hero-slider-progress {
  width: min(210px, 26vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 999px;
}

.hero-slider-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--white);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slider-progress.is-running span {
  animation: heroProgress var(--hero-slide-duration, 6500ms) linear forwards;
}

.hero-slider-count {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-slider-count b {
  color: var(--white);
}

@keyframes heroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1060px) {
  .hero-photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-panel {
    width: min(100%, 680px);
  }
}

@media (max-width: 720px) {
  .hero-photo-slider {
    min-height: auto;
  }

  .hero-photo-grid {
    min-height: 760px;
    padding-bottom: 7.2rem;
  }

  .hero-photo-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(2, 14, 22, 0.72) 0%,
        rgba(2, 14, 22, 0.58) 45%,
        rgba(2, 14, 22, 0.88) 100%
      );
  }

  .hero-service-panel {
    display: none;
  }

  .hero-slider-controls {
    bottom: 1.5rem;
  }

  .hero-slider-progress {
    flex: 1;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.4s ease;
    transform: none !important;
  }

  .hero-slider-progress {
    display: none;
  }
}

/* Centered dynamic Lake Norman intro */
.hero-intro-experience {
  position: relative;
  min-height: min(920px, calc(100vh - 36px));
}

.hero-intro-experience .hero-photo-scrim {
  background:
    linear-gradient(
      90deg,
      rgba(2, 14, 22, 0.64) 0%,
      rgba(2, 14, 22, 0.30) 24%,
      rgba(2, 14, 22, 0.16) 50%,
      rgba(2, 14, 22, 0.30) 76%,
      rgba(2, 14, 22, 0.64) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 14, 22, 0.38) 0%,
      rgba(2, 14, 22, 0.07) 40%,
      rgba(2, 14, 22, 0.74) 100%
    );
}

.hero-focus-gradient {
  position: absolute;
  z-index: 3;
  width: min(940px, 82vw);
  height: min(720px, 72vw);
  top: 48%;
  left: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(15, 102, 130, 0.30) 0%,
      rgba(5, 36, 51, 0.17) 36%,
      rgba(3, 16, 25, 0) 70%
    );
  filter: blur(8px);
  transform: translate(-50%, -50%) scale(0.96);
  animation: heroFocusPulse 4.6s ease-in-out infinite;
}

.hero-intro-layout {
  position: relative;
  z-index: 5;
  min-height: min(820px, calc(100vh - 105px));
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(420px, 1.5fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 4rem);
  padding-top: clamp(4rem, 9vh, 7rem);
  padding-bottom: 10rem;
}

.hero-intro-copy {
  max-width: 850px;
  justify-self: center;
  text-align: center;
}

.hero-intro-copy .hero-kicker {
  margin-inline: auto;
}

.hero-intro-copy h1 {
  max-width: 860px;
  margin: 1rem auto 0;
  color: var(--white);
  font-size: clamp(3.35rem, 7.8vw, 7.2rem);
  line-height: 0.94;
  text-wrap: balance;
  text-shadow:
    0 20px 55px rgba(0, 0, 0, 0.34),
    0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-intro-copy .hero-copy {
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.55vw, 1.25rem);
  text-wrap: balance;
}

.hero-intro-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.hero-glass-button {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-intro-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.hero-intro-tags span {
  padding: 0.43rem 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 16, 25, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.hero-dynamic-callout {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 0.8rem;
  padding: 1.15rem;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 21px;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px) saturate(125%);
  transition:
    opacity 380ms ease,
    transform 520ms cubic-bezier(.2, .8, .2, 1),
    filter 380ms ease;
}

.hero-dynamic-callout-left {
  justify-self: start;
  transform: translateX(0);
}

.hero-dynamic-callout-right {
  justify-self: end;
  transform: translateX(0);
}

.hero-dynamic-callout.is-changing {
  opacity: 0;
  filter: blur(5px);
}

.hero-dynamic-callout-left.is-changing {
  transform: translateX(-65px);
}

.hero-dynamic-callout-right.is-changing {
  transform: translateX(65px);
}

.dynamic-callout-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: linear-gradient(145deg, var(--cyan-300), var(--white));
  border-radius: 11px;
  font-size: 0.67rem;
  font-weight: 950;
}

.hero-dynamic-callout > div {
  display: grid;
  gap: 0.25rem;
}

.hero-dynamic-callout small {
  color: var(--cyan-300);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-dynamic-callout strong {
  font-size: 0.94rem;
  line-height: 1.22;
}

.hero-dynamic-callout p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  line-height: 1.45;
}

.hero-center-cta {
  position: absolute;
  z-index: 8;
  width: 184px;
  min-height: 92px;
  right: 50%;
  bottom: 2.45rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.05rem 1rem 1.2rem;
  color: var(--ink-950);
  background:
    linear-gradient(135deg, rgba(255, 230, 154, 0.98), var(--gold-500));
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 23px;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(246, 189, 63, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transform: translateX(50%);
  animation: centerCtaFloat 2.7s ease-in-out infinite;
}

.hero-center-cta:hover,
.hero-center-cta:focus-visible {
  animation-play-state: paused;
  transform: translateX(50%) translateY(-5px) scale(1.03);
}

.hero-cta-rings {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 214, 117, 0.78);
  border-radius: inherit;
  pointer-events: none;
  animation: centerCtaRing 2.7s ease-out infinite;
}

.hero-cta-copy {
  display: grid;
  gap: 0.04rem;
}

.hero-cta-copy strong {
  font-size: 0.91rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-cta-copy small {
  color: rgba(7, 28, 43, 0.65);
  font-size: 0.63rem;
  font-weight: 720;
}

.hero-cta-arrow {
  font-size: 1.25rem;
  font-weight: 900;
  animation: centerArrowBounce 1.55s ease-in-out infinite;
}

.hero-intro-experience .hero-slider-controls {
  right: auto;
  bottom: 2rem;
  left: max(1.15rem, calc((100vw - var(--container)) / 2));
  width: min(300px, calc(50vw - 130px));
  margin: 0;
}

@keyframes heroFocusPulse {
  0%, 100% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes centerCtaFloat {
  0%, 100% {
    transform: translateX(50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(50%) translateY(-7px) scale(1.018);
  }
}

@keyframes centerCtaRing {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  75%, 100% {
    opacity: 0;
    transform: scale(1.19);
  }
}

@keyframes centerArrowBounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}

/* Sliding editorial service articles */
.service-stories-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(50, 200, 211, 0.09), transparent 24%),
    radial-gradient(circle at 92% 56%, rgba(246, 189, 63, 0.08), transparent 22%),
    var(--cloud-50);
}

.service-stories-section::before {
  position: absolute;
  width: 1px;
  top: 18rem;
  bottom: 10rem;
  left: 50%;
  content: "";
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(14, 111, 156, 0.18) 12%,
    rgba(14, 111, 156, 0.18) 88%,
    transparent
  );
}

.service-stories-heading {
  max-width: 880px;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}

.service-stories-heading h2 {
  max-width: 800px;
  margin: 0.75rem auto 1.1rem;
  text-wrap: balance;
}

.service-stories-heading > p:last-child {
  max-width: 690px;
  margin-inline: auto;
  color: var(--slate-500);
  font-size: 1.05rem;
}

.service-story-list {
  display: grid;
  gap: clamp(4rem, 9vw, 8rem);
}

.service-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.service-story-reverse {
  grid-template-columns: minmax(420px, 1.1fr) minmax(300px, 0.9fr);
}

.service-story-reverse .service-story-visual {
  grid-column: 2;
}

.service-story-reverse .service-story-copy {
  grid-column: 1;
  grid-row: 1;
}

.service-story-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.service-story-visual::before,
.service-story-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.service-story-visual::before {
  width: 330px;
  height: 330px;
  top: -165px;
  right: -110px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.045),
    0 0 0 96px rgba(255, 255, 255, 0.025);
}

.service-story-visual::after {
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(3, 16, 25, 0.52), transparent 60%);
  border-radius: inherit;
}

.story-visual-interior {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.27), transparent 22%),
    linear-gradient(145deg, #397f91, #12384b 72%);
}

.story-visual-correction {
  background:
    linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.22) 43%, transparent 62%),
    linear-gradient(145deg, #166f99, #32c8d3 56%, #062b3d);
}

.story-visual-protection {
  background:
    radial-gradient(circle at 72% 23%, rgba(255, 214, 117, 0.38), transparent 23%),
    linear-gradient(145deg, #0a2637, #0e6f9c 62%, #32c8d3);
}

.story-visual-mobile {
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #335a4a, #0e3045 70%);
  background-size: 45px 45px, 45px 45px, auto;
}

.story-number {
  position: absolute;
  top: 1.6rem;
  left: 1.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.story-visual-symbol {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--ink-950);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  font-size: 2.6rem;
  font-weight: 900;
  transform: rotate(-6deg);
  backdrop-filter: blur(10px);
}

.service-story-visual small {
  position: relative;
  z-index: 2;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-story-copy h3 {
  max-width: 700px;
  margin: 0.7rem 0 1.15rem;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

.service-story-copy > p:not(.eyebrow) {
  color: var(--slate-500);
  font-size: 1.03rem;
}

.story-benefits {
  display: grid;
  gap: 0.72rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.story-benefits li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--slate-700);
  font-weight: 670;
}

.story-benefits li::before {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0.18rem;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: var(--cyan-100);
  border-radius: 7px;
  content: "✓";
  font-size: 0.68rem;
  font-weight: 950;
}

.service-story-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: none;
}

.service-story-copy > a span {
  transition: transform var(--ease);
}

.service-story-copy > a:hover span {
  transform: translateX(5px);
}

/* Directional reveal variants */
.reveal-left {
  transform: translateX(-90px);
}

.reveal-right {
  transform: translateX(90px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .hero-intro-layout {
    grid-template-columns: 220px minmax(420px, 1fr) 220px;
    gap: 1.2rem;
  }

  .hero-dynamic-callout {
    padding: 1rem;
  }
}

@media (max-width: 920px) {
  .hero-intro-layout {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 4rem;
  }

  .hero-intro-copy {
    grid-row: 1;
  }

  .hero-dynamic-callout {
    position: absolute;
    width: min(280px, 34vw);
    min-height: 150px;
    top: 55%;
  }

  .hero-dynamic-callout-left {
    left: 1rem;
  }

  .hero-dynamic-callout-right {
    right: 1rem;
  }

  .hero-intro-copy h1 {
    max-width: 760px;
  }

  .service-story,
  .service-story-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-story-reverse .service-story-visual,
  .service-story-reverse .service-story-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .service-story-reverse .service-story-visual {
    order: 0;
  }

  .service-story-reverse .service-story-copy {
    order: 1;
  }

  .service-stories-section::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-intro-experience {
    min-height: 820px;
  }

  .hero-intro-layout {
    min-height: 760px;
    padding: 4rem 0.25rem 10.5rem;
  }

  .hero-intro-copy h1 {
    font-size: clamp(3rem, 15vw, 5.1rem);
  }

  .hero-intro-copy .hero-copy {
    font-size: 1rem;
  }

  .hero-intro-tags {
    display: none;
  }

  .hero-dynamic-callout {
    width: calc(50% - 1rem);
    min-height: 126px;
    top: auto;
    bottom: 9.2rem;
    grid-template-columns: 28px 1fr;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .hero-dynamic-callout-left {
    left: 0.5rem;
  }

  .hero-dynamic-callout-right {
    right: 0.5rem;
  }

  .dynamic-callout-index {
    width: 27px;
    height: 27px;
  }

  .hero-dynamic-callout strong {
    font-size: 0.75rem;
  }

  .hero-dynamic-callout p {
    display: none;
  }

  .hero-dynamic-callout small {
    font-size: 0.56rem;
  }

  .hero-center-cta {
    width: 172px;
    min-height: 82px;
    bottom: 1.2rem;
  }

  .hero-intro-experience .hero-slider-controls {
    display: none;
  }

  .service-story-visual {
    min-height: 330px;
  }

  .service-story-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(55px);
  }

  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-focus-gradient,
  .hero-center-cta,
  .hero-cta-rings,
  .hero-cta-arrow {
    animation: none !important;
  }

  .hero-dynamic-callout {
    transition: none;
  }

  .reveal-left,
  .reveal-right {
    transform: none;
  }
}