:root {
  --oak-blue: #0b55ff;
  --oak-blue-deep: #083fd4;
  --oak-purple: #7c35ed;
  --oak-purple-deep: #6425cf;
  --ink: #101832;
  --muted: #566073;
  --mist: #eef4ff;
  --white: #ffffff;
  --oak-navy: #151a2f;
  --oak-surface: #ffffff;
  --oak-surface-soft: #f4f6fa;
  --oak-border: rgba(16, 24, 50, 0.1);
  --oak-radius-sm: 10px;
  --oak-radius-md: 14px;
  --oak-radius-lg: 18px;
  --oak-shadow-card: 0 16px 38px rgba(15, 23, 42, 0.07);
  --oak-shadow-cta: 0 12px 26px rgba(11, 85, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 700px;
  padding-top: 93px;
  padding-bottom: 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #d9e7fa 0%, #d9e7fa 38%, rgba(217, 231, 250, 0.1) 72%),
    var(--mist);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  background:
    linear-gradient(120deg, #edf4ff 0%, #d6e4f7 42%, #ffffff 100%);
}

.hero-image {
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(218, 231, 249, 1) 0%,
      rgba(218, 231, 249, 0.94) 28%,
      rgba(218, 231, 249, 0.74) 43%,
      rgba(218, 231, 249, 0.28) 59%,
      rgba(218, 231, 249, 0) 74%
    );
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 21% 16%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 34%);
  pointer-events: none;
}

.nav-wrap {
  position: fixed;
  top: 17px;
  left: 50%;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1440px, calc(100% - 48px));
  min-height: 76px;
  margin: 0;
  padding: 0 24px 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 18px 44px rgba(21, 43, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
  isolation: isolate;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 230px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  display: block;
  width: auto;
  height: 47px;
  max-width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 31px;
  min-width: 0;
  color: #5a6172;
  font-size: 15.5px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link,
.nav-links > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}

button.nav-link {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: default;
}

.nav-link::before,
.nav-links > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--oak-blue), var(--oak-purple));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.is-active::before,
.nav-links > a:hover::before,
.nav-links > a:focus-visible::before,
.nav-links > a.is-active::before,
.nav-dropdown:hover .nav-link::before,
.nav-dropdown:focus-within .nav-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.is-active,
.nav-links > a.is-active {
  color: #101832;
}

.has-menu::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 0 2px 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -180px;
  z-index: 20;
  width: min(980px, calc(100vw - 70px));
  padding: 32px 36px 34px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(20, 35, 66, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
  white-space: normal;
}

.mega-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 24px;
}

.mega-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 182px;
  width: 22px;
  height: 22px;
  border-radius: 4px 0 0;
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: -36px;
  z-index: 20;
  width: 430px;
  padding: 20px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(20, 35, 66, 0.17);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
  white-space: normal;
}

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

.dropdown-panel::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 70px;
  width: 18px;
  height: 18px;
  border-radius: 4px 0 0;
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
}

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

.audience-menu {
  width: 430px;
}

.about-menu {
  right: -18px;
  left: auto;
  width: 318px;
}

.about-menu::after {
  right: 64px;
  left: auto;
}

.dropdown-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}

.dropdown-title h3 {
  margin: 0;
  color: #202532;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.dropdown-title span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--oak-blue);
  background: #dfe8ff;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
}

.dropdown-list {
  display: grid;
  gap: 10px;
}

.dropdown-list a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 10px;
  border-radius: 8px;
  color: #5f6877;
}

.dropdown-list a:hover {
  background: #f7f8fb;
}

.dropdown-list a:hover strong,
.dropdown-list a:hover .dropdown-icon {
  color: var(--oak-blue);
}

.audience-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.dropdown-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 7px;
  background: #f0f0f0;
  color: #111111;
  transition: color 180ms ease;
}

.dropdown-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-list strong {
  display: block;
  margin-bottom: 4px;
  color: #111521;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.dropdown-list small {
  display: block;
  color: #838c99;
  font-size: 14.5px;
  line-height: 1.3;
  font-weight: 600;
}

.mega-kicker {
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 36, 48, 0.12);
  color: #171c29;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.mega-menu h2 {
  margin: 0 0 22px;
  color: #1d2230;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.mega-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 42px;
}

.mega-column {
  min-width: 0;
}

.column-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.column-title h3 {
  margin: 0;
  color: #202532;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.column-title span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--oak-blue);
  background: #dfe8ff;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  align-items: start;
}

.feature-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  align-self: start;
  min-height: 0;
  color: #5b6473;
}

.feature-item:hover strong {
  color: var(--oak-blue);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
  color: #8b93a0;
}

.feature-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  color: #111521;
  font-size: 15.5px;
  line-height: 1.14;
  font-weight: 800;
  transition: color 180ms ease;
}

.feature-item small {
  display: block;
  color: #6f7887;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.other-services {
  display: block;
  padding-left: 34px;
  border-left: 1px solid rgba(31, 36, 48, 0.12);
}

.other-services a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 36px;
  margin-bottom: 13px;
  padding: 0;
  border-radius: 0;
  color: #5b6473;
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 700;
  white-space: normal;
}

.other-services a:last-child {
  margin-bottom: 0;
}

.service-mini-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #8b93a0;
}

.service-mini-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.other-services strong {
  color: #5b6473;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.other-services a:hover {
  color: var(--oak-blue);
  background: transparent;
}

.other-services a:hover strong,
.other-services a:hover .service-mini-icon {
  color: var(--oak-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: #596071;
  font-size: 15.5px;
  font-weight: 600;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  color: var(--oak-blue);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--oak-blue-deep);
}

.btn,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  border: 2px solid transparent;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 85, 255, 0.19);
}

.btn::after,
.hero-cta::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.btn-primary {
  min-width: 176px;
  background: var(--oak-blue);
}

.btn-primary:hover {
  color: var(--oak-blue);
  border-color: var(--oak-blue);
  background: var(--white);
}

.btn-purple {
  min-width: 208px;
  background: var(--oak-purple);
}

.btn-purple:hover {
  color: var(--oak-purple);
  border-color: var(--oak-purple);
  background: var(--white);
}

.login-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  padding: 12px 0;
}

.search-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #687080;
  background: transparent;
  cursor: pointer;
}

.search-btn:hover {
  color: var(--ink);
  background: rgba(16, 31, 61, 0.06);
}

.search-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(660px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1380px) / 2 + 38px));
  padding-top: 42px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: #1f2430;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: clamp(46px, 3.55vw, 59px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 800;
  color: #172033;
  text-shadow: 0 8px 30px rgba(23, 32, 51, 0.08);
}

.hero-copy {
  max-width: 590px;
  margin: 16px 0 0;
  color: #566174;
  font-size: 17.5px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin: 18px 0 0;
  padding: 0;
  color: #596376;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 30px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--oak-blue);
}

.hero-points li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.hero-cta {
  min-width: 196px;
  min-height: 58px;
  margin-top: 24px;
  border-radius: 16px;
  background: var(--oak-blue);
  font-size: 20px;
}

.hero-cta:hover {
  color: var(--oak-blue);
  border-color: var(--oak-blue);
  background: var(--white);
}

.review-badges {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding-bottom: 2px;
  color: #1f2430;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 152px;
  padding: 2px 23px 2px 0;
}

.review-badge + .review-badge {
  padding-left: 23px;
  border-left: 1px solid rgba(31, 36, 48, 0.22);
}

.badge-icon {
  display: block;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  object-fit: contain;
}

.review-badge strong {
  display: block;
  margin-bottom: 3px;
  color: #202532;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.stars {
  display: block;
  color: #ffb81c;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.systems-section {
  background: #ffffff;
  color: #101522;
  padding: 56px 24px 64px;
}

.systems-intro {
  width: min(920px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.systems-intro p {
  display: inline-flex;
  align-items: center;
  margin: 0 0 15px;
  padding: 8px 14px;
  border: 1px solid rgba(11, 85, 255, 0.16);
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(11, 85, 255, 0.06);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.systems-intro h2 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(35px, 3.15vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.system-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  width: min(1120px, 100%);
  min-height: 500px;
  margin: 0 auto;
  padding: 0;
}

.system-feature + .system-feature {
  margin-top: -64px;
}

.system-feature-reverse .system-visual {
  order: 2;
}

.system-feature-reverse .system-copy {
  order: 1;
}

.system-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
}

.system-visual img {
  display: block;
  width: min(120%, 672px);
  max-height: none;
  height: auto;
  object-fit: contain;
}

#functional-website .system-visual img {
  width: min(120%, 672px);
}

.system-copy {
  max-width: 590px;
}

.system-copy h3 {
  margin: 0 0 16px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(31px, 2.3vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.system-lede {
  max-width: 520px;
  margin: 0 0 26px;
  color: #495569;
  font-size: 18px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 700;
}

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

.system-benefits li {
  position: relative;
  padding: 0 0 0 42px;
  color: #3f495b;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 600;
}

.system-benefits li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(11, 85, 255, 0.1);
}

.system-benefits li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--oak-blue);
  border-bottom: 2px solid var(--oak-blue);
  transform: rotate(45deg);
}

.system-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: #101832;
  font-size: 16.5px;
  line-height: 1.2;
  font-weight: 800;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 56px;
  min-width: 190px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 18px;
  border: 2px solid var(--oak-blue);
  border-radius: 14px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.demo-btn:hover {
  color: var(--oak-blue);
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 85, 255, 0.13);
}

.trades-section {
  position: relative;
  overflow: hidden;
  padding: 74px 24px 108px;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 16%, rgba(11, 85, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #12182c 0%, #1b2036 58%, #17142a 100%);
}

.trades-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 84px;
  background: #f4f6fa;
  clip-path: polygon(0 45%, 50% 100%, 100% 45%, 100% 100%, 0 100%);
  pointer-events: none;
}

.trades-inner {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  margin: 0 auto;
  text-align: center;
}

.trades-inner h2 {
  margin: 0 0 52px;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(30px, 2.3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.trades-carousel {
  position: relative;
  width: 100%;
}

.trades-viewport {
  overflow: hidden;
  width: min(966px, calc(100% - 68px));
  margin: 0 auto;
}

.trades-track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.trade-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 0 0 100%;
  gap: 28px 30px;
  box-sizing: border-box;
  padding-inline: 12px;
}

.trade-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.trade-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  background: #e8eef7;
}

.trade-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0;
  padding: 10px 14px;
  color: #0f1728;
  background: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.trade-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--oak-blue), var(--oak-purple));
  box-shadow: 0 16px 34px rgba(11, 85, 255, 0.27);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.trade-arrow:hover {
  background: linear-gradient(135deg, var(--oak-purple), var(--oak-blue));
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 20px 42px rgba(124, 53, 237, 0.32);
}

.trade-arrow svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trade-arrow-left {
  left: -28px;
}

.trade-arrow-right {
  right: -28px;
}

