:root {
  --navy-950: #04142e;
  --navy-900: #071d43;
  --navy-800: #0b2a59;
  --navy-700: #123f72;
  --teal-500: #0cc2c1;
  --teal-400: #26d4d1;
  --teal-100: #dffafa;
  --ink: #10243d;
  --muted: #5d6f81;
  --line: #dbe5ec;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #edf5f8;
  --shadow-sm: 0 8px 30px rgba(5, 28, 60, .08);
  --shadow-lg: 0 28px 80px rgba(5, 28, 60, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(12, 194, 193, .11), transparent 26rem),
    radial-gradient(circle at 93% 11%, rgba(18, 63, 114, .09), transparent 30rem),
    #f8fbfd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 780;
}

h1 span {
  color: var(--navy-700);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

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

.section {
  position: relative;
  padding: 110px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-900);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 251, 253, .87);
  box-shadow: 0 1px 0 rgba(7, 29, 67, .08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav > a:not(.button) {
  position: relative;
  color: #334b64;
  font-size: .94rem;
  font-weight: 650;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy-900);
  transition: transform .25s ease, opacity .25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  box-shadow: 0 12px 30px rgba(12, 194, 193, .28);
}

.button-primary:hover {
  box-shadow: 0 17px 36px rgba(12, 194, 193, .35);
}

.button-secondary {
  color: var(--navy-900);
  border-color: #bed0dc;
  background: #fff;
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-sm);
}

.button-quiet {
  color: var(--navy-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, .68);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: .9rem;
}

.button-large {
  min-height: 58px;
  padding: 17px 23px;
}

.button-full {
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--navy-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(12, 194, 193, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(12, 194, 193, .12);
}

.section-kicker.light {
  color: var(--teal-400);
}

.hero {
  min-height: auto;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 46px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(7, 29, 67, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 29, 67, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.4vw, 1.27rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 22px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: #466078;
  font-size: .91rem;
  font-weight: 650;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurance i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--teal-100);
  font-size: .72rem;
  font-style: normal;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  justify-content: center;
  align-items: center;
}

.presentation-slider {
  position: relative;
  width: min(468px, calc(100% - 48px));
  padding-right: 46px;
}

.presentation-slider::before,
.presentation-slider::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.presentation-slider::before {
  top: 4%;
  right: 4%;
  width: 210px;
  height: 210px;
  background: rgba(12, 194, 193, .15);
}

.presentation-slider::after {
  bottom: 3%;
  left: -8%;
  width: 260px;
  height: 260px;
  background: rgba(18, 63, 114, .12);
}

.slider-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 67, .12);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 30px 78px rgba(5, 28, 60, .18);
}

.slider-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 19px;
  border-bottom: 1px solid #e1e9ee;
  color: #50667a;
  background: rgba(255, 255, 255, .98);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.slider-viewport {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #edf4f7;
}

.vertical-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(7%) scale(.99);
  transition:
    opacity .48s var(--ease),
    transform .62s var(--ease);
  pointer-events: none;
}

.vertical-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.vertical-slide.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: translateY(-7%) scale(.99);
}

.vertical-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.slider-caption {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 16px 19px;
  border-top: 1px solid #e1e9ee;
  background: #fff;
}

.slider-caption > div {
  display: grid;
  gap: 3px;
}

.slider-caption span {
  color: var(--teal-500);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.slider-caption strong {
  color: var(--navy-900);
  font-size: .92rem;
}

.slider-caption p {
  margin: 0;
  color: #667a8d;
  font-size: .75rem;
  line-height: 1.45;
}

.slider-rail {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
  transform: translateY(-50%);
}

.slider-dots {
  display: grid;
  gap: 9px;
  padding: 12px 8px;
  border: 1px solid rgba(7, 29, 67, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(5, 28, 60, .1);
  backdrop-filter: blur(14px);
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bfd0db;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.slider-dot.is-active {
  background: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(12, 194, 193, .15);
  transform: scale(1.08);
}

.slider-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid #cfdee7;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(5, 28, 60, .08);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.slider-arrow:hover {
  border-color: var(--teal-500);
  background: var(--teal-100);
  transform: translateY(-1px);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 67, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.proof-bar > div {
  display: grid;
  gap: 2px;
  padding: 24px 26px;
  border-right: 1px solid rgba(7, 29, 67, .08);
}

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

.proof-bar strong {
  color: var(--navy-900);
  font-size: 1.03rem;
}

.proof-bar span {
  color: #718294;
  font-size: .82rem;
}

.problem-section {
  background: #fff;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.comparison-muted {
  background: #f6f8fa;
}

.comparison-positive {
  position: relative;
  overflow: hidden;
  border-color: rgba(12, 194, 193, .34);
  background:
    radial-gradient(circle at 100% 0, rgba(12, 194, 193, .18), transparent 18rem),
    #effafa;
}

.comparison-positive::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -72px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(12, 194, 193, .11);
  border-radius: 50%;
}

.comparison-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--navy-700);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #40576e;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--teal-100);
  font-size: .7rem;
  font-weight: 900;
}

