/*
Theme Name: SLN Global Agency
Theme URI: https://slnglobalagency.com
Author: SLN Global Agency
Author URI: https://slnglobalagency.com
Description: Premium WordPress theme for SLN Global Agency, built for A-to-Z digital business setup services for product-based brands.
Version: 1.0.48
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sln-global-agency
Tags: custom-background, custom-logo, featured-images, responsive-layout, agency, business
*/

:root {
  --sln-deep: #031b12;
  --sln-ink: #052a1b;
  --sln-primary: #006b3f;
  --sln-forest: #075b38;
  --sln-mint: #35e6a6;
  --sln-soft-mint: #b8f7d4;
  --sln-gold: #d8b35a;
  --sln-gold-soft: rgba(216, 179, 90, 0.18);
  --sln-white: #ffffff;
  --sln-off-white: #f4fff8;
  --sln-muted: rgba(244, 255, 248, 0.72);
  --sln-dim: rgba(244, 255, 248, 0.58);
  --sln-line: rgba(184, 247, 212, 0.18);
  --sln-glass: rgba(255, 255, 255, 0.07);
  --sln-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --sln-soft-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  --sln-premium-shadow: 0 24px 72px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --sln-radius: 8px;
  --sln-max: 1180px;
  --sln-font: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--sln-deep);
  color: var(--sln-off-white);
  font-family: var(--sln-font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.hero-lead,
.section-heading p,
.page-hero p {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(53, 230, 166, 0.74);
  outline-offset: 3px;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

::selection {
  background: rgba(53, 230, 166, 0.28);
  color: var(--sln-white);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  white-space: normal;
  border: 1px solid rgba(184, 247, 212, 0.42);
  border-radius: var(--sln-radius);
  background: var(--sln-mint);
  color: #052015;
  font-weight: 850;
  box-shadow: var(--sln-soft-shadow);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  padding-top: 76px;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(53, 230, 166, 0.18), transparent 28%),
    radial-gradient(ellipse at 86% 4%, rgba(216, 179, 90, 0.10), transparent 24%),
    linear-gradient(135deg, #031b12 0%, #052a1b 48%, #02110b 100%);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(53, 230, 166, 0.055) 38%, transparent 58%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.025) 50%, transparent 100%);
  opacity: 0.72;
  mix-blend-mode: screen;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(184, 247, 212, 0.13);
  background: rgba(3, 27, 18, 0.82);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(184, 247, 212, 0.18);
  background: rgba(3, 22, 15, 0.94);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.24);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 230, 166, 0.55), rgba(216, 179, 90, 0.32), transparent);
  opacity: 0.68;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 247, 212, 0.42);
  border-radius: 50%;
  background: #06442b;
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.12), 0 14px 30px rgba(0, 0, 0, 0.26);
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.98rem;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--sln-soft-mint);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(244, 255, 248, 0.78);
  font-size: 0.91rem;
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(184, 247, 212, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--sln-white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.primary-nav a,
.primary-nav .nav-item > a {
  position: relative;
  padding: 27px 0;
  transition: color 180ms ease;
}

.primary-nav > a::after,
.primary-nav .nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--sln-mint);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .nav-item:hover > a {
  color: var(--sln-mint);
}

.primary-nav > a[href*="free-consultation"] {
  color: var(--sln-soft-mint);
}

.primary-nav > a[href*="free-consultation"]::after {
  transform: scaleX(0.42);
  opacity: 0.68;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav .nav-item:hover > a::after,
.primary-nav .nav-item > a:focus-visible::after {
  transform: scaleX(1);
}

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

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.has-submenu > a::before {
  content: "";
  order: 2;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.8;
}

.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 1001;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(184, 247, 212, 0.18);
  border-radius: 10px;
  background: rgba(3, 27, 18, 0.96);
  box-shadow: var(--sln-shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.primary-nav .submenu a {
  padding: 11px 12px;
  border-radius: var(--sln-radius);
  color: rgba(244, 255, 248, 0.78);
}

.primary-nav .submenu a::after {
  display: none;
}

.primary-nav .submenu a:hover,
.primary-nav .submenu a:focus-visible {
  background: rgba(53, 230, 166, 0.09);
  color: var(--sln-white);
}

.button,
.wp-block-button__link,
button,
input[type="submit"] {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--sln-radius);
  background: linear-gradient(135deg, var(--sln-mint), #10b878);
  color: #052015;
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 36px rgba(53, 230, 166, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before,
.wp-block-button__link::before,
button::before,
input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 255, 248, 0.18);
  box-shadow: 0 22px 52px rgba(53, 230, 166, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button:hover::before,
.button:focus-visible::before,
.wp-block-button__link:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
  transform: translateX(120%);
}

.menu-toggle::before {
  display: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--sln-off-white);
  border-color: rgba(184, 247, 212, 0.26);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(53, 230, 166, 0.58);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 68px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 247, 212, 0.26), transparent);
}

