:root {
  color-scheme: light;
  --ink: #111315;
  --ink-soft: #4e555d;
  --ink-muted: #717982;
  --paper: #f8f6f1;
  --paper-2: #efebe4;
  --surface: #ffffff;
  --surface-strong: #f2f5f3;
  --line: rgba(17, 19, 21, 0.12);
  --line-strong: rgba(17, 19, 21, 0.2);
  --dark: #121719;
  --dark-2: #1f292c;
  --gold: #c69a4b;
  --gold-2: #f1c96b;
  --green: #2f7b61;
  --check-green: #4caf50;
  --red: #a7463c;
  --blue: #2d5f7a;
  --shadow: 0 28px 70px rgba(17, 19, 21, 0.12);
  --radius: 8px;
  --header-height: 72px;
  --header-top-offset: 20px;
  --mobile-menu-height: 100svh;
  --font-body:
    Manrope, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --font-display:
    Sora, Manrope, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  font-weight: 430;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon {
  display: block;
  flex: 0 0 auto;
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
.brand,
.button,
.proof-item strong {
  font-family: var(--font-display);
}

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

.site-header {
  position: absolute;
  top: var(--header-top-offset);
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  height: var(--header-height);
  padding: 0;
  color: #fff;
  background: transparent;
  border-bottom: 0;
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  font-weight: 740;
  letter-spacing: 0;
  line-height: 0;
}

.brand__logo {
  display: block;
  width: 162px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #161b1d;
  background: linear-gradient(135deg, var(--gold-2), #fff4c7);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(198, 154, 75, 0.26);
}

.brand__text {
  overflow: hidden;
  font-size: 0.96rem;
  line-height: 1.1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 520;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #121719;
  background: var(--gold-2);
  font-weight: 760;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #121719;
  background: #ffe08a;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition:
    transform 180ms ease,
    top 180ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #111719;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 13, 14, 0.92) 0%,
      rgba(10, 13, 14, 0.82) 32%,
      rgba(10, 13, 14, 0.32) 62%,
      rgba(10, 13, 14, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 13, 14, 0.18) 0%,
      rgba(10, 13, 14, 0.42) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 1120px;
  padding: 88px 0 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 780;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.62;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.15;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  color: #121719;
  background: linear-gradient(135deg, var(--gold-2), #fff0b8);
  box-shadow: 0 18px 38px rgba(241, 201, 107, 0.22);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  color: var(--dark);
  background: #fff;
}

.button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.button--form {
  width: 100%;
  color: var(--dark);
  background: var(--gold-2);
}

.button__icon {
  width: 19px;
  height: 19px;
  stroke-width: 2.1;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(780px, 100%);
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__stats div {
  padding: 18px 18px 18px 0;
}

.hero__stats dt {
  margin: 0;
  color: #fff;
  font-size: 1.48rem;
  font-weight: 760;
  line-height: 1.05;
}

.hero__stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.transformation__copy h2,
.faq__intro h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 760;
}

.section-heading p:not(.eyebrow),
.transformation__copy p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.68;
}

.problem-snapshot {
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}

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

.presence-card,
.service-card,
.testimonial,
.growth-panel,
.audit-form,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.presence-card {
  --presence-content-width: 430px;
  min-height: 316px;
  padding: 28px;
  overflow: hidden;
}

.presence-card--weak {
  background:
    linear-gradient(
      145deg,
      rgba(167, 70, 60, 0.1),
      rgba(255, 255, 255, 0.86) 46%
    ),
    #fff;
}

.presence-card--strong {
  background:
    linear-gradient(
      145deg,
      rgba(47, 123, 97, 0.13),
      rgba(255, 255, 255, 0.9) 50%
    ),
    #fff;
}

.presence-card__topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
}

.status-dot--weak {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(167, 70, 60, 0.11);
}

.status-dot--strong {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 123, 97, 0.12);
}

.presence-card__image-wrapper {
  display: grid;
  place-items: center;
  margin: 22px 0 0;
  overflow: visible;
}

.presence-card__image {
  display: block;
  width: min(100%, var(--presence-content-width));
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(17, 19, 21, 0.14);
}

.presence-card h3 {
  width: min(100%, var(--presence-content-width));
  margin: 26px auto 18px;
  font-size: 1.22rem;
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 740;
}

.presence-card .issue-list,
.presence-card .success-list {
  width: min(100%, var(--presence-content-width));
  margin: 0 auto;
  gap: 11px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.presence-card .issue-list li,
.presence-card .success-list li {
  min-height: 22px;
  padding-left: 30px;
}

.service-card h3 {
  margin: 18px 0 18px;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 740;
}

.issue-list,
.success-list,
.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-list li,
.success-list li,
.feature-list li {
  position: relative;
  min-height: 24px;
  padding-left: 32px;
  color: var(--ink-soft);
}

.issue-list li::before,
.success-list li::before,
.feature-list li::before {
  position: absolute;
  content: "";
}

.issue-list li::before {
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background-color: rgba(167, 70, 60, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a7463c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.success-list li::before,
.feature-list li::before {
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background-color: var(--check-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.journey {
  margin-top: 22px;
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  box-shadow: 0 26px 70px rgba(18, 23, 25, 0.22);
}

.journey__header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.small-label {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journey__header strong {
  max-width: 780px;
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 680;
}

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

.journey-step {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.journey-step span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 99px;
  font-weight: 760;
}

.journey-step--missed span {
  background: rgba(167, 70, 60, 0.2);
  color: #ffc4bd;
}

.journey-step--won span {
  background: rgba(47, 123, 97, 0.22);
  color: #baf5dd;
}

.journey-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.reasons {
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 0%,
      rgba(167, 70, 60, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 100%,
      rgba(47, 123, 97, 0.08),
      transparent
    ),
    var(--dark);
  color: #fff;
}

.reasons__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.reasons__copy {
  margin-top: 64px;
}

.reasons__copy h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 760;
}

.reasons__copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.68;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-2);
  font-weight: 720;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 170ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

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

.reason-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.reason-card__icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
}

.reason-card__icon .icon {
  width: 18px;
  height: 18px;
}

.reason-card--bad .reason-card__icon {
  color: #ff9b8e;
  background: rgba(167, 70, 60, 0.18);
  box-shadow: 0 0 0 1px rgba(167, 70, 60, 0.25);
}

.reason-card--bad:hover .reason-card__icon {
  background: rgba(167, 70, 60, 0.28);
  box-shadow:
    0 0 0 1px rgba(167, 70, 60, 0.35),
    0 0 20px rgba(167, 70, 60, 0.15);
}

.reason-card__content {
  flex: 1;
  min-width: 0;
}

.reason-card__content strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.3;
}

.reason-card__content p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.48;
}

.reason-card__dislike {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ff6b5a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.reason-card:hover .reason-card__dislike {
  opacity: 1;
  transform: scale(1.05);
}

.reason-card--good {
  grid-column: 1 / -1;
  padding: 22px 20px;
  border: 1px solid rgba(47, 123, 97, 0.4);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(47, 123, 97, 0.14) 0%,
    rgba(47, 123, 97, 0.06) 50%,
    rgba(241, 201, 107, 0.06) 100%
  );
  box-shadow:
    0 0 50px rgba(47, 123, 97, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reason-card--good:hover {
  border-color: rgba(47, 123, 97, 0.55);
  background: linear-gradient(
    135deg,
    rgba(47, 123, 97, 0.2) 0%,
    rgba(47, 123, 97, 0.08) 50%,
    rgba(241, 201, 107, 0.08) 100%
  );
  box-shadow:
    0 0 60px rgba(47, 123, 97, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reason-card--good .reason-card__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #5eed9e;
  background: rgba(47, 123, 97, 0.2);
  box-shadow:
    0 0 0 1px rgba(47, 123, 97, 0.3),
    0 0 24px rgba(47, 123, 97, 0.12);
}

.reason-card--good .reason-card__icon .icon {
  width: 20px;
  height: 20px;
}

.reason-card--good .reason-card__content strong {
  font-size: 1.02rem;
  font-weight: 720;
}

.reason-card--good .reason-card__content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.reason-card__badge {
  display: inline-flex;
  align-self: center;
  padding: 5px 12px;
  color: #baf5dd;
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 123, 97, 0.4);
  border-radius: 99px;
  background: rgba(47, 123, 97, 0.14);
  white-space: nowrap;
}

.reasons__solution {
  grid-column: 2;
  margin-top: -26px;
}

.services {
  background: linear-gradient(180deg, #fff 0%, rgba(248, 246, 241, 0.72) 100%);
}

.services .section-heading {
  max-width: 820px;
}

.services .section-heading h2 {
  max-width: 760px;
  font-size: 2.32rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, 0.1);
}

.service-card {
  --service-accent: var(--gold);
  position: relative;
  padding: 26px 24px 28px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 44px;
  height: 3px;
  content: "";
  border-radius: 0 0 99px 99px;
  background: var(--service-accent);
  opacity: 0.38;
}

.service-card:hover {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 21, 0.08);
}

.service-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: color-mix(in srgb, currentColor 8%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 16%, transparent);
}

.service-card__icon .icon {
  width: 22px;
  height: 22px;
}

.service-card__icon--site {
  color: var(--blue);
}

.service-card__icon--menu {
  color: var(--green);
}

.service-card__icon--map {
  color: var(--red);
}

.service-card__icon--social {
  color: var(--gold);
}

.service-card:nth-child(1) {
  --service-accent: var(--blue);
}

.service-card:nth-child(2) {
  --service-accent: var(--green);
}

.service-card:nth-child(3) {
  --service-accent: var(--red);
}

.service-card:nth-child(4) {
  --service-accent: var(--gold);
}

.service-card h3 {
  font-size: 1.36rem;
  line-height: 1.18;
}

.service-card p {
  min-height: 70px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.62;
}

.feature-list {
  gap: 7px;
  font-size: 0.9rem;
}

.service-card .feature-list li {
  min-height: 20px;
  padding-left: 24px;
}

.service-card .feature-list li::before {
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234caf50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
}

.transformation {
  background:
    radial-gradient(
      circle at 16% 8%,
      rgba(198, 154, 75, 0.16),
      transparent 32%
    ),
    var(--paper-2);
}

.transformation__layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
}

.growth-panel {
  padding: 28px;
  background: #fff;
}

.growth-panel__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.growth-panel__columns > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.growth-panel__columns strong {
  display: block;
  margin: 7px 0 16px;
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 720;
}

.metric-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 170px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(17, 19, 21, 0.05) 1px, transparent 1px) 0 0 / 100% 25%,
    #fbfaf7;
}

