
:root {
  --color-bg: #0b0b0c;
  --color-surface: #121214;
  --color-surface-soft: #16161a;
  --color-text: #F8F8FF;
  --color-muted: rgba(248,248,255,0.72);
  --color-border: rgba(255,255,255,0.08);
  --color-accent: #6681da;
  --color-accent-soft: #9fb0ff;
  --color-growth: #b2ffbe;
  --nav-height: 72px;
  --section-y: 88px;
  --section-x: 20px;
  --content-width: 1100px;
  --radius: 12px;
  --premium-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.16'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
  --premium-page-bg:
    var(--premium-grain),
    radial-gradient(ellipse at 50% -18%, rgba(248,248,255,0.088) 0%, rgba(248,248,255,0.032) 34%, rgba(11,11,12,0) 72%),
    linear-gradient(180deg, rgba(248,248,255,0.018) 0%, rgba(0,0,0,0) 42%),
    linear-gradient(180deg, #111113 0%, #0d0d0f 44%, #09090a 100%);
  --premium-section-bg:
    var(--premium-grain),
    radial-gradient(ellipse at 50% 0%, rgba(248,248,255,0.072) 0%, rgba(248,248,255,0.026) 28%, rgba(11,11,12,0) 66%),
    linear-gradient(180deg, rgba(248,248,255,0.028) 0%, rgba(248,248,255,0.008) 20%, rgba(0,0,0,0) 54%),
    linear-gradient(180deg, #111113 0%, #0b0b0c 42%, #080809 100%);
  --premium-surface-bg:
    var(--premium-grain),
    radial-gradient(ellipse at 50% 0%, rgba(248,248,255,0.064) 0%, rgba(248,248,255,0.022) 32%, rgba(18,18,20,0) 68%),
    linear-gradient(180deg, rgba(248,248,255,0.032) 0%, rgba(248,248,255,0.01) 38%, rgba(18,18,20,0) 100%),
    linear-gradient(180deg, #151517 0%, #121214 58%, #0f0f11 100%);
  --premium-internal-bg:
    var(--premium-grain),
    radial-gradient(ellipse at 84% 8%, rgba(102,129,218,0.105) 0%, rgba(102,129,218,0.034) 30%, rgba(10,11,13,0) 66%),
    radial-gradient(ellipse at 10% 38%, rgba(178,255,190,0.052) 0%, rgba(178,255,190,0.015) 26%, rgba(10,11,13,0) 58%),
    linear-gradient(135deg, rgba(248,248,255,0.032) 0%, rgba(248,248,255,0.006) 28%, rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #101215 0%, #0a0b0d 48%, #080809 100%);
  --premium-page-bg-size: 180px 180px, 100% 620px, 100% 100%, 100% 100%;
  --premium-section-bg-size: 180px 180px, 100% 420px, 100% 360px, auto;
  --premium-surface-bg-size: 180px 180px, 100% 360px, 100% 320px, auto;
  --premium-internal-bg-size: 180px 180px, 100% 620px, 100% 720px, 100% 100%, 100% 100%;
  --premium-page-bg-repeat: repeat, no-repeat, no-repeat, no-repeat;
  --premium-section-bg-repeat: repeat, no-repeat, no-repeat, no-repeat;
  --premium-surface-bg-repeat: repeat, no-repeat, no-repeat, no-repeat;
  --premium-internal-bg-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  --premium-page-bg-position: center top, center top, center top, center top;
  --premium-section-bg-position: center top, center top, center top, center top;
  --premium-surface-bg-position: center top, center top, center top, center top;
  --premium-internal-bg-position: center top, right top, left 18vh, center top, center top;
  --premium-page-bg-attachment: fixed, fixed, fixed, fixed;
  --premium-internal-bg-attachment: fixed, fixed, fixed, fixed, fixed;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Hanken Grotesk', sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  padding-top: var(--nav-height);
}
/* BASE NAVBAR */

/* ============================
   BLOCO PSL (Problema → Solução)
   ============================ */

.psl {
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--section-y) var(--section-x);
}

.psl__wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.psl h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 24px;
  font-weight: 700;
  text-align: center;
}

.psl__pain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 44px;
  padding: 1px;
  list-style: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
}

.psl__pain li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 5px;
  align-items: start;
  min-height: 104px;
  padding: 16px 18px;
  background: var(--color-surface);
}

.psl__pain li::before {
  content: attr(data-step);
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,138,138,0.22);
  border-radius: 999px;
  color: rgba(255,138,138,0.95);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.1em;
  background: rgba(255,138,138,0.045);
}

.psl__pain strong {
  grid-column: 2;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 720;
}

.psl__pain p {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}


.psl__split-title {
  margin: 0 0 24px;
}

.psl__split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr;
}

.psl__solution,
.psl__proof {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.psl__solution ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.psl__solution li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  line-height: 1.55;
}

.psl__solution li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-growth);
  box-shadow: 0 0 0 4px rgba(178,255,190,0.08);
}

.psl__risk {
  opacity: 0.9;
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.psl__cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(to right, #6681da, #3547d4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.psl__cta:hover {
  box-shadow: 0 10px 18px -6px rgba(97, 118, 238, 0.5);
  transform: translateY(-1px);
}

.psl__proof .psl__case {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.psl__quote {
  margin: 0 0 14px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
}

.psl__quote cite {
  display: block;
  opacity: 0.8;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.9rem;
}

.psl__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.psl__badges span {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}



.navbar {
  background: rgba(11, 11, 12, 0.78);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: var(--nav-height);
  align-items: center;
  padding: 0px 0px;
  z-index: 1000;
}

.navbar-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, 100%);
  max-width: none;
  min-width: 0;
  margin: 0 auto;
  padding: 14px 24px;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.mobile-menu.active li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(3) a { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(4) a { transition-delay: 0.4s; }
.mobile-menu.active li:nth-child(5) a { transition-delay: 0.5s; }

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

/* quando ativo */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(14px);

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.4s ease;

  z-index: 999;
}

.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 44px;

  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;

  background: #1a1a1d;
  color: #F8F8FF;

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-card:hover {
  background: #1d1d22;
  border-color: rgba(255,255,255,0.16);
}

.service-card:hover .btn-card {
  border-color: rgba(255,255,255,0.2);
}

.service-card hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0;
}

.service-card.featured {
  border: 1px solid rgba(255,255,255,0.18);
  transform: scale(1.03);
}

.service-action a {
  color: #F8F8FF;
}

.btn-card:hover {
  box-shadow: none;
  transform: translate(0px, 2.2px);
}

.btn-card:active {
  transform: scale(0.96) translate(0px, 3.2px);
}


button,
a {
  transition: all 0.2s ease;
}


html {
  scroll-behavior: smooth;
}

.hero-text{
    text-align: center;
    align-content: center;
    padding: 0 16px;
    font-weight: 600;
    height: auto;
    color: var(--color-text);
    
}

.hero-text h1{
    max-width: 900px;
    padding-bottom: 18px;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 1.02;
    font-weight: 780;
    
}

.hero-text p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(248,248,255,0.82);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.hero-highlight{
    color: var(--color-growth);
}


.service-card img {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  opacity: 0.82;
  filter: brightness(0) invert(1) drop-shadow(0 3px 8px rgba(0,0,0,0.28));
}

.service-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.018);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-align: left;
}



/* LOGO LEFT */
.logo {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--color-text);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* NAV LINKS RIGHT */
.navbar-links {
  flex: 1;
  justify-content: center;
  position: relative;
  align-items: center;
  gap: 20px; /* Ax;espaço entre o menu e o botão */
  
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: 0.3s;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
}

.menu li a {
  text-decoration: none;
  color: rgba(248,248,255,0.72);
  font-weight: 600;
  font-size: 0.95rem;
  
  
}

.menu li a:hover {
  color: var(--color-text);
}

.hero{
    min-height: calc(100vh - 72px);
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background:
      linear-gradient(180deg, rgba(11,11,12,0.68) 0%, rgba(11,11,12,0.46) 44%, var(--color-bg) 100%),
      url('IMG/MONTANHAS1OPT.webp');
    background-size:cover;
    background-position: center 72%;
    background-repeat: no-repeat;
    color: var(--color-text);
    padding: var(--section-y) var(--section-x) clamp(126px, 12vw, 158px);
    text-align: center;
    position: relative;
}


.hero-container{
    display: flex;
    flex-direction: column;
    width: min(920px, 100%);
    gap: 30px;
    justify-content: space-around;
    align-items: center;

}

.hero-trust {
  position: relative;
  z-index: 1;
  background: transparent;
  margin-top: -106px;
  padding: 0 var(--section-x) 46px;
  pointer-events: none;
}