.hero-copy {
  animation: slnFadeUp 780ms ease both;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(184, 247, 212, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--sln-soft-mint);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sln-mint);
  box-shadow: 0 0 16px var(--sln-mint);
  animation: slnPulse 2.6s ease-in-out infinite;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.15vw, 4.95rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--sln-muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-note {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(184, 247, 212, 0.82);
  font-size: 0.91rem;
}

.hero-trust-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 0 0 18px;
}

.trust-pill {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 70px;
  padding: 13px 14px 13px 34px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: var(--sln-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(3, 27, 18, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.trust-pill::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sln-mint);
  box-shadow: 0 0 18px rgba(53, 230, 166, 0.72);
}

.trust-pill strong {
  color: var(--sln-white);
  font-size: 0.8rem;
  line-height: 1.2;
}

.trust-pill span {
  color: var(--sln-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: 15px 16px;
  border: 1px solid var(--sln-line);
  border-radius: var(--sln-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 230, 166, 0.45), transparent);
  opacity: 0.55;
}

.proof-card strong {
  display: block;
  color: var(--sln-white);
  margin-bottom: 6px;
  font-size: 1.24rem;
  line-height: 1;
}

.proof-card span {
  color: rgba(244, 255, 248, 0.7);
  font-size: 0.81rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: min(610px, calc(100vh - 112px));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 54px 18px 24px 34px;
  border: 1px solid rgba(184, 247, 212, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 48%),
    rgba(3, 27, 18, 0.1);
  transform: rotate(-2deg);
}

.orb-logo {
  position: absolute;
  top: 16px;
  right: 0;
  display: grid;
  place-items: center;
  width: min(405px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 247, 212, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(145deg, #0f8e58, #034629 62%, #052719);
  box-shadow:
    inset 0 5px 28px rgba(255, 255, 255, 0.13),
    inset 0 -30px 52px rgba(0, 0, 0, 0.2),
    0 48px 110px rgba(0, 0, 0, 0.48);
  animation: slnFloat 7s ease-in-out infinite;
}

.orb-logo::after {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(184, 247, 212, 0.18);
}

.orb-text {
  position: relative;
  text-align: center;
}

.orb-text strong {
  display: block;
  padding-bottom: 12px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.86);
  color: var(--sln-white);
  font-size: clamp(3.6rem, 7vw, 5.25rem);
  line-height: 0.84;
  text-shadow: 0 8px 14px rgba(0, 0, 0, 0.34);
}

.orb-text span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.43em;
  text-transform: uppercase;
}

.floating-panel {
  position: absolute;
  width: 222px;
  padding: 16px;
  border: 1px solid rgba(184, 247, 212, 0.25);
  border-radius: var(--sln-radius);
  background: rgba(4, 42, 27, 0.78);
  box-shadow: var(--sln-shadow);
  backdrop-filter: blur(16px);
  animation: slnFadeUp 900ms ease both;
}

.floating-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sln-white);
}

.floating-panel span {
  color: var(--sln-muted);
  font-size: 0.9rem;
}

.panel-one {
  left: 0;
  bottom: 126px;
  animation-delay: 240ms;
}

.panel-two {
  right: 0;
  bottom: 18px;
  animation-delay: 360ms;
}

.system-board {
  position: absolute;
  left: 40px;
  right: 34px;
  bottom: 102px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(184, 247, 212, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.86);
  box-shadow: var(--sln-shadow);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  animation: slnFloatSoft 6s ease-in-out infinite 420ms, slnFadeUp 900ms ease both;
}

.system-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(53, 230, 166, 0.28), transparent 36%, rgba(216, 179, 90, 0.18));
  opacity: 0.7;
}

.board-top,
.board-metric,
.board-flow,
.board-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.board-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 247, 212, 0.14);
}

.board-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 247, 212, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 255, 248, 0.76);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.board-top {
  margin-bottom: 16px;
  color: var(--sln-soft-mint);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(53, 230, 166, 0.16);
  color: var(--sln-white);
}

.board-metric {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.56);
}

.board-metric span {
  max-width: 190px;
  color: var(--sln-muted);
  font-size: 0.92rem;
}

.board-metric strong {
  color: var(--sln-white);
  font-size: 2.25rem;
  line-height: 1;
}

.board-flow {
  margin-bottom: 18px;
}

