:root {
  --ink: #172026;
  --muted: #617077;
  --paper: #fbf7ef;
  --surface: #ffffff;
  --line: #dde6df;
  --header-bg: rgba(251, 247, 239, 0.84);
  --soft-surface: #eef6ed;
  --field-bg: #fbfdf9;
  --problem-bg: #172026;
  --problem-card-bg: #202c33;
  --before-bg: #fff7f0;
  --after-bg: #edf8f1;
  --cta-bg: linear-gradient(135deg, #05796f, #172026);
  --download-bg: linear-gradient(135deg, #1f7a6d, #d8ec5f);
  --download-text: #102023;
  --hero-glow: rgba(216, 236, 95, 0.2);
  --teal: #00a991;
  --teal-dark: #05796f;
  --coral: #ff6b57;
  --citron: #d8ec5f;
  --clay: #b86f4f;
  --shadow: 0 24px 70px rgba(23, 32, 38, 0.13);
}

:root[data-theme="dark"] {
  --ink: #f4f7f2;
  --muted: #a9b6b8;
  --paper: #101719;
  --surface: #172224;
  --line: rgba(255, 255, 255, 0.12);
  --header-bg: rgba(16, 23, 25, 0.86);
  --soft-surface: #172b2b;
  --field-bg: #111b1d;
  --problem-bg: #071112;
  --problem-card-bg: #111e20;
  --before-bg: #251d19;
  --after-bg: #10241f;
  --cta-bg: linear-gradient(135deg, #024e49, #070d0f);
  --download-bg: linear-gradient(135deg, #ff806d, #ffb088);
  --download-text: #160f0c;
  --hero-glow: rgba(0, 169, 145, 0.15);
  --teal: #2dd4bf;
  --teal-dark: #5eead4;
  --coral: #ff806d;
  --citron: #e2f36b;
  --clay: #ffb088;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, var(--hero-glow), transparent 420px),
    var(--paper);
  transition: color 0.25s ease, background-color 0.25s ease;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(23, 32, 38, 0.08);
  border-radius: 999px;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .site-header,
:root[data-theme="dark"] .logos span,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .blog-card,
:root[data-theme="dark"] .accordion-stack details,
:root[data-theme="dark"] .booking-form,
:root[data-theme="dark"] .map-section,
:root[data-theme="dark"] .location-card,
:root[data-theme="dark"] input,
:root[data-theme="dark"] select,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] .faq-list details {
  border-color: rgba(255, 255, 255, 0.12);
}

.brand,
.site-nav,
.hero-actions,
.logos {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-symbol {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.symbol-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid var(--teal);
  border-radius: 8px;
}

.symbol-corner-top {
  top: 0;
  right: 0;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.symbol-corner-bottom {
  bottom: 0;
  left: 0;
  border-top-color: transparent;
  border-right-color: transparent;
}

.symbol-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px color-mix(in srgb, var(--teal) 44%, transparent);
  transform: translate(-50%, -50%);
}

.brand-word {
  color: var(--ink);
  font-size: clamp(1.42rem, 1.92vw, 1.84rem);
  font-weight: 520;
  letter-spacing: -0.015em;
  line-height: 1;
}

:root[data-theme="dark"] .symbol-corner {
  border-color: var(--coral);
}

:root[data-theme="dark"] .symbol-corner-top {
  border-bottom-color: transparent;
  border-left-color: transparent;
}

:root[data-theme="dark"] .symbol-corner-bottom {
  border-top-color: transparent;
  border-right-color: transparent;
}

:root[data-theme="dark"] .symbol-node {
  background: var(--coral);
  box-shadow: 0 0 14px color-mix(in srgb, var(--coral) 48%, transparent);
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}

:root[data-theme="dark"] .brand-mark {
  color: #071112;
}

.site-nav {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(23, 32, 38, 0.08);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.1);
  transform: translateY(-1px);
}

.site-nav a.nav-highlight {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(255, 107, 87, 0.24);
  animation: nav-highlight-pulse 3.8s ease-in-out infinite;
}

.site-nav a.nav-highlight:hover {
  color: #fff;
  background: #ff7d6f;
  box-shadow: 0 14px 32px rgba(255, 107, 87, 0.32);
  animation-play-state: paused;
}

@keyframes nav-highlight-pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(255, 107, 87, 0.2);
    opacity: 0.9;
  }
  50% {
    box-shadow: 0 16px 38px rgba(255, 107, 87, 0.42);
    opacity: 1;
  }
}

.site-nav a:focus-visible {
  outline: 3px solid rgba(0, 169, 145, 0.28);
  outline-offset: 2px;
}

:root[data-theme="dark"] .site-nav {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .site-nav a:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(23, 32, 38, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

:root[data-theme="dark"] .menu-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(23, 32, 38, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-weight: 800;
}

:root[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset -6px -3px 0 var(--paper);
}

:root[data-theme="dark"] .theme-toggle-icon {
  background: var(--citron);
  box-shadow: 0 0 18px rgba(226, 243, 107, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(560px, 1.32fr);
  gap: 42px;
  width: min(1280px, calc(100% - 32px));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: 82px 0 42px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.2vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.heading-motion {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  width: 128px;
  height: 48px;
  align-items: center;
  margin-top: 22px;
}

.heading-motion i {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 169, 145, 0.18);
  animation: heading-pulse 2.8s ease-in-out infinite;
}

.heading-motion i:nth-child(2) {
  background: var(--coral);
  animation-delay: -0.85s;
}

.heading-motion i:nth-child(3) {
  background: var(--citron);
  animation-delay: -1.7s;
}

.heading-motion::before,
.heading-motion::after {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--citron));
  content: "";
  opacity: 0.48;
  animation: heading-line 3.4s ease-in-out infinite;
}

.heading-motion::before {
  top: 23px;
}

.heading-motion::after {
  top: 23px;
  transform: rotate(-9deg);
  animation-delay: -1.2s;
}

.motion-agent i {
  border-radius: 8px;
}

.motion-problem i:nth-child(2) {
  transform: rotate(45deg);
  border-radius: 4px;
}

.motion-flow-mini {
  width: 156px;
}

.motion-steps i {
  width: 24px;
  height: 24px;
  outline: 6px solid color-mix(in srgb, var(--teal) 14%, transparent);
}

.motion-results i {
  width: 18px;
  border-radius: 999px;
}

.motion-results i:nth-child(1) {
  height: 24px;
}

.motion-results i:nth-child(2) {
  height: 34px;
}

.motion-results i:nth-child(3) {
  height: 42px;
}

.motion-spark i {
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg);
}

.motion-form i {
  width: 32px;
  height: 20px;
  border-radius: 7px;
}

.motion-faq i {
  border-radius: 50% 50% 50% 8px;
}

.motion-pin i:nth-child(2) {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

@keyframes heading-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px) scale(1);
  }
}