.check-list.negative li::before {
  content: "×";
  color: #6f7d89;
  background: #e6ebef;
}

.check-list.compact {
  gap: 10px;
  margin: 24px 0 30px;
  font-size: .92rem;
}

.included-section {
  background:
    radial-gradient(circle at 50% 0, rgba(12, 194, 193, .08), transparent 28rem),
    var(--surface-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deliverable-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(7, 29, 67, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 35px rgba(7, 29, 67, .055);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.deliverable-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 194, 193, .38);
  box-shadow: 0 20px 50px rgba(7, 29, 67, .10);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-700);
  background: linear-gradient(135deg, var(--teal-100), #fff);
  box-shadow: inset 0 0 0 1px rgba(12, 194, 193, .2);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deliverable-card p {
  margin-bottom: 0;
}

.process-section {
  overflow: hidden;
  background: #fff;
}

.process-section::after {
  content: "";
  position: absolute;
  top: 35px;
  left: -155px;
  width: 350px;
  height: 350px;
  border: 55px solid rgba(12, 194, 193, .06);
  border-radius: 50%;
}

.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 96px;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 45px);
  align-self: start;
}

.process-intro p {
  max-width: 500px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: var(--navy-700);
  font-weight: 780;
}

.text-link span {
  color: var(--teal-500);
  transition: transform .2s ease;
}

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

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

.process-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfdfe;
}

.process-list p {
  margin-bottom: 0;
}

.step-number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  font-size: .9rem;
  font-weight: 900;
}

.positioning-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}

.positioning-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 55px;
  padding: 56px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(12, 194, 193, .25), transparent 27rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 28px 70px rgba(4, 20, 46, .22);
}

.positioning-card h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.positioning-points {
  display: grid;
  gap: 18px;
  align-content: center;
}

.positioning-points p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  color: #c6d3df;
  background: rgba(255, 255, 255, .05);
}

.positioning-points strong {
  color: #fff;
}

.pricing-section {
  background:
    radial-gradient(circle at 15% 0, rgba(12, 194, 193, .08), transparent 23rem),
    #f5f9fb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 15px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 29, 67, .06);
}

.price-card > .button {
  margin-top: auto;
}

.price-card-starter {
  border-color: rgba(12, 194, 193, .48);
  box-shadow: 0 18px 45px rgba(12, 194, 193, .12);
}

.price-card-featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(12, 194, 193, .25), transparent 15rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 24px 60px rgba(4, 20, 46, .22);
}

.price-card-featured h3,
.price-card-featured .plan-name {
  color: #fff;
}

.price-card-featured .price-note,
.price-card-featured .check-list li {
  color: #c2d0dd;
}

.price-card-featured .check-list li::before {
  color: var(--navy-950);
  background: var(--teal-400);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--teal-400);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-name {
  display: block;
  margin-bottom: 14px;
  color: var(--navy-700);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.price-card h3 sup {
  position: relative;
  top: -.65em;
  margin-right: 2px;
  font-size: .38em;
}

.price-note {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: .84rem;
}

.pricing-footnote {
  margin-top: 24px;
  text-align: center;
  font-size: .9rem;
}

.audience-section {
  padding: 82px 0;
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.audience-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tags span {
  padding: 13px 16px;
  border: 1px solid #d3e1e9;
  border-radius: 999px;
  color: #3f5870;
  background: #f9fbfc;
  font-size: .9rem;
  font-weight: 700;
}

.faq-section {
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

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

.faq-item button span {
  display: grid;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  place-items: center;
  margin-left: 18px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--teal-100);
  font-size: 1.12rem;
  transition: transform .25s ease;
}

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

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 20%, rgba(12, 194, 193, .15), transparent 25rem),
    linear-gradient(135deg, #061731, #0b2b59);
}

.contact-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p {
  max-width: 500px;
  color: #c6d4e0;
}

.contact-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 460px;
  margin: 30px 0 26px;
}