.trades-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 276px;
  min-height: 56px;
  margin-top: 32px;
  border: 2px solid var(--oak-blue);
  border-radius: 12px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(11, 85, 255, 0.25);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trades-cta:hover {
  color: var(--oak-blue);
  background: var(--white);
  transform: translateY(-1px);
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 78px 24px 88px;
  background:
    radial-gradient(circle at 8% 10%, rgba(11, 85, 255, 0.07), transparent 25%),
    radial-gradient(circle at 92% 88%, rgba(124, 53, 237, 0.07), transparent 24%),
    #f4f6fa;
}

.process-section::after {
  display: none;
}

.process-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.process-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 16px;
  padding: 0 14px;
  border: 1px solid rgba(11, 85, 255, 0.18);
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-heading h2 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.process-heading > p:last-child {
  max-width: 670px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

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

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 27px 27px 29px;
  border: 1px solid rgba(16, 24, 50, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(16, 24, 50, 0.07);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--oak-blue), var(--oak-purple));
}

.process-step:hover {
  border-color: rgba(11, 85, 255, 0.2);
  box-shadow: 0 22px 50px rgba(16, 24, 50, 0.1);
  transform: translateY(-3px);
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--oak-blue), var(--oak-purple));
  box-shadow: 0 12px 24px rgba(11, 85, 255, 0.18);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.process-time {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #48536a;
  background: #eef3fb;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 12px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: #4b5568;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 600;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: 86px 24px 138px;
  background: var(--white);
}

.why-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 112px;
  background: #151a2f;
  clip-path: polygon(0 48%, 50% 100%, 100% 48%, 100% 100%, 0 100%);
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
}

.why-inner h2 {
  margin: 0 0 54px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

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

.why-card {
  min-height: 190px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(11, 85, 255, 0.12), transparent 42%),
    #1b2036;
  box-shadow: 0 18px 32px rgba(15, 22, 42, 0.12);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 800;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.42;
  font-weight: 600;
}

.tools-section {
  position: relative;
  overflow: hidden;
  padding: 84px 24px 132px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 53, 237, 0.22), transparent 34%),
    #151a2f;
}

.tools-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 108px;
  background: #f4f6fa;
  clip-path: polygon(0 46%, 50% 100%, 100% 46%, 100% 100%, 0 100%);
  pointer-events: none;
}

.tools-inner {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.tools-inner h2 {
  margin: 0;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 38px;
  width: min(880px, 100%);
  margin: 56px auto 0;
}

.partner-logos img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 185px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.16));
}

.partner-logos img[alt="Google Business Profile"],
.partner-logos img[alt="Google Search Console"],
.partner-logos img[alt="Google Analytics"] {
  max-width: 210px;
}

.partner-logos img[alt="Zapier"],
.partner-logos img[alt="Canva"],
.partner-logos img[alt="Ahrefs"] {
  height: 62px;
  max-width: 210px;
}

.faq-section {
  padding: 76px 24px 96px;
  background: #f4f6fa;
}

.faq-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-inner h2 {
  margin: 0 0 52px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 50, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.faq-item[open] {
  border-color: rgba(11, 85, 255, 0.24);
  background: var(--white);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 17px 58px 17px 18px;
  color: #101832;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #101832;
  border-bottom: 3px solid #101832;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary {
  color: var(--white);
  background: linear-gradient(135deg, var(--oak-blue), var(--oak-purple));
}

.faq-item[open] summary::after {
  border-color: var(--white);
  transform: translateY(-35%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 18px 22px 22px;
  color: #4a5365;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
}

.book-call-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(230px, 0.88fr);
  align-items: center;
  gap: 28px;
  min-height: 310px;
  margin-top: 44px;
  padding: 34px 42px;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(124, 53, 237, 0.3), transparent 28%),
    linear-gradient(135deg, #151a2f 0%, #1b2036 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.book-call-copy p {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #dfe8ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.book-call-copy h3 {
  width: min(430px, 100%);
  margin: 0 0 16px;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(32px, 2.5vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.book-call-copy span {
  display: block;
  width: min(480px, 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.book-call-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 54px;
  margin-top: 28px;
  border: 2px solid var(--oak-blue);
  border-radius: 12px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.book-call-copy a:hover {
  color: var(--oak-blue);
  background: var(--white);
  transform: translateY(-1px);
}

.book-call-visual {
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(300px, 100%);
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.book-call-visual img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.24));
}

.book-call-visual div {
  margin-top: -14px;
  text-align: center;
}

.book-call-visual strong {
  display: block;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.book-call-visual span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(11, 85, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #101526 0%, #171c31 55%, #131629 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr);
  gap: 70px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 48px;
}

.footer-brand img {
  display: block;
  width: 238px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  width: min(390px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  margin-top: 28px;
  border: 2px solid var(--oak-blue);
  border-radius: 12px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-cta:hover {
  color: var(--oak-blue);
  background: var(--white);
  transform: translateY(-1px);
}

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

.footer-links h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.page-main {
  min-height: 100vh;
  background: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 176px 24px 82px;
  background:
    linear-gradient(90deg, rgba(218, 231, 249, 1) 0%, rgba(218, 231, 249, 0.74) 46%, rgba(218, 231, 249, 0.24) 100%),
    #dbe8f8;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 72px;
  background: var(--white);
  clip-path: polygon(0 58%, 50% 100%, 100% 58%, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(11, 85, 255, 0.16);
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(46px, 4.9vw, 74px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.page-hero h1 em {
  font-style: italic;
}

.page-hero-compact {
  padding: 136px 24px 56px;
}

.page-hero-compact::after {
  height: 42px;
}

.page-hero-compact .page-hero-inner {
  grid-template-columns: minmax(0, 760px);
  justify-content: flex-start;
}

.page-hero-compact h1 {
  max-width: 760px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
}

.page-hero-compact .page-copy {
  max-width: 650px;
  margin-top: 18px;
}

.page-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #4b566b;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 700;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--oak-blue);
  border-radius: 14px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.page-btn:hover {
  color: var(--oak-blue);
  background: var(--white);
  transform: translateY(-1px);
}

.page-btn-secondary {
  border-color: var(--oak-purple);
  background: var(--oak-purple);
}

.page-btn-secondary:hover {
  color: var(--oak-purple);
}

.page-visual {
  display: grid;
  place-items: center;
}

.page-visual img {
  display: block;
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(16, 24, 50, 0.16));
}

.page-section {
  padding: 74px 24px;
  background: var(--white);
}

.page-section-first {
  padding-top: 142px;
}

.page-section-tight {
  padding-top: 54px;
}

.page-section-first.page-section-tight {
  padding-top: 142px;
}

.page-section-soft {
  background: #f4f6fa;
}

.page-section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(11, 85, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #12182c, #1b2036);
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.page-section-dark .section-heading h1,
.page-section-dark .section-heading h2 {
  color: var(--white);
}

.section-heading p {
  margin: 16px auto 0;
  color: #5b6578;
  font-size: 17px;
  line-height: 1.56;
  font-weight: 650;
}

.page-section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.info-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 50, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.page-section-dark .info-card {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.info-card h3 {
  margin: 0 0 10px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 800;
}

.page-section-dark .info-card h3 {
  color: var(--white);
}

.info-card p,
.info-card li {
  color: #4c5668;
  font-size: 15.5px;
  line-height: 1.52;
  font-weight: 600;
}

.page-section-dark .info-card p,
.page-section-dark .info-card li {
  color: rgba(255, 255, 255, 0.74);
}

.info-card p {
  margin: 0;
}

.info-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  position: relative;
  padding-left: 22px;
}

.info-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak-blue), var(--oak-purple));
}

/* About page */
.about-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 24px 76px;
  background:
    radial-gradient(circle at 82% 12%, rgba(127, 57, 255, 0.2), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(11, 85, 255, 0.18), transparent 28%),
    #eef4ff;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 100px;
  right: -90px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(11, 85, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(11, 85, 255, 0.04), 0 0 0 96px rgba(127, 57, 255, 0.025);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.about-hero h1 em {
  color: var(--oak-purple);
  font-style: italic;
}

.about-hero-copy > p:not(.page-kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: #4b566b;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.about-text-link {
  color: #101832;
  font-size: 15px;
  font-weight: 800;
}

.about-text-link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--oak-purple);
  transition: transform 180ms ease;
}

.about-text-link:hover span {
  transform: translateX(4px);
}

.about-hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(16, 24, 50, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(16, 24, 50, 0.14);
  backdrop-filter: blur(14px);
}

.about-card-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border-radius: 16px;
  background: #eef4ff;
}

.about-card-mark img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-card-label {
  margin: 0 0 8px;
  color: #697386;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-hero-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 24, 50, 0.08);
  color: #101832;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.about-hero-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-hero-card li span {
  color: var(--oak-blue);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.about-intro {
  padding: 86px 24px;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 120px);
}

.about-eyebrow {
  margin: 0 0 14px;
  color: var(--oak-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-intro h2,
.about-section-head h2,
.about-contact h2 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.about-intro-copy {
  padding-top: 28px;
}

.about-intro-copy p {
  margin: 0;
  color: #4c5668;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.about-intro-copy p + p {
  margin-top: 18px;
}

.about-principles {
  padding: 78px 24px 86px;
  background: #f4f6fa;
}

.about-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.about-section-head > p {
  margin: 0 0 4px;
  color: #5b6578;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(16, 24, 50, 0.09);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.about-principle-grid article {
  min-height: 264px;
  padding: 30px;
  border-right: 1px solid rgba(16, 24, 50, 0.09);
}

.about-principle-grid article:last-child {
  border-right: 0;
}

.about-principle-number {
  color: var(--oak-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-principle-grid h3 {
  margin: 40px 0 12px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.about-principle-grid p {
  margin: 0;
  color: #566073;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.about-contact {
  padding: 58px 24px 72px;
  color: var(--white);
  background: var(--oak-surface-soft);
}

.about-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 82px);
  align-items: center;
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 40px 44px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--oak-radius-lg);
  background:
    radial-gradient(circle at 86% 10%, rgba(124, 53, 237, 0.3), transparent 30%),
    radial-gradient(circle at 4% 0%, rgba(11, 85, 255, 0.24), transparent 26%),
    var(--oak-navy);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.about-contact .about-eyebrow {
  color: #8db4ff;
}

.about-contact h2 {
  max-width: 600px;
  color: var(--white);
  font-size: clamp(30px, 2.6vw, 44px);
}

.about-contact-links {
  display: grid;
  gap: 12px;
}

.about-contact-links a {
  display: block;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.about-contact-links a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.about-contact-links span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-contact-links strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.3;
}

.about-contact-cta {
  display: grid;
  justify-items: start;
}

.about-book-call {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-width: 280px;
  min-height: 64px;
  padding: 0 24px;
  border: 2px solid var(--oak-blue);
  border-radius: 15px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(11, 85, 255, 0.28);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.about-book-call:hover {
  border-color: #3477ff;
  background: #3477ff;
  transform: translateY(-2px);
}

.about-book-call span {
  font-size: 24px;
  line-height: 1;
}

.about-contact-cta > p {
  margin: 20px 0 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.about-contact-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.about-contact-cta > div a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.about-contact-cta > div a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .about-hero-inner,
  .about-intro-grid,
  .about-contact-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-inner,
  .about-contact-inner {
    gap: 42px;
  }

  .about-hero-card {
    max-width: 620px;
  }

  .about-intro-grid {
    gap: 18px;
  }

  .about-intro-copy {
    padding-top: 0;
  }

  .about-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-principle-grid {
    grid-template-columns: 1fr;
  }

  .about-principle-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 24, 50, 0.09);
  }

  .about-principle-grid article:last-child {
    border-bottom: 0;
  }

  .about-principle-grid h3 {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding: 118px 18px 56px;
  }

  .about-hero h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .about-hero-copy > p:not(.page-kicker) {
    margin-top: 20px;
    font-size: 16px;
  }

  .about-actions {
    align-items: flex-start;
    gap: 18px;
    margin-top: 25px;
  }

  .about-hero-card {
    padding: 24px;
    border-radius: 18px;
  }

  .about-card-mark {
    margin-bottom: 22px;
  }

  .about-intro,
  .about-principles,
  .about-contact {
    padding: 58px 18px;
  }

  .about-principle-grid article {
    padding: 25px;
  }

  .about-contact-inner {
    gap: 32px;
    padding: 27px 22px;
  }

  .about-book-call {
    width: 100%;
    min-width: 0;
  }
}

/* Who We Help — businesses and trades */
.trade-focus-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 24px 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(124, 53, 237, 0.4), transparent 27%),
    radial-gradient(circle at 5% 92%, rgba(11, 85, 255, 0.3), transparent 31%),
    linear-gradient(135deg, #11172b 0%, #182044 58%, #17142d 100%);
}

.trade-focus-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.trade-focus-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 62px;
  align-items: center;
}

.trade-focus-copy .audience-eyebrow {
  color: #8fb4ff;
}

.trade-focus-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(46px, 4.2vw, 62px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.trade-focus-copy h1 em {
  color: #a77bff;
  font-style: italic;
}

.trade-focus-copy > p:not(.audience-eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.trade-focus-copy .audience-text-link-light {
  color: var(--white);
}

.trade-focus-copy .audience-text-link-light span {
  color: #9bbdff;
}

.trade-focus-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.65fr);
  grid-template-rows: repeat(2, 190px);
  gap: 13px;
}

.trade-focus-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 4px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: #242c49;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.trade-focus-mosaic .trade-focus-main {
  grid-row: 1 / 3;
}

.trade-focus-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trade-focus-main img {
  object-position: 58% center;
}

.trade-focus-count {
  position: absolute;
  right: 24px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(18, 24, 44, 0.86);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.trade-focus-count strong {
  color: #9bbdff;
  font-size: 28px;
  line-height: 1;
}

.trade-focus-count span {
  max-width: 88px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 750;
}

.businesses-section {
  padding: 90px 24px 96px;
  background:
    radial-gradient(circle at 90% 8%, rgba(124, 53, 237, 0.08), transparent 23%),
    var(--oak-surface-soft);
}

.businesses-heading {
  max-width: 830px;
  margin: 0 auto 46px;
  text-align: center;
}

.businesses-heading h2,
.business-fit-heading h2,
.business-final-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.businesses-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

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

.business-card {
  --business-accent: var(--oak-blue);
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  scroll-margin-top: 130px;
  border: 1px solid rgba(16, 24, 50, 0.09);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 46px rgba(16, 24, 50, 0.08);
}

.business-card:nth-child(n + 3) {
  grid-column: span 2;
}

.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 5px;
  background: var(--business-accent);
}

.business-card-blue { --business-accent: #0b55ff; }
.business-card-purple { --business-accent: #7c35ed; }
.business-card-cyan { --business-accent: #0891b2; }
.business-card-green { --business-accent: #14925f; }
.business-card-orange { --business-accent: #e56a19; }

.business-card > img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.business-card:nth-child(n + 3) > img {
  height: 190px;
}

.business-card > div {
  padding: 26px 27px 29px;
}

.business-card > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--business-accent);
  background: color-mix(in srgb, var(--business-accent) 10%, white);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-card h3 {
  margin: 17px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.business-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.business-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  padding: 7px 9px;
  border: 1px solid rgba(16, 24, 50, 0.08);
  border-radius: 8px;
  color: #3f4a60;
  background: #f7f9fd;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 750;
}

.business-fit-section {
  padding: 82px 24px 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.15), transparent 24%),
    linear-gradient(135deg, #0b55ff 0%, #5a39ef 58%, #7c35ed 100%);
}

.business-fit-heading {
  max-width: 760px;
  margin: 0 auto 39px;
  text-align: center;
}

.business-fit-heading .audience-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.business-fit-heading h2 {
  color: var(--white);
}

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

.business-fit-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.business-fit-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.business-fit-grid h3 {
  margin: 29px 0 9px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.business-fit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 600;
}

.business-final-section {
  padding: 72px 24px 84px;
  background: var(--white);
}

.business-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 40px 44px;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(124, 53, 237, 0.32), transparent 30%),
    #151a2f;
  box-shadow: 0 20px 48px rgba(16, 24, 50, 0.16);
}

.business-final-card h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 45px);
}

.business-final-card .audience-eyebrow {
  color: #8eb4ff;
}

.business-final-card > div > p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .trade-focus-hero {
    padding: 138px 22px 78px;
  }

  .trade-focus-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .trade-focus-copy {
    max-width: 720px;
  }

  .trade-focus-mosaic {
    width: min(720px, 100%);
  }

  .business-card,
  .business-card:nth-child(n + 3) {
    grid-column: span 3;
  }

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

  .business-final-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .business-final-card .page-btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .trade-focus-hero {
    padding: 116px 18px 58px;
  }

  .trade-focus-copy h1 {
    font-size: 41px;
  }

  .trade-focus-copy > p:not(.audience-eyebrow) {
    margin-top: 18px;
    font-size: 15px;
  }

  .trade-focus-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 205px 118px;
    gap: 8px;
    padding-bottom: 44px;
  }

  .trade-focus-mosaic .trade-focus-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .trade-focus-mosaic figure:not(.trade-focus-main) {
    grid-row: 2;
  }

  .trade-focus-count {
    right: 12px;
    bottom: 0;
  }

  .businesses-section,
  .business-fit-section,
  .business-final-section {
    padding: 56px 18px 60px;
  }

  .businesses-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .businesses-heading h2,
  .business-fit-heading h2,
  .business-final-card h2 {
    font-size: 31px;
  }

  .businesses-heading > p:last-child {
    margin-top: 14px;
    font-size: 14px;
  }

  .business-card-grid,
  .business-fit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-card,
  .business-card:nth-child(n + 3) {
    grid-column: auto;
  }

  .business-card > img,
  .business-card:nth-child(n + 3) > img {
    height: 190px;
  }

  .business-card > div {
    padding: 22px;
  }

  .business-fit-heading {
    margin-bottom: 29px;
    text-align: left;
  }

  .business-fit-grid article {
    min-height: 0;
    padding: 22px;
  }

  .business-final-card {
    padding: 27px 24px;
  }
}