.board-flow span {
  flex: 1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 247, 212, 0.17);
  border-radius: 999px;
  color: rgba(244, 255, 248, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.board-flow span:hover {
  border-color: rgba(53, 230, 166, 0.5);
  background: rgba(53, 230, 166, 0.08);
  color: var(--sln-white);
}

.board-list {
  display: grid;
  gap: 9px;
}

.board-list p {
  margin-bottom: 2px;
  color: var(--sln-soft-mint);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-list div {
  justify-content: flex-start;
  color: rgba(244, 255, 248, 0.8);
  font-size: 0.9rem;
}

.board-list div span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sln-mint);
  box-shadow: 0 0 14px rgba(53, 230, 166, 0.58);
}

.brand-strip {
  border-block: 1px solid rgba(184, 247, 212, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.brand-strip strong {
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.brand-strip strong:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 230, 166, 0.36);
  color: var(--sln-white);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 86px;
}

.strip-inner span {
  color: var(--sln-soft-mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-inner strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(184, 247, 212, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 255, 248, 0.88);
  font-size: 0.88rem;
}

.conversion-audit-strip {
  border-bottom: 1px solid rgba(184, 247, 212, 0.1);
  background:
    linear-gradient(90deg, rgba(53, 230, 166, 0.08), rgba(255, 255, 255, 0.025), rgba(216, 179, 90, 0.055)),
    rgba(3, 27, 18, 0.34);
}

.audit-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-inline: 1px solid rgba(184, 247, 212, 0.1);
  background: rgba(184, 247, 212, 0.1);
}

.audit-strip-item {
  min-height: 132px;
  padding: 22px;
  background: rgba(3, 27, 18, 0.74);
}

.audit-strip-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--sln-mint);
  font-size: 0.75rem;
  font-weight: 900;
}

.audit-strip-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sln-white);
  line-height: 1.18;
}

.audit-strip-item p {
  margin-bottom: 0;
  color: var(--sln-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(184, 247, 212, 0.12), transparent);
}

.founder-section {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 86px;
  border-bottom: 1px solid rgba(184, 247, 212, 0.1);
  background:
    radial-gradient(circle at 16% 16%, rgba(53, 230, 166, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.018);
}

.founder-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(53, 230, 166, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 230, 166, 0.12), transparent 62%);
  pointer-events: none;
}

.founder-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  align-items: center;
}

.founder-media {
  position: relative;
  max-width: 390px;
}

.founder-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(53, 230, 166, 0.28);
  border-radius: 12px;
  background: rgba(53, 230, 166, 0.08);
}

.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
  border: 1px solid rgba(184, 247, 212, 0.22);
  border-radius: 12px;
  box-shadow: var(--sln-shadow);
}

.founder-badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(190px, 52%);
  padding: 14px;
  border: 1px solid rgba(184, 247, 212, 0.22);
  border-radius: 10px;
  background: rgba(3, 27, 18, 0.86);
  box-shadow: var(--sln-soft-shadow);
  backdrop-filter: blur(16px);
}

.founder-badge strong {
  display: block;
  color: var(--sln-white);
  font-size: 1.35rem;
  line-height: 1;
}

.founder-badge span {
  color: var(--sln-muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.founder-copy h2 {
  max-width: 720px;
  margin: 16px 0;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.04;
}

.founder-copy p {
  max-width: 760px;
  color: var(--sln-muted);
  font-size: 1rem;
}

.founder-role {
  color: var(--sln-soft-mint);
  font-weight: 850;
}

.founder-quote {
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--sln-mint);
  border-radius: 0 var(--sln-radius) var(--sln-radius) 0;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 255, 248, 0.86);
  font-size: 1rem;
  font-weight: 650;
}

.founder-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.founder-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.42);
  color: rgba(244, 255, 248, 0.82);
  font-size: 0.84rem;
  font-weight: 750;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.founder-points span:hover {
  border-color: rgba(53, 230, 166, 0.34);
  background: rgba(53, 230, 166, 0.08);
  transform: translateY(-2px);
}

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

.founder-metrics div {
  padding: 14px;
  border: 1px solid rgba(184, 247, 212, 0.14);
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.36);
}

.founder-metrics strong {
  display: block;
  color: var(--sln-white);
  font-size: 1.2rem;
  line-height: 1.1;
}