@keyframes heading-line {
  0%,
  100% {
    clip-path: inset(0 100% 0 0);
  }

  52% {
    clip-path: inset(0 0 0 0);
  }
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff6b57, #ff9f82);
  box-shadow: 0 16px 36px rgba(255, 107, 87, 0.28);
}

.button.test-button {
  color: #102023;
  background: linear-gradient(135deg, #d8ec5f, #7ddf98);
  box-shadow: 0 16px 36px rgba(216, 236, 95, 0.22);
}

:root[data-theme="dark"] .button.test-button {
  color: #101719;
  background: linear-gradient(135deg, #e2f36b, #8ee7a8);
  box-shadow: 0 16px 36px rgba(226, 243, 107, 0.18);
}

.button.estimate-button {
  color: #fff;
  background: linear-gradient(135deg, #6c5ce7, #00a991);
  box-shadow: 0 16px 36px rgba(108, 92, 231, 0.22);
}

:root[data-theme="dark"] .button.estimate-button {
  color: #f7fbff;
  background: linear-gradient(135deg, #7c6cff, #05796f);
  box-shadow: 0 16px 36px rgba(124, 108, 255, 0.18);
}

.button.secondary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #05796f, #00a991);
  box-shadow: 0 16px 36px rgba(0, 169, 145, 0.2);
}

:root[data-theme="dark"] .button.secondary {
  color: #eafffb;
  border-color: transparent;
  background: linear-gradient(135deg, #05796f, #2dd4bf);
  box-shadow: 0 16px 36px rgba(45, 212, 191, 0.16);
}

.button.dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: none;
}

:root[data-theme="dark"] .button.dark {
  color: #071112;
  background: #f4f7f2;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-statements {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 10px auto 34px;
}

.hero-statements dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.hero-statements div {
  position: relative;
  display: grid;
  align-content: center;
  gap: 6px;
  overflow: hidden;
  min-height: 96px;
  padding: 20px 22px;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--teal) 8%, var(--surface))),
    var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.hero-statements div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--coral), var(--teal), var(--citron));
  content: "";
  animation: statement-glow 4.8s ease-in-out infinite;
}

.hero-statements div::after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 24px color-mix(in srgb, var(--teal) 50%, transparent);
  content: "";
  animation: statement-dot 3.6s ease-in-out infinite;
}

.hero-statements div:nth-child(2)::after {
  background: var(--coral);
  box-shadow: 0 0 24px color-mix(in srgb, var(--coral) 50%, transparent);
  animation-delay: -1.2s;
}

.hero-statements div:nth-child(3)::after {
  background: var(--citron);
  box-shadow: 0 0 24px color-mix(in srgb, var(--citron) 50%, transparent);
  animation-delay: -2.4s;
}

.hero-statements dt {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 0.9;
}

.hero-statements dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.5vw, 1.1rem);
  font-weight: 750;
}

