/* ── Fonts ── */
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-200.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-800.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ploni';
  src: url('assets/fonts/ploni-900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Design tokens ── */
:root {
  --black: #060606;
  --surface: #0c0c0a;
  --surface-2: #111110;
  --surface-3: #171715;
  --white: #f4f4f1;
  --muted: #c4c3bc;
  --muted-2: #9a9990;
  --blue: #0dadf2;
  --blue-bright: #3ec4ff;
  --blue-dark: #0992ce;
  --blue-dim: rgba(13, 173, 242, 0.1);
  --blue-glow: rgba(13, 173, 242, 0.18);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 80px rgba(13, 173, 242, 0.12);
  --container: min(1200px, calc(100% - 3rem));
  --nav-h: 76px;
  --section-pad: 4.25rem;
  --section-pad-compact: 2.5rem;
  --section-head-gap: 2rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}

body {
  font-family: 'Ploni', sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--white);
  direction: rtl;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: #001018;
  box-shadow: 0 12px 40px rgba(13, 173, 242, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(13, 173, 242, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 28px rgba(13, 173, 242, 0.22);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 173, 242, 0.45);
  color: var(--blue-bright);
  background: rgba(13, 173, 242, 0.05);
}

.btn-ghost:active {
  transform: translateY(0);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

.nav.scrolled {
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img {
  display: block;
  height: 36px;
  width: auto;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  background: var(--blue);
  color: #001018;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 173, 242, 0.3);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 190;
  background: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(24px);
  padding: 2rem 1.5rem 6rem;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero ── */
.hero {
  min-height: auto;
  padding: calc(var(--nav-h) + 2.5rem) 0 2.75rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-layout {
  width: var(--container);
  margin-inline: auto;
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.9rem 0.45rem 0.75rem;
  border: 1px solid rgba(13, 173, 242, 0.2);
  border-radius: 999px;
  background: rgba(13, 173, 242, 0.06);
  max-width: 100%;
  line-height: 1.5;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  flex-shrink: 0;
}

h1 {
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

h1 em {
  color: var(--blue);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* Cert badges (About section) */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.74rem;
  font-weight: 500;
  white-space: nowrap;
}

.cert-badge img {
  width: auto;
  height: 26px;
  border-radius: 4px;
  object-fit: contain;
}

/* ── Sections ── */
section {
  padding: var(--section-pad) 0;
}

.section-alt {
  position: relative;
  isolation: isolate;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-alt > * {
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: var(--section-head-gap);
}

.section-head.center {
  text-align: center;
}

.section-head.center .sec-sub {
  margin-inline: auto;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.sec-label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--border-strong);
}

.section-head.center .sec-label::after {
  display: none;
}

h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

h2 span {
  color: var(--blue);
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.8;
}

/* ── Process ── */
.process-block {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-step {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(13, 173, 242, 0.08);
  line-height: 1;
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-dim);
  border: 1px solid rgba(13, 173, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Reviews ── */
.reviews-google {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.reviews-score {
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}

.reviews-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #fbbc04;
}

.reviews-count {
  font-size: 0.82rem;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.review-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #fbbc04;
}

.review-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.review-author {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted-2);
  white-space: nowrap;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.review-card--compact {
  padding: 1.25rem 1.5rem;
}

.review-text--rating-only,
.review-text--tags {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.review-text--rating-only {
  color: var(--muted-2);
  font-style: italic;
}

.review-tag-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-left: 0.35rem;
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── About ── */
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 4rem;
  align-items: center;
}

.about-layout--solo {
  grid-template-columns: 1fr;
  max-width: 42rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text .sec-sub {
  margin-bottom: 1.75rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.about-point svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface-2);
  line-height: 0;
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.about-intro {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

/* ── Contact & lead form ── */
#contact .section-head {
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 300px);
  gap: 2rem;
  max-width: 920px;
  margin-inline: auto;
  align-items: start;
}

.lead-form {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-align: right;
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ig-handle {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted-2);
  margin: -0.15rem 0 0.45rem;
  line-height: 1.5;
}

.form-field input:not([type="radio"]):not([type="checkbox"]),
.form-field select {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder {
  color: var(--muted-2);
}

html[dir="rtl"] .form-field input[type="tel"] {
  direction: ltr;
  text-align: right;
}

html[dir="ltr"] .form-field input[type="tel"] {
  text-align: left;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(13, 173, 242, 0.45);
  box-shadow: 0 0 0 3px rgba(13, 173, 242, 0.1);
}

.form-field input:not([type="radio"]):not([type="checkbox"]).invalid,
.form-field select.invalid {
  border-color: rgba(255, 90, 90, 0.55);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  text-align: start;
  padding-inline: 1rem 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c4c3bc' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
}

html[dir="ltr"] .form-field select {
  background-position: right 1rem center;
}

.form-field select:invalid {
  color: var(--muted-2);
}

.form-field select option {
  background: var(--surface-2);
  color: var(--white);
}

.form-field select option[value=""] {
  color: var(--muted-2);
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: 0.35rem;
  min-height: 1em;
}

.lead-form__honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-form__submit {
  width: 100%;
}

.lead-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.lead-form__note {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 0.75rem;
}

.lead-form__success,
.lead-form__error {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lead-form__success {
  background: rgba(13, 173, 242, 0.08);
  border: 1px solid rgba(13, 173, 242, 0.25);
  color: var(--blue-bright);
}

.lead-form__success svg {
  flex-shrink: 0;
  color: var(--blue);
}

.lead-form__error {
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.25);
  color: #ff8a8a;
}

.lead-form__error svg {
  flex-shrink: 0;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-aside .loc-badge {
  margin-bottom: 0;
}

.contact-aside .methods {
  margin: 0;
}

/* ── Services ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.svc-card {
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card:not(.tilt-card):hover,
.svc-card.tilt-card:hover {
  border-color: rgba(13, 173, 242, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.svc-img {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  flex-shrink: 0;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.svc-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.svc-card:hover .svc-img img {
  transform: scale(1.05);
}

.svc-body {
  padding: 1.5rem 1.75rem 1.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-dim);
  border: 1px solid rgba(13, 173, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.15rem;
}

.svc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(13, 173, 242, 0.1);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.svc-name {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.svc-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-price {
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--blue);
}

.svc-price small,
.svc-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted-2);
  margin-inline-start: 0.35rem;
}

.svc-body .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.svc-note {
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 0.35rem;
}

.mem-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.mem-head,
.mem-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1rem 1.75rem;
}

.mem-head {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.mem-head span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.mem-head span:not(:first-child) {
  text-align: center;
}

.mem-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.mem-row:last-child {
  border-bottom: none;
}

.mem-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.mem-name {
  font-size: 0.95rem;
}

.mem-price {
  text-align: center;
  font-weight: 700;
  color: var(--blue);
}

.mem-mo {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Pricing tiers ── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.tier {
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out);
}

.tier:hover {
  transform: translateY(-4px);
}

.tier.pop {
  border-color: rgba(13, 173, 242, 0.45);
  box-shadow: 0 0 0 1px rgba(13, 173, 242, 0.15), 0 24px 80px rgba(13, 173, 242, 0.08);
  transform: scale(1.02);
}

.tier.pop:hover {
  transform: scale(1.02) translateY(-4px);
}

.tier-bar {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  color: #001018;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.45rem;
  letter-spacing: 0.05em;
}

.tier-inner {
  padding: 1.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.35rem;
}

.tier-name {
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.tier-price {
  font-weight: 900;
  font-size: 2.35rem;
  color: var(--blue);
  line-height: 1;
}

.tier-note {
  font-size: 0.73rem;
  color: var(--muted-2);
  margin: 0.35rem 0 1.25rem;
}

.t-div {
  height: 1px;
  background: var(--border);
  margin-bottom: 1rem;
}

.tf {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0;
  line-height: 1.45;
}

.tf .y {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.tf .n {
  color: var(--muted-2);
  flex-shrink: 0;
}

.tf.dim {
  color: var(--muted-2);
}

.tf.special {
  color: var(--blue);
  font-size: 0.82rem;
}

.tier-cta {
  display: block;
  text-align: center;
  margin-top: auto;
  padding-top: 1.5rem;
  padding: 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.tier-cta.out {
  border: 1px solid var(--border-strong);
  color: var(--white);
}

.tier-cta.out:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.tier-cta.fill {
  background: var(--blue);
  color: #001018;
}

.tier-cta.fill:hover {
  background: var(--blue-bright);
}

/* ── Consult ── */
.svc-card--text .svc-body {
  min-height: 100%;
}

.svc-card--text .svc-desc {
  flex: 1;
}

.svc-card--text .svc-price {
  margin-top: 0.5rem;
}

.consult-options .svc-card--text .svc-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.consult-info {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.consult-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.consult-info__block h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.consult-info__list {
  margin: 0;
  padding-inline-start: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.consult-info__list li + li {
  margin-top: 0.35rem;
}

.consult-info__list--steps li::marker {
  color: var(--blue);
  font-weight: 700;
}

.consult-info__note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(13, 173, 242, 0.05);
  border: 1px solid rgba(13, 173, 242, 0.15);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.free-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.free-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.free-val {
  font-weight: 700;
  color: var(--blue);
}

.paid-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 1.25rem 0 0.75rem;
}

.opt {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
  transition: border-color 0.2s, background 0.2s;
}

.opt:hover,
.opt.hl {
  border-color: rgba(13, 173, 242, 0.3);
  background: rgba(13, 173, 242, 0.04);
}

.opt-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.opt-dur {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.opt-price {
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap;
}

.offset-note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(13, 173, 242, 0.05);
  border: 1px solid rgba(13, 173, 242, 0.15);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Contact (legacy card — unused) ── */
.contact-card {
  max-width: 560px;
  margin-inline: auto;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.methods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 2rem 0;
}

.method {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  text-align: right;
}

.method:hover {
  border-color: rgba(13, 173, 242, 0.3);
  transform: translateX(-4px);
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-dim);
  border: 1px solid rgba(13, 173, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.method-lbl {
  font-size: 0.73rem;
  color: var(--muted);
}

.method-val {
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-card .btn-primary {
  width: 100%;
}

/* ── Final CTA ── */
.final-cta {
  padding: 2.5rem 0 3rem;
}

.final-cta-box {
  width: var(--container);
  margin-inline: auto;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(13, 173, 242, 0.12) 0%, transparent 60%),
    var(--surface-2);
  border: 1px solid rgba(13, 173, 242, 0.2);
}

.final-cta-box h2 {
  margin-bottom: 0.75rem;
}

.final-cta-box p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* ── Footer ── */
footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Mobile sticky CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.mobile-sticky-cta .btn-primary {
  width: 100%;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Motion & effects ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 300;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: right center;
  will-change: transform;
}

.page-shell {
  display: block;
}

.desk-sidebar {
  display: none;
}

body:not(.is-loaded) .hero-seq {
  opacity: 0;
  transform: translateY(22px);
}

body.is-loaded .hero-seq {
  animation: heroSeqIn 0.75s var(--ease-out) forwards;
  animation-delay: calc(0.55s + var(--seq-i, 0) * 0.1s);
}

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

/* Split typography */
.split-heading .split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.85em);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: calc(var(--w-i, 0) * 0.04s);
}

.split-heading--visible .split-word {
  opacity: 1;
  transform: translateY(0);
}

.split-heading em .split-word,
.split-heading span .split-word {
  color: inherit;
}

/* Tilt cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}

.tier.pop.tilt-card {
  transform: scale(1.02);
}

.tier.pop.tilt-card:hover {
  transform: scale(1.02) perspective(800px) rotateY(0) rotateX(0) translateY(-4px);
}

/* ── Responsive ── */
@media (min-width: 1600px) {
  .desk-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: fixed;
    top: calc(var(--nav-h) + 1.5rem);
    inset-inline-start: max(1rem, calc((100vw - min(1200px, 100% - 3rem)) / 2 - 11.5rem));
    width: 10.5rem;
    z-index: 40;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .desk-sidebar__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    line-height: 1.35;
    padding: 0.8rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: #001018;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(13, 173, 242, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .desk-sidebar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(13, 173, 242, 0.35);
  }

  .desk-sidebar__cta:active {
    transform: translateY(0);
  }

  .desk-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 0 0;
    margin: 0;
    border-top: 1px solid var(--border);
  }

  .desk-sidebar__nav a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }

  .desk-sidebar__nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
  }

  .desk-sidebar__nav a.active {
    color: var(--blue-bright);
    background: rgba(13, 173, 242, 0.1);
  }
}

@media (min-width: 1280px) and (max-width: 1599px) {
  .desk-sidebar {
    display: none;
  }
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

  .about-photo {
    max-width: 360px;
    margin-inline: auto;
  }

  .cert-row {
    gap: 0.5rem;
  }

  .cert-badge {
    font-size: 0.7rem;
    padding: 0.55rem 0.75rem;
  }

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

  .tier.pop {
    transform: none;
  }

  .tier.pop:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(1200px, calc(100% - 2rem));
    --nav-h: 68px;
  }

  :root {
    --section-pad: 3rem;
    --section-pad-compact: 2rem;
    --section-head-gap: 1.5rem;
  }

  section {
    padding: var(--section-pad) 0;
  }

  .nav-links,
  .nav-actions .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: calc(var(--nav-h) + 1.5rem) 0 2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    margin-bottom: 1.1rem;
  }

  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
  }

  .hero-actions {
    margin-bottom: 0.75rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 11rem);
    justify-content: center;
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .process-grid,
  .svc-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .mem-head,
  .mem-row {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 5rem;
  }
}

/* ── Language toggle ── */
.lang-toggle {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-toggle:hover {
  color: var(--white);
  border-color: rgba(13, 173, 242, 0.35);
}

html[dir="ltr"] body {
  direction: ltr;
}

html[dir="ltr"] .lead-form,
html[dir="ltr"] .method,
html[dir="ltr"] .form-field select {
  text-align: left;
}

html[dir="ltr"] .form-field select {
  background-position: right 1rem center;
  padding-right: 2.25rem;
  padding-left: 1rem;
}

html[dir="ltr"] .method:hover {
  transform: translateX(4px);
}

html[dir="ltr"] .process-step::before {
  left: auto;
  right: 1.25rem;
}

/* ── Tier SLA ── */
.tier-sla {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.tier-sla__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tier-sla__list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.tier-sla__list strong {
  color: var(--blue);
  font-weight: 600;
}

/* ── Market comparison table ── */
.compare-wrap {
  max-width: 920px;
  margin-inline: auto;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 173, 242, 0.5) rgba(255, 255, 255, 0.06);
}

.compare-scroll::-webkit-scrollbar {
  height: 8px;
}

.compare-scroll::-webkit-scrollbar-track {
  margin: 0 0.5rem 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.compare-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(13, 173, 242, 0.35), rgba(13, 173, 242, 0.65));
  border-radius: 999px;
}

.compare-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(13, 173, 242, 0.75);
}

.compare-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.82rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.35;
  white-space: normal;
  min-width: 5.5rem;
  max-width: 8.5rem;
}

.compare-table__feature,
.compare-table tbody th[scope="row"] {
  position: sticky;
  inset-inline-end: 0;
  z-index: 2;
  min-width: 7.25rem;
  max-width: 9rem;
  text-align: start;
  font-weight: 600;
  color: var(--white);
  background: var(--surface-2);
  box-shadow: -8px 0 16px rgba(6, 6, 6, 0.55);
}

.compare-table thead .compare-table__feature {
  z-index: 3;
  color: var(--muted);
  font-weight: 700;
  background: var(--surface-3);
  box-shadow: -8px 0 16px rgba(6, 6, 6, 0.55);
}

html[dir="ltr"] .compare-table__feature,
html[dir="ltr"] .compare-table tbody th[scope="row"] {
  box-shadow: 8px 0 16px rgba(6, 6, 6, 0.55);
}

.compare-table__us {
  background: rgba(13, 173, 242, 0.06);
  border-inline-start: 2px solid rgba(13, 173, 242, 0.35);
}

.compare-table thead .compare-table__us {
  color: var(--blue-bright);
  background: rgba(13, 173, 242, 0.12);
  font-weight: 800;
  min-width: 6.5rem;
}

.compare-yes {
  color: var(--blue);
  font-weight: 700;
}

.compare-no {
  color: var(--muted-2);
}

.compare-partial {
  color: var(--muted);
  font-size: 0.78rem;
}

.compare-note {
  font-size: 0.75rem;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.compare-highlight {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 173, 242, 0.2);
  background: rgba(13, 173, 242, 0.05);
}

.compare-highlight p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.25rem;
  line-height: 1.75;
}

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

/* ── Problem section ── */
.section-compact {
  padding: var(--section-pad-compact) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.problem-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-dim);
  border: 1px solid rgba(13, 173, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}

.problem-icon svg {
  display: block;
  flex-shrink: 0;
}

.problem-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.about-mission {
  margin-bottom: 1rem;
}

.about-story {
  margin-bottom: 0;
}

/* ── Foundation ── */
.foundation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.foundation-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid rgba(13, 173, 242, 0.25);
  box-shadow: 0 0 0 1px rgba(13, 173, 242, 0.08), var(--shadow-glow);
}