.hero-trust__inner {
  width: min(820px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  padding: 7px 11px;
  border: 1px solid rgba(248,248,255,0.11);
  border-radius: 999px;
  background: rgba(11,11,12,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

.hero-trust__item + .hero-trust__item {
  border-left: 1px solid rgba(248,248,255,0.11);
}

.hero-trust__item strong {
  color: rgba(248,248,255,0.76);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.hero-trust__item span {
  display: none;
}

.hero-button{
    background-color: #F8F8FF;
    color: #00030E;
    padding: 1% 1%;
    width: 25%;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    border-radius: 3px;
    align-items: center;
    display: block;

}

.hero-button:hover{
    background-color: #005fa3;
    color: #F8F8FF;
}

.features-wrapper {
  background: var(--color-bg);
  padding: var(--section-y) var(--section-x);
}

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

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 36px;
  text-align: center;
  color: var(--color-text);
}

.section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--color-text);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
  font-weight: 700;
}

.features-wrapper .section-heading span,
.service .section-heading span {
  color: rgba(248,248,255,0.58);
}


.feature__container {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: clamp(28px, 5vw, 56px);
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 16px 46px rgba(0,0,0,0.24);
}

.feature__container::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: rgba(248,248,255,0.16);
  pointer-events: none;
}

.feature__brand {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.feature__brand span {
  color: rgba(248,248,255,0.58);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature__brand h3 {
  color: var(--color-text);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.04;
  font-weight: 780;
}

.feature__brand p {
  max-width: 440px;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.feature__pillars {
  counter-reset: feature-step;
  display: grid;
  border-left: 1px solid var(--color-border);
}

.feature__title {
    font-family: 'Hanken Grotesk', sans-serif;
    color: var(--color-text);
    font-size: 1.08rem;
    line-height: 1.25;
    grid-column: 2;
    padding: 0;
    font-weight: 700;
    text-align: left;
    
}

.feature__description {
    
    color: var(--color-muted);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.55;
    grid-column: 2;
    font-weight: 400;
    margin-top: 6px;
}




.service{
    
    background: var(--color-bg);
    display: block;
    padding: var(--section-y) var(--section-x);
}

.service .section-heading {
  margin-bottom: clamp(54px, 5vw, 72px);
    
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(26px, 2.4vw, 32px);
  min-width: 0;
  min-height: auto;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;

  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 14px 34px rgba(0,0,0,0.2);
}

.service-card:hover::before {
  opacity: 0.95;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(26px, 2.4vw, 32px);
  right: clamp(26px, 2.4vw, 32px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,248,255,0.26), transparent);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.service-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 18px;
  color: rgba(248,248,255,0.44);
  font-size: 0.66rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__eyebrow span:first-child {
  color: rgba(248,248,255,0.7);
}

.service-title{
    display: block;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    min-height: 0;
    margin: 6px 0 0;
    padding-top: 0;
    
}

.service-title h2 {
  position: relative;
  display: block;
  max-width: 100%;
  padding: 2px 0 2px 16px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--color-text);
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.service-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1px;
  height: calc(100% - 0.18em);
  border-radius: 999px;
  background: rgba(248,248,255,0.28);
  box-shadow: 8px 0 0 rgba(248,248,255,0.055);
}

.service-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 12px;
  height: 1px;
  background: rgba(248,248,255,0.28);
}

.service-card .service-promise {
  max-width: 292px;
  margin: 0;
  color: rgba(248,248,255,0.72);
  font-size: 0.96rem;
  font-weight: 560;
  line-height: 1.45;
  text-align: left;
}

.service-conversion {
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.service-conversion span {
  color: rgba(248,248,255,0.42);
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-conversion p {
  max-width: 300px;
  margin: 0;
  color: rgba(248,248,255,0.72);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: left;
}

.service-card button:hover{
    background-color: #005fa3;
    color: #F8F8FF;

}

.service-wrapper {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(32px, 3vw, 42px);
  row-gap: clamp(32px, 3vw, 40px);
}

.service-items {
  min-width: 0;
}

.service-action {
  display: block;
  margin-top: auto;
  padding-top: 12px;
}

.service-action .btn-card {
  width: 100%;
  min-width: 0;
  height: 38px;
  justify-content: space-between;
  padding: 0 14px;
  background: transparent;
  border-color: rgba(255,255,255,0.12);
  color: rgba(248,248,255,0.9);
  font-size: 0.88rem;
  font-weight: 680;
}

.service-action .btn-card::after {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(248,248,255,0.44);
}

.service-action .btn-card:hover {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.22);
}

.service-decision {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.service-decision span {
  display: block;
  margin-bottom: 5px;
  color: #F8F8FF;
  font-size: 1rem;
  font-weight: 760;
}

.service-decision p {
  max-width: 660px;
  color: rgba(248,248,255,0.66);
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-decision .btn-card {
  width: auto;
  min-width: 152px;
  height: 38px;
  padding: 0 16px;
  background: #F8F8FF;
  border-color: rgba(248,248,255,0.12);
  color: #0b0b0c;
  font-size: 0.88rem;
  font-weight: 760;
}

.service-decision .btn-card:hover {
  background: rgba(248,248,255,0.9);
  border-color: rgba(248,248,255,0.28);
}

.form__inner {
    width: min(1180px, 94vw);
    max-width: 100%;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 40px);
    display: grid;
    gap: 22px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
    grid-template-columns: 1fr 1.1fr;
     align-items: start;
    overflow: hidden;
}
.form__content {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 12px;
    max-width: 440px;
    min-width: 0;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#00030E, rgba(44, 44, 44, 0.241)),  url('IMG/CASTELO2OPT.webp');
  background-size: cover;
  background-position: center;
  color: var(--color-text);
  padding: var(--section-y) var(--section-x);
  overflow-x: hidden;
}

.form-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(1px);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 800px;
  min-width: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form h2 {
    font-size: clamp(1.55rem, 2.5vw, 1.9rem);
    line-height: 1.12;
    color: #f6f8ff;
    margin-bottom: 0;
    text-align: left;
}

.form__lead {
    color: rgba(246,248,255,0.66);
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 4px;
    text-align: left;

}

label {
    font-weight: 600;
    color: #d7def0;
}

.form__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 820;
    color: rgba(246,248,255,0.48);
    margin-bottom: 0;
}

.form__lead {
    color: rgba(246,248,255,0.66);
    line-height: 1.58;
}

.form__highlights {
    list-style: none;
    justify-content: flex-start;
    padding: 0;
    margin: 2px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.form__highlights li {
    background: rgba(248,248,255,0.035);
    border: 1px solid rgba(255, 255, 255, .055);
    color: rgba(246,248,255,0.68);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.form__direct {
    display: grid;
    margin-top: 8px;
}

.form__direct-card {
    display: grid;
    min-width: 0;
    max-width: 100%;
    padding: 10px 12px;
    color: inherit;
    background: #1b1c1f;
    border: 1px solid rgba(248, 248, 255, .10);
    border-radius: 10px;
}

.form__direct-row {
    display: grid;
    grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.form__direct-row + .form__direct-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .045);
}

.form__direct a:hover strong {
    color: rgba(246, 248, 255, 0.92);
}

.form__direct span {
    color: rgba(246, 248, 255, 0.44);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.form__direct strong {
    min-width: 0;
    color: rgba(246, 248, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
}



.form-structure {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
  
}

.small-form, .big-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #F8F8FF;
  font-size: 1.08rem;
  width: 100%;
  min-width: 0;
}

input, textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(248, 248, 255, .10);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #f6f8ff;
  background-color: #1b1c1f;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246,248,255,0.46);
}

input:focus, textarea:focus {
  outline: none;
  background-color: #202126;
  border-color: rgba(248,248,255,0.34);
  box-shadow: 0 0 0 3px rgba(248,248,255,0.075);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  align-self: center;
  margin-top: 20px;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  padding: 10px 20px;
  width: 240px;
  max-width: 100%;
  height: 50px;
  align-items: center;
  display: block;
  font-weight: 600;
}

button[type="submit"]:hover {
  color: #34383f;
}

#status {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: rgba(248,248,255,0.74);
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: center;
}

#status.status-success {
  color: #9ee6bd;
}

#status.status-error {
  color: #ffb4aa;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  height: 44px;

  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;

  background: #F8F8FF;   /* clean white */
  color: #00030E;

  border: 1px solid rgba(0,0,0,0.08);

  transition: all 0.15s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #eaeaea;
}



.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: black;            
    box-shadow: 0 0 20px #49494941;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: white;
    text-decoration: none;
    box-shadow: 0 0 15px #eeeeeecc;
}
         
.feature__item {
  position: relative;
  counter-increment: feature-step;
  color: #F8F8FF;
  padding: 20px 0 20px 28px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  text-align: left;
  transition: transform 0.25s ease;
}