.metric-chart span {
  flex: 1;
  min-width: 28px;
  height: 12%;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  transform-origin: bottom;
  transition: height 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.metric-chart.is-visible span {
  height: var(--height);
}

.stories {
  background: #fff;
}

.trustpilot-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin: -18px 0 34px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 19, 21, 0.08);
}

.trustpilot-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 780;
}

.trustpilot-mark {
  width: 20px;
  height: 20px;
  background: #00b67a;
  clip-path: polygon(
    50% 4%,
    61% 36%,
    95% 36%,
    68% 55%,
    79% 89%,
    50% 68%,
    21% 89%,
    32% 55%,
    5% 36%,
    39% 36%
  );
}

.trustpilot-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.trustpilot-summary p strong {
  color: var(--ink);
}

.rating-stars {
  display: inline-flex;
  gap: 3px;
}

.rating-star {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #00b67a;
  position: relative;
}

.rating-star::before {
  position: absolute;
  inset: 4px;
  content: "";
  background: #fff;
  clip-path: polygon(
    50% 4%,
    61% 36%,
    95% 36%,
    68% 55%,
    79% 89%,
    50% 68%,
    21% 89%,
    32% 55%,
    5% 36%,
    39% 36%
  );
}

.rating-stars--small .rating-star {
  width: 19px;
  height: 19px;
  border-radius: 3px;
}