.founder-metrics span {
  color: var(--sln-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.page-hero {
  position: relative;
  padding: 92px 0 76px;
  border-bottom: 1px solid rgba(184, 247, 212, 0.1);
  background:
    radial-gradient(circle at 82% 14%, rgba(53, 230, 166, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 5.1vw, 4.55rem);
}

.page-snapshot {
  padding: 28px;
  border: 1px solid rgba(184, 247, 212, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.72);
  box-shadow: var(--sln-soft-shadow);
}

.page-snapshot h3 {
  margin-bottom: 18px;
  color: var(--sln-white);
}

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

.snapshot-list span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgba(184, 247, 212, 0.15);
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.42);
  color: rgba(244, 255, 248, 0.84);
  font-weight: 750;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.02));
  border-block: 1px solid rgba(184, 247, 212, 0.09);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--sln-muted);
}

.split-grid,
.package-grid,
.service-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card,
.service-card,
.package-card,
.step-card,
.why-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sln-line);
  border-radius: var(--sln-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.54);
  box-shadow: var(--sln-premium-shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card::after,
.service-card::after,
.package-card::after,
.step-card::after,
.why-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(53, 230, 166, 0.1), transparent 38%),
    linear-gradient(315deg, rgba(216, 179, 90, 0.055), transparent 46%);
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.card > *,
.service-card > *,
.package-card > *,
.step-card > *,
.why-card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.package-card:hover,
.step-card:hover,
.why-card:hover,
.card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 230, 166, 0.36);
  background:
    linear-gradient(180deg, rgba(53, 230, 166, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.66);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(53, 230, 166, 0.06) inset;
}

.service-card:hover::after,
.package-card:hover::after,
.step-card:hover::after,
.why-card:hover::after,
.card:hover::after,
.contact-card:hover::after {
  opacity: 1;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

.card {
  padding: 30px;
}

.card h3,
.service-card h3,
.package-card h3,
.step-card h3,
.why-card h3,
.contact-card h3 {
  color: var(--sln-white);
  line-height: 1.18;
}

.card p,
.service-card p,
.step-card p,
.why-card p,
.contact-card p {
  color: var(--sln-muted);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(244, 255, 248, 0.84);
  font-weight: 520;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sln-mint);
  box-shadow: 0 0 14px rgba(53, 230, 166, 0.55);
}

.service-card,
.package-card,
.step-card,
.why-card {
  padding: 26px;
  min-height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  flex: 1;
}

.service-card h3,
.package-card h3,
.step-card h3,
.why-card h3 {
  margin-bottom: 10px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--sln-radius);
  background: rgba(53, 230, 166, 0.12);
  color: var(--sln-mint);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card:hover .service-icon,
.step-card:hover .step-number {
  transform: translateY(-2px) scale(1.04);
}

.service-card small {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(184, 247, 212, 0.15);
  border-radius: 999px;
  color: var(--sln-soft-mint);
  font-size: 0.76rem;
  font-weight: 800;
}

.compact-grid .service-card {
  min-height: 160px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--sln-mint);
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-wrap {
  display: grid;
  gap: 14px;
  max-width: 1040px;
}

.legal-card {
  position: relative;
  padding: 24px;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sln-mint), rgba(53, 230, 166, 0.18));
}

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

.blog-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--sln-line);
  border-radius: var(--sln-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.54);
  box-shadow: var(--sln-premium-shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--sln-mint), rgba(216, 179, 90, 0.78), transparent);
  opacity: 0.78;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 230, 166, 0.36);
  background:
    linear-gradient(180deg, rgba(53, 230, 166, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.66);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(53, 230, 166, 0.06) inset;
}

.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.68 / 1;
  margin-bottom: 18px;
  border: 1px solid rgba(184, 247, 212, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(53, 230, 166, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(53, 230, 166, 0.14), rgba(3, 27, 18, 0.88));
  text-decoration: none;
}

.blog-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 27, 18, 0.54));
  opacity: 0.64;
  transition: opacity 180ms ease;
}

.blog-card:hover .blog-card-media::after {
  opacity: 0.38;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.blog-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.blog-card-fallback::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -36px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(53, 230, 166, 0.24);
  border-radius: 50%;
}

.blog-card-fallback strong,
.blog-card-fallback small {
  position: relative;
  z-index: 1;
}

.blog-card-fallback strong {
  max-width: 84%;
  color: var(--sln-white);
  font-size: 1.25rem;
  line-height: 1.1;
}

.blog-card-fallback small {
  color: var(--sln-soft-mint);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 12px 0 10px;
  color: var(--sln-white);
  line-height: 1.18;
}