/* Who We Help — contractor-focused page */
.audience-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.audience-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 24px 88px;
  background:
    radial-gradient(circle at 88% 10%, rgba(124, 53, 237, 0.14), transparent 25%),
    radial-gradient(circle at 5% 86%, rgba(11, 85, 255, 0.12), transparent 28%),
    var(--mist);
}

.audience-hero::before {
  content: "";
  position: absolute;
  top: 134px;
  right: -110px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(11, 85, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.audience-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 64px;
  align-items: center;
}

.audience-eyebrow {
  margin: 0 0 15px;
  color: var(--oak-blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.audience-hero-copy h1 em {
  color: var(--oak-purple);
  font-style: italic;
}

.audience-hero-copy > p:not(.audience-eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 650;
}

.audience-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 31px;
}

.audience-text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.audience-text-link span {
  margin-left: 6px;
  color: var(--oak-blue);
}

.audience-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.audience-proof li {
  position: relative;
  padding-left: 20px;
  color: #455066;
  font-size: 13px;
  font-weight: 750;
}

.audience-proof li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--oak-blue);
  box-shadow: 0 0 0 1px rgba(11, 85, 255, 0.18);
}

.audience-hero-visual {
  position: relative;
  min-width: 0;
}

.audience-hero-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.14 / 1;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 28px 64px rgba(16, 24, 50, 0.18);
}

.audience-signal {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 15px 17px;
  border: 1px solid rgba(16, 24, 50, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 24, 50, 0.16);
  backdrop-filter: blur(14px);
}

.audience-signal span,
.audience-signal strong {
  display: block;
}

.audience-signal span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audience-signal strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.audience-signal-call {
  top: 38px;
  left: -34px;
}

.audience-signal-lead {
  right: -25px;
  bottom: 42px;
}

.audience-problems,
.audience-trades {
  padding: 86px 24px 92px;
  background: var(--white);
}

.audience-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 40px;
}

.audience-section-head h2,
.audience-cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.audience-section-head > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

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

.audience-problem-grid article {
  min-height: 230px;
  padding: 25px 24px 27px;
  border: 1px solid var(--oak-border);
  border-radius: 16px;
  background: var(--oak-surface-soft);
}

.audience-problem-grid span,
.audience-service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 10px;
  color: var(--oak-blue);
  background: rgba(11, 85, 255, 0.09);
  font-size: 12px;
  font-weight: 800;
}

.audience-problem-grid h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.audience-problem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.audience-system {
  padding: 86px 24px 94px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 0%, rgba(124, 53, 237, 0.27), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(11, 85, 255, 0.2), transparent 30%),
    #151a2f;
}

.audience-section-head-light h2 {
  color: var(--white);
}

.audience-section-head-light > p {
  color: rgba(255, 255, 255, 0.68);
}

.audience-section-head-light .audience-eyebrow {
  color: #78a5ff;
}

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

.audience-service-grid a {
  min-height: 190px;
  padding: 23px 23px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.audience-service-grid a:hover {
  border-color: rgba(120, 165, 255, 0.4);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.audience-service-grid span {
  color: #9bbdff;
  background: rgba(11, 85, 255, 0.2);
}

.audience-service-grid h3 {
  margin: 23px 0 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.audience-service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.audience-trades {
  background: var(--oak-surface-soft);
}

.audience-trade-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-trade-groups article {
  scroll-margin-top: 130px;
  padding: 24px 25px;
  border: 1px solid var(--oak-border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(16, 24, 50, 0.05);
}

.audience-trade-groups h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.audience-trade-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.audience-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  margin-top: 48px;
  padding: 38px 42px;
  border-radius: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(124, 53, 237, 0.35), transparent 31%),
    #151a2f;
  box-shadow: 0 24px 56px rgba(16, 24, 50, 0.16);
}

.audience-cta-card h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 43px);
}

.audience-cta-card .audience-eyebrow {
  color: #8eb4ff;
}