.rating-stars--small .rating-star::before {
  inset: 3.5px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mobile-carousel__viewport {
  overflow: visible;
}

.mobile-carousel__button,
.mobile-carousel__dots {
  display: none;
}

.mobile-carousel__button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 19, 21, 0.08);
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mobile-carousel__button:hover,
.mobile-carousel__button:focus-visible {
  color: var(--green);
  border-color: rgba(47, 123, 97, 0.28);
  transform: translateY(-1px);
}

.mobile-carousel__button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.mobile-carousel__button--light:hover,
.mobile-carousel__button--light:focus-visible {
  color: var(--gold-2);
  border-color: rgba(241, 201, 107, 0.36);
}

.mobile-carousel__button .icon {
  width: 20px;
  height: 20px;
}

.mobile-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(17, 19, 21, 0.18);
  transition:
    background 160ms ease,
    transform 160ms ease,
    width 160ms ease;
}

.mobile-carousel__dot[aria-selected="true"] {
  width: 22px;
  background: var(--green);
}

.mobile-carousel__dots--light .mobile-carousel__dot {
  background: rgba(255, 255, 255, 0.28);
}

.mobile-carousel__dots--light .mobile-carousel__dot[aria-selected="true"] {
  background: var(--gold-2);
}

.testimonial {
  display: grid;
  align-content: start;
  gap: 16px;
  margin: 0;
  padding: 24px;
  box-shadow: none;
}

