:root {
  --page-bg: #f4f4f4;
  --paper: #f6f6f6;
  --hero-bg: #e7e6ee;
  --teal: #2c6966;
  --teal-deep: #245653;
  --teal-dark: #2e6a67;
  --lime: #b8ca60;
  --purple: #664b99;
  --purple-strip: #684f98;
  --text: #214a49;
  --white: #ffffff;
  --shadow-soft: 0 10px 28px rgba(36, 60, 58, 0.08);
  --max: 1180px;
}

@font-face {
  font-family: "Sweet Sans Pro";
  src: url("./assets/fonts/SweetSansPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Sweet Sans Pro";
  src: url("./assets/fonts/SweetSansPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Sweet Sans Pro";
  src: url("./assets/fonts/SweetSansPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Sweet Sans Pro", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: hidden;
  min-height: 100%;
}

h1,
h2,
h3,
p,
a,
summary,
button {
  font-family: "Sweet Sans Pro", "Avenir Next", "Segoe UI", sans-serif;
}

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

.site {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}

.container {
  width: min(100% - 96px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.topbar.is-sticky {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(36, 60, 58, 0.1);
  backdrop-filter: blur(12px);
}

.topbar-inner,
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.topbar-inner {
  padding: 20px 0 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #6d6f73;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--teal-dark);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 33px;
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pill-button-accent {
  background: #2e6f6b;
  color: #b8ca60;
}

.pill-button-primary {
  background: #2c6563;
  color: #bacb67;
}

.pill-button-secondary {
  background: #bacb67;
  color: #2c6563;
}

.pill-button:hover,
.pill-button:focus-visible {
  background: #bacb67;
  color: #2c6563;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(44, 101, 99, 0.16);
}
.pill-button-secondary:hover,
.pill-button-secondary:focus-visible {
  background: #2c6563;
  color: #bacb67;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(44, 101, 99, 0.16);
}

.text-button {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.text-button:hover,
.text-button:focus-visible {
  color: #bacb67;
}

.hero {
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(520px, 1.02fr) minmax(560px, 0.98fr);
  align-items: center;
  gap: 120px;
  min-height: 720px;
  padding: 54px 0 44px;
}

.hero-copy {
  max-width: 760px;
  padding-top: 12px;
}

.hero h1,
.center-title,
.services h2,
.section-intro h2,
.cta-content h2 {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: 50px !important;
  line-height: 66px;
  font-weight: 700;
  max-width: 15ch;
  margin-bottom: 32px;
}

.hero p {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #171c22;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-silhouette,
.hero-mockup {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.hero-silhouette {
  left: 18px;
  bottom: 34px;
  width: 480px;
  opacity: 0.95;
}

.hero-mockup {
  right: -6px;
  bottom: 18px;
  width: 780px;
  filter: drop-shadow(0 26px 24px rgba(52, 52, 52, 0.2));
}

.partner-strip {
  background: var(--purple-strip);
  color: #fff;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.partner-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
  gap: 4px;
  padding: 40px 0;
}

.partner-carousel {
  grid-column: 2 / -1;
}

.partner-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
}

.partner-label {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

.partner-name {
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}

.partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 108px;
  justify-self: center;
  object-fit: contain;
}

.partner-drop {
  max-height: 118px;
  padding-top: 10px;
}

.partner-fence {
  max-height: 102px;
  padding-bottom: 10px;
}

.partner-creatly {
  max-height: 86px;
  padding-bottom: 10px;
}

.section {
  padding: 46px 0 54px;
}

.hero,
.about,
.services,
.cta-overlap,
.process,
.testimonials,
.faq,
.footer {
  opacity: 0;
  transform: translateY(44px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  will-change: opacity, transform, filter;
}

.hero.is-visible,
.about.is-visible,
.services.is-visible,
.cta-overlap.is-visible,
.process.is-visible,
.testimonials.is-visible,
.faq.is-visible,
.footer.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-intro,
.center-title {
  text-align: center;
}

.mini-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #243c3a;
}

.mini-label-light {
  color: rgba(255, 255, 255, 0.86);
}

.services-label {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #ffffff;
}

.section-intro h2,
.center-title {
  font-size: 48px;
  line-height: 52px;
}

.about-label {
  margin-bottom: 18px;
  color: #2c6563;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}

.about {
  background-color: #ffffff;
}

.about .section-intro {
  text-align: center;
}

.about-title {
  color: #2c6563;
  text-align: center;
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: start;
  margin-top: 76px;
}

.about-photo {
  position: relative;
  min-height: 380px;
  border-radius: 24px;
  overflow: visible;
  z-index: 1;
}

.about-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.photo-badge-shell {
  position: absolute;
  top: -52px;
  right: 56px;
  width: 144px;
  height: 144px;
  z-index: 3;
  pointer-events: none;
}

.photo-badge-bg,
.photo-badge {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-badge {
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
}

.about-copy p {
  max-width: 605px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #111111;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-mobile-button {
  width: fit-content;
}

.services {
  background: var(--teal-dark);
  color: #fff;
  padding-bottom: 220px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.services h2 {
  color: #fff;
  font-size: 48px;
  line-height: 52px;
}

.services-title {
  color: #ffffff;
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 22px;
}

.services-carousel {
  position: relative;
}

.services-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

.services-arrow:hover,
.services-arrow:focus-visible {
  transform: scale(1.08);
  opacity: 0.82;
}

.service-card {
  min-height: 274px;
  padding: 34px 38px 28px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--teal-deep);
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #2c6563;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #2c6563;
}

.service-graphic {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
}

.service-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-overlap {
  position: relative;
  z-index: 3;
  margin-top: -140px;
  margin-bottom: -140px;
}

.cta-banner {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(80, 59, 104, 0.45), rgba(67, 31, 98, 0.432)),
    url("./assets/images/Cta-Banner.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 36px rgba(34, 76, 71, 0.12);
}

.cta-content {
  padding: 90px 24px 58px;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-content p {
  max-width: 565px;
  margin: 22px auto 34px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.process {
  padding-top: 260px;
  padding-bottom: 120px;
}

/* CTA Banner Button uniform overrides removed */

.center-title {
  font-size: 48px;
  line-height: 52px;
}

.process-track {
  display: grid;
  grid-template-columns: 320px 220px 320px 220px 320px;
  align-items: start;
  justify-content: center;
  justify-items: center;
  gap: 0;
  width: min(100%, 1400px);
  margin: 76px auto 0;
}

.process-heading {
  font-size: 64px;
  line-height: 66px;
}

.process-step {
  text-align: center;
  padding: 0;
  width: 320px;
  max-width: 320px;
  margin: 0 auto;
}

.process-connector {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
  padding-top: 81px;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(36, 60, 58, 0.12);
}

.teal-icon {
  background: #3c7774;
}

.purple-icon {
  background: var(--purple);
}

.lime-icon {
  background: var(--lime);
}

.connector-dot {
  position: relative;
  z-index: 4;
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.connector-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 12px;
  width: auto;
}

.connector-dash {
  display: block;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #d7d7db;
}

.teal-dot {
  background: var(--teal);
}

.purple-dot {
  background: var(--purple);
}

.lime-dot {
  background: var(--lime);
}

.process-icon-image {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.process-step h3 {
  margin: 28px 0 18px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
}

.process-step p {
  width: 320px;
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #111111;
  text-align: center;
}

.teal-text {
  color: #2c6563;
}

.purple-text {
  color: #6b53a2;
}

.lime-text {
  color: #b5c75b;
}

.process-action {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

/* Process Button uniform overrides removed */

.testimonials {
  padding-top: 36px;
  padding-bottom: 128px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 272px);
  gap: 44px;
  margin-top: 56px;
  justify-content: center;
  justify-items: center;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

.testimonials-arrow:hover,
.testimonials-arrow:focus-visible {
  transform: scale(1.08);
  opacity: 0.82;
}

.testimonial-card {
  width: 288px;
  min-height: 288px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 3px rgba(220, 220, 220, 0.98);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f4c595 0%, #d48755 48%, #8a5a38 100%);
}

.avatar-2 {
  background: radial-gradient(circle at 40% 35%, #f0c084 0%, #cb7e45 48%, #6d442e 100%);
}

.avatar-3 {
  background: radial-gradient(circle at 40% 35%, #d7c59e 0%, #8a6d4f 48%, #4b433d 100%);
}

.testimonial-head strong,
.testimonial-head span {
  display: block;
}

.testimonial-head strong {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #111111;
}

.testimonial-head span {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #111111;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 18px;
}

.rating {
  font-size: 18.53px;
  line-height: 18.53px;
  color: #fcc311;
  letter-spacing: 0.06em;
}

.rating-score {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  color: #111111;
}

.testimonial-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}

.faq {
  background: var(--lime);
  padding-top: 96px;
  padding-bottom: 110px;
}

.faq-list {
  width: min(100%, 980px);
  margin: 52px auto 0;
}

.faq details {
  margin-top: 18px;
  border-radius: 9px;
  background: #fff;
}

.faq summary {
  position: relative;
  min-height: 64px;
  padding: 15px 40px;
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq details p {
  margin: 0;
  padding: 0 40px 15px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #294544;
}

.footer {
  background: var(--teal-dark);
  color: #fff;
}

.footer-inner {
  grid-template-columns: 1.55fr 0.9fr 0.9fr 1.15fr;
  gap: 64px;
  padding: 56px 0 48px;
  align-items: start;
}

.logo-image-footer {
  height: 66px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: transparent;
}

.socials a img {
  width: 41px;
  height: 41px;
  display: block;
}

.socials a[aria-label="Instagram"] img {
  width: 41px;
  height: 41px;
  transform: scale(1.8);
  transform-origin: center;
  padding-top: 8.5px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}

.footer-links a {
  color: #ffffff;
}

.footer-cta {
  text-align: right;
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 24px;
}

/* Footer CTA Button uniform overrides removed */

.footer-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.calendar-modal.is-open {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.calendar-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 29, 30, 0.58);
  backdrop-filter: blur(6px);
}

.calendar-modal-panel {
  position: relative;
  width: min(100%, 980px);
  height: min(86vh, 760px);
  padding: 28px 28px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(17, 34, 34, 0.24);
  overflow: hidden;
}

.calendar-modal-title {
  margin: 0 52px 18px 0;
  color: var(--teal-dark);
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

.calendar-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #eef1eb;
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.calendar-modal-frame {
  width: 100%;
  height: calc(100% - 54px);
  border: 0;
  border-radius: 16px;
}

@media (max-width: 1040px) {
  .site {
    margin-top: 0;
  }

  .topbar-inner,
  .hero-inner,
  .about-grid,
  .service-grid,
  .process-track,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .footer-inner,
  .services-header {
    justify-items: center;
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero p {
    max-width: none;
  }

  .hero-visual {
    min-height: 420px;
  }

  .partner-strip {
    text-align: center;
  }

  .partner-strip-inner {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .footer-cta {
    text-align: center;
  }

  .process-track {
    gap: 44px;
    justify-items: center;
  }

  .process-connector {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }

  .cta-banner {
    margin-bottom: 0;
  }

  .cta-overlap {
    margin-top: -100px;
    margin-bottom: -100px;
  }

  .services {
    padding-bottom: 180px;
  }

  .process {
    padding-top: 190px;
    padding-bottom: 90px;
  }

  /* Mobile Process Button uniform overrides removed */

  .connector-line {
    flex-direction: column;
    gap: 8px;
    width: auto;
    height: auto;
  }

  .connector-dash {
    width: 2px;
    height: 8px;
  }

  .connector-line .connector-dash:nth-child(n + 6) {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar .container {
    width: min(100%, 375px);
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 16px;
    padding: 5px 16px;
    align-items: center;
    justify-items: start;
  }

  .logo {
    max-width: 100%;
    justify-self: start;
  }

  .logo-image {
    height: 34px;
    max-width: 100%;
    transition: transform 260ms ease;
  }

  .menu-toggle {
    display: inline-flex;
    width: 32px;
    height: 32px;
    gap: 5px;
    justify-self: end;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 0;
  }

  .hero h1,
  .section-intro h2,
  .services h2,
  .center-title,
  .cta-content h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .nav {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    padding: 0;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      max-height 280ms ease,
      opacity 220ms ease,
      transform 280ms ease,
      padding 280ms ease;
  }

  .nav.is-open {
    max-height: 280px;
    padding: 12px 0 10px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header.menu-open .logo-image {
    transform: translateY(6px);
  }

  .topbar .pill-button-accent {
    display: none;
  }

  .pill-button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
  }

  .hero-inner {
    min-height: auto;
    gap: 18px;
  }

  .hero-copy {
    padding-top: 0;
    max-width: none;
    text-align: center;
    display: grid;
    justify-items: center;
  }

  .hero h1 {
    width: 324px;
    max-width: 324px;
    font-size: 32px;
    line-height: 41.25px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
  }

  .hero p {
    max-width: 320px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    margin-top: 14px;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }

  /* Mobile Hero Action Button uniform overrides removed */

  .hero-actions .text-button {
    display: none;
  }

  .hero-visual {
    min-height: 500px;
    width: 100%;
    margin-top: -54px;
  }

  .hero-silhouette {
    left: 50%;
    bottom: 72px;
    width: 390px;
    transform: translateX(-50%);
    opacity: 1;
  }

  .hero-mockup {
    left: 50%;
    right: auto;
    bottom: 86px;
    width: 520px;
    transform: translateX(-52%);
    filter: drop-shadow(16px 22px 18px rgba(52, 52, 52, 0.2));
  }

  .partner-label {
    font-size: 24px;
  }

  .partner-carousel {
    grid-column: 1 / -1;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }

  .partner-strip-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 18px;
    column-gap: 0;
    padding: 28px 0 24px;
  }

  .partner-label {
    grid-column: auto;
  }

  .partner-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: 300%;
    transform: translateX(0);
    transition: transform 320ms ease;
    will-change: transform;
  }

  .partner-logo {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    margin: 0 auto;
    justify-self: center;
  }

  .partner-drop {
    max-height: 108px;
    padding-top: 10px;
  }

  .partner-fence {
    max-height: 94px;
    padding-bottom: 10px;
  }

  .partner-creatly {
    max-height: 78px;
    padding-bottom: 10px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }

  .about-copy {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .about-copy p {
    max-width: 320px;
    margin-bottom: 18px;
    text-align: center;
  }

  .about-photo {
    order: 1;
    min-height: 260px;
  }

  .photo-badge-shell {
    top: -24px;
    right: 14px;
    left: auto;
    width: 90px;
    height: 90px;
    transform: none;
  }

  .photo-badge {
    inset: 11px;
    width: calc(100% - 22px);
    height: calc(100% - 22px);
  }

  .about-mobile-button {
    display: inline-flex;
    margin-top: 6px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .services-header {
    justify-content: center;
  }

  .services-header > div {
    width: 100%;
    text-align: center;
  }

  .services-label,
  .services-title {
    text-align: center;
  }

  .services-carousel {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    column-gap: 10px;
    margin-top: 22px;
  }

  .services-arrow {
    display: inline-flex;
  }

  .service-grid {
    position: relative;
    min-height: 292px;
    margin-top: 0;
  }

  .service-card {
    position: absolute;
    inset: 0;
    min-height: 292px;
    margin: 0;
    padding: 28px 24px 24px;
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.985);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .service-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .service-graphic {
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }

  .service-card h3 {
    margin: 14px 0 10px;
    font-size: 22px;
    line-height: 25px;
  }

  .cta-banner {
    margin-top: 0;
  }

  .cta-content {
    padding: 48px 18px 30px;
  }

  .cta-content h2 {
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
  }

  .cta-content p {
    max-width: 255px;
    margin: 16px auto 24px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
  }

  .cta-banner .pill-button-accent {
    min-width: 250px;
    min-height: 64px;
    padding: 14px 20px;
    font-size: 18px;
    line-height: 19px;
    font-weight: 700;
    text-align: center;
    white-space: normal;
  }

  .cta-overlap {
    margin-top: -56px;
    margin-bottom: -56px;
  }

  .services {
    padding-bottom: 110px;
  }

  .process {
    padding-top: 128px;
    padding-bottom: 72px;
  }

  .process-heading {
    font-size: 48px;
    line-height: 52px;
  }

  .process-track {
    gap: 34px;
    margin-top: 52px;
  }

  .process-icon {
    width: 118px;
    height: 118px;
  }

  .process-icon-image {
    width: 58px;
    height: 58px;
  }

  .process-step h3 {
    margin-top: 22px;
  }

  .process-step p {
    max-width: 290px;
  }

  .connector-line {
    height: 112px;
  }

  .process-button {
    min-width: 100%;
    min-height: 60px;
    font-size: 18px;
    line-height: 22px;
  }

  .testimonial-grid {
    position: relative;
    min-height: 340px;
  }

  .testimonials-carousel {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    align-items: center;
    column-gap: 10px;
    margin-top: 26px;
  }

  .testimonials-arrow {
    display: inline-flex;
  }

  .testimonial-card {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 340px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.985);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .footer-inner {
    gap: 26px;
    padding: 42px 0 34px;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .logo-image-footer {
    height: 74px;
  }

  .socials {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .footer-cta {
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-cta p {
    text-align: center;
  }

  .footer-cta p:last-child {
    white-space: nowrap;
  }

  .faq {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .faq-list {
    width: 100%;
    margin-top: 36px;
  }

  .faq summary {
    padding: 22px 64px 22px 24px;
    font-size: 18px;
    line-height: 22px;
  }

  .faq summary::after {
    right: 24px;
    width: 12px;
    height: 12px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .faq details p {
    padding: 0 24px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill-button,
  .text-button,
  .hero,
  .partner-strip,
  .about,
  .services,
  .cta-overlap,
  .process,
  .testimonials,
  .faq,
  .footer {
    transition: none;
    transform: none;
    filter: none;
  }

  .hero,
  .partner-strip,
  .about,
  .services,
  .cta-overlap,
  .process,
  .testimonials,
  .faq,
  .footer {
    opacity: 1;
  }
}