@keyframes statement-glow {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

@keyframes statement-dot {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-graphic {
  display: grid;
  place-items: center;
  padding: 42px;
  background:
    radial-gradient(circle at 68% 24%, color-mix(in srgb, var(--citron) 42%, transparent), transparent 28%),
    radial-gradient(circle at 22% 78%, color-mix(in srgb, var(--coral) 24%, transparent), transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--teal) 18%, var(--surface)), var(--surface));
}

.hero-graphic::before {
  position: absolute;
  inset: 32px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: 24px;
  content: "";
}

.hero-graphic::after {
  display: none;
}

.daily-news-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.32fr);
  gap: 24px;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  min-height: 170px;
  align-items: center;
  margin: 28px auto 34px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--teal) 30%, var(--line));
  border-radius: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 20%, color-mix(in srgb, var(--citron) 26%, transparent), transparent 30%),
    radial-gradient(circle at 18% 84%, color-mix(in srgb, var(--coral) 18%, transparent), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--teal) 18%, var(--surface)), var(--surface));
  box-shadow: var(--shadow);
  text-decoration: none;
}

.daily-news-cta::before {
  position: absolute;
  inset: 22px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: 22px;
  content: "";
}

.daily-news-copy,
.daily-news-graphic {
  position: relative;
  z-index: 1;
}

.daily-news-copy {
  display: grid;
  gap: 10px;
}

.daily-news-copy strong {
  max-width: 760px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.daily-news-copy small {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 750;
  line-height: 1.55;
}

.daily-news-graphic {
  display: grid;
  min-height: 130px;
  place-items: center;
}

.daily-news-graphic span {
  display: grid;
  width: 118px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--teal) 42%, transparent);
  border-radius: 50%;
  color: #102023;
  background: linear-gradient(135deg, var(--teal), var(--citron));
  box-shadow: 0 0 44px color-mix(in srgb, var(--teal) 28%, transparent);
  font-size: 1.1rem;
  font-weight: 950;
  animation: news-core-pulse 4s ease-in-out infinite;
}

.daily-news-graphic i {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 26px color-mix(in srgb, var(--teal) 54%, transparent);
}

.daily-news-graphic i:nth-child(1) {
  top: 10px;
  left: 20%;
}

.daily-news-graphic i:nth-child(2) {
  right: 15%;
  top: 46%;
  background: var(--coral);
}

.daily-news-graphic i:nth-child(3) {
  bottom: 8px;
  left: 32%;
  background: var(--citron);
}

.daily-news-cta:hover .daily-news-graphic span {
  transform: translateY(-3px);
}

@keyframes news-core-pulse {
  0%,
  100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1.04);
  }
}

.hero-orbit {
  position: absolute;
  inset: 58px;
  opacity: 0.86;
}

.orbit-ring {
  position: absolute;
  inset: 10%;
  border: 2px solid color-mix(in srgb, var(--teal) 32%, transparent);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  inset: 16%;
  border: 1px dashed color-mix(in srgb, var(--coral) 36%, transparent);
  border-radius: 50%;
  content: "";
}

.orbit-ring::after {
  inset: 31%;
  border-color: color-mix(in srgb, var(--citron) 58%, transparent);
}

.orbit-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 14px color-mix(in srgb, var(--teal) 12%, transparent);
  animation: orbit-pulse 3s ease-in-out infinite;
}

.orbit-node-one {
  top: 18%;
  left: 28%;
}

.orbit-node-two {
  right: 20%;
  top: 42%;
  background: var(--coral);
  animation-delay: -1s;
}

.orbit-node-three {
  bottom: 18%;
  left: 48%;
  background: var(--citron);
  animation-delay: -2s;
}

.hero-message-stack {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  min-height: 170px;
}

.hero-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: 18px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 22px 60px rgba(23, 32, 38, 0.12);
  font-size: clamp(1.55rem, 3.1vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  text-align: center;
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: hero-message-fade 12s ease-in-out infinite;
}

.message-two {
  animation-delay: 3s;
}

.message-three {
  animation-delay: 6s;
}

.message-four {
  animation-delay: 9s;
}

.hero-flow-board {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 16px 38px rgba(23, 32, 38, 0.1);
}

.hero-flow-board span,
.hero-mini-panels span {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-flow-board i {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  animation: flow-board-line 2.4s ease-in-out infinite;
}

.hero-mini-panels {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-mini-panels span {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.08);
  animation: mini-panel-float 4.8s ease-in-out infinite;
}

.hero-mini-panels span:nth-child(2) {
  animation-delay: -1.3s;
}

.hero-mini-panels span:nth-child(3) {
  animation-delay: -2.6s;
}

@keyframes hero-message-fade {
  0%,
  18% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  25%,
  43% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes flow-board-line {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.55);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes mini-panel-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, color-mix(in srgb, var(--paper) 42%, transparent), transparent 48%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.workflow-loop {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.workflow-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(23, 32, 38, 0.1);
  backdrop-filter: blur(14px);
  animation: card-float 7s ease-in-out infinite;
}

:root[data-theme="dark"] .workflow-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 27, 29, 0.78);
}