.contact-summary > div {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
}

.contact-summary strong {
  color: #fff;
  font-size: 1.08rem;
}

.contact-summary span {
  color: #aebfce;
  font-size: .78rem;
}

.email-link {
  color: var(--teal-400);
  font-weight: 780;
}

.lead-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.lead-form label > span {
  color: #314c65;
  font-size: .78rem;
  font-weight: 780;
}

.lead-form label em {
  color: #83919e;
  font-size: .72rem;
  font-style: normal;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccdae3;
  border-radius: 12px;
  color: var(--navy-900);
  background: #fbfdfe;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(12, 194, 193, .12);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #d84d4d;
  box-shadow: 0 0 0 4px rgba(216, 77, 77, .10);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  margin: 3px 0 18px !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--teal-500);
}

.consent span {
  font-weight: 600 !important;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: .75rem;
}

.form-status {
  min-height: 24px;
  margin-top: 8px;
  border-radius: 10px;
  font-size: .86rem;
  text-align: center;
}

.form-status.is-success {
  padding: 10px;
  color: #0f5e50;
  background: #e8faf5;
}

.form-status.is-error {
  padding: 10px;
  color: #8b2d2d;
  background: #fff0f0;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid #dce6ed;
  background: #f8fbfd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .55fr .8fr;
  gap: 70px;
  align-items: start;
}

.footer-grid img {
  width: 170px;
}

.footer-grid p {
  max-width: 430px;
  margin-top: 18px;
  margin-bottom: 0;
  font-size: .9rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-contact a {
  color: #405a72;
  font-weight: 700;
}

.footer-contact span {
  color: #758595;
  font-size: .84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid #dce6ed;
  color: #7a8997;
  font-size: .78rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .hero-copy {
    max-width: 850px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-assurance {
    justify-content: center;
  }

  .hero-visual {
    width: min(760px, 100%);
    min-height: 650px;
    margin-inline: auto;
  }

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

  .floating-note-one {
    left: 2%;
  }

  .floating-note-two {
    right: 2%;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 86px 0;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid #dbe5ec;
    border-radius: 18px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 24px 60px rgba(5, 28, 60, .16);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .site-nav > a {
    padding: 13px 14px;
    border-radius: 11px;
  }

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

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

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

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

  .proof-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .proof-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 29, 67, .08);
  }

  .split-heading,
  .process-layout,
  .positioning-card,
  .audience-grid,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

  .process-intro,
  .faq-heading {
    position: static;
  }

  .positioning-card {
    padding: 40px;
  }

  .audience-grid {
    gap: 30px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .brand {
    width: 126px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 46px);
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions,
  .hero-assurance {
    justify-content: flex-start;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .hero-visual {
    min-height: 520px;
    margin-top: 12px;
  }

  .pack-stage {
    width: 91%;
    transform: translate(-50%, -50%) rotateY(-2deg);
  }

  .pack-toolbar {
    min-height: 52px;
    padding: 12px 15px;
    font-size: .57rem;
  }

  .pack-toolbar img {
    width: 28px;
    height: 28px;
  }

  .pack-caption {
    min-height: 64px;
    padding: 12px 15px;
  }

  .pack-caption strong {
    font-size: .86rem;
  }

  .materials-grid {
    gap: 9px;
    padding: 14px;
  }

  .material-card {
    min-height: 102px;
    padding: 10px;
  }

  .material-card strong {
    font-size: .8rem;
  }

  .floating-note {
    display: none;
  }

  .pack-controls {
    bottom: -54px;
    gap: 4px;
  }

  .pack-controls button {
    padding: 7px 9px;
    font-size: .65rem;
  }

  .proof-bar {
    margin-top: 42px;
  }

  .proof-bar > div {
    padding: 18px;
  }

  .deliverables-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-card {
    min-height: auto;
  }

  .comparison-card {
    padding: 28px 22px;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 15px;
    padding: 24px 19px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: .74rem;
  }

  .positioning-card {
    padding: 30px 23px;
    border-radius: 24px;
  }

  .price-card {
    padding: 28px 22px 22px;
  }

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

  .lead-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .contact-summary {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 999;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
    box-shadow: 0 18px 45px rgba(4, 20, 46, .28);
    font-size: .9rem;
    font-weight: 850;
  }
}

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

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

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


/* ===== Hero slideshow refinement update ===== */
.hero {
  min-height: auto;
  padding-bottom: 42px;
}

.hero-grid {
  align-items: center;
}

.hero-visual {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: min(590px, 100%);
  margin-inline: auto;
}

.slider-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 47, 80, .12);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(5, 28, 60, .16);
  backdrop-filter: blur(14px);
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 18px 22px;
  border-bottom: 1px solid #e4edf2;
  color: #4b6176;
  font-size: .72rem;
  font-weight: 840;
  letter-spacing: .12em;
}

.slider-counter {
  color: var(--navy-900);
}

.slider-viewport {
  position: relative;
  aspect-ratio: 0.78;
  padding: 16px;
  background: linear-gradient(180deg, #f5f9fb, #eef4f7);
}

.slider-slide {
  position: absolute;
  inset: 16px;
  opacity: 0;
  transform: translateX(22px) scale(.985);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.slider-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(7, 29, 67, .12);
}

.slider-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 18px 22px 20px;
  border-top: 1px solid #e5edf2;
  background: #fff;
}

.slider-copy {
  display: grid;
  gap: 6px;
}

.slider-copy strong {
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.35;
}

.slider-copy p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}

