@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600&display=swap");

:root {
  --cream: #f8f5ef;
  --ink: #071a32;
  --sky: #8fc9ec;
  --blue: #0874cb;
  --yellow: #ffbd3e;
  --line: rgba(7, 26, 50, 0.18);
}
/* Unified navigation, audit modal and resource pages */
html:has(.resource-page) {
  scroll-snap-type: none;
  scroll-padding-top: 84px;
}

.site-header {
  z-index: 60;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav li > a > span {
  color: var(--blue);
  font-size: 13px;
  transition: transform 160ms ease;
}

.desktop-nav .nav-dropdown:hover > a > span,
.desktop-nav .nav-dropdown:focus-within > a > span {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  width: 270px;
  display: grid;
  gap: 2px;
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 80;
  padding: 13px;
  border: 1px solid rgba(7, 26, 50, 0.14);
  border-radius: 14px;
  background: rgba(250, 248, 244, 0.985);
  box-shadow: 0 22px 60px rgba(7, 26, 50, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.nav-dropdown-panel::before {
  content: "";
  height: 28px;
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel p {
  margin: 2px 10px 8px;
  color: rgba(7, 26, 50, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav .nav-dropdown-panel > a {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  white-space: normal;
}

.desktop-nav .nav-dropdown-panel > a:hover,
.desktop-nav .nav-dropdown-panel > a:focus-visible {
  background: rgba(143, 201, 236, 0.16);
  color: var(--blue);
}

.desktop-nav .nav-dropdown-panel > a small {
  color: rgba(7, 26, 50, 0.5);
  font-size: 9px;
  white-space: nowrap;
}

.desktop-nav .nav-dropdown-panel > .nav-dropdown-featured {
  margin-top: 5px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  color: var(--blue);
  font-weight: 700;
}

.nav-dropdown-panel--solutions {
  width: 292px;
}

.nav-dropdown-panel--services {
  width: 310px;
}

.nav-dropdown-panel--cases {
  width: 340px;
  max-height: min(530px, calc(100vh - 110px));
  overflow-y: auto;
}

.ai-assistant-badge {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  cursor: pointer;
  padding: 4px 14px 4px 4px;
  border: 1px solid rgba(8, 116, 203, 0.3);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue);
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.ai-assistant-badge:hover,
.ai-assistant-badge:focus-visible {
  border-color: rgba(8, 116, 203, 0.62);
  background: #fff;
  transform: translateY(-1px);
}

.ai-assistant-badge img {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
}

.ai-assistant-badge > span {
  display: grid;
  gap: 1px;
}

.ai-assistant-badge strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.ai-assistant-badge small {
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Aiex — the same multilingual assistant used on Koliesnikov.com. */
.ai-chat {
  position: relative;
  z-index: 15000;
}

.ai-chat-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(7, 26, 50, 0.42);
  opacity: 0;
  animation: ai-chat-fade 180ms ease forwards;
}

.ai-chat-panel {
  width: min(430px, calc(100vw - 44px));
  height: min(680px, calc(100svh - 44px));
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  background: #f5f8fb;
  box-shadow: 0 30px 100px rgba(7, 26, 50, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.ai-chat.is-open .ai-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ai-chat-panel > header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px 14px 17px;
  background: var(--ink);
  color: #fff;
}

.ai-chat-identity,
.ai-chat-controls {
  display: flex;
  align-items: center;
}

.ai-chat-identity {
  min-width: 0;
  gap: 11px;
}

.ai-chat-identity > span {
  width: 44px;
  height: 44px;
  position: relative;
  flex: 0 0 44px;
}

.ai-chat-identity img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.ai-chat-identity i {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  right: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #20c977;
}

.ai-chat-identity strong,
.ai-chat-identity small {
  display: block;
}

.ai-chat-identity strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.ai-chat-identity small {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-chat-controls {
  flex: 0 0 auto;
  gap: 7px;
}

.ai-chat-controls button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font: 21px/1 Arial, sans-serif;
  cursor: pointer;
}

.ai-chat-controls button:hover,
.ai-chat-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ai-chat-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 22px 18px;
}

.ai-message {
  max-width: 90%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.ai-message > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(8, 116, 203, 0.16);
  border-radius: 50%;
  background: #fff;
}

.ai-message > span img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ai-message p {
  margin: 0;
  padding: 11px 13px;
  border-radius: 17px 17px 17px 5px;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.ai-message.is-assistant p {
  border: 1px solid rgba(7, 26, 50, 0.1);
  background: #fff;
  color: rgba(7, 26, 50, 0.78);
}

.ai-message.is-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-message.is-user > span {
  display: none;
}

.ai-message.is-user p {
  border-radius: 17px 17px 5px 17px;
  background: var(--blue);
  color: #fff;
}

.ai-message-stack {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-language-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ai-language-options button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(8, 116, 203, 0.28);
  border-radius: 11px;
  background: #fff;
  color: var(--blue);
  font: 700 11px/1 "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.ai-language-options button:hover,
.ai-language-options button:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.ai-typing {
  display: flex;
  gap: 4px;
  padding: 15px !important;
}

.ai-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(7, 26, 50, 0.46);
  animation: ai-chat-dot 1.2s infinite;
}

.ai-typing i:nth-child(2) {
  animation-delay: 150ms;
}

.ai-typing i:nth-child(3) {
  animation-delay: 300ms;
}

.ai-chat-panel > form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0 14px 10px;
  padding: 8px;
  border: 1px solid rgba(7, 26, 50, 0.13);
  border-radius: 18px;
  background: #fff;
}

.ai-chat-panel textarea {
  max-height: 100px;
  min-height: 38px;
  flex: 1;
  resize: none;
  padding: 9px 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 12px/1.5 "Manrope", Arial, sans-serif;
}

.ai-chat-panel textarea:disabled {
  color: rgba(7, 26, 50, 0.45);
  cursor: not-allowed;
}

.ai-chat-panel > form button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  font: 22px/1 Arial, sans-serif;
  cursor: pointer;
}

.ai-chat-panel > form button:disabled {
  background: rgba(7, 26, 50, 0.12);
  color: rgba(7, 26, 50, 0.32);
  cursor: not-allowed;
}

.ai-chat-panel > footer {
  padding: 0 18px 12px;
  color: rgba(7, 26, 50, 0.46);
  font-size: 8px;
  text-align: center;
}

@keyframes ai-chat-fade {
  to {
    opacity: 1;
  }
}

@keyframes ai-chat-dot {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 600px) {
  .ai-chat-panel {
    width: 100%;
    height: min(720px, calc(100svh - 22px));
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 22px 22px 0 0;
  }

  .ai-chat-messages {
    padding-bottom: 15px;
  }
}

.button,
.footer-audit,
.audit-modal button,
.resource-callout button {
  font-family: inherit;
  cursor: pointer;
}

.footer-audit {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 0 17px;
  border: 0;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.footer-audit span {
  font-size: 17px;
}

.audit-modal-backdrop {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 24px;
  overflow-y: auto;
  background: rgba(3, 14, 29, 0.72);
  backdrop-filter: blur(10px);
}

.audit-modal {
  width: min(940px, 100%);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  position: relative;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
}

.audit-modal-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border: 1px solid rgba(7, 26, 50, 0.16);
  border-radius: 50%;
  background: rgba(248, 245, 239, 0.85);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.audit-modal-intro {
  min-height: 100%;
  padding: 58px 42px;
  background:
    radial-gradient(circle at 40% 20%, rgba(143, 201, 236, 0.55), transparent 34%),
    linear-gradient(150deg, #0b2b4f 0%, var(--ink) 100%);
  color: white;
}

.audit-modal-intro > p {
  margin: 0;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.audit-modal-intro h2 {
  max-width: 330px;
  margin: 20px 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 4vw, 62px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.audit-modal-intro > span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.audit-modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 16px;
  padding: 58px 48px 42px;
}

.audit-modal-form label {
  display: grid;
  gap: 7px;
}

.audit-modal-form label > span {
  color: rgba(7, 26, 50, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.audit-modal-form input,
.audit-modal-form select {
  width: 100%;
  min-height: 47px;
  padding: 0 13px;
  border: 1px solid rgba(7, 26, 50, 0.18);
  border-radius: 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: 13px/1.4 "Manrope", Arial, sans-serif;
}

.audit-modal-form input:focus,
.audit-modal-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 116, 203, 0.1);
}

.audit-modal-wide {
  grid-column: 1 / -1;
}

.audit-modal-form .audit-modal-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 3px;
}

.audit-modal-form .audit-modal-consent input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
}

.audit-modal-form .audit-modal-consent > span {
  font-size: 10px;
  line-height: 1.55;
  font-weight: 500;
}

.audit-modal-submit {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.audit-modal-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.audit-modal-error {
  grid-column: 1 / -1;
  margin: 0;
  color: #a22b2b;
  font-size: 11px;
  line-height: 1.5;
}

.audit-modal-error a {
  text-decoration: underline;
}

.audit-modal-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 58px;
}

.audit-modal-success > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 22px;
}

.audit-modal-success h3 {
  margin: 24px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
}

.audit-modal-success p {
  max-width: 430px;
  margin: 0;
  color: rgba(7, 26, 50, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.audit-modal-success button {
  min-height: 45px;
  margin-top: 28px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
}

.resource-page {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 6%, rgba(143, 201, 236, 0.24), transparent 28%),
    linear-gradient(180deg, #fbf9f5 0%, var(--cream) 100%);
}

.resource-hero {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(30px, 7vw, 116px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.resource-hero::after {
  content: "GEO";
  position: absolute;
  right: -15px;
  bottom: -95px;
  color: rgba(8, 116, 203, 0.055);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(230px, 28vw, 460px);
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.resource-hero > p {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.resource-hero h1 {
  max-width: 970px;
  font-size: clamp(68px, 7.4vw, 118px);
  position: relative;
  z-index: 1;
}

.resource-hero > span {
  max-width: 760px;
  margin-top: 30px;
  color: rgba(7, 26, 50, 0.68);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.resource-content {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  padding: 90px 0 110px;
}

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

.resource-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.resource-card > span {
  color: var(--blue);
  font-size: 11px;
}

.resource-card h2 {
  margin: 47px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 0.98;
  font-weight: 500;
}

.resource-card p {
  margin: 0;
  color: rgba(7, 26, 50, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.resource-card a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.resource-callout {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 72px;
  padding: 42px 52px;
  border-radius: 16px;
  background: var(--ink);
  color: white;
}

.resource-callout p {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.resource-callout h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 500;
}

.resource-callout button {
  min-width: 218px;
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 100px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 8px;
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

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

.faq-list summary > span {
  color: var(--blue);
  font: 10px/1 "Manrope", Arial, sans-serif;
}

.faq-list details > p {
  max-width: 840px;
  margin: 0 0 38px 90px;
  color: rgba(7, 26, 50, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 54px 0 15px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1;
  font-weight: 500;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: rgba(7, 26, 50, 0.7);
  font-size: 15px;
  line-height: 1.85;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-content small {
  display: block;
  margin-top: 66px;
  color: rgba(7, 26, 50, 0.5);
}

@media (max-width: 1100px) {
  .mobile-nav {
    display: block;
    max-height: 0;
    padding: 0 20px;
    overflow-y: hidden;
    visibility: hidden;
  }

  .mobile-nav-open {
    max-height: calc(100dvh - 66px);
    padding-top: 8px;
    padding-bottom: 18px;
    overflow-y: auto;
    visibility: visible;
  }

  .mobile-nav > a,
  .mobile-nav-group > a {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
  }

  .mobile-nav > a span,
  .mobile-nav-group > a span {
    font: 9px/1 "Manrope", Arial, sans-serif;
    opacity: 0.5;
  }

  .mobile-nav-group > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px 16px;
    padding: 10px 0 14px 35px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-group > div a {
    padding: 7px 0;
    color: rgba(7, 26, 50, 0.72);
    font-size: 11px;
    line-height: 1.35;
  }

  .mobile-actions {
    align-items: center;
    margin-top: 4px;
  }

  .mobile-actions .ai-assistant-badge {
    min-width: 0;
  }

  .audit-modal {
    grid-template-columns: 1fr;
  }

  .audit-modal-intro {
    min-height: auto;
    padding: 42px 50px 36px 28px;
  }

  .audit-modal-intro h2 {
    max-width: 570px;
    font-size: 48px;
  }

  .audit-modal-intro > span {
    max-width: 560px;
  }

  .audit-modal-form {
    padding: 32px 28px 30px;
  }

  .audit-modal-success {
    padding: 48px 28px;
  }

  .resource-hero {
    min-height: 470px;
    padding: 74px 28px;
  }

  .resource-content {
    width: min(100% - 48px, 760px);
    padding: 70px 0 90px;
  }

  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .audit-modal-backdrop {
    align-items: start;
    padding: 0;
  }

  .audit-modal {
    min-height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .audit-modal-intro {
    padding: 38px 54px 30px 20px;
  }

  .audit-modal-intro h2 {
    margin: 15px 0;
    font-size: 42px;
  }

  .audit-modal-form {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 26px 20px 36px;
  }

  .audit-modal-wide {
    grid-column: auto;
  }

  .resource-hero {
    min-height: 410px;
    padding: 62px 20px;
  }

  .resource-hero h1 {
    font-size: clamp(55px, 16vw, 72px);
  }

  .resource-hero > span {
    margin-top: 22px;
    font-size: 16px;
  }

  .resource-content {
    width: calc(100% - 40px);
    padding: 54px 0 76px;
  }

  .resource-card {
    min-height: 280px;
    padding: 27px 23px;
  }

  .resource-callout {
    min-height: 340px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 46px;
    padding: 34px 24px;
  }

  .resource-callout button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 86px;
    grid-template-columns: 38px 1fr;
    gap: 8px;
    font-size: 29px;
  }

  .faq-list details > p {
    margin: 0 0 32px 46px;
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
}

.site-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(32px, 2.8vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.98);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  gap: 12px;
}

.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-by {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav li {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  white-space: nowrap;
}

.desktop-nav li:not(:last-child)::after {
  content: "•";
  font-size: 10px;
  opacity: 0.9;
}

.desktop-nav a,
.footer-item {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-item:hover,
.footer-item:focus-visible {
  color: var(--blue);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-switch {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 27, 46, 0.42);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.5);
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background-color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(7, 26, 50, 0.12);
}

.button-chat {
  min-width: 158px;
  gap: 14px;
  background: rgba(248, 245, 239, 0.72);
  color: var(--blue);
  border-color: var(--blue);
}

.chat-icon {
  width: 25px;
  height: 18px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: relative;
}

.chat-icon::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 11px;
  right: -6px;
  bottom: -4px;
  border: 1.5px solid var(--blue);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.button-audit {
  min-width: 174px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  scroll-snap-align: start;
}

.hero-city {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 55%;
  transform: scale(1.015);
  filter: saturate(0.66) contrast(0.78) brightness(1.18);
  z-index: -4;
}

.city-soften {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(143, 201, 236, 0.13), rgba(248, 245, 239, 0.12)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(0.7px);
}

.cream-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(248, 245, 239, 0.99) 29%,
    rgba(248, 245, 239, 0.9) 42%,
    rgba(248, 245, 239, 0.45) 57%,
    rgba(248, 245, 239, 0.04) 76%
  );
}

.hero-copy {
  width: 57%;
  height: 100%;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 54px 0 92px clamp(50px, 4.8vw, 82px);
  position: relative;
  z-index: 5;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(68px, 5.5vw, 99px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  font-weight: 500;
}

h1 span,
.hero-subline span {
  display: block;
}

.hero-subline {
  max-width: 570px;
  margin: 20px 0 0;
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: rgba(7, 26, 50, 0.78);
}

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

.button-primary {
  min-width: 282px;
  min-height: 71px;
  font-size: 20px;
  font-weight: 500;
}

.text-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 6px;
  border-bottom: 1.5px solid var(--blue);
  font-size: 17px;
  font-weight: 500;
}

.text-link span {
  font-size: 28px;
  line-height: 1;
  transition: transform 170ms ease;
}

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

.hero-index {
  position: absolute;
  left: clamp(50px, 4.8vw, 82px);
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.index-line {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}
.founder-portrait {
  position: absolute;
  left: 64%;
  bottom: -1px;
  height: 99%;
  width: auto;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  z-index: 2;
  filter: drop-shadow(0 8px 14px rgba(7, 26, 50, 0.12));
}

.founder-note {
  position: absolute;
  left: 79.5%;
  top: 65%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
  color: rgba(7, 26, 50, 0.78);
}

.founder-note strong {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: clamp(22px, 1.65vw, 29px);
  line-height: 1;
  font-weight: 500;
}

.founder-note span {
  font-size: 14px;
}

.slide-two {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 610px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

.slide-two-city {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.64) contrast(0.8) brightness(1.28);
  z-index: -4;
}

.slide-two-soften {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(143, 201, 236, 0.09), rgba(248, 245, 239, 0.1)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.7px);
}

.slide-two-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(248, 245, 239, 0.995) 29%,
    rgba(248, 245, 239, 0.93) 42%,
    rgba(248, 245, 239, 0.58) 55%,
    rgba(248, 245, 239, 0.06) 75%
  );
}

.slide-two-copy {
  width: 58%;
  height: 100%;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: clamp(118px, 17vh, 158px) 0 90px clamp(50px, 4.2vw, 72px);
  position: relative;
  z-index: 4;
}

.slide-two h2 {
  max-width: 790px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 5.9vw, 104px);
  line-height: 0.99;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.slide-two h2 span,
.slide-two-copy > p span,
.question-card p span,
.answer-content p span {
  display: block;
}

.slide-two-copy > p {
  margin: 31px 0 0;
  max-width: 650px;
  font-size: clamp(22px, 1.62vw, 28px);
  line-height: 1.62;
  letter-spacing: -0.015em;
  color: rgba(7, 26, 50, 0.75);
}

.slide-two-index {
  position: absolute;
  left: clamp(50px, 4.2vw, 72px);
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-two-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.dialogue-stack {
  position: absolute;
  width: 625px;
  max-width: 44vw;
  right: clamp(46px, 5.5vw, 92px);
  top: 17%;
  z-index: 6;
}

.question-card,
.answer-card {
  margin: 0;
  display: grid;
  color: var(--ink);
  box-shadow:
    0 14px 38px rgba(7, 26, 50, 0.12),
    0 2px 5px rgba(7, 26, 50, 0.08);
  border: 1px solid rgba(7, 26, 50, 0.14);
  backdrop-filter: blur(14px);
}

.question-card {
  width: calc(100% - 46px);
  min-height: 164px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 24px;
  margin-left: 46px;
  padding: 31px 40px;
  background: rgba(232, 244, 255, 0.9);
  border-radius: 20px;
}

.question-card p {
  margin: 0;
  font-size: clamp(20px, 1.62vw, 28px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.user-icon {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2b8ee8;
  position: relative;
}

.user-icon::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 16px;
  border: 2px solid var(--cream);
  border-radius: 50%;
}

.user-icon span {
  position: absolute;
  width: 28px;
  height: 15px;
  bottom: 14px;
  border: 2px solid var(--cream);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.answer-card {
  min-height: 326px;
  grid-template-columns: 78px 1fr;
  gap: 25px;
  margin-top: 24px;
  padding: 51px 45px 38px 34px;
  background: rgba(255, 253, 249, 0.94);
  border-radius: 24px;
}

.answer-icon {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216, 235, 255, 0.94);
  color: var(--ink);
  font-size: 35px;
}

.answer-content {
  min-width: 0;
}

.answer-content p {
  margin: 0;
  font-size: clamp(17px, 1.38vw, 23px);
  line-height: 1.75;
  letter-spacing: -0.015em;
}

.trusted-badge {
  width: fit-content;
  min-height: 47px;
  margin-top: 25px;
  padding: 0 20px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 189, 62, 0.42);
  border-radius: 999px;
  background: rgba(255, 239, 204, 0.74);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.trusted-badge span {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 14px;
}

.slide-three {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.slide-three-copy {
  position: relative;
  z-index: 3;
  padding-top: 43px;
  text-align: center;
}

.slide-three-copy h2 {
  max-width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(76px, 5.55vw, 93px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
  transform: none;
}

.slide-three-copy h2 span,
.slide-three-copy p span,
.geo-panel-copy p span {
  display: block;
}

.slide-three-copy p {
  margin: 13px 0 0;
  font-size: clamp(21px, 1.52vw, 25.5px);
  line-height: 1.36;
  color: var(--ink);
}

.slide-three-panels {
  position: absolute;
  z-index: 1;
  top: clamp(285px, 31.2vh, 310px);
  left: clamp(52px, 3.45vw, 58px);
  right: clamp(52px, 4.05vw, 68px);
  height: clamp(400px, 47vh, 440px);
  display: grid;
  grid-template-columns: 1.065fr 1fr;
  gap: clamp(28px, 2.15vw, 36px);
}

.geo-panel {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.geo-panel-local {
  background-image: url("/assets/icons/slide-three-local-blob.png");
}

.geo-panel-authority {
  background-image: url("/assets/icons/slide-three-authority-blob.png");
  background-position: center 14px;
}

.geo-panel-local-art {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 41px;
  width: 430px;
  height: 330px;
  object-fit: contain;
}

.geo-panel-authority-art {
  position: absolute;
  z-index: 2;
  left: 62px;
  top: 135px;
  width: 205px;
  height: auto;
  object-fit: contain;
}

.geo-panel-copy {
  position: absolute;
  z-index: 3;
}

.geo-panel-local .geo-panel-copy {
  top: 112px;
  left: 430px;
  width: clamp(250px, 17.5vw, 292px);
}

.geo-panel-authority .geo-panel-copy {
  top: 158px;
  left: 310px;
  width: clamp(315px, 21.6vw, 362px);
}

.geo-panel h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 2.38vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  white-space: nowrap;
}

.geo-panel-copy p {
  margin: 16px 0 0;
  font-size: clamp(17px, 1.23vw, 20.5px);
  line-height: 1.44;
  color: var(--ink);
}

.geo-panel-local .geo-panel-copy p {
  margin-top: 11px;
  margin-left: 32px;
}

.slide-three-index {
  position: absolute;
  z-index: 4;
  left: clamp(50px, 4.8vw, 80px);
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-three-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-four {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.method-heading {
  position: relative;
  z-index: 4;
  padding-top: 72px;
  text-align: center;
}

.method-heading h2 {
  max-width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(82px, 5.75vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
  transform: none;
}

.method-heading h2 span,
.paid-acquisition-copy h2 span,
.final-cta h2 span {
  display: block;
}

.method-heading p {
  margin: 7px 0 0;
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.35;
}

.method-flow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1672px;
  z-index: 2;
  transform: translateX(-50%);
}

.method-route {
  position: absolute;
  left: 80px;
  top: 330px;
  width: 1520px;
  height: 320px;
  object-fit: fill;
}

.method-leaves {
  position: absolute;
  z-index: 2;
  object-fit: contain;
}

.method-leaves-start {
  left: 70px;
  top: 454px;
  width: 78px;
  height: 100px;
}

.method-leaves-end {
  left: 1528px;
  top: 456px;
  width: 76px;
  height: 95px;
}

.method-stage {
  position: absolute;
  z-index: 3;
  text-align: center;
}

.method-stage-art {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.method-stage-1 {
  top: 312px;
  left: 168px;
  width: 230px;
}

.method-stage-2 {
  top: 395px;
  left: 438px;
  width: 190px;
}

.method-stage-3 {
  top: 335px;
  left: 730px;
  width: 205px;
}

.method-stage-4 {
  top: 430px;
  left: 1004px;
  width: 205px;
}

.method-stage-5 {
  top: 312px;
  left: 1318px;
  width: 215px;
}

.method-stage-copy {
  width: 260px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.method-stage-1 .method-stage-copy {
  margin-top: 11px;
}

.method-stage-2 .method-stage-copy {
  margin-top: 29px;
}

.method-stage-3 .method-stage-copy {
  margin-top: 25px;
}

.method-stage-4 .method-stage-copy {
  margin-top: 18px;
}

.method-stage-5 .method-stage-copy {
  margin-top: 18px;
}

.method-stage h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  white-space: nowrap;
}

.method-stage-1 h3 {
  transform: translateX(-22px);
}

.method-stage-2 h3 {
  transform: translateX(-35px);
}

.method-stage-3 h3 {
  transform: translateX(-25px);
}

.method-stage-4 h3 {
  transform: translateX(-20px);
}

.method-stage-5 h3 {
  transform: translateX(-44px);
}

.method-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.method-number-blue {
  background: #6e9fdb;
}

.method-number-yellow {
  background: #ffc75f;
}

.method-stage p {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.13vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.method-stage-1 p {
  margin-top: 19px;
  transform: translateX(-10px);
}

.method-stage-2 p {
  margin-top: 17px;
}

.method-stage-3 p {
  margin-top: 18px;
  transform: translateX(-4px);
}

.method-stage-5 p {
  margin-top: 16px;
  transform: translateX(-20px);
}

.method-stage p span {
  display: block;
}

.slide-four-index {
  position: absolute;
  z-index: 4;
  left: clamp(50px, 4.75vw, 80px);
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-four-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-client-footprint {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 20%, rgba(143, 201, 236, 0.22), transparent 28%),
    radial-gradient(circle at 91% 82%, rgba(255, 189, 62, 0.17), transparent 31%),
    var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.client-footprint-frame {
  width: min(1672px, 100%);
  height: 100%;
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
}

.client-footprint-copy {
  width: min(470px, calc(100% - 800px));
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(40px, 5vw, 84px);
  transform: translateY(-50%);
}

.client-footprint-eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.client-footprint-copy h2 {
  margin: 12px 0 15px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(66px, 4.9vw, 82px);
  line-height: 0.93;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.client-footprint-copy h2 span {
  display: block;
}

.client-footprint-copy > p {
  max-width: 440px;
  margin: 0;
  font-size: 20px;
  line-height: 1.48;
}

.client-footprint-stats {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
}

.client-footprint-stats strong {
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 0.8;
  font-weight: 600;
}

.client-footprint-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(7, 26, 50, 0.72);
  font-size: 15px;
  white-space: nowrap;
}

.client-footprint-map-stage {
  width: min(960px, calc(100% - 610px));
  height: min(560px, calc(100% - 152px));
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(40px, 5vw, 84px);
  transform: translateY(-50%);
  overflow: hidden;
  border: 1px solid rgba(7, 26, 50, 0.14);
  border-radius: 34px;
  background: #e8edf0;
  box-shadow: 0 26px 68px rgba(7, 26, 50, 0.11);
}

.client-footprint-map,
.client-footprint-map > div {
  width: 100%;
  height: 100%;
}

.client-footprint-map-status {
  width: max-content;
  max-width: calc(100% - 48px);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 12px 16px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(7, 26, 50, 0.12);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.94);
  color: rgba(7, 26, 50, 0.72);
  font-size: 14px;
  text-align: center;
}

.slide-client-footprint-index {
  position: absolute;
  z-index: 4;
  left: auto;
  right: clamp(40px, 5vw, 84px);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(7, 26, 50, 0.72);
  font-size: 14px;
}

.slide-client-footprint-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-five {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.section-anchor {
  position: absolute;
  inset: 0 auto auto 0;
}

.audit-frame {
  width: 1672px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.audit-workspace {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 710px;
  right: min(0px, calc(836px - 50vw));
  width: auto;
  height: 100%;
  object-fit: fill;
}

.audit-photo-fade {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 612px;
  width: 280px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(248, 245, 239, 0.9) 24%,
    rgba(248, 245, 239, 0.44) 58%,
    transparent 100%
  );
}

.audit-copy {
  position: absolute;
  z-index: 3;
  top: 143px;
  left: 84px;
}

.audit-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(66px, 4.55vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  transform: scaleX(1.06);
  transform-origin: left center;
}

.audit-subline {
  margin: 20px 0 0;
  font-size: 22px;
  line-height: 1.4;
}

.audit-points {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  transform: translateX(-6px);
}

.audit-points li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.audit-points img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.audit-points strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.audit-button {
  min-width: 299px;
  min-height: 65px;
  margin-top: 31px;
  padding: 0 36px;
  font-size: 24px;
}

.slide-five-index {
  position: absolute;
  z-index: 4;
  left: max(50px, calc(50% - 756px));
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-five-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-six {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.local-seo-frame {
  width: 1672px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.local-seo-street {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 690px;
  right: min(0px, calc(836px - 50vw));
  width: auto;
  height: 100%;
  object-fit: fill;
}

.local-seo-photo-fade {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 570px;
  width: 320px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(248, 245, 239, 0.88) 30%,
    rgba(248, 245, 239, 0.38) 65%,
    transparent 100%
  );
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(24, 65, 109, 0.12));
}

.map-pin-map {
  top: 10.65%;
  left: 820px;
  width: 46px;
  height: 8.18%;
}

.map-pin-store {
  top: 33.12%;
  left: 1189px;
  width: 78px;
  height: 14.03%;
}

.map-pin-window {
  top: 49.74%;
  left: 1593px;
  width: 54px;
  height: 9.61%;
}

.map-pin-sidewalk {
  top: 65.71%;
  left: 949px;
  width: 42px;
  height: 7.53%;
}

.local-seo-copy {
  position: absolute;
  z-index: 4;
  top: 109px;
  left: 86px;
}

.local-seo-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(68px, 4.55vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.local-seo-copy h2 span {
  display: block;
}

.local-seo-subline {
  margin: 20px 0 0;
  font-size: 21px;
  line-height: 1.4;
}

.local-seo-points {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  transform: translateX(-6px);
}

.local-seo-points li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.local-seo-points img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.local-seo-points strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.local-seo-link {
  width: fit-content;
  margin-top: 26px;
  display: inline-block;
  color: #d59600;
  border-bottom: 1px solid #d59600;
  font-size: 21px;
  line-height: 1.45;
  text-decoration: none;
}

.slide-six-index {
  position: absolute;
  z-index: 4;
  left: max(50px, calc(50% - 756px));
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-six-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-seven {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.paid-acquisition-frame {
  width: 1672px;
  height: 770px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.paid-acquisition-copy {
  position: absolute;
  z-index: 3;
  top: 192px;
  left: 88px;
}

.paid-acquisition-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(70px, 4.55vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  transform: scaleX(1.12);
  transform-origin: left center;
}

.paid-acquisition-subline {
  margin: 24px 0 0;
  font-size: 23px;
  line-height: 1.4;
}

.paid-acquisition-points {
  margin: 35px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  transform: translateX(-6px);
}

.paid-acquisition-points li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.paid-acquisition-points img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.paid-acquisition-points strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 600;
}

.paid-acquisition-link {
  width: fit-content;
  margin-top: 31px;
  display: inline-block;
  color: #d59600;
  border-bottom: 1px solid #d59600;
  font-size: 21px;
  line-height: 1.45;
  text-decoration: none;
}

.paid-platform {
  width: 384px;
  height: 384px;
  position: absolute;
  top: 213px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50%;
}

.paid-platform::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1.5px dashed;
  border-radius: 50%;
  pointer-events: none;
}

.paid-platform-google {
  left: 693px;
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at 52% 55%, #eef4fc 0%, #e8f0fa 70%, #f2f6fb 100%);
}

.paid-platform-google::before {
  border-color: rgba(104, 184, 236, 0.72);
}

.paid-platform-meta {
  left: 1192px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.7), transparent 35%),
    radial-gradient(circle at 50% 55%, #fff6e5 0%, #fff0cf 72%, #fff7e7 100%);
}

.paid-platform-meta::before {
  border-color: rgba(255, 186, 37, 0.82);
}

.paid-platform-logo {
  display: block;
  object-fit: contain;
}

.paid-platform-logo-google {
  width: 84px;
  height: 78px;
  margin-top: 86px;
}

.paid-platform-logo-meta {
  width: 104px;
  height: 62px;
  margin-top: 96px;
}

.paid-platform h3 {
  margin: 15px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.paid-platform-rule {
  width: 176px;
  height: 2px;
  margin-top: 28px;
  display: block;
  background: #73b9ea;
}

.paid-platform-meta .paid-platform-rule {
  width: 151px;
  background: #edb225;
}

.paid-platform p {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.paid-platform p i {
  margin: 0 7px;
  color: #1672af;
  font-style: normal;
}

.paid-platform-meta p i {
  color: #d59600;
}

.paid-platform-connector {
  position: absolute;
  z-index: 4;
  top: 390px;
  left: 1059px;
  width: 146px;
  height: 32px;
  display: flex;
  align-items: center;
}

.paid-platform-connector strong {
  margin: 0 10px;
  color: #0874cb;
  font-size: 19px;
  font-weight: 600;
}

.connector-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
}

.connector-dot-blue {
  background: #5caeee;
}

.connector-dot-yellow {
  background: #f0b31c;
}

.connector-line {
  width: 23px;
  height: 2px;
  flex: 0 0 23px;
}

.connector-line-blue {
  background: #5caeee;
}

.connector-line-yellow {
  background: #f0b31c;
}

.slide-seven-index {
  position: absolute;
  z-index: 4;
  left: max(50px, calc(50% - 756px));
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-seven-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-eight {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 46%, rgba(255, 255, 255, 0.88), transparent 35%),
    var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
  border-top: 1px solid var(--line);
}

.website-showcase-frame {
  --showcase-scale: min(1, calc(100vw / 1672px));
  width: 1672px;
  height: 770px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(var(--showcase-scale));
  transform-origin: top center;
}

.website-showcase-copy {
  position: absolute;
  z-index: 5;
  top: 156px;
  left: 100px;
  width: 560px;
}

.website-showcase-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 66px;
  line-height: 0.98;
  letter-spacing: -0.034em;
  font-weight: 600;
}

.website-showcase-copy h2 span {
  display: block;
}

.website-showcase-subline {
  margin: 28px 0 0;
  font-size: 21px;
  line-height: 1.4;
}

.website-showcase-points {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
  transform: translateX(-6px);
}

.website-showcase-points li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.website-showcase-points img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.website-showcase-points strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 600;
}

.website-showcase-link {
  width: fit-content;
  margin-top: 31px;
  display: inline-block;
  color: #d59600;
  border-bottom: 1px solid #d59600;
  font-size: 21px;
  line-height: 1.45;
}

.website-device-stage {
  width: calc(50vw + 376px);
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 460px;
  overflow: hidden;
  background: var(--cream);
}

.website-image-canvas {
  position: absolute;
  inset: 0 0 0 220px;
  overflow: hidden;
  background: var(--cream);
}

.website-device-stage::before,
.website-device-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  width: clamp(440px, 29vw, 570px);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    var(--cream) 39%,
    rgba(248, 245, 239, 0.98) 48%,
    rgba(248, 245, 239, 0.78) 64%,
    rgba(248, 245, 239, 0.36) 80%,
    rgba(248, 245, 239, 0.1) 93%,
    transparent 100%
  );
}

.website-device-stage::before {
  display: none;
}

.website-device-stage::after {
  bottom: 0;
  height: 29%;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.72) 24%,
    #000 46%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.72) 24%,
    #000 46%
  );
}

.website-showcase-reference {
  width: 168.55%;
  height: auto;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -68.55%;
  display: block;
  transform: translateY(-8.93%);
  clip-path: inset(0 0 9.14% 0);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40.67%,
    #000 43.06%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40.67%,
    #000 43.06%,
    #000 100%
  );
  object-fit: contain;
}

.desktop-device {
  width: 700px;
  height: 615px;
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 0;
}

.desktop-device-screen {
  width: 700px;
  height: 450px;
  overflow: hidden;
  position: relative;
  z-index: 4;
  border: 11px solid #121313;
  border-bottom-width: 9px;
  border-radius: 15px 15px 4px 4px;
  background: #f7f3ed;
  box-shadow:
    0 22px 35px rgba(54, 47, 37, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.greenfield-desktop {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #faf8f4;
  color: #17241b;
  font-family: Georgia, serif;
}

.greenfield-site-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 0 38px;
  background: rgba(250, 248, 244, 0.98);
  font-family: Arial, sans-serif;
}

.greenfield-site-header > strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2d5d32;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 500;
}

.greenfield-site-header > strong span {
  color: #43834c;
  font-size: 23px;
  line-height: 1;
}

.greenfield-site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 8px;
  color: #162019;
}

.greenfield-site-header nav b {
  padding: 10px 22px;
  border-radius: 3px;
  background: #336e38;
  color: #fff;
  font-weight: 500;
}

.greenfield-desktop-hero {
  height: 278px;
  position: relative;
  overflow: hidden;
  background: #f7f3ed;
}

.greenfield-desktop-hero > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% 58%;
  filter: saturate(0.86) brightness(1.02);
}

.greenfield-desktop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 248, 244, 1) 0%,
    rgba(250, 248, 244, 0.97) 34%,
    rgba(250, 248, 244, 0.64) 49%,
    rgba(250, 248, 244, 0.03) 72%
  );
}

.greenfield-desktop-copy {
  width: 280px;
  position: absolute;
  z-index: 2;
  top: 43px;
  left: 39px;
}

.greenfield-desktop-copy h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.greenfield-desktop-copy h3 span,
.greenfield-desktop-copy p span {
  display: block;
}

.greenfield-desktop-copy p {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.greenfield-desktop-copy > b {
  width: fit-content;
  margin-top: 16px;
  display: block;
  padding: 10px 14px;
  border-radius: 3px;
  background: #33743b;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.greenfield-desktop-copy small {
  margin-top: 13px;
  display: block;
  color: #2e7138;
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.greenfield-services {
  height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #fbfaf7;
  font-family: Arial, sans-serif;
}

.greenfield-services span {
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  border-right: 1px solid rgba(23, 36, 27, 0.13);
  font-size: 8px;
  line-height: 1.5;
}

.greenfield-services span:last-child {
  border-right: 0;
}

.greenfield-services b {
  margin-bottom: 3px;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 500;
}

.desktop-device-chin {
  width: 700px;
  height: 66px;
  position: absolute;
  z-index: 3;
  top: 450px;
  left: 0;
  border-radius: 0 0 13px 13px;
  background: linear-gradient(180deg, #d8d5d0 0%, #c6c2bc 86%, #b4b0aa 100%);
  box-shadow: 0 8px 16px rgba(40, 39, 36, 0.11);
}

.desktop-device-neck {
  width: 136px;
  height: 97px;
  position: absolute;
  z-index: 2;
  top: 506px;
  left: 282px;
  clip-path: polygon(20% 0, 80% 0, 94% 100%, 6% 100%);
  background: linear-gradient(90deg, #bcb9b3, #e0ddd7 50%, #aaa7a1);
}

.desktop-device-base {
  width: 266px;
  height: 18px;
  position: absolute;
  z-index: 3;
  top: 593px;
  left: 217px;
  border-radius: 50% 50% 4px 4px;
  background: linear-gradient(180deg, #e4e0d9, #b4b0aa);
  box-shadow: 0 8px 9px rgba(52, 48, 42, 0.17);
}

.phone-device {
  width: 184px;
  height: 390px;
  position: absolute;
  z-index: 6;
  top: 240px;
  left: 622px;
  overflow: hidden;
  border: 7px solid #111;
  border-radius: 31px;
  background: #fbfaf7;
  box-shadow: 0 18px 30px rgba(42, 38, 32, 0.22);
}

.phone-notch {
  width: 77px;
  height: 17px;
  position: absolute;
  z-index: 4;
  top: 6px;
  left: 47px;
  border-radius: 13px;
  background: #111;
}

.greenfield-mobile {
  height: 100%;
  overflow: hidden;
  background: #faf8f4;
  color: #17241b;
  font-family: Georgia, serif;
}

.greenfield-mobile header {
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px 7px;
  font-family: Arial, sans-serif;
}

.greenfield-mobile header strong {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  color: #2f5d34;
  font-family: Georgia, serif;
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
}

.greenfield-mobile header strong > span {
  grid-row: 1 / 3;
  color: #43834c;
  font-size: 22px;
}

.greenfield-mobile header small {
  display: block;
  font-size: 8px;
}

.greenfield-mobile header > b {
  font-size: 16px;
  font-weight: 400;
}

.greenfield-mobile-copy {
  padding: 10px 13px 0;
}

.greenfield-mobile-copy h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.03;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.greenfield-mobile-copy h3 span,
.greenfield-mobile-copy p span {
  display: block;
}

.greenfield-mobile-copy p {
  margin: 11px 0 0;
  font-size: 9px;
  line-height: 1.4;
}

.greenfield-mobile-copy > b {
  width: fit-content;
  margin-top: 12px;
  display: block;
  padding: 8px 9px;
  border-radius: 2px;
  background: #33743b;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 500;
}

.greenfield-mobile-copy small {
  margin-top: 10px;
  display: block;
  color: #2f7138;
  font-family: Arial, sans-serif;
  font-size: 8px;
}

.greenfield-mobile > img {
  width: 100%;
  height: 126px;
  margin-top: 10px;
  display: block;
  object-fit: cover;
  object-position: 55% 60%;
  filter: saturate(0.88);
}

.showcase-decor {
  width: 190px;
  height: 385px;
  position: absolute;
  z-index: 1;
  top: 251px;
  right: -14px;
}

.showcase-vase {
  width: 67px;
  height: 156px;
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 42px;
  border-radius: 44% 44% 36% 36% / 18% 18% 12% 12%;
  background:
    linear-gradient(80deg, rgba(177, 157, 125, 0.24), transparent 28%),
    linear-gradient(90deg, #d9d0c1, #f2ece2 52%, #c9bfaf);
  box-shadow: 0 10px 19px rgba(79, 65, 48, 0.13);
}

.showcase-stem {
  width: 2px;
  height: 202px;
  position: absolute;
  z-index: 1;
  right: 57px;
  bottom: 174px;
  border-radius: 100%;
  background: #606e44;
  transform-origin: bottom;
}

.showcase-stem-one {
  transform: rotate(-17deg);
}

.showcase-stem-two {
  height: 226px;
  transform: rotate(16deg);
}

.showcase-leaf {
  width: 37px;
  height: 19px;
  position: absolute;
  z-index: 2;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #6f7e4f, #a2a477);
  transform-origin: right center;
}

.showcase-leaf-one {
  top: 64px;
  right: 79px;
  transform: rotate(23deg);
}

.showcase-leaf-two {
  top: 113px;
  right: 44px;
  transform: scaleX(-1) rotate(17deg);
}

.showcase-leaf-three {
  top: 155px;
  right: 93px;
  transform: rotate(18deg);
}

.showcase-leaf-four {
  top: 194px;
  right: 33px;
  transform: scaleX(-1) rotate(29deg);
}

.showcase-book {
  height: 25px;
  position: absolute;
  right: 0;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(180deg, #e2d8ca, #bdb1a0);
  box-shadow: 0 3px 4px rgba(59, 50, 39, 0.12);
}

.showcase-book-one {
  width: 159px;
  bottom: 17px;
}

.showcase-book-two {
  width: 130px;
  right: 4px;
  bottom: 0;
}

.slide-eight-index {
  position: absolute;
  z-index: 8;
  left: max(50px, calc(50% - 756px));
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-eight-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-nine {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 76% 43%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, #faf8f4 0%, var(--cream) 78%);
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

.lead-system-frame {
  --lead-scale: min(1, calc(100vw / 1672px));
  width: 1672px;
  height: 857px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(var(--lead-scale));
  transform-origin: top center;
}

.lead-system-frame::after {
  display: none;
}

.lead-system-phone-scene-reference {
  width: max(35.41vw, calc(50vw - 244px));
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  object-fit: cover;
  object-position: left center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 11%,
    #000 14.5%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 11%,
    #000 14.5%,
    #000 100%
  );
}

.lead-system-copy {
  width: 530px;
  position: absolute;
  z-index: 4;
  top: 132px;
  left: 66px;
}

.lead-system-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.036em;
  font-weight: 600;
}

.lead-system-copy h2 span,
.lead-system-subline span {
  display: block;
}

.lead-system-subline {
  margin: 27px 0 0;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.lead-system-benefits {
  margin: 29px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.lead-system-benefits li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.lead-system-benefits img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.lead-system-benefits strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.018em;
  font-weight: 600;
}

.lead-system-link {
  width: fit-content;
  margin-top: 28px;
  display: inline-block;
  color: #d59600;
  border-bottom: 1px solid #d59600;
  font-size: 21px;
  line-height: 1.45;
}

.lead-journey {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.lead-stage {
  width: 465px;
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.lead-stage-one {
  top: 134px;
  left: 628px;
}

.lead-stage-two {
  top: 339px;
  left: 684px;
}

.lead-stage-three {
  width: 390px;
  top: 545px;
  left: 790px;
}

.lead-stage > img {
  width: 132px;
  height: 132px;
  display: block;
  object-fit: contain;
}

.lead-stage-three > img {
  width: 140px;
  height: 140px;
}

.lead-stage h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.lead-stage h3 > span {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dbeafa;
  color: #1553ac;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.lead-stage-three h3 > span {
  background: #f4bd19;
  color: var(--ink);
}

.lead-stage p {
  margin: 10px 0 0 51px;
  color: rgba(7, 26, 50, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.lead-stage p span {
  display: block;
}

.lead-route {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.lead-route-one {
  width: 130px;
  height: 168px;
  top: 245px;
  left: 679px;
  border-bottom: 2px solid #1577e9;
  border-left: 2px solid #1577e9;
  border-radius: 0 0 0 82px;
  transform: rotate(-10deg);
}

.lead-route-two {
  width: 145px;
  height: 178px;
  top: 448px;
  left: 742px;
  border-bottom: 2px solid #1577e9;
  border-left: 2px solid #1577e9;
  border-radius: 0 0 0 88px;
  transform: rotate(-10deg);
}

.lead-route-arrow {
  width: 272px;
  height: 94px;
  top: 548px;
  left: 926px;
  border-top: 2px solid #1577e9;
  border-radius: 0 82px 0 0;
  transform: rotate(-8deg);
}

.lead-route-arrow::before,
.lead-route-arrow::after {
  content: "";
  width: 13px;
  height: 2px;
  position: absolute;
  right: -2px;
  top: -1px;
  background: #1577e9;
  transform-origin: right center;
}

.lead-route-arrow::before {
  transform: rotate(37deg);
}

.lead-route-arrow::after {
  transform: rotate(-37deg);
}

.lead-phone-scene {
  width: 515px;
  height: 857px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: none;
}

.lead-phone {
  width: 300px;
  height: 650px;
  position: absolute;
  z-index: 4;
  top: 70px;
  left: 0;
  overflow: hidden;
  border: 7px solid #111312;
  border-radius: 44px;
  background: #faf9f6;
  box-shadow:
    0 22px 34px rgba(47, 41, 34, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.lead-phone-island {
  width: 76px;
  height: 20px;
  position: absolute;
  z-index: 8;
  top: 8px;
  left: 50%;
  border-radius: 999px;
  background: #080a0a;
  transform: translateX(-50%);
}

.lead-phone-island::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 7px;
  right: 8px;
  border-radius: 50%;
  background: #152d45;
}

.lead-phone-header {
  height: 101px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 0 17px 18px;
  border-bottom: 1px solid rgba(7, 26, 50, 0.12);
  font-size: 12px;
}

.lead-phone-header > span {
  font-size: 25px;
  line-height: 0.8;
}

.lead-phone-header i {
  color: #43844e;
  font-size: 13px;
  font-style: normal;
}

.lead-phone-header strong {
  font-size: 12px;
  font-weight: 500;
}

.lead-phone-messages {
  height: 478px;
  position: relative;
  padding: 24px 14px 18px;
}

.lead-message {
  position: relative;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.45;
  box-shadow: 0 4px 14px rgba(78, 69, 58, 0.04);
}

.lead-message p {
  margin: 0 0 9px;
}

.lead-message p:last-of-type {
  margin-bottom: 0;
}

.lead-message small {
  display: block;
  color: rgba(7, 26, 50, 0.48);
  font-size: 8px;
  text-align: right;
}

.lead-message-business {
  width: 226px;
  padding: 16px 13px 11px;
  background: rgba(255, 255, 255, 0.64);
}

.lead-message-prospect {
  width: 184px;
  margin: 19px 0 0 auto;
  padding: 14px 12px 10px;
  background: #edf0e4;
}

.lead-message-prospect small span {
  color: #59a772;
}

.lead-phone-composer {
  height: 57px;
  display: grid;
  grid-template-columns: 25px 1fr 28px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-top: 1px solid rgba(7, 26, 50, 0.1);
}

.lead-phone-composer > span {
  font-size: 24px;
  font-weight: 300;
}

.lead-phone-composer p {
  min-height: 31px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 99px;
  color: rgba(7, 26, 50, 0.35);
  font-size: 8px;
}

.lead-phone-composer strong {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #aeb1b2;
  color: white;
  font-size: 17px;
  font-weight: 400;
}

.lead-scene-decor {
  width: 205px;
  height: 405px;
  position: absolute;
  z-index: 2;
  top: 315px;
  right: -8px;
}

.slide-nine-index {
  position: absolute;
  z-index: 8;
  left: max(50px, calc(50% - 756px));
  bottom: 67px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(7, 26, 50, 0.72);
}

.slide-nine-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}

.slide-eight-footer {
  min-height: 86px;
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.9fr 1.05fr 1.52fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 46px;
  border-top: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.99);
  color: rgba(7, 26, 50, 0.82);
  font-size: 13px;
}

.slide-eight-footer-brand {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.slide-eight-footer-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}

.slide-eight-footer-brand span {
  white-space: nowrap;
}

.slide-eight-footer-item {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.slide-eight-footer-item img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.slide-eight-footer-item:first-of-type img {
  width: 22px;
  height: 26px;
}

.slide-eight-footer-copy {
  justify-self: end;
  white-space: nowrap;
}

.hero,
.slide-two,
.slide-three,
.slide-four,
.slide-client-footprint,
.slide-five,
.slide-six,
.slide-seven,
.slide-eight,
.slide-nine,
.slide-ten {
  scroll-snap-stop: always;
}

.slide-ten {
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  min-height: 720px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 300px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

@media (min-width: 1241px) {
  .slide-ten.fp-section {
    display: grid;
  }
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 8% 16%, rgba(143, 201, 236, 0.24), transparent 25%),
    radial-gradient(circle at 94% 92%, rgba(255, 189, 62, 0.17), transparent 26%),
    var(--cream);
}

.final-cta::before,
.final-cta::after {
  content: "";
  width: 390px;
  height: 390px;
  position: absolute;
  border: 1px dashed rgba(8, 116, 203, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::before {
  top: -264px;
  left: -165px;
}

.final-cta::after {
  right: -205px;
  bottom: -268px;
  border-color: rgba(255, 174, 0, 0.34);
}

.final-cta-content {
  width: min(1080px, calc(100% - 120px));
  position: relative;
  z-index: 2;
  transform: translateY(-2px);
}

.final-eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 5.3vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.final-subline {
  margin: 0;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 26px;
}

.final-audit-button {
  min-width: 272px;
  min-height: 61px;
  font-size: 19px;
  font-weight: 500;
}

.final-services-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
}

.final-services-link span {
  transition: transform 170ms ease;
}

.final-services-link:hover span,
.final-services-link:focus-visible span {
  transform: translateX(5px);
}

.final-problems {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  color: rgba(7, 26, 50, 0.65);
  font-size: 14px;
}

.final-problems i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--blue);
}

.slide-ten-index {
  position: absolute;
  z-index: 3;
  left: max(50px, calc(50% - 756px));
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(7, 26, 50, 0.72);
  font-size: 14px;
}

.slide-ten-index span:last-child {
  width: 68px;
  height: 1px;
  background: rgba(7, 26, 50, 0.55);
}