.workflow-card strong {
  font-size: 0.8rem;
  line-height: 1.2;
}

.workflow-card small {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-one {
  top: 24%;
  left: 37%;
}

.card-two {
  top: 37%;
  right: 12%;
  animation-delay: -2.4s;
}

.card-three {
  right: 20%;
  bottom: 26%;
  animation-delay: -4.5s;
}

.agent-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0, 169, 145, 0.28);
  animation: node-pulse 2.8s ease-out infinite;
}

.node-one {
  top: 33%;
  left: 58%;
}

.node-two {
  top: 49%;
  right: 34%;
  animation-delay: -0.9s;
}

.node-three {
  right: 19%;
  bottom: 35%;
  background: var(--coral);
  animation-delay: -1.8s;
}

.flow-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 169, 145, 0.95), transparent);
  opacity: 0.78;
  transform-origin: left center;
  animation: line-scan 3.8s ease-in-out infinite;
}

.line-one {
  top: 35%;
  left: 48%;
  width: 260px;
  transform: rotate(10deg);
}

.line-two {
  right: 22%;
  bottom: 39%;
  width: 210px;
  transform: rotate(-22deg);
  animation-delay: -1.7s;
}

@keyframes card-float {
  0%,
  100% {
    opacity: 0.78;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes node-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 169, 145, 0.32);
    transform: scale(0.92);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 169, 145, 0);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 169, 145, 0);
    transform: scale(0.92);
  }
}

@keyframes line-scan {
  0%,
  100% {
    opacity: 0.24;
    clip-path: inset(0 100% 0 0);
  }

  45%,
  70% {
    opacity: 0.88;
    clip-path: inset(0 0 0 0);
  }
}

.logos {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 90px;
}

.logos span {
  padding: 10px 16px;
  border: 1px solid rgba(23, 32, 38, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  padding: 28px 0 76px;
  align-items: end;
}

.intro > p,
.audience-list p,
.process-copy p,
.result-list p,
.package-grid p,
.problem-grid p,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 56px;
  padding: 28px 0 96px;
  align-items: start;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.accordion-stack {
  display: grid;
  gap: 14px;
}

.accordion-stack details {
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(23, 32, 38, 0.06);
}

.accordion-stack summary {
  position: relative;
  display: flex;
  min-height: 34px;
  align-items: center;
  padding-right: 46px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-weight: 900;
  list-style: none;
}

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

.accordion-stack summary::after {
  position: absolute;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #102023;
  background: linear-gradient(135deg, var(--teal), var(--citron));
  content: "+";
  font-size: 1.15rem;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.accordion-stack details[open] summary::after {
  background: linear-gradient(135deg, var(--coral), var(--clay));
  content: "-";
  transform: rotate(180deg);
}

.accordion-stack p {
  max-width: 960px;
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
  animation: accordion-reveal 0.24s ease both;
}

@keyframes accordion-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.problem-section {
  display: grid;
  gap: 34px;
  margin-bottom: 74px;
  padding: 56px;
  border-radius: 8px;
  color: #fff;
  background: var(--problem-bg);
}

.problem-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
}

.problem-heading .eyebrow {
  color: var(--citron);
}

.problem-heading h2 {
  max-width: 940px;
}

.problem-heading .heading-motion {
  justify-self: end;
}

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

.problem-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--problem-card-bg);
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--citron);
  font-weight: 800;
}

.problem-grid h3 {
  color: #fff;
}

.problem-grid p {
  margin-bottom: 0;
  color: #cad6d6;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1fr);
  gap: 42px;
  padding-bottom: 88px;
  align-items: start;
}

.before-after-copy {
  position: sticky;
  top: 110px;
}

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

.compare-card {
  min-height: 420px;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.compare-card span {
  display: inline-flex;
  margin-bottom: 42px;
  font-weight: 800;
}

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

.compare-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.62;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

.before-card {
  border: 1px solid rgba(184, 111, 79, 0.18);
  background: var(--before-bg);
}

.before-card span {
  color: var(--clay);
}

.before-card li::before {
  background: var(--clay);
}

.after-card {
  border: 1px solid rgba(0, 169, 145, 0.18);
  background: var(--after-bg);
}

.after-card span {
  color: var(--teal-dark);
}

.after-card li::before {
  background: var(--teal);
}

.starter-projects {
  display: grid;
  gap: 28px;
  padding: 0 0 96px;
}

.starter-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 28px;
  align-items: end;
}

.before-after-copy .heading-motion,
.process-copy .heading-motion,
.faq-heading .heading-motion,
.map-copy .heading-motion {
  margin-bottom: 8px;
}