.post-meta-line {
  margin-bottom: 12px;
  color: rgba(184, 247, 212, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.5;
}

.blog-card p {
  color: var(--sln-muted);
}

.pagination,
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.pagination .page-numbers,
.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(184, 247, 212, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 255, 248, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.pagination .page-numbers.current,
.blog-pagination .page-numbers.current,
.pagination .page-numbers:hover,
.blog-pagination .page-numbers:hover {
  border-color: rgba(53, 230, 166, 0.36);
  background: rgba(53, 230, 166, 0.16);
  color: var(--sln-white);
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 8px;
}

.single-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(184, 247, 212, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 255, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.single-content {
  line-height: 1.82;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  margin-top: 1.45em;
  margin-bottom: 0.6em;
  color: var(--sln-white);
  line-height: 1.18;
}

.single-content p,
.single-content li {
  color: rgba(234, 255, 242, 0.78);
}

.single-content a {
  color: var(--sln-mint);
  font-weight: 800;
}

.single-featured {
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: 10px;
}

.single-featured img {
  display: block;
  width: 100%;
  height: auto;
}

.article-footer {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(184, 247, 212, 0.14);
}

.article-taxonomy {
  display: grid;
  gap: 12px;
}

.article-taxonomy div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.article-taxonomy strong {
  color: var(--sln-white);
}

.article-taxonomy a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(184, 247, 212, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 255, 248, 0.8);
  font-size: 0.8rem;
  text-decoration: none;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(53, 230, 166, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(53, 230, 166, 0.12), rgba(255, 255, 255, 0.035));
}

.article-cta span {
  color: var(--sln-white);
  font-weight: 850;
}

.post-navigation-wrap {
  margin-top: 24px;
}

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

.post-navigation .nav-links {
  display: contents;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  min-width: 0;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: 10px;
  background: rgba(4, 42, 27, 0.5);
  color: var(--sln-white);
  text-decoration: none;
}

.post-navigation a span {
  color: var(--sln-soft-mint);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.post-navigation a strong {
  line-height: 1.25;
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.legal-card p {
  margin-bottom: 0;
  color: rgba(234, 255, 242, 0.76);
  line-height: 1.78;
}

.narrow-wrap {
  max-width: 760px;
}

.system-section {
  padding-top: 0;
}

.system-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 179, 90, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: var(--sln-soft-shadow);
}

.system-grid h2 {
  margin: 16px 0;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.system-grid p {
  color: var(--sln-muted);
}

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

.system-list div {
  padding: 20px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.42);
}

.system-list strong,
.system-list span {
  display: block;
}

.system-list strong {
  margin-bottom: 4px;
  color: var(--sln-white);
}

.system-list span {
  color: var(--sln-muted);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sln-mint);
  color: #052015;
  font-weight: 900;
}

.step-card {
  position: relative;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 62px;
  width: calc(100% - 74px);
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 230, 166, 0.45), transparent);
}

.package-card.featured {
  border-color: rgba(53, 230, 166, 0.6);
  background:
    linear-gradient(180deg, rgba(53, 230, 166, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(4, 42, 27, 0.82);
  transform: translateY(-10px);
  box-shadow: 0 28px 80px rgba(53, 230, 166, 0.12), var(--sln-soft-shadow);
}

.package-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(216, 179, 90, 0.13);
  color: #ffe39a;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 1.42rem;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--sln-muted);
}

.case-study {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.case-metric {
  display: grid;
  place-items: center;
  min-height: 350px;
  border-radius: var(--sln-radius);
  background:
    radial-gradient(circle at 36% 28%, rgba(53, 230, 166, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(0, 107, 63, 0.84), rgba(3, 27, 18, 0.9));
  overflow: hidden;
  position: relative;
}

.case-metric::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, transparent, rgba(53, 230, 166, 0.18), transparent 30%);
  animation: slnRotate 12s linear infinite;
}

.case-metric > div {
  position: relative;
  z-index: 1;
}

.case-metric strong {
  color: var(--sln-white);
  font-size: clamp(4.2rem, 9vw, 7.2rem);
  line-height: 1;
}

.case-metric span {
  display: block;
  max-width: 210px;
  color: var(--sln-soft-mint);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 34px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(184, 247, 212, 0.18);
  border-radius: var(--sln-radius);
  background: rgba(255, 255, 255, 0.075);
  color: var(--sln-white);
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(53, 230, 166, 0.65);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 4px rgba(53, 230, 166, 0.09);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sln-soft-mint) 50%),
    linear-gradient(135deg, var(--sln-soft-mint) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form option {
  color: #052015;
}

.premium-assurance {
  position: relative;
  overflow: hidden;
}

.premium-assurance::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(53, 230, 166, 0.06), transparent 44%),
    radial-gradient(circle at 88% 18%, rgba(216, 179, 90, 0.13), transparent 26%);
}

.assurance-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
}

.assurance-grid h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.06;
}

.assurance-grid p {
  max-width: 560px;
  color: var(--sln-muted);
}