.testimonial__topline {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial__photo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 2px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(17, 19, 21, 0.14);
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink-soft);
}

.testimonial figcaption {
  color: var(--ink);
  font-weight: 720;
}

.testimonial__meta,
.testimonial__meta strong,
.testimonial__meta span {
  display: block;
}

.testimonial__meta span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 520;
}

.proof-band {
  padding: 52px 0;
  color: #fff;
  background: var(--dark-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.proof-item {
  padding: 26px;
  background: var(--dark-2);
}

.proof-item strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 760;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 254px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--gold);
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 10%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 18%, transparent);
}

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

.process-icon--audit {
  color: var(--gold);
}

.process-icon--strategy {
  color: var(--blue);
}

.process-icon--website {
  color: var(--green);
}

.process-icon--maps {
  color: var(--red);
}

.process-icon--growth {
  color: var(--check-green);
}

.process-list strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.28;
  font-weight: 720;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.faq {
  background: #fff;
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  overflow: hidden;
  box-shadow: none;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 23px 58px 23px 24px;
  color: var(--ink);
  text-align: left;
  border: 0;
  background: transparent;
  font-weight: 720;
  line-height: 1.28;
}

.faq-item button::before,
.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: transform 160ms ease;
}

.faq-item button::after {
  transform: rotate(90deg);
}

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

.faq-item__body {
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.final-cta {
  padding: 92px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 23, 25, 0.95), rgba(31, 41, 44, 0.98)),
    var(--dark);
}

.final-cta__layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 44px;
  align-items: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.audit-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  scroll-margin-top: 24px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 650;
}

.required-mark {
  color: #ff6b6b;
  font-weight: 700;
}

.optional-mark {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 450;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(241, 201, 107, 0.12);
}

.form-row select option {
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.form-note.is-success {
  color: #baf5dd;
  font-weight: 650;
}

.form-note.is-error {
  color: #ffb4ab;
  font-weight: 650;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0d1112;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand__logo {
  width: 190px;
}

.site-footer__brand {
  display: grid;
  gap: 14px;
}

.site-footer__brand p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--gold-2);
}