.starter-visual {
  overflow: hidden;
  grid-column: 1 / -1;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.starter-visual img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.starter-heading > p:last-child {
  grid-column: 1 / -1;
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.starter-grid article {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.starter-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--citron));
  content: "";
}

.starter-index {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--teal-dark);
  font-weight: 800;
}

.starter-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.starter-grid small {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 110px;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.card-index {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--muted);
  font-weight: 800;
}

.accent-teal {
  border-top: 6px solid var(--teal);
}

.accent-coral {
  border-top: 6px solid var(--coral);
}

.accent-ink {
  border-top: 6px solid var(--ink);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 64px;
  padding: 86px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-accordion details {
  background: var(--soft-surface);
}

.process-accordion summary {
  gap: 18px;
}

.process-accordion summary span {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
}

.results {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 56px;
  padding: 100px 0;
}

.packages-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1fr);
  gap: 52px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

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

.package-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.package-grid span {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--teal-dark);
  font-weight: 800;
}

.package-grid p {
  margin-bottom: 0;
}

.result-list details {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-section {
  display: grid;
  gap: 30px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.blog-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.blog-heading > p,
.blog-intro p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-intro {
  display: grid;
  gap: 22px;
}

.blog-all-link {
  display: inline-flex;
  min-height: 56px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b57, #ff9f82);
  box-shadow: 0 18px 40px rgba(255, 107, 87, 0.28);
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-all-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(255, 107, 87, 0.38);
}

:root[data-theme="dark"] .blog-all-link {
  color: #160f0c;
  background: linear-gradient(135deg, #ff806d, #ffb088);
}

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

.blog-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.blog-tag {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.7;
}

.blog-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.readiness-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.readiness-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.readiness-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--teal) 24%, var(--line));
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--teal) 18%, transparent), transparent 28%),
    radial-gradient(circle at 92% 80%, color-mix(in srgb, var(--coral) 16%, transparent), transparent 32%),
    color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
}

.readiness-panel::before {
  position: absolute;
  inset: auto 32px 38px 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--coral), transparent);
  content: "";
  opacity: 0.46;
}

.readiness-card,
.readiness-result {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px);
}

:root[data-theme="dark"] .readiness-card,
:root[data-theme="dark"] .readiness-result {
  border-color: rgba(255, 255, 255, 0.12);
}

.readiness-progress {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.readiness-progress i {
  display: block;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--teal) 12%, transparent);
}

.readiness-progress b {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--citron));
  transition: width 0.28s ease;
}

.readiness-card h3 {
  min-height: 66px;
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.readiness-options {
  display: grid;
  gap: 10px;
}

.readiness-options button {
  justify-content: flex-start;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--teal) 18%, var(--line));
  border-radius: 8px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  font-weight: 850;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.readiness-options button:hover {
  border-color: var(--teal);
  background: color-mix(in srgb, var(--teal) 12%, var(--surface));
  transform: translateX(4px);
}

.readiness-result {
  display: flex;
  flex-direction: column;
}

.readiness-result h3 {
  color: var(--teal-dark);
}

.readiness-result p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.readiness-result-list {
  display: grid;
  gap: 8px;
  margin: auto 0 22px;
}

.readiness-result-list span {
  display: flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  font-size: 0.85rem;
  font-weight: 800;
}

.readiness-result-list span.is-active {
  color: #102023;
  background: linear-gradient(135deg, var(--teal), var(--citron));
}

.readiness-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--clay));
  box-shadow: 0 18px 40px rgba(255, 107, 87, 0.26);
  font-weight: 900;
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.estimate-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.estimate-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.74fr);
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, #6c5ce7 24%, var(--line));
  border-radius: 10px;
  background:
    radial-gradient(circle at 16% 22%, rgba(108, 92, 231, 0.18), transparent 28%),
    radial-gradient(circle at 92% 78%, color-mix(in srgb, var(--teal) 18%, transparent), transparent 32%),
    color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
}

.estimate-panel::before {
  position: absolute;
  inset: auto 32px 38px 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6c5ce7, var(--teal), transparent);
  content: "";
  opacity: 0.46;
}

.estimate-card,
.estimate-result {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px);
}

:root[data-theme="dark"] .estimate-card,
:root[data-theme="dark"] .estimate-result {
  border-color: rgba(255, 255, 255, 0.12);
}

.estimate-card {
  display: grid;
  gap: 24px;
}

.estimate-card label {
  display: grid;
  gap: 12px;
}

.estimate-card label span {
  color: var(--muted);
  font-weight: 800;
}