.next-step-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

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

.next-step-card,
.faq-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--sln-line);
  border-radius: var(--sln-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.034)),
    rgba(4, 42, 27, 0.62);
  box-shadow: var(--sln-soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.next-step-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(53, 230, 166, 0.11), transparent 44%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.next-step-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 230, 166, 0.38);
  background:
    linear-gradient(180deg, rgba(53, 230, 166, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 42, 27, 0.72);
}

.next-step-card:hover::before,
.faq-card:hover::before {
  opacity: 1;
}

.next-step-card > *,
.faq-card > * {
  position: relative;
  z-index: 1;
}

.next-step-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid rgba(184, 247, 212, 0.2);
  border-radius: 50%;
  background: rgba(53, 230, 166, 0.12);
  color: var(--sln-mint);
  font-weight: 900;
}

.next-step-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  color: var(--sln-white);
  line-height: 1.18;
}

.next-step-card p,
.faq-card p {
  margin-bottom: 0;
  color: var(--sln-muted);
}

.faq-card h3 {
  font-size: 1.05rem;
}

.consultation-system {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 10% 8%, rgba(53, 230, 166, 0.15), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.consultation-copy h2 {
  margin: 16px 0;
  font-size: clamp(2.05rem, 3.7vw, 3.25rem);
  line-height: 1.04;
}

.consultation-copy > p {
  max-width: 920px;
  color: var(--sln-muted);
  font-size: 1.02rem;
}

.consultation-review-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 940px;
  margin-top: 18px;
}

.consultation-review-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 255, 248, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
}

.consultation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.consultation-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.42);
}

.consultation-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(53, 230, 166, 0.13);
  color: var(--sln-mint);
  font-weight: 900;
}

.consultation-steps strong {
  color: var(--sln-white);
  line-height: 1.2;
}

.consultation-steps p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--sln-muted);
  font-size: 0.92rem;
}

.lead-system-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  width: min(100%, 1080px);
  margin-inline: auto;
  border: 1px solid rgba(184, 247, 212, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.036)),
    rgba(4, 42, 27, 0.78);
  box-shadow: var(--sln-shadow);
}

.lead-system-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--sln-mint), rgba(216, 179, 90, 0.72), transparent);
  opacity: 0.82;
}

.lead-system-panel::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -150px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border: 1px solid rgba(53, 230, 166, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 230, 166, 0.14), transparent 62%);
}

.lead-system-panel > * {
  position: relative;
  z-index: 1;
}

.lead-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lead-panel-head span {
  color: var(--sln-soft-mint);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-panel-head strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(53, 230, 166, 0.14);
  color: var(--sln-white);
  font-size: 0.78rem;
}

.lead-service-intro {
  max-width: 720px;
  margin-bottom: 18px;
}

.lead-service-intro .eyebrow {
  min-height: 28px;
  margin-bottom: 12px;
  font-size: 0.68rem;
}

.lead-service-intro h3 {
  margin-bottom: 7px;
  color: var(--sln-white);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.15;
}

.lead-service-intro p {
  margin-bottom: 0;
  color: var(--sln-muted);
  font-size: 0.92rem;
}

.lead-language-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin-bottom: 16px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: 999px;
  background: rgba(3, 27, 18, 0.38);
}

.lead-language-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--sln-muted);
  box-shadow: none;
  font-size: 0.8rem;
}

.lead-language-flag {
  font-size: 1rem;
  line-height: 1;
}

.lead-language-option.is-active {
  background: var(--sln-mint);
  color: #052015;
}

.lead-service-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.lead-service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 112px;
  justify-content: start;
  align-content: start;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: var(--sln-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(3, 27, 18, 0.45);
  color: var(--sln-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lead-service-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 230, 166, 0.36), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lead-language-option::before {
  display: none;
}

.lead-service-card::before {
  display: none;
}

.lead-service-card span {
  font-weight: 850;
  line-height: 1.18;
  font-size: 0.92rem;
}

.lead-service-card small {
  color: var(--sln-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.lead-service-card.is-selected,
.lead-service-card:hover,
.lead-service-card:focus-visible {
  border-color: rgba(53, 230, 166, 0.55);
  background:
    linear-gradient(145deg, rgba(53, 230, 166, 0.18), rgba(255, 255, 255, 0.025)),
    rgba(5, 71, 45, 0.62);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.lead-service-card.is-selected::after,
.lead-service-card:hover::after,
.lead-service-card:focus-visible::after {
  opacity: 1;
}

.lead-service-card:focus-visible,
.lead-language-option:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(53, 230, 166, 0.62);
  outline-offset: 3px;
}

.lead-selected-service {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 247, 212, 0.14);
  border-radius: var(--sln-radius);
  background: rgba(3, 27, 18, 0.42);
  color: var(--sln-soft-mint);
  font-size: 0.88rem;
  font-weight: 750;
}

.lead-form-section-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  color: rgba(244, 255, 248, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form-section-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sln-mint);
  box-shadow: 0 0 14px rgba(53, 230, 166, 0.56);
}

.lead-system-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin-inline: auto;
}