.foundation-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.foundation-card__name {
  font-weight: 900;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.foundation-card__amount {
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
  display: block;
}

.foundation-card__note {
  font-size: 0.72rem;
  color: var(--muted-2);
  display: block;
  margin-top: 0.25rem;
}

.foundation-includes {
  margin-bottom: 1rem;
}

.foundation-credit {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(13, 173, 242, 0.05);
  border: 1px solid rgba(13, 173, 242, 0.12);
  margin-bottom: 1.25rem;
}

.foundation-card__cta {
  width: 100%;
}

.foundation-compare {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.foundation-compare summary {
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  transition: color 0.2s, background 0.2s;
}

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

.foundation-compare summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.foundation-compare[open] summary::after {
  transform: rotate(45deg);
}

.foundation-compare summary:hover {
  color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.02);
}

.foundation-compare[open] summary {
  border-bottom: 1px solid var(--border);
}

.foundation-compare__body {
  padding: 1.35rem 1.25rem 1.5rem;
  animation: foundation-compare-in 0.35s var(--ease-out) both;
}

.foundation-compare__sub {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

@keyframes foundation-compare-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.foundation-timeline {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.foundation-timeline__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.foundation-tab {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.foundation-tab:hover {
  border-color: rgba(13, 173, 242, 0.3);
  color: var(--white);
}

.foundation-tab.active {
  background: var(--blue-dim);
  border-color: rgba(13, 173, 242, 0.4);
  color: var(--blue-bright);
}

.foundation-panel h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.foundation-panel p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.foundation-panel[hidden] {
  display: none;
}

/* Foundation sticky bar */
.foundation-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 175;
  padding: 0.75rem 1rem;
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(13, 173, 242, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}

.foundation-sticky.visible {
  transform: translateY(0);
}

.foundation-sticky__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.foundation-sticky__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.foundation-sticky__link {
  font-size: 0.82rem;
  color: var(--blue);
  text-decoration: none;
}

.foundation-sticky__link:hover {
  text-decoration: underline;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
}

body.has-foundation-sticky {
  padding-bottom: 4.5rem;
}

/* ── Instagram ── */
.instagram-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.instagram-wrap pane-widget {
  display: block;
  min-height: 0;
}

.instagram-fallback__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.instagram-fallback__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
}

.instagram-fallback__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.instagram-fallback__item:hover img {
  transform: scale(1.05);
}

.instagram-wrap {
  text-align: center;
}

.instagram-fallback .btn {
  margin-inline: auto;
}

/* Hide fallback when Pane widget loads with valid feed */
.instagram-wrap:has(pane-widget:not(:empty)) .instagram-fallback {
  display: none;
}

.svc-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.svc-card--split {
  flex-direction: row;
  align-items: stretch;
  direction: ltr;
}

html[dir="rtl"] .svc-card--split .svc-body {
  direction: rtl;
}

html[dir="ltr"] .svc-card--split .svc-body {
  direction: ltr;
}

.svc-card--split .svc-photo {
  flex: 0 0 42%;
  width: 42%;
  margin: 0;
  border: none;
  border-radius: 0;
  border-inline-end: 1px solid var(--border);
  line-height: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card--split .svc-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.svc-card--split .svc-body {
  flex: 1;
  min-width: 0;
}

/* ── Service switcher (below hero) ── */
.service-switcher {
  padding-block: 1rem 1.5rem;
  position: relative;
  z-index: 2;
}

.service-switcher__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
}

.service-switcher__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.3rem;
  width: min(100%, 400px);
  margin-inline: auto;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  isolation: isolate;
  --pill-col: 1;
}

.service-switcher__pill {
  grid-row: 1;
  grid-column: var(--pill-col);
  align-self: stretch;
  justify-self: stretch;
  margin: 0;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 4px 22px var(--blue-glow);
  pointer-events: none;
  z-index: 0;
  transition: grid-column 0.28s var(--ease-out);
}

.service-switcher__btn {
  grid-row: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.7rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  transition: color 0.2s var(--ease-out);
}

.service-switcher__btn[data-service="online"] {
  grid-column: 1;
}

.service-switcher__btn[data-service="inperson"] {
  grid-column: 2;
}

.service-switcher__btn[data-service="consult"] {
  grid-column: 3;
}

.service-switcher__btn:hover:not(.is-active) {
  color: var(--white);
}

.service-switcher__btn.is-active {
  color: var(--black);
}

.service-switcher__btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

/* ── Service panel (swappable content below switcher) ── */
.service-panel {
  position: relative;
}

.service-panel__view {
  display: none;
}

body[data-active-service="online"] .service-panel__view[data-service="online"],
body[data-active-service="inperson"] .service-panel__view[data-service="inperson"],
body[data-active-service="consult"] .service-panel__view[data-service="consult"] {
  display: block;
}

.service-panel.is-crossfading {
  overflow: hidden;
  transition: height 0.28s var(--ease-out);
}

.service-panel.is-crossfading .service-panel__view.is-exiting,
.service-panel.is-crossfading .service-panel__view.is-entering {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}

.service-panel.is-crossfading .service-panel__view.is-exiting {
  opacity: 1;
  z-index: 1;
}

.service-panel.is-crossfading .service-panel__view.is-exiting.is-faded {
  opacity: 0;
}

.service-panel.is-crossfading .service-panel__view.is-entering {
  opacity: 0;
  z-index: 2;
}

.service-panel.is-crossfading .service-panel__view.is-entering.is-faded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .service-switcher__pill,
  .service-panel.is-crossfading,
  .service-panel.is-crossfading .service-panel__view.is-exiting,
  .service-panel.is-crossfading .service-panel__view.is-entering {
    transition: none;
  }
}

body[data-active-service="online"] .desk-sidebar__nav a[data-service-only]:not([data-service-only="online"]),
body[data-active-service="inperson"] .desk-sidebar__nav a[data-service-only]:not([data-service-only="inperson"]),
body[data-active-service="consult"] .desk-sidebar__nav a[data-service-only]:not([data-service-only="consult"]) {
  display: none;
}

body:not([data-active-service="online"]) .foundation-sticky {
  display: none !important;
}

body:not([data-active-service="online"]).has-foundation-sticky {
  padding-bottom: 0;
}

/* ── Service paths hub (legacy) ── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 960px) {
  .paths-grid {
    grid-template-columns: 1fr;
  }
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.path-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.path-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.path-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.path-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.path-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.25rem;
}

.path-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.path-card:hover .path-card__cta {
  color: var(--accent);
}

/* ── Subpages ── */
.subpage-hero {
  padding: 7rem 0 2rem;
}

.subpage-back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.subpage-back:hover {
  color: var(--accent);
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.subpage-hero h1 span {
  color: var(--accent);
}

.subpage-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ── FAQ ── */
.faq-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--blue-bright);
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Form extensions ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field--radio {
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
}

.form-field--radio legend {
  display: block;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
  padding: 0;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.radio-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.radio-label:hover {
  border-color: rgba(13, 173, 242, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.radio-label:has(input:checked) {
  border-color: rgba(13, 173, 242, 0.55);
  background: rgba(13, 173, 242, 0.12);
  color: var(--blue-bright);
  box-shadow: 0 0 0 1px rgba(13, 173, 242, 0.2);
}

.radio-label:has(input:focus-visible) {
  outline: 2px solid rgba(13, 173, 242, 0.45);
  outline-offset: 2px;
}

.radio-label input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .foundation-layout,
  .problem-grid,
  .consult-info__grid {
    grid-template-columns: 1fr;
  }

  .consult-info {
    padding: 1.35rem 1.25rem;
  }

  .svc-grid--2 {
    grid-template-columns: 1fr;
    max-width: none;
    margin-inline: 0;
  }

  .instagram-fallback__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .foundation-timeline__tabs {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .foundation-sticky__inner .btn-sm {
    width: 100%;
  }

  body.has-foundation-sticky {
    padding-bottom: 9rem;
  }

  .mobile-sticky-cta {
    bottom: 0;
  }

  body.has-foundation-sticky .mobile-sticky-cta {
    display: none;
  }

  body.has-foundation-sticky .foundation-sticky {
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-seq,
  .split-heading .split-word {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