.audience-cta-card span {
  display: block;
  max-width: 700px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .audience-hero {
    padding: 138px 22px 72px;
  }

  .audience-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .audience-hero-copy {
    max-width: 720px;
  }

  .audience-hero-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .audience-section-head {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .audience-section-head > p {
    max-width: 680px;
  }

  .audience-problem-grid,
  .audience-service-grid,
  .audience-trade-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-cta-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .audience-cta-card .page-btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .audience-hero {
    padding: 116px 18px 54px;
  }

  .audience-hero::before {
    display: none;
  }

  .audience-hero-grid {
    gap: 36px;
  }

  .audience-hero-copy h1 {
    font-size: 42px;
  }

  .audience-hero-copy > p:not(.audience-eyebrow) {
    margin-top: 18px;
    font-size: 15px;
  }

  .audience-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 26px;
  }

  .audience-proof {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
  }

  .audience-hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .audience-hero-visual > img {
    aspect-ratio: 1.25 / 1;
    border-width: 5px;
    border-radius: 19px;
  }

  .audience-signal {
    position: static;
    width: auto;
    padding: 13px 15px;
    box-shadow: 0 12px 28px rgba(16, 24, 50, 0.1);
  }

  .audience-problems,
  .audience-system,
  .audience-trades {
    padding: 56px 18px 60px;
  }

  .audience-section-head {
    margin-bottom: 28px;
  }

  .audience-section-head h2,
  .audience-cta-card h2 {
    font-size: 31px;
  }

  .audience-section-head > p {
    font-size: 14px;
  }

  .audience-problem-grid,
  .audience-service-grid,
  .audience-trade-groups {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .audience-problem-grid article,
  .audience-service-grid a {
    min-height: 0;
  }

  .audience-cta-card {
    margin-top: 36px;
    padding: 27px 24px;
    border-radius: 16px;
  }
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 142px 24px 88px;
  background:
    radial-gradient(circle at 88% 7%, rgba(124, 53, 237, 0.1), transparent 25%),
    radial-gradient(circle at 7% 24%, rgba(11, 85, 255, 0.1), transparent 28%),
    #f4f6fa;
}

.legal-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: 0 4px 42px;
}