.lead-system-form textarea,
.lead-system-form button,
.lead-dynamic-fields {
  grid-column: 1 / -1;
}

.lead-dynamic-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(184, 247, 212, 0.12);
}

.lead-dynamic-fields[hidden] {
  display: none;
}

.lead-dynamic-fields textarea {
  grid-column: 1 / -1;
}

.lead-system-form textarea {
  min-height: 92px;
}

.lead-dynamic-fields textarea {
  min-height: 86px;
}

.lead-system-note {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(184, 247, 212, 0.8);
  font-size: 0.88rem;
  text-align: center;
}

.lead-success-message,
.lead-status-message {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(53, 230, 166, 0.45);
  border-radius: var(--sln-radius);
  background: rgba(53, 230, 166, 0.12);
  color: var(--sln-soft-mint);
}

.lead-success-message strong,
.lead-status-message strong {
  color: var(--sln-white);
}

.lead-status-message.is-error {
  border-color: rgba(255, 133, 133, 0.42);
  background: rgba(255, 133, 133, 0.1);
  color: rgba(255, 238, 238, 0.82);
}

.lead-status-message.is-error strong {
  color: #ffe2e2;
}

.lead-thank-you {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(53, 230, 166, 0.4);
  border-radius: var(--sln-radius-lg);
  background:
    radial-gradient(circle at 18% 20%, rgba(53, 230, 166, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(10, 71, 48, 0.96), rgba(2, 40, 28, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.lead-thank-you::before {
  content: "";
  width: 62px;
  height: 62px;
  border: 1px solid rgba(53, 230, 166, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(53, 230, 166, 0.95), rgba(18, 185, 120, 0.86)),
    var(--sln-accent);
  box-shadow: 0 16px 40px rgba(53, 230, 166, 0.24);
}

.lead-thank-you::after {
  content: "";
  position: absolute;
  top: 45px;
  left: clamp(48px, 4vw, 66px);
  width: 22px;
  height: 12px;
  border-left: 5px solid rgba(1, 35, 24, 0.92);
  border-bottom: 5px solid rgba(1, 35, 24, 0.92);
  transform: rotate(-45deg);
}

.lead-thank-you .eyebrow {
  width: max-content;
}

.lead-thank-you h3 {
  max-width: 820px;
  margin: 0;
  color: var(--sln-white);
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.03;
}

.lead-thank-you p {
  max-width: 780px;
  margin: 0;
  color: rgba(234, 255, 242, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.lead-thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lead-thank-you-steps span {
  min-height: 62px;
  padding: 18px;
  border: 1px solid rgba(184, 247, 212, 0.16);
  border-radius: var(--sln-radius);
  background: rgba(1, 35, 24, 0.46);
  color: var(--sln-soft-mint);
  font-weight: 900;
}

.lead-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-system-form.is-submitting button[type="submit"] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.lead-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes slnFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slnFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes slnFloatSoft {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes slnPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.82);
  }
}

@keyframes slnRotate {
  to {
    transform: rotate(1turn);
  }
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244, 255, 248, 0.52);
}

.site-footer {
  padding: 58px 0 24px;
  border-top: 1px solid rgba(184, 247, 212, 0.12);
  color: rgba(244, 255, 248, 0.66);
  background:
    linear-gradient(180deg, rgba(53, 230, 166, 0.035), transparent 34%),
    radial-gradient(circle at 12% 0%, rgba(53, 230, 166, 0.13), transparent 24%),
    rgba(2, 17, 11, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(160px, 0.7fr)) minmax(260px, 1fr);
  gap: 34px;
  padding-bottom: 38px;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--sln-muted);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(53, 230, 166, 0.36);
  border-radius: 999px;
  background: rgba(53, 230, 166, 0.11);
  color: var(--sln-white);
  font-size: 0.82rem;
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  border-color: rgba(53, 230, 166, 0.66);
  background: rgba(53, 230, 166, 0.18);
  transform: translateY(-1px);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--sln-white);
  font-size: 1rem;
}

.footer-col a {
  color: rgba(244, 255, 248, 0.72);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--sln-mint);
  transform: translateX(2px);
}