.estimate-card output {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.estimate-card input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.estimate-result {
  display: flex;
  flex-direction: column;
}

.estimate-numbers {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.estimate-numbers strong {
  color: var(--teal-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.estimate-result p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.estimate-cta {
  display: inline-flex;
  min-height: 48px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #6c5ce7, var(--teal));
  box-shadow: 0 18px 40px rgba(108, 92, 231, 0.22);
  font-weight: 900;
}

.downloads-section {
  display: grid;
  gap: 30px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.downloads-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.downloads-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

:root[data-theme="dark"] .download-card {
  border-color: rgba(255, 255, 255, 0.12);
}

.download-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card h3,
.download-card p,
.download-credit {
  grid-column: 1;
}

.download-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-credit {
  margin-top: 2px;
  font-size: 0.9rem;
}

.download-credit a {
  color: var(--teal-dark);
  font-weight: 800;
}

.download-button {
  display: inline-flex;
  min-height: 52px;
  grid-row: 1 / span 4;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--download-text);
  background: var(--download-bg);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--coral) 18%, transparent);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px color-mix(in srgb, var(--coral) 28%, transparent);
}

.blog-hero,
.blog-article-list,
.blog-sources {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.blog-hero {
  padding: 86px 0 46px;
}

.blog-hero h1 {
  max-width: 980px;
}

.blog-hero > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.blog-article-list {
  display: grid;
  gap: 18px;
  padding-bottom: 52px;
}

.blog-article {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
  scroll-margin-top: 104px;
}

:root[data-theme="dark"] .blog-article,
:root[data-theme="dark"] .blog-sources {
  border-color: rgba(255, 255, 255, 0.12);
}

.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin-bottom: 12px;
}

.article-content p {
  color: var(--muted);
  line-height: 1.75;
}

.article-content a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 900;
}

.article-meta {
  font-size: 0.9rem;
  font-weight: 800;
}

.article-visual {
  position: sticky;
  top: 104px;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal) 16%, transparent), transparent 46%),
    var(--soft-surface);
}

.article-visual span,
.article-visual i {
  position: absolute;
  display: block;
}

.article-visual-photo {
  background: #101719;
}

.article-visual-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.visual-brand-position,
.visual-agent-flow {
  min-height: 300px;
  background:
    linear-gradient(90deg, transparent 49%, color-mix(in srgb, var(--teal) 24%, transparent) 50%, transparent 51%),
    radial-gradient(circle at 50% 24%, color-mix(in srgb, var(--teal) 34%, transparent), transparent 34%),
    linear-gradient(135deg, #102023, color-mix(in srgb, var(--teal) 16%, #101719));
}

.visual-brand-position::before,
.visual-agent-flow::before {
  position: absolute;
  inset: 12%;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, transparent);
  border-radius: 999px;
  content: "";
  opacity: 0.72;
}

.visual-brand-position::after,
.visual-agent-flow::after {
  position: absolute;
  inset: 20% 18%;
  border: 1px dashed color-mix(in srgb, var(--coral) 34%, transparent);
  border-radius: 999px;
  content: "";
  animation: article-ring-drift 12s linear infinite;
}

.visual-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(118px, 74%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--teal) 42%, transparent);
  border-radius: 50%;
  color: #fff;
  background: color-mix(in srgb, var(--surface) 10%, transparent);
  box-shadow: 0 0 46px color-mix(in srgb, var(--teal) 22%, transparent);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.visual-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--teal) 30%, transparent);
  border-radius: 999px;
  color: #eafffb;
  background: rgba(16, 23, 25, 0.66);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.68rem;
  font-weight: 850;
}

.pill-one {
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}

.pill-two {
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
}

.pill-three {
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
}

.visual-brand-position i,
.visual-agent-flow i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 24px color-mix(in srgb, var(--teal) 54%, transparent);
  animation: article-node-pulse 3.8s ease-in-out infinite;
}

.visual-brand-position i:nth-of-type(1),
.visual-agent-flow i:nth-of-type(1) {
  top: 22%;
  left: 20%;
}

.visual-brand-position i:nth-of-type(2),
.visual-agent-flow i:nth-of-type(2) {
  right: 18%;
  top: 46%;
  background: var(--coral);
  animation-delay: -1.2s;
}

.visual-brand-position i:nth-of-type(3),
.visual-agent-flow i:nth-of-type(3) {
  bottom: 20%;
  left: 32%;
  background: var(--citron);
  animation-delay: -2.4s;
}

.visual-agent-flow span {
  border-radius: 8px;
}

.visual-agent-flow .visual-core {
  border-radius: 8px;
}