.slider-copy code {
  padding: .15rem .35rem;
  border-radius: 8px;
  color: var(--navy-900);
  background: #f1f6f9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .78rem;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid #d0dee7;
  border-radius: 14px;
  color: var(--navy-900);
  background: #fff;
  box-shadow: 0 10px 25px rgba(7, 29, 67, .06);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--teal-500);
  background: #f9fefe;
}

.slider-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-tabs button {
  padding: 9px 13px;
  border: 1px solid #cfdee7;
  border-radius: 999px;
  color: #53687b;
  background: rgba(255,255,255,.88);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 760;
  box-shadow: 0 8px 20px rgba(7, 29, 67, .05);
}

.slider-tabs button.is-active {
  color: var(--navy-950);
  border-color: var(--teal-500);
  background: var(--teal-100);
}

.proof-bar {
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .hero-visual {
    min-height: 520px;
  }

  .hero-slider {
    width: min(620px, 100%);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 28px;
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 10px;
  }

  .slider-frame {
    border-radius: 24px;
  }

  .slider-header {
    min-height: 54px;
    padding: 14px 16px;
    font-size: .62rem;
  }

  .slider-viewport {
    padding: 12px;
  }

  .slider-slide {
    inset: 12px;
  }

  .slider-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 14px 16px 16px;
  }

  .slider-copy strong {
    font-size: .9rem;
  }

  .slider-copy p {
    font-size: .78rem;
  }

  .slider-nav {
    justify-content: flex-start;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-tabs {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .slider-tabs button {
    font-size: .68rem;
    padding: 8px 11px;
  }

  .proof-bar {
    margin-top: 26px;
  }
}


/* Compact portrait slideshow overrides */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    width: min(540px, 100%);
    min-height: 0;
    margin-inline: auto;
  }

  .presentation-slider {
    width: min(460px, calc(100% - 46px));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 22px;
  }

  .presentation-slider {
    width: calc(100% - 32px);
    padding-right: 32px;
  }

  .slider-frame {
    border-radius: 21px;
  }

  .slider-topbar {
    height: 44px;
    padding: 0 14px;
    font-size: .57rem;
  }

  .slider-caption {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 78px;
    padding: 12px 14px;
  }

  .slider-caption p {
    font-size: .7rem;
  }

  .slider-rail {
    gap: 7px;
  }

  .slider-arrow {
    width: 31px;
    height: 31px;
    font-size: .85rem;
  }

  .slider-dots {
    gap: 8px;
    padding: 10px 7px;
  }

  .proof-bar {
    margin-top: 28px;
  }
}