.footer-contact p {
  margin-bottom: 8px;
  color: var(--sln-muted);
  line-height: 1.55;
}

.footer-contact strong {
  color: var(--sln-white);
}

.footer-contact a {
  color: rgba(244, 255, 248, 0.82);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 247, 212, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(244, 255, 248, 0.7);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sln-mint);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(184, 247, 212, 0.16);
    border-radius: 10px;
    background: rgba(3, 27, 18, 0.98);
    box-shadow: var(--sln-shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a,
  .primary-nav .nav-item > a {
    width: 100%;
    padding: 13px 12px;
    border-radius: var(--sln-radius);
  }

  .primary-nav > a[href*="free-consultation"] {
    background: rgba(53, 230, 166, 0.1);
    color: var(--sln-white);
  }

  .primary-nav > a::after,
  .primary-nav .nav-item > a::after {
    display: none;
  }

  .nav-item {
    display: grid;
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav .submenu a {
    padding: 10px 12px;
    color: rgba(244, 255, 248, 0.66);
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .founder-grid,
  .case-study,
  .contact-band,
  .assurance-grid,
  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-trust-dock {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 620px;
  }

  .service-grid,
  .package-grid,
  .why-grid,
  .blog-grid,
  .faq-grid,
  .system-grid,
  .audit-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .next-step-grid {
    grid-template-columns: 1fr;
  }

  .lead-system-form {
    grid-template-columns: 1fr;
  }

  .lead-dynamic-fields {
    grid-template-columns: 1fr;
  }

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

  .step-card::before {
    display: none;
  }

  .package-card.featured {
    transform: none;
  }

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

  .founder-media {
    max-width: 340px;
  }

  .founder-badge {
    right: -10px;
  }
}

@media (max-width: 640px) {
  body.admin-bar .site-header {
    top: 0;
  }

  .site-shell {
    padding-top: 68px;
  }

  .sln-container {
    width: min(100% - 28px, var(--sln-max));
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner .button {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust-dock {
    grid-template-columns: 1fr;
  }

  .trust-pill {
    min-height: 62px;
  }

  .hero-proof,
  .founder-points,
  .founder-metrics,
  .service-grid,
  .package-grid,
  .why-grid,
  .blog-grid,
  .faq-grid,
  .process-track,
  .audit-strip-grid,
  .lead-service-picker {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 670px;
  }

  .single-meta {
    gap: 7px;
  }

  .single-meta span {
    min-height: 30px;
    font-size: 0.74rem;
  }

  .article-cta,
  .post-navigation {
    grid-template-columns: 1fr;
  }

  .article-cta .button {
    width: 100%;
  }

  .orb-logo {
    right: 50%;
    transform: translateX(50%);
    width: min(300px, 86vw);
  }

  .floating-panel {
    width: min(230px, 78vw);
  }

  .panel-one {
    left: 0;
    bottom: 82px;
  }

  .panel-two {
    right: 0;
    bottom: 0;
  }

  .system-board {
    left: 0;
    right: 0;
    bottom: 158px;
    padding: 16px;
  }

  .board-flow {
    flex-wrap: wrap;
  }

  .board-flow span {
    flex: 1 1 40%;
  }

  .strip-inner {
    justify-content: flex-start;
    padding: 18px 0;
  }

  .system-grid {
    padding: 22px;
  }

  .section {
    padding: 70px 0;
  }

  .page-hero {
    padding: 58px 0 54px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .consultation-system {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .consultation-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .consultation-copy > p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .consultation-review-points {
    gap: 8px;
  }

  .consultation-review-points span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .consultation-steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .consultation-steps article {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    min-width: 0;
    padding: 16px;
  }

  .consultation-steps span {
    grid-row: span 2;
  }

  .consultation-steps strong {
    font-size: 1.02rem;
  }

  .consultation-steps p {
    grid-column: 2;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .lead-system-panel {
    padding: 18px;
  }

  .lead-panel-head {
    align-items: start;
    flex-direction: column;
  }

  .lead-panel-head strong {
    width: max-content;
    max-width: 100%;
  }

  .lead-thank-you {
    gap: 16px;
    padding: 24px 18px;
  }

  .lead-thank-you::before {
    width: 54px;
    height: 54px;
  }

  .lead-thank-you::after {
    top: 39px;
    left: 39px;
    width: 20px;
    height: 10px;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }

  .lead-thank-you h3 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  .lead-thank-you p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .lead-thank-you-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lead-thank-you-steps span {
    min-height: 52px;
    padding: 14px 16px;
  }

  .lead-thank-you-actions .button {
    width: 100%;
  }

  .section-heading h2,
  .system-grid h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

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

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