@keyframes article-node-pulse {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes article-ring-drift {
  to {
    transform: rotate(360deg);
  }
}

.article-inline-image {
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid color-mix(in srgb, var(--teal) 22%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

.article-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-inline-image figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.visual-orchestration span {
  width: 82px;
  height: 42px;
  border: 2px solid color-mix(in srgb, var(--teal-dark) 38%, transparent);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.08);
  animation: workflow-pulse 4s ease-in-out infinite;
}

.visual-orchestration span:nth-child(1) {
  top: 42px;
  left: 28px;
}

.visual-orchestration span:nth-child(2) {
  top: 92px;
  right: 34px;
  animation-delay: 0.35s;
}

.visual-orchestration span:nth-child(3) {
  bottom: 38px;
  left: calc(50% - 41px);
  animation-delay: 0.7s;
}

.visual-orchestration i {
  inset: 58px 48px 58px 48px;
  border: 2px solid color-mix(in srgb, var(--teal) 46%, transparent);
  border-radius: 50%;
  border-left-color: transparent;
  animation: slow-turn 8s linear infinite;
}

.visual-cognition span {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.08);
  animation: cognitive-step 5s ease-in-out infinite;
}

.visual-cognition span:nth-child(1) {
  top: 36px;
  left: 36px;
}

.visual-cognition span:nth-child(2) {
  top: 36px;
  right: 36px;
  animation-delay: 0.3s;
}

.visual-cognition span:nth-child(3) {
  bottom: 36px;
  left: 36px;
  animation-delay: 0.6s;
}

.visual-cognition span:nth-child(4) {
  right: 36px;
  bottom: 36px;
  animation-delay: 0.9s;
}

.visual-cognition i {
  width: 84px;
  height: 84px;
  border: 12px solid var(--citron);
  border-radius: 50%;
  opacity: 0.86;
  animation: focus-breathe 4.5s ease-in-out infinite;
}

.visual-safety span:first-child {
  width: 108px;
  height: 128px;
  border: 3px solid var(--teal-dark);
  border-radius: 52px 52px 12px 12px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  animation: shield-settle 4.8s ease-in-out infinite;
}

.visual-safety span:nth-child(2) {
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-38deg);
  animation: check-mark-one 4.8s ease-in-out infinite;
}

.visual-safety i {
  width: 76px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
  transform: translate(14px, 14px) rotate(-38deg);
  animation: check-mark-two 4.8s ease-in-out infinite;
}

.blog-sources {
  margin-bottom: 70px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--soft-surface);
}

.blog-sources ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.blog-sources a {
  color: var(--teal-dark);
  font-weight: 800;
}

@keyframes workflow-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes slow-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cognitive-step {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}

@keyframes focus-breathe {
  0%,
  100% {
    transform: scale(0.84);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes shield-settle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes check-mark-one {
  0%,
  35% {
    opacity: 0.35;
  }
  60%,
  100% {
    opacity: 1;
  }
}

@keyframes check-mark-two {
  0%,
  45% {
    opacity: 0.35;
  }
  70%,
  100% {
    opacity: 1;
  }
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--cta-bg);
}

.cta-section .eyebrow {
  color: var(--citron);
}

.cta-section h2 {
  max-width: 780px;
}

.cta-section .heading-motion {
  --ink: #fff;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #eef9f4;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 56px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 56px;
  padding: 48px 0 24px;
  scroll-margin-top: 96px;
}

.booking-copy p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
}

.booking-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 169, 145, 0.2);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(0, 169, 145, 0.08);
  font-size: 0.92rem;
}

.booking-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.booking-contact a {
  color: var(--teal-dark);
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 30px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--soft-surface);
  scroll-margin-top: 96px;
}

.map-copy {
  align-self: center;
}

.map-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 18px;
  align-self: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(23, 32, 38, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.08);
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
}

.map-pin {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  transform: rotate(-45deg);
  box-shadow: 0 16px 36px rgba(255, 107, 87, 0.28);
}

.map-pin::after {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.07);
}

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

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

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--field-bg);
  outline: none;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 169, 145, 0.14);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--teal-dark);
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1fr);
  gap: 52px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

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