.feature__item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature__item::before {
  content: "0" counter(feature-step);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0b0b0c;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(248,248,255,0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.feature__item:hover {
  transform: translateX(3px);
}

@media (max-width: 1500px) {
  .service-wrapper {
    column-gap: 34px;
    row-gap: 36px;
  }
}


/* RESPONSIVE (Add this if you need mobile support) */
@media (max-width: 930px) {
:root {
    --section-y: 72px;
    --section-x: 16px;
  }

  .hero-trust {
    margin-top: -42px;
  }

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .form__inner {
    grid-template-columns: 1fr;
  }

.feature__title {
  font-size: 1.3rem;
}


.navbar .btn-primary {
    max-width: 110px;
  }



  .menu {
    top: var(--nav-height);
    right: 20px;
    background: transparent;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-radius: 8px;
    display: none;
  }



  .menu-toggle {
    display: flex; /* mostra hamburger */
    justify-self: end;
  }

  .service-wrapper {
    grid-template-columns: 1fr;
    max-width: 540px;
    column-gap: 0;
    row-gap: 24px;
  }
  .service-items {
    max-width: 100%;
  }

  .service-decision {
    grid-template-columns: 1fr;
    justify-items: start;
  }

    .feature__container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 22px;
    }

    .feature__pillars {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .feature__item {
        padding: 18px 0;
    }
}

@media (max-width: 600px) {
:root {
    --section-y: 60px;
    --section-x: 16px;
  }

  .hero-trust {
    margin-top: -92px;
    padding: 0 16px 36px;
  }

  .hero-trust__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
  }

  .hero-trust__item {
    padding: 6px 9px;
    background: rgba(11,11,12,0.32);
    border-color: rgba(248,248,255,0.095);
  }

  .hero-trust__item + .hero-trust__item {
    border-left: 1px solid rgba(248,248,255,0.095);
    border-top: 1px solid rgba(248,248,255,0.095);
  }

  .hero-trust__item strong {
    color: rgba(248,248,255,0.7);
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .form__direct {
    text-align: left;
  }

  .form__direct strong {
    overflow-wrap: anywhere;
  }

  .hero-text h1 {
    padding-bottom: 24px;
}

.psl {
    padding: var(--section-y) var(--section-x);
  }
  .psl h2 {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-bottom: 18px;
  }
  .psl__pain {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 34px;
  }

  .psl__pain li {
    min-height: auto;
    padding: 15px 16px;
  }
  .psl__solution ul {
    gap: 8px;
    margin: 12px 0 16px;
    padding-left: 0;
  }
  .psl__quote,
  .psl__proof .psl__case {
    font-size: 0.92rem;
  }
  .psl__badges {
    gap: 8px;
  }
  .psl__badges span {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0px 10px;
    height: auto;
    text-align: center;

  }


  .hero {
    min-height: 72vh;
    height: auto;
    padding: 96px var(--section-x) 72px;
    background-position: center center;
    align-items: center;
  }

  .features-wrapper {
    padding: var(--section-y) var(--section-x);
   
  }

  .features-wrapper .section-heading h2{
    text-align: center;
  }

  .feature__container {
    gap: 22px;
    padding: 24px 20px;
  }

  .feature__brand h3 {
    font-size: 1.75rem;
  }

  .feature__brand p {
    font-size: 0.98rem;
  }

  .feature__item {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px 0;
  }

  .feature__item:last-child {
    padding-bottom: 0;
  }

  .feature__item::before {
    width: 34px;
    height: 34px;
  }

  .feature__title {
    font-size: 1.05rem;
    text-align: left;
  }

.feature__description {
  text-align: left;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 400;
}


  .service-wrapper {
    column-gap: 0;
    row-gap: 22px;
  }

  .service {
    height: auto;
    padding: var(--section-y) var(--section-x);
  }

  .service-card {
    height: auto;
    max-width: 100%;
    padding: 22px;
    min-width: 0;
    min-height: auto;
    font-size: 1rem;
  }

  .service-title h2 {
    font-size: 1.08rem;
    padding: 2px 0 2px 14px;
  }

  .service-title h2::before {
    left: 0;
    top: 0.12em;
    height: calc(100% - 0.18em);
  }

  .service-title h2::after {
    left: 0;
    top: 0.12em;
    width: 11px;
  }

  .service-card .service-promise {
    font-size: 0.92rem;
  }

  .service-conversion {
    padding: 12px 0;
  }

  .service-action {
    padding-top: 8px;
  }

  .service-decision {
    margin-top: 6px;
    padding: 20px;
  }

  .service-decision .btn-card {
    width: 100%;
  }

  .form-wrapper {
    padding: 20px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .navbar-container {
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1rem;
    padding-left: 0;
    margin-right: 10px;
    white-space: nowrap;
  }


}

@media (max-width: 406px) {
  .hero-text{
    font-size: 0.95rem;
  }
}



@media (max-width: 900px) {
  .service-card{ min-width: 0; max-width: 100%; }
  .psl {
    padding: var(--section-y) var(--section-x);
  }
  .psl__wrap {
    padding: 0 12px;
  }
  .psl__split {
    grid-template-columns: 1fr;   /* stack columns */
    gap: 20px;
  }
  .psl__solution,
  .psl__proof {
    padding: 18px;
  }
  .psl__risk {
    font-size: 0.9rem;
  }
  .psl__cta {
    width: 100%;                  /* easier to tap */
    padding: 14px 18px;
    font-size: 1rem;
  }
}

.hero{ min-height: calc(100vh - 72px); height: auto; }
@media (max-width:600px){ .hero{ min-height: 72vh; padding-top: 96px; } }

@media (max-width: 600px){ .hero-button{ width: 100%; } }

section, .psl, .features-wrapper, .service, .form{ scroll-margin-top: var(--nav-height); }

.hero{ filter:none; }

@media (max-width: 600px){
  html{ font-size: 15.5px; } /* ~97% */
}


@media (max-width: 600px){
  .form{ min-height:auto; padding: var(--section-y) var(--section-x); }
  .form-wrapper{ padding:24px; }
}


@media (max-width: 900px){
  .psl__pain{ gap: 12px; }
  .psl__cta{ width:100%; }
}

/* Service landing pages */
body.service-page {
  overflow-x: hidden;
}

.service-page .btn-primary {
  max-width: none;
  white-space: nowrap;
}

.service-page .hero-container,
.service-page .psl__wrap {
  width: 100%;
  min-width: 0;
}

.service-page__hero {
  min-height: 82vh;
  background-position: center 70%;
}

.service-page .hero-text {
  width: min(900px, 100%);
  height: auto;
  max-width: 900px;
  min-width: 0;
  padding: 0 16px;
}

.service-page .hero-text p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(248, 248, 255, 0.86);
  line-height: 1.6;
}

.service-page .psl__pain {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-page .service .psl__wrap {
  max-width: 1220px;
}

.service-page__cards,
.service-page__offer {
  justify-content: center;
}

.service-page__cards {
  flex-wrap: wrap;
  gap: 40px;
  overflow-x: visible;
}

.service-page__cards .service-items {
  flex: 0 1 360px;
}

.service-page__offer {
  overflow-x: visible;
}

.service-page__offer .service-items {
  flex: 0 1 420px;
}

.service-page__offer .service-card {
  max-width: 420px;
}

.service-page .form-wrapper .btn-primary {
  justify-self: center;
  margin: 6px auto 0;
}

@media (max-width: 900px) {
  .service-page__cards {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .service-page__cards .service-items,
  .service-page__offer .service-items {
    flex: 0 0 80%;
  }
}

@media (max-width: 600px) {
  .service-page .btn-primary {
    white-space: normal;
  }

  .service-page__hero {
    min-height: 72vh;
    padding-top: 22vh;
  }
}

/* Services index page */
.services-page {
  background: #0b0b0c;
  color: #F8F8FF;
}

.services-page .btn-primary {
  max-width: none;
}

.services-hero {
  background: linear-gradient(180deg, #121214 0%, #0b0b0c 100%);
  color: #F8F8FF;
  padding: 112px 20px 86px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.services-hero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.03;
  margin: 0 0 22px;
  font-weight: 760;
  letter-spacing: 0;
}

.services-hero p:not(.form__eyebrow) {
  max-width: 760px;
  color: rgba(248, 248, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.services-intro,
.services-breakdown,
.services-value {
  background: #0b0b0c;
  padding: 80px 20px;
}

.services-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.services-intro h2,
.services-section-title h2,
.services-cta h2 {
  color: #F8F8FF;
  text-align: left;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.services-intro__copy {
  display: grid;
  gap: 18px;
  color: rgba(248, 248, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-detail {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 180px;
  gap: 34px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.service-detail:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.service-detail-scroll {
  display: block;
}

.service-detail__media {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.service-detail__media img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 10px rgba(102,129,218,0.35));
}

.service-detail h3 {
  color: #F8F8FF;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  margin-bottom: 10px;
  font-weight: 720;
}

.service-detail p {
  max-width: 780px;
  color: rgba(248, 248, 255, 0.84);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-detail ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  color: rgba(248, 248, 255, 0.76);
}

.service-detail__action {
  width: 180px;
  justify-self: end;
}

.service-detail__action .btn-card {
  background: #F8F8FF;
  color: #00030E;
  border-color: rgba(248,248,255,0.18);
}

.service-detail__action .btn-card:hover {
  background: #eaeaea;
  border-color: rgba(102,129,218,0.35);
}

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

.services-value__grid .psl__proof {
  min-height: 180px;
}

.services-value__grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.services-value__grid p {
  color: rgba(248, 248, 255, 0.72);
  line-height: 1.6;
}

.services-cta {
  background: #121214;
  color: #F8F8FF;
  padding: 86px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.services-cta .psl__wrap {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.services-cta p {
  max-width: 700px;
  color: rgba(248, 248, 255, 0.76);
  line-height: 1.7;
  font-size: 1.05rem;
}

.services-index-page .services-hero {
  padding: 96px 20px 70px;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.services-hero__actions .btn-primary,
.services-hero__actions .btn-card {
  width: auto;
  min-width: 150px;
}

.services-hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
  margin-top: 36px;
}

.services-hero__signals div,
.services-router__choice,
.service-route-card,
.services-focus-strip div {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.services-hero__signals div {
  padding: 18px;
}

.services-hero__signals strong,
.services-hero__signals span {
  display: block;
}

.services-hero__signals strong {
  color: #F8F8FF;
  margin-bottom: 6px;
}

.services-hero__signals span {
  color: rgba(248,248,255,0.66);
  font-size: 0.94rem;
}

.services-router {
  padding-bottom: 56px;
}

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

.services-router__choice {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 22px;
  color: #F8F8FF;
  text-decoration: none;
}

.services-router__choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
}

.services-router__choice span,
.services-router__choice strong,
.services-router__choice small {
  position: relative;
  display: block;
}

.services-router__choice span {
  color: rgb(var(--route-rgb));
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 34px;
}

.services-router__choice strong {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.services-router__choice small {
  color: rgba(248,248,255,0.68);
  line-height: 1.5;
  font-size: 0.95rem;
}

.services-router__choice--website,
.service-route-card--website {
  --route-rgb: 178,255,190;
}

.services-router__choice--software,
.service-route-card--software {
  --route-rgb: 174,188,255;
}

.services-router__choice--seo,
.service-route-card--seo {
  --route-rgb: 122,224,255;
}

.services-router__choice--ecommerce,
.service-route-card--ecommerce {
  --route-rgb: 178,255,190;
}

.services-router__choice--ads,
.service-route-card--ads {
  --route-rgb: 159,176,255;
}

.services-router__choice--social,
.service-route-card--social {
  --route-rgb: 122,224,255;
}

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

.service-route-card {
  display: grid;
  gap: 20px;
  padding: 24px;
  min-height: 430px;
  background: var(--color-surface);
}

.service-route-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-route-card__top span {
  color: rgb(var(--route-rgb));
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-route-card__signal {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(var(--route-rgb),0.24);
  border-radius: 999px;
  background: rgba(var(--route-rgb),0.07);
  color: rgba(248,248,255,0.82);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0.02em;
}

.service-route-card h3 {
  color: #F8F8FF;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.service-route-card p {
  color: rgba(248,248,255,0.72);
  line-height: 1.55;
}

.service-route-card__wins {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-route-card__wins li {
  border: 1px solid rgba(var(--route-rgb),0.26);
  background: rgba(var(--route-rgb),0.08);
  color: rgba(248,248,255,0.86);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.service-route-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-self: end;
  margin-top: auto;
}

.service-route-card__actions .btn-card,
.service-route-card__actions .btn-primary {
  width: 100%;
}

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

.services-focus-strip div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 150px;
}

.services-focus-strip div::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a8a 0 28%, #aebcff 28% 64%, #b2ffbe 64% 100%);
  opacity: 0.7;
}

.services-focus-strip span,
.services-focus-strip strong,
.services-focus-strip small {
  display: block;
}

.services-focus-strip span {
  color: rgba(248,248,255,0.46);
  font-weight: 800;
  margin-bottom: 18px;
}

.services-focus-strip strong {
  color: #F8F8FF;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.services-focus-strip small {
  color: rgba(248,248,255,0.68);
  font-size: 0.96rem;
}

@media (max-width: 930px) {
  .services-intro__grid,
  .services-value__grid,
  .services-router__grid,
  .service-route-grid,
  .services-focus-strip,
  .services-hero__signals {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }

  .service-detail__action {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .services-hero {
    padding: 76px 16px 58px;
  }

  .services-index-page .services-hero {
    padding: 72px 16px 48px;
  }

  .services-intro,
  .services-breakdown,
  .services-value {
    padding: 58px 16px;
  }

  .services-router {
    padding-bottom: 42px;
  }

  .services-hero__actions .btn-primary,
  .services-hero__actions .btn-card {
    min-width: 146px;
  }

  .services-hero__signals {
    margin-top: 28px;
  }

  .services-router__choice {
    min-height: 142px;
    padding: 18px;
  }

  .services-router__choice span {
    margin-bottom: 22px;
  }

  .service-route-card {
    min-height: auto;
    padding: 20px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-detail__action {
    grid-column: auto;
    width: 180px;
  }

  .services-cta {
    padding: 64px 16px;
  }
}

/* Detailed service pages */
.service-detail-page .services-hero {
  padding: 104px 20px 76px;
}

.service-detail-page .services-hero h1 {
  max-width: 1040px;
}

.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-hero__actions .btn-card {
  width: auto;
  min-width: 190px;
  padding: 0 18px;
}

.detail-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.detail-meta-card {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
}

.detail-meta-card strong {
  display: block;
  color: #F8F8FF;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.detail-meta-card span {
  display: block;
  color: rgba(248,248,255,0.72);
  line-height: 1.5;
  font-size: 0.95rem;
}

.service-detail-page .services-breakdown + .services-breakdown {
  padding-top: 24px;
}

.detail-outcomes .services-section-title {
  margin-bottom: 18px;
}

.detail-outcomes .service-detail {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 32px;
  padding: 32px 0;
}

.detail-outcomes .service-detail p {
  max-width: 700px;
  margin-bottom: 18px;
}

.detail-outcomes .outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.detail-outcomes .outcome-list li {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: var(--color-surface);
  color: rgba(248,248,255,0.74);
  line-height: 1.45;
}

.detail-outcomes .outcome-list li:nth-child(1) {
  border-color: rgba(255,98,98,0.28);
  background: var(--color-surface);
}

.detail-outcomes .outcome-list li:nth-child(2) {
  border-color: rgba(178,255,190,0.26);
  background: var(--color-surface);
}

.detail-outcomes .outcome-list li:nth-child(3) {
  border-color: rgba(102,129,218,0.32);
  background: var(--color-surface);
}

.detail-outcomes .outcome-list strong {
  display: block;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.detail-outcomes .outcome-list li:nth-child(1) strong {
  color: #ff8a8a;
}

.detail-outcomes .outcome-list li:nth-child(2) strong {
  color: #b2ffbe;
}

.detail-outcomes .outcome-list li:nth-child(3) strong {
  color: #aebcff;
}

.detail-outcomes .outcome-list span {
  display: block;
}

.detail-outcomes .outcome-list li:nth-child(3)::after {
  content: "";
  display: block;
  width: 98px;
  height: 32px;
  margin-top: 14px;
  background:
    linear-gradient(to top, rgba(174,188,255,0.95) 38%, transparent 38%) 0 bottom / 16px 100% no-repeat,
    linear-gradient(to top, rgba(174,188,255,0.72) 64%, transparent 64%) 32px bottom / 16px 100% no-repeat,
    linear-gradient(to top, rgba(178,255,190,0.9) 88%, transparent 88%) 64px bottom / 16px 100% no-repeat,
    linear-gradient(rgba(255,255,255,0.14), rgba(255,255,255,0.14)) left bottom / 100% 1px no-repeat;
  border-left: 1px solid rgba(255,255,255,0.12);
  opacity: 0.95;
}

.detail-outcomes .service-detail__action {
  padding-top: 4px;
}

.detail-impact {
  background: #0b0b0c;
  padding: 34px 20px 86px;
}

.detail-impact__intro {
  max-width: 820px;
  margin-bottom: 28px;
}

.detail-impact__intro h2 {
  color: #F8F8FF;
  text-align: left;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.detail-impact__intro p:not(.form__eyebrow) {
  color: rgba(248,248,255,0.72);
  line-height: 1.7;
  font-size: 1.02rem;
}

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

.detail-impact-card {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail-impact-card span {
  display: block;
  color: #F8F8FF;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 24px;
}

.detail-impact-card strong {
  display: block;
  color: #F8F8FF;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.detail-impact-card p {
  color: rgba(248,248,255,0.7);
  line-height: 1.6;
}

.website-detail-page .detail-impact-card:first-child,
.software-detail-page .detail-impact-card:nth-child(2),
.seo-detail-page .detail-impact-card:first-child {
  border-color: rgba(178,255,190,0.28);
}

.website-detail-page .detail-impact-card:first-child span,
.software-detail-page .detail-impact-card:nth-child(2) span,
.seo-detail-page .detail-impact-card:first-child span {
  color: #b2ffbe;
}

.detail-number {
  color: #F8F8FF;
  font-size: 1.4rem;
  font-weight: 760;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(248,248,255,0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.detail-fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-detail-page .services-cta {
  background: #0f0f11;
}

@media (max-width: 930px) {
  .detail-hero__meta,
  .detail-fit__grid,
  .detail-impact__grid,
  .detail-outcomes .outcome-list {
    grid-template-columns: 1fr;
  }

  .detail-hero__actions .btn-card {
    width: auto;
  }

  .service-detail__action .detail-tag {
    justify-self: start;
  }

  .detail-outcomes .service-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .service-detail-page .services-hero {
    padding: 70px 16px 54px;
  }

  .detail-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-hero__actions .btn-primary,
  .detail-hero__actions .btn-card {
    width: auto;
    min-width: 190px;
  }

  .detail-hero__meta {
    margin-top: 34px;
  }

  .detail-impact {
    padding: 20px 16px 64px;
  }

  .detail-impact-card {
    min-height: auto;
    padding: 22px;
  }

  .detail-outcomes .service-detail {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .service-detail-page .service-detail-scroll {
    display: flex;
    gap: 14px;
    margin-inline: -16px;
    padding: 4px 16px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-detail-page .service-detail-scroll::-webkit-scrollbar {
    display: none;
  }

  .service-detail-page .service-detail-scroll .service-detail {
    flex: 0 0 min(84vw, 340px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: var(--color-surface);
    scroll-snap-align: start;
  }

  .service-detail-page .service-detail-scroll .service-detail:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .service-detail-page .service-detail-scroll .service-detail__media {
    flex: 0 0 auto;
  }

  .service-detail-page .service-detail-scroll .service-detail__content {
    width: 100%;
  }

  .service-detail-page .service-detail-scroll .service-detail__action {
    width: 100%;
    margin-top: auto;
    justify-self: auto;
  }

  .detail-outcomes .service-detail__action {
    padding-top: 0;
  }

  .detail-outcomes .outcome-list li {
    min-height: auto;
  }
}

/* Sober slim premium service pages */
.services-page {
  background: var(--color-bg);
  color: var(--color-text);
}

.services-page .psl__wrap {
  width: min(1140px, 100%);
}

.services-page .form__eyebrow,
.services-section-title .form__eyebrow {
  color: rgba(248,248,255,0.52);
  font-weight: 820;
  letter-spacing: 0.1em;
}

.services-hero {
  background: var(--color-bg);
  color: var(--color-text);
  padding: clamp(96px, 10vw, 132px) var(--section-x) clamp(70px, 8vw, 96px);
  border-bottom: 1px solid var(--color-border);
}

.services-index-page .services-hero,
.service-detail-page .services-hero {
  padding: clamp(96px, 10vw, 132px) var(--section-x) clamp(70px, 8vw, 96px);
}

.services-hero h1,
.service-detail-page .services-hero h1 {
  max-width: 980px;
  color: var(--color-text);
  font-size: clamp(2.35rem, 5.6vw, 5rem);
  line-height: 1.03;
  font-weight: 780;
  letter-spacing: 0;
}

.services-hero p:not(.form__eyebrow) {
  max-width: 720px;
  color: rgba(248,248,255,0.74);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.services-hero__actions,
.detail-hero__actions {
  gap: 14px;
  margin-top: 32px;
}

.services-hero__actions .btn-card,
.detail-hero__actions .btn-card,
.service-route-card__actions .btn-card,
.service-detail__action .btn-card {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
  color: rgba(248,248,255,0.9);
}

.services-hero__actions .btn-card:hover,
.detail-hero__actions .btn-card:hover,
.service-route-card__actions .btn-card:hover,
.service-detail__action .btn-card:hover {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.22);
  color: var(--color-text);
}

.services-hero__signals {
  gap: 24px;
  max-width: 980px;
  margin-top: clamp(42px, 5vw, 58px);
}

.services-hero__signals div,
.services-router__choice,
.service-route-card,
.services-focus-strip div,
.detail-meta-card,
.detail-impact-card,
.detail-outcomes .outcome-list li,
.service-detail-page .service-detail-scroll .service-detail {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: none;
}

.services-hero__signals div {
  padding: 20px 22px;
}

.services-intro,
.services-breakdown,
.services-value {
  background: var(--color-bg);
  padding: var(--section-y) var(--section-x);
}

.services-section-title {
  max-width: 780px;
  margin-bottom: clamp(42px, 5vw, 64px);
}

.services-intro h2,
.services-section-title h2,
.services-cta h2,
.detail-impact__intro h2 {
  color: var(--color-text);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.services-intro__copy,
.services-cta p,
.detail-impact__intro p:not(.form__eyebrow) {
  color: rgba(248,248,255,0.72);
}

.services-router {
  padding-bottom: var(--section-y);
}

.services-router__grid,
.service-route-grid,
.services-focus-strip,
.services-value__grid,
.detail-impact__grid,
.detail-hero__meta {
  gap: clamp(24px, 3vw, 34px);
}

.services-router__choice {
  min-height: 0;
  padding: 28px;
}

.services-router__choice::before,
.service-route-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,248,255,0.24), transparent);
  opacity: 0.75;
}

.services-router__choice span,
.service-route-card__top span {
  color: rgba(248,248,255,0.56);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.services-router__choice span {
  margin-bottom: 46px;
}

.services-router__choice strong {
  color: var(--color-text);
  font-size: 1.22rem;
  font-weight: 740;
}

.services-router__choice small,
.services-focus-strip small,
.services-hero__signals span,
.service-route-card p {
  color: rgba(248,248,255,0.66);
}

.services-choice {
  border-top: 1px solid rgba(248,248,255,0.055);
  border-bottom: 1px solid rgba(248,248,255,0.055);
}

.services-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.services-choice__card {
  min-width: 0;
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(18,18,20,0.72);
  box-shadow: inset 0 1px 0 rgba(248,248,255,0.035);
}

.services-choice__card span {
  color: rgba(248,248,255,0.5);
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-choice__card strong {
  color: var(--color-text);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.15;
  font-weight: 760;
}

.services-choice__card p {
  color: rgba(248,248,255,0.68);
  font-size: 0.96rem;
  line-height: 1.6;
}

.services-compare {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(10,11,13,0.5);
}

.services-compare__row {
  display: grid;
  grid-template-columns: minmax(132px, 0.78fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  min-width: 0;
  padding: 18px 20px;
  border-top: 1px solid rgba(248,248,255,0.065);
}

.services-compare__row:first-child {
  border-top: 0;
}

.services-compare__row--head {
  padding-block: 14px;
  background: rgba(248,248,255,0.028);
}

.services-compare__row--head span {
  color: rgba(248,248,255,0.5);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.services-compare__row strong {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 760;
}

.services-compare__row span {
  min-width: 0;
  color: rgba(248,248,255,0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.services-compare__row em {
  display: none;
  color: rgba(248,248,255,0.44);
  font-style: normal;
  font-size: 0.7rem;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-compare-mobile {
  display: none;
}

.services-compare-mobile__intro {
  display: grid;
  gap: 7px;
  margin-bottom: 4px;
}

.services-compare-mobile__intro h3 {
  color: var(--color-text);
  font-size: 1.22rem;
  line-height: 1.18;
  font-weight: 760;
}

.services-compare-mobile__item {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(18,18,20,0.72);
  overflow: hidden;
}

.services-compare-mobile__item.is-animating {
  overflow: hidden;
}

.services-compare-mobile__item summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.services-compare-mobile__item summary::-webkit-details-marker {
  display: none;
}

.services-compare-mobile__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 4px;
  border-right: 1.5px solid rgba(248,248,255,0.68);
  border-bottom: 1.5px solid rgba(248,248,255,0.68);
  transform: rotate(45deg);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.services-compare-mobile__item[open] summary::after {
  transform: rotate(-135deg);
}

.services-compare-mobile__item summary span,
.services-compare-mobile__item summary small {
  min-width: 0;
}

.services-compare-mobile__item summary span {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 760;
}

.services-compare-mobile__item summary small {
  color: rgba(248,248,255,0.52);
  font-size: 0.78rem;
  line-height: 1.3;
  text-align: right;
}

.services-compare-mobile__item div {
  display: grid;
  gap: 9px;
  padding: 0 14px 14px;
  overflow: hidden;
}

.services-compare-mobile__item p {
  color: rgba(248,248,255,0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.services-compare-mobile__item p strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(248,248,255,0.54);
  font-size: 0.68rem;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-choice__note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(248,248,255,0.1);
  border-radius: var(--radius);
  background: rgba(13,14,16,0.78);
}

.services-choice__note p {
  max-width: 780px;
  color: rgba(248,248,255,0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.services-choice__note .btn-primary {
  width: auto;
  min-width: 172px;
}

@media (max-width: 930px) {
  .services-choice__grid {
    grid-template-columns: 1fr;
  }

  .services-compare__row--head {
    display: none;
  }

  .services-compare__row {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 18px;
  }

  .services-compare__row em {
    display: block;
    margin-bottom: 3px;
  }

  .services-choice__note {
    grid-template-columns: 1fr;
  }

  .services-choice__note .btn-primary {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .services-intro.services-choice {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .services-choice > .psl__wrap > .services-section-title,
  .services-choice__grid,
  .services-compare,
  .services-choice__note {
    display: none;
  }

  .services-compare-mobile {
    display: grid;
    gap: 10px;
  }

  .services-router {
    padding-bottom: 30px;
  }

  .services-router__grid {
    gap: 10px;
  }

  .services-router__choice {
    min-height: 0;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 3px;
    align-items: start;
    padding: 13px 14px;
  }

  .services-router__choice::before {
    left: 14px;
    right: 14px;
  }

  .services-router__choice span {
    grid-row: 1 / 3;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(248,248,255,0.1);
    border-radius: 50%;
    color: rgba(248,248,255,0.56);
    font-size: 0.66rem;
    line-height: 1;
  }

  .services-router__choice strong {
    grid-column: 2;
    margin: 0;
    font-size: 1rem;
    line-height: 1.18;
  }

  .services-router__choice small {
    grid-column: 2;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .services-choice__card {
    min-height: 0;
    padding: 20px;
  }

  .services-choice__note {
    padding: 20px;
  }

  .services-choice__note .btn-primary {
    width: 100%;
  }
}

.service-route-card {
  position: relative;
  gap: 18px;
  min-height: 0;
  padding: clamp(28px, 3vw, 34px);
  overflow: hidden;
}

.service-route-card__signal {
  min-height: 36px;
  border-color: var(--color-border);
  background: rgba(255,255,255,0.026);
  color: rgba(248,248,255,0.72);
  font-size: 0.78rem;
  font-weight: 760;
}

.service-route-card h3 {
  color: var(--color-text);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 760;
  line-height: 1.08;
}

.service-route-card__wins {
  gap: 9px;
}

.service-route-card__wins li {
  border: 1px solid var(--color-border);
  background: transparent;
  color: rgba(248,248,255,0.74);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.86rem;
}

.service-route-card__actions {
  gap: 12px;
}

.services-focus-strip div {
  min-height: 132px;
  padding: 26px;
}

.services-focus-strip div::after {
  left: 26px;
  right: 26px;
  bottom: 22px;
  height: 1px;
  background: rgba(248,248,255,0.18);
  opacity: 1;
}

.services-focus-strip span {
  color: rgba(248,248,255,0.44);
  margin-bottom: 18px;
}

.services-focus-strip strong {
  color: var(--color-text);
}

.services-cta,
.service-detail-page .services-cta {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(70px, 7vw, 90px) var(--section-x);
}

.services-cta .psl__wrap {
  gap: 20px;
}

.detail-hero__meta {
  margin-top: clamp(42px, 5vw, 60px);
}

.detail-meta-card {
  padding: 20px 22px;
}

.detail-impact {
  background: var(--color-bg);
  padding: var(--section-y) var(--section-x);
}

.detail-impact__intro {
  max-width: 860px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.detail-impact-card {
  min-height: 210px;
  padding: clamp(26px, 3vw, 34px);
}

.detail-impact-card span {
  color: var(--color-text);
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  margin-bottom: 28px;
}

.detail-impact-card strong {
  color: var(--color-text);
}

.website-detail-page .detail-impact-card:first-child,
.software-detail-page .detail-impact-card:nth-child(2),
.seo-detail-page .detail-impact-card:first-child {
  border-color: var(--color-border);
}

.website-detail-page .detail-impact-card:first-child span,
.software-detail-page .detail-impact-card:nth-child(2) span,
.seo-detail-page .detail-impact-card:first-child span {
  color: var(--color-text);
}

.service-detail {
  gap: clamp(28px, 4vw, 44px);
  padding: 42px 0;
  border-top: 1px solid var(--color-border);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--color-border);
}

.service-detail h3 {
  color: var(--color-text);
  font-weight: 740;
}

.service-detail p,
.service-detail ul {
  color: rgba(248,248,255,0.72);
}

.service-detail__media {
  width: 54px;
  height: 54px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.service-detail__media img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.detail-outcomes .services-section-title {
  margin-bottom: clamp(36px, 5vw, 54px);
}

.detail-outcomes .service-detail {
  padding: 42px 0;
}

.detail-outcomes .outcome-list {
  gap: 14px;
}

.detail-outcomes .outcome-list li {
  min-height: 118px;
  padding: 16px;
}

.detail-outcomes .outcome-list li:nth-child(1),
.detail-outcomes .outcome-list li:nth-child(2),
.detail-outcomes .outcome-list li:nth-child(3) {
  border-color: var(--color-border);
}

.detail-outcomes .outcome-list li:nth-child(1) strong,
.detail-outcomes .outcome-list li:nth-child(2) strong,
.detail-outcomes .outcome-list li:nth-child(3) strong {
  color: rgba(248,248,255,0.52);
}

.detail-outcomes .outcome-list li:nth-child(3)::after {
  display: none;
}

.detail-fit__grid {
  gap: clamp(24px, 3vw, 34px);
}

.detail-tag {
  border-color: var(--color-border);
  color: rgba(248,248,255,0.72);
}

@media (max-width: 930px) {
  .services-router__grid,
  .service-route-grid,
  .services-focus-strip,
  .services-value__grid,
  .detail-impact__grid,
  .detail-hero__meta,
  .detail-fit__grid,
  .detail-outcomes .outcome-list {
    grid-template-columns: 1fr;
  }

  .services-page .psl__wrap {
    width: min(100%, 760px);
  }
}

@media (max-width: 600px) {
  .services-hero,
  .services-index-page .services-hero,
  .service-detail-page .services-hero {
    padding: 78px 16px 58px;
  }

  .services-intro,
  .services-breakdown,
  .services-value,
  .detail-impact {
    padding: 64px 16px;
  }

  .services-section-title {
    margin-bottom: 32px;
  }

  .services-hero__signals,
  .service-route-grid,
  .services-focus-strip,
  .services-value__grid,
  .detail-impact__grid,
  .detail-hero__meta {
    gap: 18px;
  }

  .service-route-card,
  .detail-impact-card,
  .detail-meta-card {
    padding: 22px;
  }

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

  .service-detail-page .service-detail-scroll {
    display: grid;
    gap: 18px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .service-detail-page .service-detail-scroll .service-detail {
    flex: none;
    display: grid;
    gap: 18px;
    padding: 22px;
    scroll-snap-align: none;
  }

  .service-detail-page .service-detail-scroll .service-detail__action {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .services-index-page .services-focus-strip {
    gap: 10px;
  }

  .services-index-page .services-focus-strip div {
    min-height: 86px;
    padding: 14px 15px 16px;
  }

  .services-index-page .services-focus-strip div::after {
    left: 15px;
    right: 15px;
    bottom: 11px;
  }

  .services-index-page .services-focus-strip span {
    margin-bottom: 7px;
    font-size: 0.68rem;
    line-height: 1;
  }

  .services-index-page .services-focus-strip strong {
    margin-bottom: 4px;
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .services-index-page .services-focus-strip small {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .services-index-page .service-route-grid {
    gap: 10px;
  }

  .services-index-page .service-route-card {
    gap: 11px;
    padding: 15px;
  }

  .services-index-page .service-route-card::before {
    left: 15px;
    right: 15px;
  }

  .services-index-page .service-route-card__top {
    align-items: center;
    gap: 10px;
  }

  .services-index-page .service-route-card__top span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .services-index-page .service-route-card__signal {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .services-index-page .service-route-card h3 {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .services-index-page .service-route-card p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .services-index-page .service-route-card__wins {
    gap: 6px;
  }

  .services-index-page .service-route-card__wins li {
    padding: 5px 8px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .services-index-page .service-route-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .services-index-page .service-route-card__actions .btn-card,
  .services-index-page .service-route-card__actions .btn-primary {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.84rem;
  }
}

/* Apple-informed polish for service detail outcomes and process */
.service-detail-page .detail-outcomes,
.service-detail-page .detail-process {
  background: var(--color-bg);
  padding: clamp(84px, 8vw, 112px) var(--section-x);
}

.service-detail-page .detail-outcomes {
  border-top: 1px solid var(--color-border);
}

.service-detail-page .detail-process {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.service-detail-page .detail-outcomes .psl__wrap,
.service-detail-page .detail-process .psl__wrap {
  width: min(1120px, 100%);
}

.service-detail-page .detail-outcomes .services-section-title,
.service-detail-page .detail-process .services-section-title {
  max-width: 780px;
  margin-bottom: 56px;
}

.service-detail-page .detail-outcomes .services-section-title h2,
.service-detail-page .detail-process .services-section-title h2 {
  max-width: 740px;
}

.service-detail-page .detail-outcomes .service-detail-scroll,
.service-detail-page .detail-process .service-detail-scroll {
  display: grid;
  gap: 20px;
}

.service-detail-page .detail-outcomes .service-detail,
.service-detail-page .detail-process .service-detail {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: none;
  overflow: hidden;
}

.service-detail-page .detail-outcomes .service-detail::before,
.service-detail-page .detail-process .service-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,248,255,0.22), transparent);
}

.service-detail-page .detail-outcomes .service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(144px, auto);
  align-items: start;
  gap: 28px;
  padding: 30px;
}

.service-detail-page .detail-outcomes .service-detail:last-child,
.service-detail-page .detail-process .service-detail:last-child {
  border-bottom: 1px solid var(--color-border);
}

.service-detail-page .detail-outcomes .service-detail__content {
  display: grid;
  gap: 18px;
}

.service-detail-page .detail-outcomes .service-detail h3,
.service-detail-page .detail-process .service-detail h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.45rem;
  line-height: 1.18;
  font-weight: 760;
}

.service-detail-page .detail-outcomes .service-detail p,
.service-detail-page .detail-process .service-detail p {
  max-width: 720px;
  margin: 0;
  color: rgba(248,248,255,0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.service-detail-page .detail-outcomes .outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-page .detail-outcomes .outcome-list li,
.service-detail-page .detail-outcomes .outcome-list li:nth-child(1),
.service-detail-page .detail-outcomes .outcome-list li:nth-child(2),
.service-detail-page .detail-outcomes .outcome-list li:nth-child(3) {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255,255,255,0.018);
  color: rgba(248,248,255,0.74);
}

.service-detail-page .detail-outcomes .outcome-list strong,
.service-detail-page .detail-outcomes .outcome-list li:nth-child(1) strong,
.service-detail-page .detail-outcomes .outcome-list li:nth-child(2) strong,
.service-detail-page .detail-outcomes .outcome-list li:nth-child(3) strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(248,248,255,0.56);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-page .detail-outcomes .outcome-list span {
  display: block;
  color: rgba(248,248,255,0.78);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-detail-page .detail-outcomes .outcome-list li:nth-child(3)::after {
  display: none;
}

.service-detail-page .detail-outcomes .service-detail__action,
.service-detail-page .detail-process .service-detail__action {
  width: auto;
  justify-self: end;
  padding-top: 0;
}

.service-detail-page .detail-outcomes .service-detail__action .btn-card {
  min-height: 44px;
  min-width: 144px;
  justify-content: center;
  background: transparent;
  border-color: rgba(255,255,255,0.14);
  color: rgba(248,248,255,0.92);
}

.service-detail-page .detail-outcomes .service-detail__action .btn-card:hover,
.service-detail-page .detail-outcomes .service-detail__action .btn-card:focus-visible {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.26);
  color: var(--color-text);
}

.service-detail-page .detail-process .service-detail-scroll {
  gap: 16px;
  counter-reset: process-step;
}

.service-detail-page .detail-process .service-detail {
  counter-increment: process-step;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 148px;
  padding: 28px 30px;
}

.service-detail-page .detail-process .service-detail:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 61px;
  bottom: -17px;
  width: 1px;
  height: 16px;
  background: var(--color-border);
}

.service-detail-page .detail-process .detail-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.026);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1;
  font-weight: 820;
}

.service-detail-page .detail-process .service-detail__content {
  display: grid;
  gap: 10px;
}

.service-detail-page .detail-process .detail-tag {
  min-height: 44px;
  padding: 0 16px;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.018);
  color: rgba(248,248,255,0.72);
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0;
}

.service-detail-page .detail-process .detail-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: rgba(248,248,255,0.46);
}

.service-detail-page .detail-outcomes .btn-card:focus-visible,
.service-detail-page .detail-process .btn-card:focus-visible,
.service-detail-page .detail-process .detail-tag:focus-visible {
  outline: 2px solid rgba(248,248,255,0.82);
  outline-offset: 3px;
}

.service-detail-page .detail-proof {
  background: var(--color-bg);
  padding: clamp(84px, 8vw, 112px) var(--section-x);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.service-detail-page .detail-proof .psl__wrap {
  width: min(1120px, 100%);
}

.service-detail-page .detail-proof .services-section-title {
  max-width: 800px;
  margin-bottom: 46px;
}

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

.service-detail-page .detail-proof__panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  min-height: 318px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: none;
}

.service-detail-page .detail-proof__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248,248,255,0.2), transparent);
}

.service-detail-page .detail-proof__panel--visual {
  background:
    linear-gradient(180deg, rgba(248,248,255,0.034) 0%, rgba(255,255,255,0) 44%),
    var(--color-surface);
}

.service-detail-page .detail-proof__label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.026);
  color: rgba(248,248,255,0.56);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-detail-page .detail-proof__panel h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.22rem;
  line-height: 1.16;
  font-weight: 760;
}

.service-detail-page .detail-proof__stack,
.service-detail-page .detail-proof__list,
.service-detail-page .detail-proof__timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-page .detail-proof__stack li,
.service-detail-page .detail-proof__timeline li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--color-border);
}

.service-detail-page .detail-proof__stack li:first-child,
.service-detail-page .detail-proof__timeline li:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-detail-page .detail-proof__stack strong,
.service-detail-page .detail-proof__timeline strong {
  color: rgba(248,248,255,0.62);
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-detail-page .detail-proof__stack span,
.service-detail-page .detail-proof__timeline span {
  color: rgba(248,248,255,0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-detail-page .detail-proof__list li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid var(--color-border);
  color: rgba(248,248,255,0.76);
  font-size: 0.94rem;
  line-height: 1.48;
}

.service-detail-page .detail-proof__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-detail-page .detail-proof__list li::before {
  content: "";
  position: absolute;
  top: 1.1em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(248,248,255,0.48);
}

@media (max-width: 930px) {
  .service-detail-page .detail-outcomes,
  .service-detail-page .detail-process,
  .service-detail-page .detail-proof {
    padding: 76px var(--section-x);
  }

  .service-detail-page .detail-outcomes .services-section-title,
  .service-detail-page .detail-process .services-section-title,
  .service-detail-page .detail-proof .services-section-title {
    margin-bottom: 42px;
  }

  .service-detail-page .detail-proof__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-detail-page .detail-proof__panel {
    min-height: 0;
    padding: 24px;
  }

  .service-detail-page .detail-outcomes .service-detail,
  .service-detail-page .detail-process .service-detail {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 26px;
  }

  .service-detail-page .detail-outcomes .outcome-list {
    grid-template-columns: 1fr;
  }

  .service-detail-page .detail-outcomes .service-detail__action,
  .service-detail-page .detail-process .service-detail__action {
    justify-self: start;
  }

  .service-detail-page .detail-process .service-detail:not(:last-child)::after {
    left: 52px;
  }
}

@media (max-width: 600px) {
  .service-detail-page .detail-outcomes,
  .service-detail-page .detail-process,
  .service-detail-page .detail-proof {
    padding: 64px 16px;
  }

  .service-detail-page .detail-proof .services-section-title {
    margin-bottom: 32px;
  }

  .service-detail-page .detail-proof__grid {
    gap: 12px;
  }

  .service-detail-page .detail-proof__panel {
    gap: 14px;
    padding: 18px;
  }

  .service-detail-page .detail-proof__panel::before {
    left: 18px;
    right: 18px;
  }

  .service-detail-page .detail-proof__label {
    min-height: 25px;
    padding: 0 9px;
    font-size: 0.64rem;
  }

  .service-detail-page .detail-proof__panel h3 {
    font-size: 1.08rem;
  }

  .service-detail-page .detail-proof__stack li,
  .service-detail-page .detail-proof__timeline li {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .service-detail-page .detail-proof__stack strong,
  .service-detail-page .detail-proof__timeline strong {
    font-size: 0.68rem;
  }

  .service-detail-page .detail-proof__stack span,
  .service-detail-page .detail-proof__timeline span,
  .service-detail-page .detail-proof__list li {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .service-detail-page .detail-proof__list li {
    padding: 10px 0 10px 16px;
  }

  .service-detail-page .detail-outcomes .service-detail-scroll,
  .service-detail-page .detail-process .service-detail-scroll {
    gap: 16px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .service-detail-page .detail-outcomes .service-detail,
  .service-detail-page .detail-process .service-detail {
    padding: 22px;
  }

  .service-detail-page .detail-outcomes .service-detail h3,
  .service-detail-page .detail-process .service-detail h3 {
    font-size: 1.28rem;
  }

  .service-detail-page .detail-outcomes .service-detail__action,
  .service-detail-page .detail-outcomes .service-detail__action .btn-card,
  .service-detail-page .detail-process .service-detail__action,
  .service-detail-page .detail-process .detail-tag {
    width: 100%;
  }

  .service-detail-page .detail-process .service-detail:not(:last-child)::after {
    display: none;
  }
}

.service-detail-page .services-breakdown.detail-process {
  padding: clamp(84px, 8vw, 112px) var(--section-x);
}

@media (max-width: 930px) {
  .service-detail-page .services-breakdown.detail-process {
    padding: 76px var(--section-x);
  }
}

@media (max-width: 600px) {
  .service-detail-page .services-breakdown.detail-process {
    padding: 64px 16px;
  }

  .service-detail-page .detail-outcomes .service-detail,
  .service-detail-page .detail-process .service-detail {
    min-height: auto;
  }

  .service-detail-page .detail-outcomes .service-detail__content {
    gap: 14px;
  }

  .service-detail-page .detail-outcomes .outcome-list {
    gap: 10px;
  }

  .service-detail-page .detail-outcomes .outcome-list li,
  .service-detail-page .detail-outcomes .outcome-list li:nth-child(1),
  .service-detail-page .detail-outcomes .outcome-list li:nth-child(2),
  .service-detail-page .detail-outcomes .outcome-list li:nth-child(3) {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 12px 0;
    border: 0;
    border-top: 1px solid var(--color-border);
    border-radius: 0;
    background: transparent;
  }

  .service-detail-page .detail-outcomes .outcome-list li:first-child {
    border-top: 0;
  }

  .service-detail-page .detail-outcomes .outcome-list strong,
  .service-detail-page .detail-outcomes .outcome-list li:nth-child(1) strong,
  .service-detail-page .detail-outcomes .outcome-list li:nth-child(2) strong,
  .service-detail-page .detail-outcomes .outcome-list li:nth-child(3) strong {
    margin-bottom: 0;
    padding-top: 2px;
  }

  .service-detail-page .detail-process .service-detail {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .service-detail-page .detail-process .service-detail__media {
    grid-column: 1;
    grid-row: 1;
  }

  .service-detail-page .detail-process .service-detail__content {
    grid-column: 2;
    grid-row: 1;
  }

  .service-detail-page .detail-process .service-detail__action {
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) and (max-width: 930px) {
  .service-detail-page .detail-outcomes .outcome-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Sober slim premium footer */
.site-footer {
  background: var(--color-bg);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: clamp(56px, 6vw, 78px) var(--section-x) 28px;
}

.site-footer__inner,
.site-footer__bottom {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.5fr) minmax(260px, 0.78fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.site-footer__brand {
  max-width: 430px;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.site-footer__brand p,
.site-footer__cta p {
  color: rgba(248,248,255,0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.site-footer__nav {
  display: grid;
  gap: 10px;
}

.site-footer__nav a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: rgba(248,248,255,0.68);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__logo:hover,
.site-footer__logo:focus-visible {
  color: var(--color-text);
}

.site-footer__cta {
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.site-footer__cta span {
  display: block;
  margin-bottom: 10px;
  color: rgba(248,248,255,0.52);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__button {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,248,255,0.92);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 760;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: transparent;
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.26);
  color: var(--color-text);
}

.site-footer__nav a:focus-visible,
.site-footer__logo:focus-visible,
.site-footer__button:focus-visible {
  outline: 2px solid rgba(248,248,255,0.82);
  outline-offset: 3px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(34px, 5vw, 54px);
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
  color: rgba(248,248,255,0.48);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__brand {
    max-width: 620px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .site-footer__nav a {
    min-height: 44px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 48px 16px 24px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .site-footer__cta {
    padding: 20px;
  }

  .site-footer__button {
    width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }
}

/* Continuous charcoal background for areas without imagery. */
body {
  background: var(--premium-page-bg);
  background-size: var(--premium-page-bg-size);
  background-repeat: var(--premium-page-bg-repeat);
  background-position: var(--premium-page-bg-position);
  background-attachment: var(--premium-page-bg-attachment);
}

body.services-page {
  background: var(--premium-internal-bg);
  background-size: var(--premium-internal-bg-size);
  background-repeat: var(--premium-internal-bg-repeat);
  background-position: var(--premium-internal-bg-position);
  background-attachment: var(--premium-internal-bg-attachment);
}

.psl,
.features-wrapper,
.service,
.service-page__hero,
.services-page,
.services-hero,
.services-intro,
.services-breakdown,
.services-value,
.services-proof,
.detail-impact,
.service-detail-page .detail-proof,
.service-detail-page .detail-outcomes,
.service-detail-page .detail-process,
.site-footer {
  background: transparent;
}

.services-cta,
.service-detail-page .services-cta {
  background: #0d0e10;
  border-top-color: rgba(248,248,255,0.08);
  border-bottom-color: rgba(248,248,255,0.06);
  box-shadow: none;
}

/* Mobile homepage polish: keep contact and trust badges inside the viewport. */
@media (max-width: 600px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .hero {
    min-height: 76vh;
    padding: 96px var(--section-x) 118px;
  }

  .hero-trust {
    margin-top: -92px;
    padding: 0 14px 38px;
  }

  .hero-trust__inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
  }

  .hero-trust__item {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(11,11,12,0.32);
    border: 1px solid rgba(248,248,255,0.095);
  }

  .hero-trust__item strong {
    color: rgba(248,248,255,0.68);
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .hero-trust__item span {
    display: none;
  }

  .form {
    width: 100%;
    max-width: 100%;
    padding: 64px 12px;
    overflow-x: hidden;
  }

  .form__inner {
    width: 100%;
    max-width: 460px;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
    overflow: hidden;
  }

  .form__content,
  .form-wrapper,
  .form-structure,
  .small-form,
  .big-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .form__content {
    gap: 12px;
  }

  .form h2,
  .form__lead {
    text-align: left;
  }

  .form h2 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 7vw, 1.7rem);
    line-height: 1.15;
  }

  .form__lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .form__eyebrow {
    margin-bottom: 2px;
  }

  .form__highlights {
    justify-content: flex-start;
    gap: 8px;
  }

  .form__highlights li {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .form__direct {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .form__direct-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 10px 11px;
    border-radius: 8px;
  }

  .form__direct-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .form__direct-row + .form__direct-row {
    margin-top: 9px;
    padding-top: 9px;
  }

  .form__direct span {
    font-size: 0.66rem;
  }

  .form__direct strong {
    max-width: 100%;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .form-wrapper {
    padding: 16px;
    border-radius: 10px;
    box-shadow: none;
  }

  .form-structure {
    gap: 15px;
  }

  .small-form,
  .big-form {
    font-size: 0.98rem;
  }

  input,
  textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 12px;
  }

  textarea {
    min-height: 132px;
  }

  button[type="submit"],
  .btn-grad {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 4px 0 0;
    padding: 0 16px;
  }

  #status {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .services-index-page .service-route-card__actions {
    grid-template-columns: 1fr;
  }

  .navbar-container {
    grid-template-columns: minmax(0, auto) auto auto;
    gap: 8px;
    padding: 10px 12px;
  }

  .logo {
    min-width: 0;
    margin-right: 0;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar .btn-primary {
    width: auto;
    max-width: 92px;
    padding: 10px 11px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 24px;
    min-width: 24px;
  }

  .menu-toggle span {
    width: 24px;
  }
}

