:root {
  --navy: #0b3d57;
  --navy-deep: #062b40;
  --teal: #0ba7a5;
  --teal-bright: #16c1b8;
  --ink: #10202b;
  --muted: #5a6a74;
  --line: #d9e5e8;
  --mist: #eff7f8;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(11, 61, 87, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 6vw, 5.3rem);
}
h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.65rem);
}
h3 {
  font-size: 1.25rem;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.brand span {
  display: grid;
  line-height: 1.15;
}
.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}
.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.94rem;
  font-weight: 600;
}
nav a {
  transition: color 0.2s ease;
}
nav a:hover {
  color: var(--teal);
}
.nav-cta {
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}
nav .nav-cta:hover {
  color: var(--white);
  background: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 5rem 0 7rem;
}
.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  box-shadow: 0 12px 32px rgba(11, 61, 87, 0.2);
}
.text-link {
  font-weight: 700;
}
.text-link span {
  color: var(--teal);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 2.25rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}
.trust-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.55rem;
  background: var(--teal-bright);
  border-radius: 50%;
}
.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 9% -9% -5% 14%;
  content: "";
  background: linear-gradient(
    145deg,
    rgba(22, 193, 184, 0.34),
    rgba(11, 61, 87, 0.12)
  );
  border-radius: 48% 48% 26px 26px;
  transform: rotate(4deg);
}
.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5.2;
  background: var(--mist);
  border-radius: 180px 180px 24px 24px;
  box-shadow: var(--shadow);
}
.photo-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  content: "";
  background: linear-gradient(transparent, rgba(6, 43, 64, 0.16));
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.credential-card {
  position: absolute;
  right: -30px;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 285px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(6, 43, 64, 0.2);
  backdrop-filter: blur(10px);
}
.credential-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}
.credential-mark {
  display: grid;
  flex: 0 0 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.pain-section,
.deliverables-section,
.plans-section,
.about-section {
  padding: 7rem max(20px, calc((100% - 1180px) / 2));
}
.pain-section {
  background: var(--navy-deep);
  color: var(--white);
}
.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 3rem;
  align-items: start;
}
.section-heading h2 {
  max-width: 820px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.14);
}
.pain-grid article {
  padding: 2.2rem;
  background: var(--navy-deep);
}
.pain-grid span {
  color: var(--teal-bright);
  font-weight: 700;
}
.pain-grid h3 {
  margin: 2.4rem 0 0.75rem;
}
.pain-grid p {
  margin-bottom: 0;
  color: #bad0da;
}

.method-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 780px;
  background: var(--mist);
}
.method-photo {
  overflow: hidden;
  min-height: 650px;
}
.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}
.method-copy {
  padding: clamp(4rem, 9vw, 8rem);
}
.method-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}
.steps {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 700;
}
.steps strong {
  font-family: "Manrope", sans-serif;
}
.steps p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 0;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.deliverables-grid article {
  min-height: 270px;
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.deliverables-grid .icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 3.2rem;
  place-items: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
  font-size: 1.2rem;
}
.deliverables-grid p {
  color: var(--muted);
}

.plans-section {
  background: #f6fafb;
}
.section-heading.centered {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-heading.centered > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 545px;
  padding: 2.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.plan-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.35rem 0.65rem;
  color: var(--navy);
  background: var(--teal-bright);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.plan-name {
  margin-bottom: 0.5rem;
  color: var(--teal);
  font-weight: 700;
}
.featured .plan-name {
  color: var(--teal-bright);
}
.plan-card h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.price {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}
.price span {
  margin-right: 0.3rem;
  font-size: 1rem;
  letter-spacing: 0;
}
.price small {
  margin-left: 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
}
.plan-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 2.5rem 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}
.featured ul {
  color: #d3e3e8;
}
.plan-card li::before {
  content: "✓";
  margin-right: 0.7rem;
  color: var(--teal);
  font-weight: 800;
}
.featured li::before {
  color: var(--teal-bright);
}
.button-secondary {
  color: var(--navy);
  border-color: var(--navy);
}
.button-light {
  color: var(--navy);
  background: var(--white);
}
.price-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}
.about-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
}
.signature {
  margin-top: 2rem;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.signature span {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 5rem max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: linear-gradient(
    120deg,
    var(--navy-deep),
    var(--navy) 70%,
    var(--teal)
  );
}
.contact-section > div {
  max-width: 780px;
}
.contact-section h2 {
  margin-bottom: 1rem;
}
.contact-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d3e3e8;
  font-size: 1.05rem;
}
.eyebrow.light {
  color: var(--teal-bright);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(20px, calc((100% - 1180px) / 2));
  color: var(--muted);
  font-size: 0.83rem;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
footer p {
  margin: 0;
}

@media (max-width: 900px) {
  nav > a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    width: min(560px, 100%);
    margin: 0 auto;
  }
  .section-heading,
  .about-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pain-grid,
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-section {
    grid-template-columns: 1fr;
  }
  .method-photo {
    max-height: 670px;
  }
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    min-height: 78px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand small {
    display: none;
  }
  .nav-cta {
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }
  .hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 3.2rem 0 5rem;
  }
  h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }
  .photo-frame {
    border-radius: 120px 120px 18px 18px;
  }
  .credential-card {
    right: 10px;
    bottom: 18px;
    max-width: 245px;
  }
  .trust-list {
    display: grid;
    gap: 0.65rem;
  }
  .pain-section,
  .deliverables-section,
  .plans-section,
  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .pain-grid,
  .deliverables-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .pain-grid article {
    padding: 1.7rem 0;
  }
  .method-photo {
    min-height: 480px;
  }
  .method-copy {
    padding: 4rem 20px;
  }
  .deliverables-grid article {
    min-height: auto;
  }
  .deliverables-grid .icon {
    margin-bottom: 2rem;
  }
  .plan-card {
    min-height: 520px;
    padding: 1.5rem;
  }
  .about-section {
    gap: 1.5rem;
  }
  .contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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