.faq-list details {
  border: 1px solid rgba(23, 32, 38, 0.09);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.faq-list details p {
  margin: -4px 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 34px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}

.footer-logo .brand-symbol {
  width: 18px;
  height: 18px;
}

.footer-logo .symbol-corner {
  width: 12px;
  height: 12px;
  border-width: 2px;
  border-radius: 4px;
}

.footer-logo .symbol-node {
  width: 5px;
  height: 5px;
  box-shadow: none;
}

.footer-logo .brand-word {
  font-size: 0.96rem;
  font-weight: 650;
}

.footer-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

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

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

.leaf-mark {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 100% 0 100% 0;
  background: var(--teal);
  transform: rotate(-18deg);
  box-shadow: 0 8px 18px rgba(0, 169, 145, 0.24);
}

.leaf-mark::after {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transform: rotate(-38deg);
}

@media (max-width: 920px) {
  .site-nav {
    order: 3;
    width: 100%;
    display: none;
    overflow: visible;
    justify-content: stretch;
    scrollbar-width: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 16px;
    background: color-mix(in srgb, var(--surface) 72%, transparent);
  }

  .site-nav a.nav-highlight {
    justify-content: center;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .header-actions {
    order: 1;
    margin-left: auto;
  }

  .hero,
  .daily-news-cta,
  .blog-article,
  .intro,
  .audience-section,
  .before-after,
  .readiness-section,
  .estimate-section,
  .packages-section,
  .blog-heading,
  .downloads-heading,
  .process,
  .results,
  .booking-section,
  .map-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .article-visual {
    position: relative;
    top: auto;
    min-height: 190px;
  }

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

  .hero-media img {
    min-height: 420px;
  }

  .hero-graphic {
    min-height: 390px;
    padding: 30px;
  }

  .hero-orbit {
    inset: 42px;
  }

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

  .problem-section {
    padding: 36px;
  }

  .problem-heading,
  .problem-grid,
  .readiness-panel,
  .estimate-panel {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: 0;
  }

  .problem-grid span {
    margin-bottom: 28px;
  }

  .before-after-copy {
    position: static;
  }

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

  .starter-heading,
  .starter-grid,
  .blog-grid,
  .download-card,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .download-button {
    grid-row: auto;
    grid-column: 1;
    width: fit-content;
  }

  .starter-visual img {
    min-height: 190px;
  }

  .compare-card {
    min-height: 0;
  }

  .package-grid article {
    min-height: 0;
  }

  .service-card {
    min-height: 0;
  }

  .card-index {
    margin-bottom: 42px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-section {
    padding: 32px;
  }

  .hero-statements dl {
    grid-template-columns: 1fr;
  }

  .daily-news-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .daily-news-graphic {
    min-height: 110px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 22px;
  }

  .theme-toggle {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero,
  .section,
  .blog-hero,
  .blog-article-list,
  .blog-sources,
  .logos,
  .daily-news-cta,
  .hero-statements,
  .cta-section,
  .booking-section,
  .faq-section,
  .site-footer,
  .map-section {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding: 42px 0 32px;
  }

  .blog-hero {
    padding: 46px 0 28px;
  }

  .blog-article {
    gap: 22px;
    padding: 20px;
  }

  .article-visual {
    min-height: 160px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
    line-height: 0.96;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .hero-graphic {
    min-height: 300px;
    padding: 18px;
    border-radius: 18px;
  }

  .hero-graphic::before {
    inset: 14px;
    border-radius: 14px;
  }

  .hero-orbit {
    inset: 24px;
  }

  .hero-message-stack {
    min-height: 118px;
  }

  .hero-message {
    padding: 18px;
    border-radius: 14px;
    font-size: clamp(1.25rem, 8vw, 2rem);
  }

  .hero-mini-panels {
    top: 18px;
    left: 18px;
  }

  .hero-mini-panels span {
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .hero-flow-board {
    right: 18px;
    bottom: 18px;
    gap: 7px;
    padding: 9px;
  }

  .hero-flow-board span {
    font-size: 0.6rem;
  }

  .hero-flow-board i {
    width: 18px;
  }

  .workflow-card {
    min-width: 118px;
    padding: 9px 10px;
  }

  .workflow-card strong {
    font-size: 0.68rem;
  }

  .workflow-card small {
    font-size: 0.58rem;
  }

  .card-one {
    left: 24%;
  }

  .card-two {
    right: 5%;
  }

  .card-three {
    right: 11%;
    bottom: 20%;
  }

  .line-one,
  .line-two {
    width: 150px;
  }

  .intro,
  .audience-section,
  .before-after,
  .readiness-section,
  .estimate-section,
  .starter-projects,
  .packages-section,
  .blog-section,
  .downloads-section,
  .process,
  .results,
  .faq-section {
    gap: 28px;
    padding: 64px 0;
  }

  .problem-section {
    margin-bottom: 56px;
    padding: 30px 20px;
  }

  .audience-section,
  .packages-section {
    gap: 28px;
  }

  .package-grid span {
    margin-bottom: 34px;
  }

  .starter-projects {
    gap: 22px;
  }

  .starter-visual {
    max-height: none;
    background: #101719;
  }

  .starter-visual img {
    display: block;
    min-height: 0;
    height: auto;
    aspect-ratio: 960 / 360;
    object-fit: contain;
    object-position: center;
  }

  .service-grid {
    padding-bottom: 70px;
  }

  .cta-section {
    padding: 30px;
  }

  .readiness-panel {
    padding: 14px;
  }

  .estimate-panel {
    padding: 14px;
  }

  .readiness-card,
  .readiness-result,
  .estimate-card,
  .estimate-result {
    padding: 22px;
  }

  .readiness-card h3 {
    min-height: auto;
  }

  .download-card {
    padding: 24px;
  }

  .download-button {
    width: 100%;
  }

  .booking-section {
    gap: 28px;
    padding-top: 36px;
  }

  .map-section {
    gap: 24px;
    margin-bottom: 48px;
    padding: 24px 18px;
  }

  .location-card {
    align-items: flex-start;
    min-height: 0;
  }

  .booking-form {
    padding: 20px;
  }

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

  .form-submit {
    width: 100%;
  }
}