.legal-kicker {
  margin: 0 0 15px;
  color: var(--oak-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.legal-hero h1 em {
  color: var(--oak-purple);
  font-style: italic;
}

.legal-hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.legal-updated {
  min-width: 190px;
  margin: 0;
  padding: 15px 18px;
  border: 1px solid rgba(11, 85, 255, 0.14);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px rgba(16, 24, 50, 0.05);
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

.legal-toc {
  position: sticky;
  top: 116px;
  padding: 24px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--oak-shadow-card);
}

.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 15px;
}

.legal-toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.legal-toc a:hover {
  color: var(--oak-blue);
  transform: translateX(3px);
}

.legal-content {
  overflow: hidden;
  border: 1px solid var(--oak-border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(16, 24, 50, 0.08);
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  background: linear-gradient(135deg, #edf3ff, #f6f0ff);
}

.legal-summary div {
  padding: 18px;
  border: 1px solid rgba(11, 85, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.legal-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--oak-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.legal-section {
  padding: 34px 38px;
  scroll-margin-top: 120px;
}

.legal-section + .legal-section {
  border-top: 1px solid var(--oak-border);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(23px, 2.3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.legal-section h3 {
  margin: 25px 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.legal-section p,
.legal-section li {
  color: #4f596b;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 560;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section a {
  color: var(--oak-blue);
  font-weight: 750;
}

.legal-callout {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 4px solid var(--oak-purple);
  border-radius: 0 14px 14px 0;
  background: #f6f1ff;
}

.legal-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
}

.legal-contact-card {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(124, 53, 237, 0.42), transparent 34%),
    var(--oak-navy);
}

.legal-contact-card h2,
.legal-contact-card p {
  color: var(--white);
}

.legal-contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.legal-business-address {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.65;
  font-style: normal;
  font-weight: 650;
}

.legal-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.legal-contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 11px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 14px;
}

@media (max-width: 900px) {
  .legal-page {
    padding-top: 118px;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-updated {
    justify-self: start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  .legal-toc strong {
    flex-basis: 100%;
  }

  .legal-toc a {
    padding: 5px 0;
  }
}

@media (max-width: 620px) {
  .legal-page {
    padding: 108px 14px 58px;
  }

  .legal-hero {
    padding: 0 4px 28px;
  }

  .legal-hero-copy {
    font-size: 16px;
  }

  .legal-summary {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .legal-section {
    padding: 27px 22px;
  }

  .legal-toc {
    padding: 20px;
  }

  .legal-contact-links {
    flex-direction: column;
  }

  .legal-contact-links a {
    justify-content: center;
  }
}

/* Oakmont shared design system */
body {
  color: var(--ink);
}

.hero h1,
.page-hero h1,
.compact-service-copy h1,
.pricing-heading h1,
.about-hero h1 {
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: -0.025em;
}

.hero h1 em,
.page-hero h1 em,
.about-hero h1 em {
  color: var(--oak-purple);
}

.hero-copy,
.page-copy,
.compact-service-copy p,
.section-heading p,
.about-intro-copy p,
.about-section-head > p {
  color: var(--muted);
}

.process-section,
.faq-section,
.page-section-soft,
.pricing-page-section,
.service-demo-section,
.compact-service-section,
.service-page-cta {
  background-color: var(--oak-surface-soft);
}

.btn,
.hero-cta,
.page-btn,
.trades-cta,
.footer-cta,
.book-call-copy a,
.contact-form button {
  border: 2px solid var(--oak-blue);
  border-radius: var(--oak-radius-md);
  color: var(--white);
  background: var(--oak-blue);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  box-shadow: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.btn-primary:hover,
.hero-cta:hover,
.page-btn:hover,
.trades-cta:hover,
.footer-cta:hover,
.book-call-copy a:hover,
.contact-form button:hover {
  border-color: var(--oak-blue-deep);
  color: var(--white);
  background: var(--oak-blue-deep);
  box-shadow: var(--oak-shadow-cta);
  transform: translateY(-2px);
}

.btn-purple {
  border-color: var(--oak-purple);
  background: var(--oak-purple);
}

.btn-purple:hover {
  border-color: var(--oak-purple-deep);
  color: var(--white);
  background: var(--oak-purple-deep);
  box-shadow: 0 12px 26px rgba(124, 53, 237, 0.2);
}

.btn::after,
.hero-cta::after,
a.page-btn::after,
.trades-cta::after,
.footer-cta::after,
.book-call-copy a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.page-btn,
.trades-cta,
.book-call-copy a,
.contact-form button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
}

.hero-cta {
  min-height: 58px;
  border-radius: var(--oak-radius-md);
  font-size: 18px;
}

.footer-cta {
  min-height: 48px;
  border-radius: var(--oak-radius-md);
}

.pricing-plan .page-btn {
  border-color: var(--white);
  color: var(--oak-blue);
  background: var(--white);
}

.pricing-plan .page-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.info-card,
.pricing-card,
.contact-panel,
.grader-panel,
.stat-card,
.video-demo-card,
.compact-point-card,
.service-explain-card,
.service-pill-panel,
.about-hero-card,
.about-principle-grid {
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background-color: var(--oak-surface);
  box-shadow: var(--oak-shadow-card);
}

.trade-card,
.video-frame,
.video-placeholder,
.feature-row-visual {
  border-radius: var(--oak-radius-md);
}

.why-card,
.book-call-card,
.service-cta-card,
.pricing-plan {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--oak-radius-lg);
  background-color: var(--oak-navy);
}

.book-call-visual {
  border-radius: var(--oak-radius-md);
}

.page-visual {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--oak-shadow-card);
}

.page-visual img {
  border-radius: var(--oak-radius-md);
  filter: none;
}

.contact-form input,
.contact-form textarea {
  border-color: var(--oak-border);
  border-radius: var(--oak-radius-sm);
  background: #f8fafc;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11, 85, 255, 0.7);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 85, 255, 0.1);
}

.btn:focus-visible,
.hero-cta:focus-visible,
.page-btn:focus-visible,
.trades-cta:focus-visible,
.footer-cta:focus-visible,
.book-call-copy a:focus-visible,
.contact-form button:focus-visible {
  outline: 3px solid rgba(124, 53, 237, 0.42);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .page-btn,
  .trades-cta,
  .book-call-copy a,
  .contact-form button {
    min-height: 52px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-actions .btn-primary {
    min-width: 44px;
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .nav-actions .btn-primary::after {
    margin-left: 0;
    color: var(--white);
  }
}

/* Full-screen mobile navigation */
.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border: 1px solid rgba(16, 24, 50, 0.1);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-panel {
    position: fixed;
    inset: 0;
    z-index: 2147483500;
    display: block;
    overflow: hidden;
    background:
      radial-gradient(circle at 90% 8%, rgba(124, 53, 237, 0.17), transparent 24%),
      radial-gradient(circle at 5% 90%, rgba(11, 85, 255, 0.14), transparent 28%),
      var(--mist);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .mobile-nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav-shell {
    width: min(760px, 100%);
    height: 100dvh;
    margin: 0 auto;
    padding: 18px 24px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 -6px 30px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 38px rgba(16, 24, 50, 0.1);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
  }

  .mobile-nav-brand {
    display: flex;
    align-items: center;
    width: 205px;
    height: 54px;
    overflow: hidden;
  }

  .mobile-nav-brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 100%;
    object-fit: contain;
  }

  .mobile-nav-close {
    position: relative;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: var(--oak-blue);
    cursor: pointer;
  }

  .mobile-nav-close span {
    position: absolute;
    top: 22px;
    left: 13px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
  }

  .mobile-nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 42px;
  }

  .mobile-nav-group:first-child {
    grid-row: span 2;
  }

  .mobile-nav-group > p {
    margin: 0 0 12px;
    color: var(--oak-blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-nav-links {
    display: grid;
    gap: 4px;
  }

  .mobile-nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 9px 34px 9px 0;
    border-bottom: 1px solid rgba(16, 24, 50, 0.09);
    color: var(--ink);
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
  }

  .mobile-nav-links a::after {
    content: "→";
    position: absolute;
    right: 4px;
    color: var(--oak-blue);
    font-size: 16px;
  }

  .mobile-nav-links a.is-current {
    color: var(--oak-purple);
  }

  .mobile-nav-links a.is-current::after {
    color: var(--oak-purple);
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 12px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(16, 24, 50, 0.11);
  }

  .mobile-nav-phone,
  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-nav-phone {
    border: 1px solid rgba(11, 85, 255, 0.18);
    color: var(--oak-blue);
    background: rgba(255, 255, 255, 0.74);
  }

  .mobile-nav-cta {
    gap: 24px;
    color: var(--white);
    background: var(--oak-blue);
    box-shadow: var(--oak-shadow-cta);
  }
}

@media (max-width: 560px) {
  .nav-actions {
    gap: 8px;
  }

  .mobile-nav-shell {
    padding: 10px 16px 24px;
  }

  .mobile-nav-head {
    margin-bottom: 24px;
    border-radius: 17px;
  }

  .mobile-nav-brand {
    width: 180px;
  }

  .mobile-nav-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mobile-nav-group:first-child {
    grid-row: auto;
  }

  .mobile-nav-links a {
    min-height: 46px;
    font-size: 17px;
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-panel {
    transition: none;
  }
}

/* Mobile navigation — compact desktop-style hierarchy */
@media (max-width: 900px) {
  .mobile-nav-shell {
    width: min(520px, 100%);
    padding: 12px 18px 24px;
  }

  .mobile-nav-head {
    margin: 0 0 18px;
  }

  .mobile-nav-content {
    display: block;
  }

  .mobile-nav-item,
  .mobile-nav-primary-link {
    border-bottom: 1px solid rgba(16, 24, 50, 0.11);
  }

  .mobile-nav-trigger,
  .mobile-nav-primary-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 0 6px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: 19px;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
  }

  .mobile-nav-primary-link > span {
    color: var(--oak-blue);
    font-size: 20px;
  }

  .mobile-nav-primary-link.is-current {
    color: var(--oak-purple);
  }

  .mobile-nav-trigger i {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(11, 85, 255, 0.09);
  }

  .mobile-nav-trigger i::before,
  .mobile-nav-trigger i::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 6px;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--oak-blue);
    transition: transform 180ms ease;
  }

  .mobile-nav-trigger i::after {
    transform: rotate(90deg);
  }

  .mobile-nav-trigger[aria-expanded="true"] i::after {
    transform: rotate(0deg);
  }

  .mobile-nav-drawer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease;
  }

  .mobile-nav-drawer.is-open {
    grid-template-rows: 1fr;
  }

  .mobile-nav-drawer-inner {
    min-height: 0;
    overflow: hidden;
  }

  .mobile-nav-drawer.is-open .mobile-nav-drawer-inner {
    padding: 2px 8px 18px;
  }

  .mobile-nav-subgroup + .mobile-nav-subgroup {
    margin-top: 18px;
  }

  .mobile-nav-subgroup > p {
    margin: 0 0 7px;
    color: var(--oak-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav-drawer .mobile-nav-links {
    gap: 0;
  }

  .mobile-nav-drawer .mobile-nav-links a {
    min-height: 40px;
    padding: 8px 26px 8px 0;
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-nav-actions {
    margin-top: 24px;
    padding-top: 18px;
  }
}

@media (max-width: 560px) {
  .mobile-nav-shell {
    padding: 10px 14px 22px;
  }

  .mobile-nav-brand {
    width: 170px;
  }

  .mobile-nav-trigger,
  .mobile-nav-primary-link {
    min-height: 58px;
    font-size: 18px;
  }
}

/* Other Services — compact Oakmont page family */
.compact-service-section {
  min-height: 650px;
  padding: 156px 24px 82px;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 53, 237, 0.14), transparent 25%),
    radial-gradient(circle at 7% 86%, rgba(11, 85, 255, 0.12), transparent 28%),
    var(--mist);
}

.compact-service-section::before {
  content: "";
  position: absolute;
  top: 118px;
  right: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(11, 85, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(11, 85, 255, 0.025);
  pointer-events: none;
}

.compact-service-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
  width: min(1080px, 100%);
}

.compact-service-copy h1 {
  font-size: clamp(43px, 4.4vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.compact-service-copy h1 em {
  color: var(--oak-purple);
  font-style: italic;
}

.compact-service-copy p {
  max-width: 590px;
  font-size: 17px;
  line-height: 1.58;
  font-weight: 650;
}

.compact-service-copy .page-actions {
  margin-top: 28px;
}

.compact-service-points {
  counter-reset: oak-service-card;
  gap: 14px;
  transform: translateY(80px);
}

.compact-point-card {
  position: relative;
  min-height: 142px;
  padding: 24px 22px 21px;
  overflow: hidden;
  counter-increment: oak-service-card;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.compact-point-card::before {
  content: "0" counter(oak-service-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  margin-bottom: 15px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(11, 85, 255, 0.09);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.compact-point-card:nth-child(even)::before {
  color: var(--oak-purple);
  background: rgba(124, 53, 237, 0.09);
}

.compact-point-card:hover {
  border-color: rgba(11, 85, 255, 0.2);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}

.compact-point-card h2 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.compact-point-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.48;
}

.service-page-cta {
  padding: 42px 24px 68px;
  background: var(--white);
}

.service-cta-inner {
  width: min(1080px, 100%);
}

.service-cta-card {
  padding: 34px 38px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 53, 237, 0.3), transparent 28%),
    linear-gradient(135deg, #151a2f, #182044);
  box-shadow: 0 20px 48px rgba(16, 24, 50, 0.16);
}

.service-cta-card h2 {
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.service-cta-card .page-btn {
  min-width: 178px;
}

@media (max-width: 900px) {
  .compact-service-section {
    min-height: 0;
    padding-top: 132px;
  }

  .compact-service-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .compact-service-copy {
    max-width: 680px;
  }

  .compact-service-points {
    transform: none;
  }
}

@media (max-width: 560px) {
  .compact-service-section {
    padding: 116px 18px 56px;
  }

  .compact-service-copy h1 {
    font-size: 38px;
  }

  .compact-service-copy p {
    font-size: 15.5px;
  }

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

  .compact-point-card {
    min-height: 0;
    padding: 21px;
  }

  .service-page-cta {
    padding: 30px 18px 56px;
  }

  .service-cta-card {
    gap: 22px;
    padding: 27px 23px;
  }

  .service-cta-card .page-btn {
    width: 100%;
  }
}

/* Our Process page */
.process-page-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 24px 78px;
  background:
    radial-gradient(circle at 84% 14%, rgba(124, 53, 237, 0.18), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(11, 85, 255, 0.16), transparent 30%),
    var(--mist);
}

.process-page-hero::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(11, 85, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(11, 85, 255, 0.035), 0 0 0 108px rgba(124, 53, 237, 0.02);
}

.process-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-page-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.99;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.process-page-copy h1 em {
  color: var(--oak-purple);
  font-style: italic;
}

.process-page-copy > p:not(.page-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.process-page-copy .page-btn {
  margin-top: 30px;
}

.process-snapshot {
  padding: 30px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 64px rgba(16, 24, 50, 0.13);
  backdrop-filter: blur(14px);
}

.process-snapshot-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #697386;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-snapshot-head img {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 11px;
  background: #eef4ff;
}

.process-snapshot ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-snapshot li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--oak-border);
}

.process-snapshot li > span {
  color: var(--oak-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-snapshot li strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.process-snapshot li small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.process-journey {
  padding: 86px 24px 92px;
  background: var(--white);
}

.process-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.process-eyebrow {
  margin: 0 0 13px;
  color: var(--oak-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-section-heading h2,
.process-handoff-copy h2,
.process-page-cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.process-section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

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

.process-flow-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 28px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: var(--white);
  box-shadow: var(--oak-shadow-card);
}

.process-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.process-flow-top > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--oak-blue), var(--oak-purple));
  font-size: 13px;
  font-weight: 800;
}

.process-flow-top small {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(11, 85, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-flow-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 800;
}

.process-flow-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.process-outcome {
  margin-top: auto;
  padding: 14px 15px;
  border-radius: 12px;
  background: var(--oak-surface-soft);
}

.process-outcome span,
.process-outcome strong {
  display: block;
}

.process-outcome span {
  margin-bottom: 4px;
  color: var(--oak-purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-outcome strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.process-handoff {
  padding: 82px 24px;
  background: var(--oak-surface-soft);
}

.process-handoff-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(52px, 9vw, 112px);
  align-items: center;
}

.process-handoff-copy > p:last-child {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.process-checklist {
  overflow: hidden;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: var(--white);
  box-shadow: var(--oak-shadow-card);
}

.process-checklist > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--oak-border);
}

.process-checklist > div:last-child {
  border-bottom: 0;
}

.process-checklist > div > span {
  padding-top: 3px;
  color: var(--oak-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-checklist p,
.process-checklist strong {
  display: block;
}

.process-checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 600;
}

.process-checklist strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.process-page-cta {
  padding: 58px 24px 72px;
  background: var(--oak-surface-soft);
}

.process-page-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--oak-radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(124, 53, 237, 0.3), transparent 30%),
    radial-gradient(circle at 4% 0%, rgba(11, 85, 255, 0.24), transparent 26%),
    var(--oak-navy);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.process-page-cta-card .process-eyebrow {
  color: #8db4ff;
}

.process-page-cta-card h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(30px, 2.6vw, 44px);
}

.process-page-cta-card > div > span {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 900px) {
  .process-page-hero-inner,
  .process-handoff-grid {
    grid-template-columns: 1fr;
  }

  .process-page-hero-inner,
  .process-handoff-grid {
    gap: 42px;
  }

  .process-snapshot {
    max-width: 620px;
  }

  .process-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow-card {
    min-height: 0;
  }

  .process-outcome {
    margin-top: 24px;
  }

  .process-page-cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .process-page-hero {
    padding: 118px 18px 56px;
  }

  .process-page-copy h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .process-page-copy > p:not(.page-kicker) {
    margin-top: 20px;
    font-size: 16px;
  }

  .process-page-copy .page-btn {
    margin-top: 25px;
  }

  .process-snapshot {
    padding: 23px;
  }

  .process-snapshot li {
    grid-template-columns: 30px 1fr;
  }

  .process-snapshot li small {
    grid-column: 2;
  }

  .process-journey,
  .process-handoff,
  .process-page-cta {
    padding: 58px 18px;
  }

  .process-section-heading {
    margin-bottom: 30px;
  }

  .process-flow-card {
    padding: 23px;
  }

  .process-flow-top {
    margin-bottom: 28px;
  }

  .process-handoff-grid {
    gap: 30px;
  }

  .process-checklist > div {
    padding: 17px 18px;
  }

  .process-page-cta-card {
    gap: 28px;
    padding: 27px 22px;
  }

  .process-page-cta-card .page-btn {
    width: 100%;
  }
}

/* Compact brand copy and Contact page */
.about-intro {
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-principles {
  padding-top: 64px;
  padding-bottom: 68px;
}

.about-principle-grid article {
  min-height: 220px;
  padding: 26px;
}

.about-principle-grid h3 {
  margin-top: 28px;
}

.about-contact {
  padding-top: 50px;
}

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

.process-flow-card {
  min-height: 310px;
}

.process-flow-top {
  margin-bottom: 30px;
}

.process-page-cta {
  padding-top: 52px;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 24px 76px;
  background:
    radial-gradient(circle at 84% 14%, rgba(124, 53, 237, 0.18), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(11, 85, 255, 0.15), transparent 30%),
    var(--mist);
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(11, 85, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(11, 85, 255, 0.035), 0 0 0 108px rgba(124, 53, 237, 0.02);
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact-page-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.99;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.contact-page-copy h1 em {
  color: var(--oak-purple);
  font-style: italic;
}

.contact-page-copy > p:not(.page-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.contact-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.contact-quick-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(11, 85, 255, 0.14);
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.contact-direct-card {
  padding: 30px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 64px rgba(16, 24, 50, 0.13);
  backdrop-filter: blur(14px);
}

.contact-direct-card > img {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 12px;
  background: #eef4ff;
}

.contact-direct-card > p {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.contact-direct-card > a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--oak-border);
}

.contact-direct-card span,
.contact-direct-card strong {
  display: block;
}

.contact-direct-card span {
  margin-bottom: 4px;
  color: var(--oak-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.contact-booking-section {
  padding: 72px 24px 78px;
  background: var(--oak-surface-soft);
}

.contact-booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
  width: min(1020px, 100%);
  margin: 0 auto;
}

.contact-eyebrow {
  margin: 0 0 13px;
  color: var(--oak-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-booking-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.contact-booking-copy > p:not(.contact-eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.contact-booking-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-booking-copy li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.contact-booking-copy li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--oak-blue);
}

.contact-booking-copy li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.contact-booking-card {
  padding: 30px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: var(--white);
  box-shadow: var(--oak-shadow-card);
}

.contact-booking-card h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
}

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

.contact-booking-card .contact-form label small {
  color: #8b93a0;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-page-hero-inner,
  .contact-booking-inner {
    grid-template-columns: 1fr;
  }

  .contact-page-hero-inner {
    gap: 42px;
  }

  .contact-direct-card {
    max-width: 620px;
  }

  .contact-booking-inner {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .about-intro,
  .about-principles {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .about-principle-grid article {
    min-height: 0;
  }

  .process-journey {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .process-flow-card {
    min-height: 0;
  }

  .process-snapshot {
    display: none;
  }

  .contact-page-hero {
    padding: 118px 18px 56px;
  }

  .contact-page-copy h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .contact-page-copy > p:not(.page-kicker) {
    margin-top: 20px;
    font-size: 16px;
  }

  .contact-direct-card {
    padding: 23px;
  }

  .contact-booking-section {
    padding: 54px 18px 58px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-booking-card {
    padding: 23px;
  }

  .contact-booking-card .contact-form button {
    width: 100%;
  }
}

/* Simplified Contact page */
.contact-page-hero {
  min-height: 760px;
  padding-bottom: 92px;
}

.contact-page-hero-inner {
  display: block;
  width: min(1040px, 100%);
}

.contact-page-copy {
  max-width: 800px;
}

.contact-page-copy > p:not(.page-kicker) {
  max-width: 560px;
}

.contact-option-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 50px;
}

.contact-direct-card,
.contact-call-card {
  min-height: 342px;
  border-radius: 22px;
}

.contact-direct-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(16, 24, 50, 0.1);
}

.contact-card-label,
.contact-direct-card > .contact-card-label {
  margin: 0 0 14px;
  color: var(--oak-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-direct-card h2,
.contact-call-card h2 {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-direct-card h2 {
  margin-bottom: auto;
  color: var(--ink);
}

.contact-direct-card > a {
  padding: 16px 0 0;
  margin-top: 16px;
}

.contact-direct-card > a:hover strong {
  color: var(--oak-blue);
}

.contact-call-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 31%),
    linear-gradient(135deg, #0b55ff 0%, #6c37ef 100%);
  box-shadow: 0 24px 60px rgba(67, 55, 221, 0.27);
}

.contact-call-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.contact-call-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}

.contact-call-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 23px;
}

.contact-call-time {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-call-card .contact-card-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}

.contact-call-card h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
}

.contact-call-card > p:not(.contact-card-label) {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 14px 0 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.contact-call-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 13px 17px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(15, 22, 48, 0.18);
}

.contact-call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 22, 48, 0.24);
}

@media (max-width: 760px) {
  .contact-page-hero {
    min-height: 0;
  }

  .contact-option-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .contact-direct-card,
  .contact-call-card {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .contact-page-hero {
    padding-bottom: 58px;
  }

  .contact-option-grid {
    gap: 16px;
  }

  .contact-direct-card,
  .contact-call-card {
    min-height: 290px;
    padding: 24px;
    border-radius: 18px;
  }

  .contact-call-card-top {
    margin-bottom: 34px;
  }

  .contact-call-button {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 900px) {
  .system-visual img,
  #functional-website .system-visual img {
    width: min(100%, 672px);
  }
}

.feature-showcase {
  display: grid;
  gap: 34px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: 28px 0;
}

.feature-row:nth-child(even) .feature-row-visual {
  order: 2;
}

.feature-row-visual {
  display: grid;
  place-items: center;
}

.feature-row-visual img {
  display: block;
  width: min(100%, 480px);
  height: auto;
  object-fit: contain;
}

.feature-row-copy h3 {
  margin: 0 0 14px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.08;
  font-weight: 800;
}

.feature-row-copy p {
  margin: 0;
  color: #4d586b;
  font-size: 17px;
  line-height: 1.58;
  font-weight: 650;
}

.feature-row-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-row-copy li {
  position: relative;
  padding-left: 30px;
  color: #2f394b;
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 700;
}

.feature-row-copy li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--oak-blue);
}

.feature-row-copy li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 28px;
  border: 1px solid rgba(16, 24, 50, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.pricing-card-featured {
  border-color: rgba(11, 85, 255, 0.34);
  box-shadow: 0 24px 50px rgba(11, 85, 255, 0.13);
}

.pricing-card > span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(11, 85, 255, 0.08);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0 0 12px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
}

.pricing-card p {
  margin: 0;
  color: #5b6578;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 600;
}

.price {
  margin: 22px 0 18px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: #364155;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
}

.pricing-card .page-btn {
  margin-top: auto;
}

.pricing-page-section {
  padding: 142px 24px 72px;
  background: #f4f6fa;
}

.pricing-page-inner,
.pricing-services-inner,
.pricing-call-inner {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.pricing-heading {
  margin-bottom: 28px;
  text-align: center;
}

.pricing-heading h1 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1.05;
  font-weight: 800;
}

.pricing-heading p {
  max-width: 560px;
  margin: 12px auto 0;
  color: #4b566b;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.billing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto;
}

.billing-switch input {
  position: absolute;
  opacity: 0;
}

.billing-option {
  appearance: none;
  padding: 0;
  border: 0;
  color: #5c6678;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease;
}

.billing-option.is-active {
  color: #101832;
}

.billing-toggle {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: var(--oak-blue);
  box-shadow:
    inset 0 0 0 1px rgba(11, 85, 255, 0.16),
    0 8px 18px rgba(11, 85, 255, 0.18);
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.billing-toggle span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 2px 7px rgba(16, 24, 50, 0.22);
  transition: transform 180ms ease;
}

#billing-toggle:checked ~ .billing-toggle {
  background: var(--oak-purple);
  box-shadow:
    inset 0 0 0 1px rgba(124, 53, 237, 0.18),
    0 8px 18px rgba(124, 53, 237, 0.18);
}

#billing-toggle:checked ~ .billing-toggle span {
  transform: translateX(22px);
}

.pricing-plan {
  width: min(430px, 100%);
  margin: 34px auto 0;
  padding: 34px 34px 38px;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(124, 53, 237, 0.36), transparent 30%),
    radial-gradient(circle at 8% 0%, rgba(11, 85, 255, 0.28), transparent 28%),
    #151a2f;
  box-shadow: 0 28px 64px rgba(16, 24, 50, 0.18);
  text-align: center;
}

.popular-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ffe8ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-plan h2 {
  margin: 0;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.plan-copy {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 24px 0 8px;
}

.plan-price strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.plan-price span {
  font-size: 21px;
  font-weight: 800;
}

.price-yearly,
.annual-note {
  display: none;
}

.pricing-page-inner.is-yearly .pricing-plan .price-monthly {
  display: none;
}

.pricing-page-inner.is-yearly .pricing-plan .price-yearly {
  display: flex;
}

.pricing-page-inner.is-yearly .pricing-plan .annual-note {
  display: block;
}

.annual-note {
  margin: -2px 0 16px;
  color: #dfe8ff;
  font-size: 14px;
  font-weight: 800;
}

.plan-feature-list {
  display: grid;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-feature-list li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.plan-feature-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-plan .page-btn {
  width: 100%;
  border-color: var(--white);
  color: var(--oak-blue);
  background: var(--white);
}

.pricing-plan .page-btn:hover {
  color: var(--white);
  background: transparent;
}

.pricing-services-section {
  padding: 72px 24px 78px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.pricing-service-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.service-pill-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(16, 24, 50, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.service-pill-panel-main {
  border-color: rgba(11, 85, 255, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(11, 85, 255, 0.08), transparent 34%),
    var(--white);
}

.service-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(16, 24, 50, 0.09);
}

.service-panel-head span {
  order: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(11, 85, 255, 0.18);
  border-radius: 999px;
  color: var(--oak-blue);
  background: rgba(11, 85, 255, 0.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.service-pill-panel h3 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

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

.service-feature-grid-small {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-feature-grid a {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 14px 14px 14px 38px;
  border: 1px solid rgba(16, 24, 50, 0.08);
  border-radius: 10px;
  color: #101832;
  background: rgba(248, 250, 255, 0.78);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-feature-grid a::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 2px, transparent 3px),
    var(--oak-blue);
}

.service-feature-grid a:hover {
  border-color: rgba(11, 85, 255, 0.22);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.service-feature-grid strong {
  color: #101832;
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 900;
}

.service-feature-grid small {
  color: #667186;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.pricing-call-section {
  display: grid;
  align-items: center;
  padding: 58px 24px;
  background: var(--white);
}

.pricing-call-section .book-call-card {
  margin-top: 0;
}

.pricing-process-section {
  padding-top: 76px;
}

/* Pricing page — compact content below the main plan */
.pricing-simple-finish {
  padding: 58px 24px 76px;
  background: var(--white);
}

.pricing-simple-finish-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.pricing-simple-card {
  margin: 0;
}

.pricing-simple-label {
  margin: 0 0 10px;
  color: #8eb4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-inclusions {
  padding: 66px 24px 80px;
  background: #f6f8fc;
}

.pricing-inclusions-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.pricing-inclusions-heading {
  margin-bottom: 28px;
  text-align: center;
}

.pricing-inclusions-heading > p {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-inclusions-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.pricing-inclusions-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #dfe5ef;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(22, 32, 55, 0.07);
}

.pricing-inclusions-column {
  padding: 36px 42px 38px;
}

.pricing-inclusions-column + .pricing-inclusions-column {
  border-left: 1px solid #e4e8f0;
}

.pricing-list-label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-inclusions-column h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 27px;
}

.pricing-inclusions-column ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-inclusions-extra ul {
  grid-template-columns: 1fr;
}

.pricing-inclusions-column li {
  position: relative;
  padding-left: 22px;
  color: #3f485a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-inclusions-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.pricing-inclusions-extra li::before {
  content: "+";
  color: #7b35f4;
}

.pricing-inclusions-column a {
  color: inherit;
  text-decoration: none;
}

.pricing-inclusions-column a:hover {
  color: var(--primary);
}

.pricing-inclusions-cta {
  margin: 0;
}

@media (max-width: 760px) {
  .pricing-inclusions {
    padding: 48px 18px 60px;
  }

  .pricing-inclusions-panel {
    grid-template-columns: 1fr;
  }

  .pricing-inclusions-column {
    padding: 30px 26px;
  }

  .pricing-inclusions-column + .pricing-inclusions-column {
    border-top: 1px solid #e4e8f0;
    border-left: 0;
  }
}

@media (max-width: 460px) {
  .pricing-inclusions-column ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pricing-simple-finish {
    padding: 42px 18px 58px;
  }
}

.pricing-outcomes-section {
  padding: 78px 24px 86px;
  background:
    radial-gradient(circle at 92% 8%, rgba(124, 53, 237, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
}

.pricing-outcomes-inner,
.pricing-final-cta-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.pricing-outcomes-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 40px;
}

.pricing-outcomes-heading p,
.pricing-addons-bar > div:first-child > p {
  margin: 0 0 12px;
  color: var(--oak-blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-outcomes-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.pricing-outcomes-heading > span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

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

.pricing-outcome-card {
  --pricing-accent: var(--oak-blue);
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 27px 26px 28px;
  border: 1px solid rgba(16, 24, 50, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 24, 50, 0.07);
}

.pricing-outcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--pricing-accent);
}

.pricing-outcome-blue { --pricing-accent: #0b55ff; }
.pricing-outcome-purple { --pricing-accent: #7c35ed; }
.pricing-outcome-cyan { --pricing-accent: #0891b2; }

.pricing-outcome-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-outcome-top > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--white);
  background: var(--pricing-accent);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--pricing-accent) 24%, transparent);
}

.pricing-outcome-top small {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--pricing-accent);
  background: color-mix(in srgb, var(--pricing-accent) 9%, white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-outcome-card h3 {
  margin: 27px 0 11px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.pricing-outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.pricing-outcome-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-outcome-card li {
  padding: 7px 9px;
  border: 1px solid rgba(16, 24, 50, 0.08);
  border-radius: 8px;
  color: #3f4a60;
  background: #f7f9fd;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 750;
}

.pricing-addons-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 27px 30px;
  border: 1px solid rgba(11, 85, 255, 0.12);
  border-radius: 16px;
  background: rgba(237, 243, 255, 0.85);
}

.pricing-addons-bar h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.pricing-addons-bar > div:first-child > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.pricing-addon-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pricing-addon-links a {
  padding: 10px 12px;
  border: 1px solid rgba(11, 85, 255, 0.12);
  border-radius: 9px;
  color: #33415a;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pricing-addon-links a:hover {
  border-color: rgba(11, 85, 255, 0.32);
  color: var(--oak-blue);
  transform: translateY(-1px);
}

.pricing-final-cta {
  padding: 60px 24px 76px;
  background: var(--white);
}

.pricing-cta-card {
  margin: 0;
}

@media (max-width: 900px) {
  .pricing-outcomes-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-outcomes-heading > span {
    max-width: 650px;
  }

  .pricing-outcome-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .pricing-outcome-card {
    min-height: 0;
  }

  .pricing-addons-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-addon-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .pricing-outcomes-section {
    padding: 54px 18px 58px;
  }

  .pricing-outcomes-heading {
    margin-bottom: 28px;
  }

  .pricing-outcomes-heading h2 {
    font-size: 31px;
  }

  .pricing-outcomes-heading > span {
    font-size: 14px;
  }

  .pricing-outcome-card {
    padding: 23px 22px 24px;
  }

  .pricing-addons-bar {
    padding: 23px 21px;
  }

  .pricing-addon-links a {
    padding: 9px 10px;
  }

  .pricing-final-cta {
    padding: 44px 18px 58px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 26px;
}

.contact-panel,
.grader-panel {
  padding: 30px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #101832;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 50, 0.14);
  border-radius: 8px;
  color: #101832;
  background: #f8fafc;
  font: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 124px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  min-width: 156px;
  min-height: 52px;
  border: 2px solid var(--oak-blue);
  border-radius: 12px;
  color: var(--white);
  background: var(--oak-blue);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.service-demo-section {
  position: relative;
  overflow: hidden;
  padding: 58px 24px 112px;
  background: #f4f6fa;
}

.service-first-section {
  padding-top: 142px;
}

.service-demo-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 82px;
  background: #151a2f;
  clip-path: polygon(0 42%, 50% 100%, 100% 42%, 100% 100%, 0 100%);
  pointer-events: none;
}

.service-demo-inner,
.service-explain-inner,
.service-cta-inner {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
  margin: 0 auto;
}

.service-demo-section h1,
.service-demo-section h2,
.service-explain-section h2 {
  margin: 0 0 26px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(31px, 2.6vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

.service-demo-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(420px, 1fr);
  gap: 12px;
  align-items: stretch;
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-card {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--oak-purple);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
}

.stat-card:nth-child(2) strong {
  color: var(--oak-blue);
}

.stat-card p {
  margin: 0;
  color: #101832;
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 650;
}

.video-demo-card {
  padding: 18px 18px 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.video-demo-card h3 {
  margin: 0 0 14px;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(26px, 2.1vw, 35px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  border: 7px solid #151a2f;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 85, 255, 0.2), rgba(124, 53, 237, 0.2)),
    #e8eef8;
}

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

.video-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(360px, calc(100% - 36px));
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(16, 24, 50, 0.82);
  text-align: center;
}

.video-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.video-placeholder span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.compact-service-section {
  position: relative;
  overflow: hidden;
  padding: 142px 24px 68px;
  background: #f4f6fa;
}

.compact-service-section::after {
  content: none;
}

.compact-service-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 22px;
  width: min(1020px, 100%);
  margin: 0 auto;
  align-items: start;
}

.compact-service-copy {
  padding: 4px 0;
}

.compact-service-copy .page-kicker {
  margin-bottom: 14px;
}

.compact-service-copy h1 {
  margin: 0;
  color: #101832;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(36px, 3.6vw, 58px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.compact-service-copy p {
  margin: 18px 0 0;
  color: #4b566b;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.compact-service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.compact-point-card {
  min-height: 0;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.compact-point-card h2 {
  margin: 0 0 6px;
  color: var(--oak-blue);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
}

.compact-point-card p {
  margin: 0;
  color: #1f2937;
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 620;
}

.service-explain-section {
  position: relative;
  overflow: hidden;
  padding: 66px 24px 112px;
  color: var(--white);
  background:
    radial-gradient(circle at 26% 0%, rgba(11, 85, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #151a2f, #1b2036);
}

.service-explain-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 78px;
  background: #f4f6fa;
  clip-path: polygon(0 44%, 50% 100%, 100% 44%, 100% 100%, 0 100%);
  pointer-events: none;
}

.service-explain-section h2 {
  color: var(--white);
}

.service-explain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.service-explain-card {
  min-height: 0;
  padding: 18px 20px;
  border-radius: 8px;
  color: #101832;
  background: var(--white);
}

.service-explain-card h3 {
  margin: 0 0 6px;
  color: var(--oak-blue);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 800;
}

.service-explain-card p {
  margin: 0;
  color: #1f2937;
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 600;
}

.service-page-cta {
  padding: 54px 24px 70px;
  background: #f4f6fa;
}

.service-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px 40px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(124, 53, 237, 0.32), transparent 30%),
    #151a2f;
}

.service-cta-card h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.08;
  font-weight: 800;
}

.service-cta-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 1180px) {
  .nav-wrap {
    gap: 22px;
  }

  .brand {
    width: 212px;
  }

  .brand img {
    height: 43px;
  }

  .mega-menu {
    left: -180px;
    width: min(940px, calc(100vw - 48px));
    padding: 28px;
  }

  .mega-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(230px, 0.9fr);
    gap: 28px;
  }

  .feature-grid {
    gap: 17px 22px;
  }

  .feature-item {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 11px;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
  }

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .btn-purple {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 800px;
    padding-bottom: 72px;
  }

  .hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(218, 231, 249, 1) 0%,
        rgba(218, 231, 249, 0.96) 46%,
        rgba(218, 231, 249, 0.48) 100%
      );
  }

  .nav-wrap {
    width: calc(100% - 28px);
    min-height: 68px;
    padding: 0 16px 0 20px;
    border-radius: 18px;
  }

  .brand {
    width: 202px;
  }

  .brand img {
    height: 40px;
  }

  .nav-links,
  .nav-phone,
  .login-link,
  .search-btn {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .dropdown-panel {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    flex-basis: auto;
  }

  .btn-primary {
    min-width: 120px;
    min-height: 44px;
    font-size: 14px;
  }

  .hero-content {
    width: min(600px, calc(100% - 36px));
    margin-left: 22px;
    padding-top: 72px;
  }

  .systems-section {
    padding: 44px 22px 54px;
  }

  .systems-intro {
    margin-bottom: 18px;
  }

  .system-feature,
  .system-feature-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 20px 0;
  }

  .system-feature + .system-feature {
    margin-top: 8px;
  }

  .system-feature-reverse .system-visual,
  .system-feature-reverse .system-copy {
    order: initial;
  }

  .system-visual {
    min-height: 280px;
  }

  .system-copy {
    max-width: none;
  }

  .trades-section {
    padding: 58px 18px 96px;
  }

  .trades-inner h2 {
    margin-bottom: 34px;
  }

  .trades-viewport {
    width: min(680px, calc(100% - 82px));
  }

  .trade-arrow-left {
    left: 0;
  }

  .trade-arrow-right {
    right: 0;
  }

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

  .process-section {
    padding: 64px 22px 70px;
  }

  .process-inner h2 {
    margin-bottom: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    gap: 14px;
  }

  .process-step {
    min-height: 0;
  }

  .why-section {
    padding: 72px 22px 120px;
  }

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

  .tools-section {
    padding: 72px 22px 112px;
  }

  .partner-logos {
    gap: 24px 30px;
    margin-top: 42px;
  }

  .partner-logos img {
    height: 46px;
    max-width: 160px;
  }

  .faq-section {
    padding: 66px 22px 82px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-visual {
    justify-items: start;
  }

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

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

  .feature-row,
  .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-row:nth-child(even) .feature-row-visual {
    order: initial;
  }

  .service-demo-layout,
  .service-cta-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 0;
    padding-bottom: 38px;
    background: #dbe8f8;
  }

  .hero-image,
  .hero-video {
    opacity: 0.48;
    object-position: 68% center;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(218, 231, 249, 1) 0%,
        rgba(218, 231, 249, 0.92) 72%,
        rgba(218, 231, 249, 0.62) 100%
      );
  }

  .nav-wrap {
    width: calc(100% - 20px);
    top: 10px;
    margin-top: 0;
    padding: 0 12px 0 14px;
  }

  .brand {
    width: 180px;
  }

  .brand img {
    height: 38px;
  }

  .btn-primary {
    min-width: 44px;
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .btn-primary::after {
    margin-left: 0;
    color: var(--white);
  }

  .hero-content {
    width: calc(100% - 34px);
    margin-left: 17px;
    padding-top: 26px;
  }

  .hero h1 {
    font-size: 37px;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-points {
    gap: 11px;
    margin-top: 21px;
    font-size: 15.5px;
    line-height: 1.36;
  }

  .hero-points li {
    padding-left: 27px;
  }

  .hero-points li::before {
    top: 2px;
    width: 17px;
    height: 17px;
  }

  .hero-points li::after {
    top: 5px;
    left: 6px;
  }

  .hero-cta {
    min-width: 168px;
    min-height: 54px;
    margin-top: 25px;
    font-size: 17px;
  }

  .review-badges {
    flex-wrap: wrap;
    gap: 13px 18px;
    margin-top: 21px;
  }

  .review-badge {
    min-width: 135px;
    padding: 0;
    gap: 9px;
  }

  .review-badge + .review-badge {
    padding-left: 0;
    border-left: 0;
  }

  .badge-icon {
    width: 34px;
    height: 34px;
  }

  .review-badge strong {
    font-size: 15px;
  }

  .stars {
    font-size: 15px;
  }

  .systems-section {
    padding: 38px 18px 46px;
  }

  .systems-intro p {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .systems-intro h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .system-feature,
  .system-feature-reverse {
    padding: 18px 0;
  }

  .system-visual {
    min-height: 210px;
  }

  .system-copy h3 {
    font-size: 29px;
  }

  .system-lede {
    font-size: 16px;
    line-height: 1.5;
  }

  .system-benefits {
    gap: 13px;
  }

  .system-benefits li {
    font-size: 14.5px;
    padding-left: 38px;
  }

  .system-benefits li::before {
    width: 26px;
    height: 26px;
  }

  .system-benefits li::after {
    top: 7px;
    left: 9px;
  }

  .demo-btn {
    width: 180px;
    height: 50px;
    min-width: 180px;
    min-height: 50px;
    margin-top: 28px;
  }

  .trades-section {
    padding: 44px 14px 78px;
  }

  .trades-section::after {
    height: 58px;
  }

  .trades-inner h2 {
    margin-bottom: 26px;
    font-size: 28px;
  }

  .trades-viewport {
    width: calc(100% - 58px);
  }

  .trade-page {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trade-card h3 {
    min-height: 48px;
    font-size: 17px;
  }

  .trade-arrow {
    width: 42px;
    height: 48px;
    border-radius: 14px;
  }

  .trade-arrow svg {
    width: 28px;
    height: 28px;
  }

  .trades-cta {
    min-width: 0;
    width: min(100%, 300px);
    min-height: 52px;
    margin-top: 26px;
    font-size: 15px;
  }

  .process-section {
    padding: 50px 18px 56px;
  }

  .process-inner h2 {
    margin-bottom: 0;
    font-size: 30px;
  }

  .process-heading {
    margin-bottom: 28px;
  }

  .process-heading > p:last-child {
    margin-top: 14px;
    font-size: 14px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-number {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    font-size: 13px;
  }

  .process-step {
    padding: 22px;
  }

  .process-step h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .process-step p {
    max-width: none;
  }

  .why-section {
    padding: 56px 18px 92px;
  }

  .why-section::after {
    height: 66px;
  }

  .why-inner h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    min-height: 0;
    padding: 20px;
  }

  .why-icon {
    margin-bottom: 14px;
  }

  .tools-section {
    padding: 54px 18px 88px;
  }

  .tools-section::after {
    height: 64px;
  }

  .tools-inner h2 {
    font-size: 30px;
  }

  .partner-logos {
    gap: 22px 24px;
    margin-top: 32px;
  }

  .partner-logos img {
    height: 36px;
    max-width: 132px;
  }

  .partner-logos img[alt="Zapier"],
  .partner-logos img[alt="Canva"],
  .partner-logos img[alt="Ahrefs"] {
    height: 42px;
    max-width: 150px;
  }

  .faq-section {
    padding: 48px 18px 62px;
  }

  .faq-inner h2 {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .faq-item summary {
    min-height: 54px;
    padding: 15px 48px 15px 15px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 18px;
    width: 9px;
    height: 9px;
  }

  .faq-item p {
    padding: 15px 16px 18px;
    font-size: 14.5px;
  }

  .book-call-card {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    margin-top: 32px;
    padding: 28px 22px;
  }

  .book-call-copy h3 {
    font-size: 30px;
  }

  .book-call-copy span {
    font-size: 15px;
  }

  .book-call-copy a {
    min-width: 160px;
    min-height: 50px;
  }

  .book-call-visual {
    justify-self: stretch;
    min-height: 190px;
  }

  .book-call-visual img {
    width: 72px;
    height: 72px;
  }

  .book-call-visual strong {
    font-size: 32px;
  }

  .footer-inner {
    width: calc(100% - 36px);
    padding: 46px 0 34px;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 36px);
    padding-bottom: 24px;
  }

  .page-hero {
    padding: 138px 18px 60px;
  }

  .page-hero-compact {
    padding: 112px 18px 46px;
  }

  .page-hero-compact::after {
    height: 34px;
  }

  .page-hero h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  .page-hero-compact h1 {
    font-size: 34px;
  }

  .page-copy {
    margin-top: 18px;
    font-size: 16px;
  }

  .page-actions {
    margin-top: 24px;
  }

  .page-btn {
    min-height: 50px;
    padding: 0 18px;
  }

  .page-section {
    padding: 48px 18px;
  }

  .page-section-tight {
    padding-top: 38px;
  }

  .page-section-first,
  .page-section-first.page-section-tight {
    padding-top: 116px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 30px;
  }

  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page-section {
    padding: 116px 18px 54px;
  }

  .pricing-heading h1 {
    font-size: 36px;
  }

  .pricing-plan {
    margin-top: 26px;
    padding: 26px 22px 28px;
  }

  .plan-price strong {
    font-size: 42px;
  }

  .pricing-services-section {
    padding: 48px 18px;
  }

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

  .service-pill-panel {
    padding: 20px;
  }

  .service-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .service-panel-head span {
    order: 0;
  }

  .pricing-call-section {
    padding: 42px 18px;
  }

  .pricing-process-section {
    padding-top: 54px;
  }

  .info-card,
  .pricing-card,
  .contact-panel,
  .grader-panel {
    padding: 22px;
  }

  .feature-row {
    padding: 18px 0;
  }

  .feature-row-copy h3 {
    font-size: 29px;
  }

  .feature-row-copy p {
    font-size: 16px;
  }

  .service-demo-section {
    padding: 42px 18px 82px;
  }

  .service-first-section {
    padding-top: 116px;
  }

  .service-demo-section::after {
    height: 64px;
  }

  .service-demo-section h1,
  .service-demo-section h2,
  .service-explain-section h2 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .stat-stack,
  .service-explain-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .video-demo-card,
  .service-explain-card {
    padding: 20px;
  }

  .service-explain-card {
    padding: 16px 18px;
  }

  .stat-card {
    min-height: auto;
  }

  .stat-card strong {
    font-size: 36px;
  }

  .video-demo-card h3 {
    font-size: 27px;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-width: 6px;
  }

  .compact-service-section {
    padding: 116px 18px 54px;
  }

  .compact-service-section::after {
    content: none;
  }

  .compact-service-inner,
  .compact-service-points {
    grid-template-columns: 1fr;
  }

  .compact-service-copy h1 {
    font-size: 36px;
  }

  .compact-point-card {
    min-height: auto;
    padding: 16px 18px;
  }

  .service-explain-section {
    padding: 58px 18px 96px;
  }

  .service-explain-section::after {
    height: 64px;
  }

  .service-page-cta {
    padding: 48px 18px 62px;
  }

  .service-cta-card {
    padding: 26px 22px;
  }
}

/* Final component harmonization — keep after all template rules */
.hero h1,
.page-hero h1,
.compact-service-copy h1,
.pricing-heading h1,
.about-hero h1 {
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: -0.025em;
}

.hero h1 em,
.page-hero h1 em,
.about-hero h1 em {
  color: var(--oak-purple);
}

.hero-copy,
.page-copy,
.compact-service-copy p,
.section-heading p,
.about-intro-copy p,
.about-section-head > p {
  color: var(--muted);
}

.btn,
.hero-cta,
.page-btn,
.trades-cta,
.footer-cta,
.book-call-copy a,
.contact-form button {
  border: 2px solid var(--oak-blue);
  border-radius: var(--oak-radius-md);
  color: var(--white);
  background: var(--oak-blue);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn-primary:hover,
.hero-cta:hover,
.page-btn:hover,
.trades-cta:hover,
.footer-cta:hover,
.book-call-copy a:hover,
.contact-form button:hover {
  border-color: var(--oak-blue-deep);
  color: var(--white);
  background: var(--oak-blue-deep);
  box-shadow: var(--oak-shadow-cta);
  transform: translateY(-2px);
}

.btn-purple {
  border-color: var(--oak-purple);
  background: var(--oak-purple);
}

.btn-purple:hover {
  border-color: var(--oak-purple-deep);
  color: var(--white);
  background: var(--oak-purple-deep);
  box-shadow: 0 12px 26px rgba(124, 53, 237, 0.2);
}

.btn::after,
.hero-cta::after,
a.page-btn::after,
.trades-cta::after,
.footer-cta::after,
.book-call-copy a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.page-btn,
.trades-cta,
.book-call-copy a,
.contact-form button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
}

.hero-cta {
  min-height: 58px;
  border-radius: var(--oak-radius-md);
  font-size: 18px;
}

.footer-cta {
  min-height: 48px;
  border-radius: var(--oak-radius-md);
}

.pricing-plan .page-btn {
  border-color: var(--white);
  color: var(--oak-blue);
  background: var(--white);
}

.pricing-plan .page-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.info-card,
.pricing-card,
.contact-panel,
.grader-panel,
.stat-card,
.video-demo-card,
.compact-point-card,
.service-explain-card,
.service-pill-panel,
.about-hero-card,
.about-principle-grid {
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background-color: var(--oak-surface);
  box-shadow: var(--oak-shadow-card);
}

.trade-card,
.video-frame,
.video-placeholder,
.feature-row-visual {
  border-radius: var(--oak-radius-md);
}

.why-card,
.book-call-card,
.service-cta-card,
.pricing-plan {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--oak-radius-lg);
  background-color: var(--oak-navy);
}

.book-call-visual {
  border-radius: var(--oak-radius-md);
}

.page-visual {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--oak-border);
  border-radius: var(--oak-radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--oak-shadow-card);
}

.page-visual img {
  border-radius: var(--oak-radius-md);
  filter: none;
}

.contact-form input,
.contact-form textarea {
  border-color: var(--oak-border);
  border-radius: var(--oak-radius-sm);
}

@media (max-width: 560px) {
  .page-btn,
  .trades-cta,
  .book-call-copy a,
  .contact-form button {
    min-height: 52px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-actions .btn-primary {
    min-width: 44px;
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .nav-actions .btn-primary::after {
    margin-left: 0;
    color: var(--white);
  }
}