.site-footer__meta {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

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

@keyframes carousel-slide-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

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

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

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

/* Kill all animations on mobile devices */
@media (max-width: 860px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

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

  /* Keep only essential interactive transitions */
  .button {
    transition: background 120ms ease !important;
  }

  .faq-item button::after {
    transition: transform 140ms ease !important;
  }

  .site-header {
    transition:
      background 200ms ease,
      box-shadow 200ms ease !important;
  }

  .site-nav {
    transition:
      opacity 160ms ease,
      transform 180ms ease,
      visibility 160ms ease !important;
  }
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card p {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
    --header-top-offset: 14px;
  }

  body.nav-open::before {
    position: fixed;
    inset: 0 0 auto;
    z-index: 45;
    height: var(--mobile-menu-height);
    content: "";
    background:
      radial-gradient(
        circle at 78% 12%,
        rgba(241, 201, 107, 0.14),
        transparent 28%
      ),
      rgba(9, 12, 13, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-header {
    position: absolute;
    z-index: 70;
    width: 100%;
    left: 0;
    transform: none;
    padding: 0 24px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled {
    padding: 0 24px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle {
    display: block;
    color: var(--gold-2);
    background: rgba(13, 17, 18, 0.52);
    border: 1px solid rgba(241, 201, 107, 0.36);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-toggle span {
    left: 12px;
    width: 18px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 55;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 10px;
    height: var(--mobile-menu-height);
    min-height: 0;
    padding: calc(var(--header-height) + var(--header-top-offset) + 28px) 24px
      28px;
    overflow-y: auto;
    color: #fff;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(145deg, rgba(13, 17, 18, 0.98), rgba(23, 34, 34, 0.96)),
      #0d1112;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 8vw, 2.7rem);
    font-weight: 760;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
  }

  .site-nav a::after {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    content: "";
    background:
      linear-gradient(currentColor, currentColor) center / 13px 2px no-repeat,
      linear-gradient(currentColor, currentColor) calc(50% + 5px)
        calc(50% - 4px) / 8px 2px no-repeat,
      linear-gradient(currentColor, currentColor) calc(50% + 5px)
        calc(50% + 4px) / 8px 2px no-repeat;
    opacity: 0.54;
    transform: rotate(0deg);
  }

  .site-nav .nav-cta {
    justify-content: center;
    min-height: 58px;
    margin: 18px 0 0;
    padding: 17px 18px;
    color: #111719;
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
    border-bottom: 0;
    border-radius: 8px;
    background: var(--gold-2);
    box-shadow: 0 18px 45px rgba(198, 154, 75, 0.28);
  }

  .site-nav .nav-cta::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__image {
    object-position: 80% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(10, 13, 14, 0.88) 0%,
        rgba(10, 13, 14, 0.82) 50%,
        rgba(10, 13, 14, 0.55) 100%
      ),
      linear-gradient(
        180deg,
        rgba(10, 13, 14, 0.15) 0%,
        rgba(10, 13, 14, 0.6) 100%
      );
  }

  .hero h1 {
    max-width: 640px;
    font-size: 3rem;
  }

  .hero__stats,
  .comparison-grid,
  .journey__steps,
  .reasons__layout,
  .transformation__layout,
  .faq__layout,
  .final-cta__layout {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .final-cta {
    padding: 72px 0;
  }

  .section-heading h2,
  .reasons__copy h2,
  .transformation__copy h2,
  .faq__intro h2,
  .final-cta h2 {
    font-size: 2.08rem;
  }

  .reasons__copy {
    position: static;
  }

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

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

  .trustpilot-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__logo {
    width: 136px;
  }

  .brand--footer .brand__logo {
    width: 168px;
  }

  .brand__text {
    max-width: min(225px, calc(100vw - 138px));
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 104px 0 36px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-top: 16px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    font-size: 0.92rem;
  }

  .hero__actions {
    margin-top: 22px;
    gap: 10px;
  }

  .hero__stats {
    margin-top: 26px;
  }

  .hero__stats div {
    padding: 12px 10px 12px 0;
  }

  .hero__stats dt {
    font-size: 1.15rem;
  }

  .hero__stats dd {
    font-size: 0.78rem;
  }

  .services-grid,
  .proof-grid,
  .process-list,
  .growth-panel__columns,
  .reasons__grid {
    grid-template-columns: 1fr;
  }

  .presence-card,
  .journey,
  .audit-form {
    padding: 20px;
  }

  .growth-panel {
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
  }

  .metric-chart {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .journey__header {
    margin-bottom: 18px;
  }

  .journey-step {
    align-items: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .section-heading h2,
  .reasons__copy h2,
  .transformation__copy h2,
  .faq__intro h2,
  .final-cta h2 {
    font-size: 1.62rem;
  }

  .section-heading p:not(.eyebrow),
  .transformation__copy p,
  .final-cta p,
  .reasons__copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .section,
  .final-cta {
    padding: 56px 0;
  }

  .final-cta__actions {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .process-list li {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

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

  .proof-grid {
    gap: 1px;
  }

  .proof-item strong {
    font-size: 1.9rem;
  }

  .presence-card h3 {
    font-size: 1.12rem;
    margin: 20px auto 14px;
  }

  .presence-card .issue-list,
  .presence-card .success-list {
    font-size: 0.95rem;
  }

  .service-card h3 {
    font-size: 1.22rem;
    margin: 14px 0 14px;
  }

  .testimonial {
    padding: 20px;
  }

  .mobile-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-content: stretch;
  }

  .mobile-carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
  }

  .mobile-carousel [data-carousel-track] {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }

  .mobile-carousel [data-carousel-slide] {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }

  .mobile-carousel [data-carousel-slide][aria-hidden="false"] {
    animation: carousel-slide-in 320ms ease both !important;
    z-index: 2;
  }

  .mobile-carousel [data-carousel-slide][aria-hidden="true"] {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-carousel__button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    transition:
      border-color 160ms ease,
      color 160ms ease,
      transform 160ms ease !important;
  }

  .mobile-carousel__button[data-carousel-prev] {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .mobile-carousel__button[data-carousel-next] {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .mobile-carousel__dots {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }

  .mobile-carousel__dot {
    transition:
      background 160ms ease,
      width 160ms ease !important;
  }

  .services-grid {
    border: 0;
    background: transparent;
  }

  .service-card {
    border: 1px solid rgba(17, 19, 21, 0.1);
    border-radius: var(--radius);
  }

  .reason-card--good {
    grid-column: auto;
  }

  .reasons__solution {
    margin-top: 18px;
  }

  .eyebrow {
    font-size: 0.72rem;
  }
}
