:root {
  color-scheme: dark;
  --bg: #0b0c0e;
  --panel: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fb;
  --muted: #a7afbc;
  --muted-strong: #c6cbd6;
  --accent: #f3b563;
  --accent-strong: #ffcf8d;
  --success: #7ad1a2;
  --error: #ff8d8d;
  --shadow: 0 18px 64px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 181, 99, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(92, 126, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #070809 0%, #0d1117 55%, #09090b 100%);
}

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

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

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

button {
  cursor: pointer;
  border: 0;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

/* ============================================================
   HEADER — Apple floating pill
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 20px 0;
  background: linear-gradient(to bottom, rgba(8, 9, 12, 0.95) 60%, transparent 100%);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(22, 24, 30, 0.88);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(232, 206, 156, 0.12);
  background: linear-gradient(180deg, rgba(220, 189, 136, 0.84), rgba(191, 158, 104, 0.78));
  color: #17191d;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-subline { display: none; }

.brand-copy {
  display: contents;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
  color: rgba(255, 255, 255, 0.52);
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 180ms ease;
  white-space: nowrap;
}

.contact-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.button-header-cta {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #0e0f14;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.button-header-cta:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

/* Push page content below fixed header */
.page-wrap > main:first-child,
main {
  padding-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #151618;
  box-shadow: 0 12px 36px rgba(243, 181, 99, 0.18);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero-section {
  position: relative;
  padding: 56px 0 32px;
}

.hero-ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(60px);
  opacity: 0.46;
  pointer-events: none;
}

.hero-ambient-left {
  top: 20px;
  left: -120px;
  background: radial-gradient(circle, rgba(243, 181, 99, 0.26), transparent 60%);
}

.hero-ambient-right {
  top: 120px;
  right: -120px;
  background: radial-gradient(circle, rgba(98, 113, 255, 0.24), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.eyebrow {
  margin-bottom: 22px;
}

.eyebrow-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

h1,
h2,
h3,
summary {
  font-family: "Sora", sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.accent-text {
  color: var(--accent-strong);
}

.hero-lead,
.section-heading p,
.split-copy > p,
.promo-copy p,
.final-copy p,
.case-copy p,
.service-card p,
.guarantee-copy p,
.guarantee-cards p,
.faq-item p,
.region-band p,
.hero-note p,
.privacy-main p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 28px;
  font-size: 1.05rem;
}

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

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

.hero-stats div,
.glass-card,
.timeline-item,
.region-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats dt {
  font-family: "Sora", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 10px 0 0;
  color: var(--muted);
}

.glass-card {
  border-radius: var(--radius-lg);
}

.hero-note {
  padding: 18px 20px;
  max-width: 640px;
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.panel-dark {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #101114, #090909);
  border: 1px solid var(--stroke-strong);
  box-shadow: var(--shadow);
}

.hero-showcase {
  min-height: 380px;
}

.hero-showcase img,
.split-panel img,
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-showcase::after,
.split-panel::after,
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.74));
}

.hero-showcase-copy,
.floating-insight,
.case-copy {
  position: absolute;
  z-index: 1;
}

.hero-showcase-copy {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}

.hero-showcase-copy span,
.floating-insight span,
.case-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-showcase-copy strong,
.floating-insight strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.lead-card,
.promo-form {
  padding: 24px;
}

.form-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.15;
}

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

.label-full {
  grid-column: 1 / -1;
}

.lead-form label,
.promo-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span,
.promo-form label > span {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 16px;
  outline: 0;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(243, 181, 99, 0.55);
  box-shadow: 0 0 0 3px rgba(243, 181, 99, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

[aria-invalid="true"] {
  border-color: rgba(255, 141, 141, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 141, 141, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  line-height: 1.55;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.consent a {
  color: rgba(243, 181, 99, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="pending"] {
  color: var(--muted-strong);
}

.trust-strip {
  padding: 16px 0 18px;
}

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

.trust-grid > div {
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 82px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-accent {
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 181, 99, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2,
.promo-copy h2,
.final-copy h2,
.privacy-main h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading.compact h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.service-grid,
.cases-grid,
.guarantee-cards {
  display: grid;
  gap: 18px;
}

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

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.service-card h3,
.timeline-item h3,
.case-copy h3,
.guarantee-cards h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.service-card ul,
.case-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.split-layout,
.promo-grid,
.guarantee-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.advantage-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.advantage-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-list p {
  margin: 8px 0 0;
}

.split-panel {
  min-height: 520px;
}

.floating-insight {
  right: 20px;
  bottom: 176px;
  max-width: 280px;
  padding: 18px;
}

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

.timeline-item {
  padding: 22px;
  border-radius: 22px;
}

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(243, 181, 99, 0.14);
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
}

.promo-form {
  display: grid;
  gap: 14px;
}

.cases-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius-xl);
}

.case-copy {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.case-copy ul {
  margin: 4px 0 0;
}

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

.guarantee-cards article {
  padding: 22px;
}

/* ============================================================
   GUARANTEE — Apple-style
   ============================================================ */

.section-guarantee {
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
}

.guarantee-features {
  display: flex;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.gf-item {
  flex: 1;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.gf-item:last-child {
  border-right: none;
}

.gf-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.gf-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.gf-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
  margin: 0;
}

.gf-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 900px) {
  .guarantee-features {
    flex-direction: column;
    border-radius: 18px;
  }
  .gf-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 28px;
    gap: 14px;
  }
  .gf-item:last-child {
    border-bottom: none;
  }
}

.region-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.faq-list {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  background: none;
  overflow: visible;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  transition: color 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}

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

.faq-item summary:hover {
  color: #fff;
}

.faq-chevron {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-body {
  padding: 0 28px 22px;
}

.faq-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item p {
  margin: 14px 0 0;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-stack > a {
  font-size: 1.6rem;
  font-weight: 800;
}

.messenger-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.messenger-row a {
  color: var(--accent-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  color: var(--muted);
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(calc(100vw - 24px), 720px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.sticky-bar-phone {
  flex: 1;
  padding-left: 14px;
  font-weight: 800;
}

.privacy-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.privacy-main {
  width: min(920px, calc(100vw - 32px));
  padding: 28px;
}

.privacy-main section + section {
  margin-top: 24px;
}

.privacy-main h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-strong);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-layout,
  .promo-grid,
  .guarantee-grid,
  .final-cta-grid,
  .cases-grid,
  .service-grid,
  .guarantee-cards,
  .timeline,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-panel,
  .case-card {
    min-height: 420px;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    padding: 10px 12px 0;
  }

  .header-inner {
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
  }

  .header-actions .contact-link {
    display: none;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .region-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .sticky-bar-phone {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .button,
  .header-actions .button {
    width: 100%;
  }

  .hero-actions,
  .header-actions {
    width: 100%;
  }

  .brand-subline {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-copy {
    max-width: 140px;
  }

  .lead-card,
  .promo-form,
  .service-card,
  .timeline-item,
  .faq-item,
  .guarantee-cards article,
  .privacy-main {
    padding: 20px;
  }

  .section {
    padding: 68px 0;
  }

  .site-footer {
    padding-bottom: 150px;
  }
}

:root {
  --bg-2: #0f1217;
  --panel-soft: rgba(255, 255, 255, 0.05);
  --panel-heavy: rgba(18, 20, 24, 0.92);
  --cold-accent: #5f93ff;
  --metal-line: linear-gradient(90deg, transparent, rgba(243, 181, 99, 0.8), rgba(95, 147, 255, 0.45), transparent);
  --noise: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.035), transparent 22%);
  --shadow-strong: 0 22px 72px rgba(0, 0, 0, 0.48);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(115deg, rgba(243, 181, 99, 0.1), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(95, 147, 255, 0.1), transparent 16%);
}

body::after {
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
  z-index: -1;
}

.asphalt-theme {
  position: relative;
}

.texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.texture-top {
  top: 82px;
  height: 720px;
  background:
    radial-gradient(circle at 14% 14%, rgba(243, 181, 99, 0.16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(95, 147, 255, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(14, 15, 18, 0.6), rgba(14, 15, 18, 0));
}

.texture-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 95%);
}

.page-shell > * {
  position: relative;
  z-index: 1;
}


.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-180%) rotate(16deg);
  transition: transform 450ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(320%) rotate(16deg);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-glow {
  box-shadow:
    0 12px 36px rgba(243, 181, 99, 0.18),
    0 0 0 1px rgba(255, 207, 141, 0.2) inset;
}

.glow-chip {
  box-shadow:
    0 0 0 1px rgba(255, 207, 141, 0.2) inset,
    0 14px 40px rgba(0, 0, 0, 0.3);
}

.glow-text {
  text-shadow: 0 0 18px rgba(243, 181, 99, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.reveal-scale {
  transform: translateY(26px) scale(0.975);
}

.reveal.reveal-fade {
  transform: translateY(22px);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 50ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 170ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 230ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 290ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }

.hero-section {
  padding: 64px 0 42px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(243, 181, 99, 0.05), transparent 36%),
    linear-gradient(315deg, rgba(95, 147, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.hero-metal-line {
  position: absolute;
  top: 42px;
  left: 50%;
  width: min(1180px, calc(100vw - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: var(--metal-line);
  opacity: 0.5;
}

.hero-headline-wrap {
  position: relative;
}

.hero-title {
  display: grid;
  gap: 2px;
  max-width: 10ch;
}

.hero-title-line {
  display: block;
  animation: heroLineIn 880ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-title-line:nth-child(2) { animation-delay: 70ms; }
.hero-title-line:nth-child(3) { animation-delay: 140ms; }
.hero-title-line:nth-child(4) { animation-delay: 210ms; }
.hero-title-line:nth-child(5) { animation-delay: 280ms; }
.hero-title-line:nth-child(6) { animation-delay: 350ms; }

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-caption-line {
  width: 160px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--metal-line);
  opacity: 0.8;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 18px;
}

.proof-chip {
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.proof-chip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}

.proof-chip strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.4;
}

.hero-layer-stack {
  position: relative;
  gap: 0;
}

.hero-layer {
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.hero-showcase {
  min-height: 420px;
  transform: translateZ(0);
}

.hero-showcase img {
  transform: scale(1.04);
  transition: transform 1200ms ease;
}

.hero-showcase:hover img {
  transform: scale(1.08);
}

.hero-metric-card {
  position: absolute;
  top: 18px;
  left: -30px;
  z-index: 2;
  width: 230px;
  padding: 18px;
  background: rgba(12, 15, 20, 0.76);
}

.hero-metric-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-metric-grid {
  display: grid;
  gap: 14px;
}

.hero-metric-grid strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.hero-metric-grid span {
  color: var(--muted);
  line-height: 1.4;
}

.hero-floating-proof {
  position: absolute;
  right: 18px;
  top: 300px;
  z-index: 2;
  max-width: 240px;
  padding: 16px 18px;
  background: rgba(20, 15, 12, 0.7);
}

.hero-floating-proof span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-floating-proof strong {
  display: block;
  line-height: 1.45;
}

.hero-form-card {
  margin-top: 16px;
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.92), rgba(19, 21, 26, 0.92));
  box-shadow: var(--shadow-strong);
}

.form-subtitle {
  margin: 0;
  color: var(--muted);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-pill {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-weight: 700;
}

.service-pill.active {
  background: rgba(243, 181, 99, 0.14);
  border-color: rgba(243, 181, 99, 0.32);
  color: var(--accent-strong);
}

.trust-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: var(--metal-line);
  opacity: 0;
  transition: opacity 260ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 181, 99, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.trust-card:hover::after {
  opacity: 0.95;
}

.section-services,
.section-process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.04), transparent 18%);
}

.section-cases .section-heading {
  max-width: 880px;
}

.service-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(28, 30, 35, 0.95), rgba(21, 23, 28, 0.96));
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(243, 181, 99, 0.12), transparent 26%),
    linear-gradient(180deg, transparent, rgba(95, 147, 255, 0.05));
  opacity: 0;
  transition: opacity 300ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 181, 99, 0.22);
  box-shadow: var(--shadow-strong);
}

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

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

.service-featured {
  min-height: 360px;
}

.service-card-head {
  display: grid;
  gap: 12px;
}

.service-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 181, 99, 0.12);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.split-panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  gap: 12px;
}

.split-panel-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.02);
}

.proof-rail {
  position: static;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(10, 12, 16, 0.68);
}

.proof-rail-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--muted-strong);
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.proof-rail-item span {
  color: var(--muted);
}

.proof-rail-item strong {
  text-align: right;
}

.proof-rail-item.active {
  background: rgba(243, 181, 99, 0.12);
  color: var(--text);
  transform: translateX(4px);
}

.advantage-list {
  gap: 12px;
}

.advantage-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: opacity 240ms ease, transform 240ms ease;
}

.advantage-visual {
  display: block;
  width: 100%;
  height: 420px;
  flex: 0 0 auto;
  object-position: center center;
  transition: opacity 180ms ease, transform 320ms ease;
}

.advantage-visual.is-switching {
  opacity: 0.42;
}

.advantage-item:hover {
  transform: translateX(6px);
}

.advantage-item.active {
  opacity: 1;
}

.floating-insight {
  position: static;
  right: auto;
  bottom: auto;
  max-width: none;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(243, 181, 99, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(12, 14, 18, 0.88);
  border: 1px solid rgba(243, 181, 99, 0.12);
}

.floating-insight span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.floating-insight strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.18;
  max-width: 22ch;
}

.advantage-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(243, 181, 99, 0.14);
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.timeline {
  position: relative;
  align-items: stretch;
}

.timeline-track {
  position: absolute;
  top: 22px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(243, 181, 99, 0.18), rgba(95, 147, 255, 0.18));
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 31, 36, 0.96), rgba(22, 24, 29, 0.96));
  transition: transform 280ms ease, border-color 280ms ease;
}

.timeline-item:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 181, 99, 0.24);
}

.timeline-item span {
  position: relative;
  box-shadow: 0 0 0 8px rgba(12, 14, 18, 0.72);
}

.promo-grid {
  gap: 40px;
}

.promo-copy {
  max-width: 640px;
}

.promo-checklist {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  background: rgba(15, 17, 21, 0.74);
}

.promo-checklist article {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-checklist span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(243, 181, 99, 0.14);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.promo-form {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.95), rgba(20, 22, 27, 0.96));
}

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

.case-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  transition: transform 320ms ease, border-color 320ms ease;
}

.case-card:hover {
  transform: translateY(-10px);
  border-color: rgba(243, 181, 99, 0.24);
}

.case-card:hover img {
  transform: scale(1.08) translateY(-4px);
}

.case-card img {
  transition: transform 900ms ease;
}

.case-card::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.84));
}

.case-card-featured {
  min-height: 580px;
}

.case-status-row {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 14, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}


.sticky-bar {
  bottom: 18px;
  background: rgba(10, 11, 14, 0.88);
  box-shadow: var(--shadow-strong);
  transition:
    transform 280ms ease,
    opacity 280ms ease,
    border-color 280ms ease;
}

.sticky-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(circle at 80% 50%, rgba(243, 181, 99, 0.1), transparent 28%);
  pointer-events: none;
}

.sticky-bar[data-sticky-state="hidden"] {
  opacity: 0;
  transform: translate(-50%, 120%);
}

.sticky-bar[data-sticky-state="visible"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sticky-bar[data-sticky-state="dock-hidden"] {
  opacity: 0.6;
  transform: translate(-50%, 84px);
}

.sticky-bar-phone {
  position: relative;
  z-index: 1;
}

.hero-ambient-left,
.hero-ambient-right {
  animation: ambientFloat 14s ease-in-out infinite alternate;
}

.hero-ambient-right {
  animation-delay: 2s;
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -16px, 0) scale(1.08);
  }
}

@media (max-width: 1120px) {
  .hero-proof-row,
  .service-grid,
  .cases-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric-card,
  .hero-floating-proof {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .proof-rail {
    position: static;
    margin: 20px;
  }

  .timeline-track {
    display: none;
  }
}

@media (max-width: 840px) {
  .hero-section {
    padding-top: 30px;
  }

  .hero-title {
    max-width: none;
  }

  .hero-proof-row,
  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-pills {
    gap: 8px;
  }

  .service-pill {
    flex: 1 1 120px;
  }
}

@media (max-width: 560px) {
  .hero-metric-card,
  .hero-floating-proof,
  .proof-rail {
    padding: 14px;
  }

  .proof-rail-item {
    display: grid;
    gap: 4px;
  }

  .proof-rail-item strong {
    text-align: left;
  }

  .case-status-row {
    top: 14px;
    left: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Quiet Apple-like refinement */
:root {
  --bg: #0a0b0d;
  --bg-2: #0d1014;
  --panel-soft: rgba(255, 255, 255, 0.04);
  --panel-heavy: rgba(18, 20, 24, 0.9);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f7f9;
  --muted: #98a0ac;
  --muted-strong: #c8ced7;
  --accent: #d9aa63;
  --accent-strong: #ecc48a;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 22px 56px rgba(0, 0, 0, 0.34);
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(217, 170, 99, 0.1), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(95, 147, 255, 0.08), transparent 15%),
    linear-gradient(180deg, #090a0c 0%, #0c1014 52%, #090b0e 100%);
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(95, 147, 255, 0.05), transparent 14%);
}

body::after,
.texture-grid {
  display: none;
}

.texture-top {
  opacity: 0.55;
}

.hero-section::before {
  background:
    linear-gradient(135deg, rgba(217, 170, 99, 0.035), transparent 36%),
    linear-gradient(315deg, rgba(95, 147, 255, 0.03), transparent 28%);
}

.hero-metal-line,
.hero-caption-line {
  opacity: 0.28;
}

.eyebrow-pill,
.service-tag,
.case-status-chip,
.hero-metric-label {
  letter-spacing: 0.02em;
}

.eyebrow-pill {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  box-shadow: none;
}

.glow-chip,
.glow-text {
  box-shadow: none;
  text-shadow: none;
}

.button {
  min-height: 50px;
}

.button::before {
  opacity: 0.55;
}

.button-primary {
  background: linear-gradient(180deg, #e6bc7f, #d9aa63);
  box-shadow:
    0 10px 24px rgba(217, 170, 99, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.09);
}

.hero-grid {
  gap: 36px;
}

.hero-title {
  gap: 6px;
  max-width: 11ch;
}

.hero-title-line {
  animation-duration: 760ms;
}

.hero-proof-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 16px;
}

.proof-chip,
.hero-note,
.service-card,
.timeline-item,
.promo-checklist,
.faq-item,
.proof-rail,
.hero-form-card,
.promo-form,
.lead-card,
.region-band,
.glass-card {
  backdrop-filter: blur(18px);
}

.proof-chip {
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.07);
}

.proof-chip strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-note {
  max-width: 560px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-showcase,
.split-panel,
.case-card {
  border-radius: 30px;
}

.hero-showcase::after,
.split-panel::after,
.case-card::after {
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.02), rgba(6, 7, 9, 0.72));
}

.hero-showcase-copy strong,
.floating-insight strong {
  font-size: 1.16rem;
}

.hero-metric-card {
  top: 20px;
  left: -10px;
  width: 210px;
  padding: 16px;
  background: rgba(13, 15, 19, 0.78);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.hero-metric-grid {
  gap: 10px;
}

.hero-metric-grid strong {
  font-size: 1.22rem;
}

.hero-floating-proof {
  position: static;
  width: 100%;
  max-width: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(17, 18, 22, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.hero-floating-proof strong {
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-form-card {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(28, 31, 37, 0.88), rgba(19, 21, 25, 0.88));
}

.form-heading h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.form-subtitle {
  font-size: 0.94rem;
}

.service-pills {
  margin-bottom: 16px;
}

.service-pill {
  min-height: 38px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.service-pill.active {
  background: rgba(217, 170, 99, 0.1);
  border-color: rgba(217, 170, 99, 0.2);
}

.service-selection-note {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-selection-note span {
  color: var(--muted);
  font-size: 0.88rem;
}

.service-selection-note strong {
  color: var(--text);
  font-size: 0.94rem;
}

.service-pills-stack {
  margin-bottom: 12px;
}

.service-pills-stack .service-pill {
  flex: 1 1 150px;
}

/* ============================================================
   FINAL CTA — Apple-style form
   ============================================================ */

/* Form card */
.lead-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 32px 28px;
  backdrop-filter: blur(20px);
}

.form-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 20px;
}

/* Segmented control — iOS-style */
.service-seg-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seg-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.service-seg {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  gap: 3px;
}

.service-seg .service-pill {
  flex: 1;
  min-height: 36px;
  padding: 0 6px;
  border-radius: 9px;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.service-seg .service-pill:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.service-seg .service-pill.active {
  background: rgba(243, 181, 99, 0.16);
  border: 1px solid rgba(243, 181, 99, 0.22);
  color: var(--accent-strong);
  font-weight: 600;
}

/* Submit button with arrow */
.button-submit {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 14px;
}

.button-submit svg {
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.button-submit:hover svg {
  transform: translateX(3px);
}

/* Trust list on the left */
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cta-trust svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}

.cta-trust span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

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

/* Mobile-first optimization pass */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --mobile-section-gap: clamp(56px, 10vw, 88px);
  --mobile-card-padding: 18px;
  --mobile-shell-padding: 16px;
}

html,
body {
  overflow-x: clip;
}

body {
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

input,
select,
textarea {
  font-size: 16px;
}

.mobile-nav-toggle,
.mobile-nav {
  display: none;
}

.sticky-bar-copy {
  display: grid;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.sticky-bar-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sticky-bar-action {
  min-width: 192px;
}

.hero-secondary {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.hero-form-card .form-heading {
  gap: 10px;
}

.hero-form-card .form-heading h2 {
  line-height: 1.08;
}

.hero-form-card .form-subtitle,
.hero-form-card .form-hint,
.service-selection-note span,
.consent span,
.form-status,
.promo-form .form-status,
.lead-card .form-status {
  font-size: 0.95rem;
}

.service-selection-note {
  min-height: 44px;
}

.service-pill {
  min-height: 44px;
}

.faq-item summary {
  min-height: 52px;
  align-items: center;
}

.hero-visual {
  min-width: 0;
}

.hero-showcase-copy,
.case-copy,
.floating-insight {
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (hover: hover) and (pointer: fine) {
  .audience-card:hover,
  .trust-card:hover,
  .service-card:hover,
  .advantage-item:hover,
  .timeline-item:hover,
  .case-card:hover,
  .button:hover,
  .button:focus-visible {
    transition-duration: 180ms;
  }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .audience-card:hover,
  .trust-card:hover,
  .service-card:hover,
  .advantage-item:hover,
  .timeline-item:hover,
  .case-card:hover,
  .faq-item:hover::before {
    transform: none;
    box-shadow: none;
    opacity: inherit;
  }

  .hero-showcase:hover img,
  .case-card:hover img {
    transform: none;
  }

  .button:active,
  .service-pill:active,
  .mobile-nav-toggle:active,
  .mobile-nav-links a:active {
    transform: scale(0.985);
  }

  .hero-ambient-left,
  .hero-ambient-right {
    animation: none;
  }
}

@media (max-width: 1023px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .page-shell {
    padding-bottom: calc(104px + var(--safe-bottom));
  }

  .site-header {
    padding-top: calc(var(--safe-top) + 8px);
    background: linear-gradient(to bottom, rgba(8, 9, 12, 0.97) 60%, transparent 100%);
  }

  .header-inner {
    min-height: 48px;
    gap: 14px;
    padding-inline: 14px;
    border-radius: 12px;
  }

  .site-nav,
  .header-actions .contact-link,
  .header-actions .button {
    display: none;
  }

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(24, 27, 32, 0.9), rgba(17, 19, 24, 0.88));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 16px rgba(4, 6, 10, 0.14);
    color: var(--text);
  }

  .mobile-nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 7, 10, 0.62);
    border: 0;
  }

  .mobile-nav-sheet {
    position: absolute;
    inset: 0 0 auto;
    min-height: min(100dvh, 100svh);
    padding:
      calc(18px + var(--safe-top))
      calc(18px + var(--safe-right))
      calc(24px + var(--safe-bottom))
      calc(18px + var(--safe-left));
    display: grid;
    align-content: start;
    gap: 22px;
    background: rgba(10, 11, 14, 0.96);
    backdrop-filter: blur(20px);
    transform: translateY(-16px);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

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

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

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

  .mobile-nav-brand strong {
    font-size: 1rem;
  }

  .mobile-nav-brand span {
    color: var(--muted);
    font-size: 0.88rem;
  }

  .mobile-nav-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1rem;
  }

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

  .mobile-nav-links a {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 1rem;
    font-weight: 700;
  }

  .mobile-nav-links a:last-child {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #151618;
    border-color: transparent;
  }

  .mobile-nav-meta {
    display: grid;
    gap: 14px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-meta > a {
    font-size: 1rem;
    font-weight: 800;
  }

  .mobile-nav-messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobile-nav-messengers a {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--muted-strong);
  }

  .hero-section {
    padding: 22px 0 18px;
  }

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

  .hero-copy {
    gap: 0;
  }

  .hero-headline-wrap {
    margin-bottom: 0;
  }

  .hero-title {
    gap: 6px;
    max-width: none;
  }

  .hero-title-line {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: 0.96;
    text-wrap: balance;
  }

  .hero-caption-line {
    width: 96px;
    margin-top: 14px;
  }

  .hero-lead {
    max-width: none;
    margin: 18px 0 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-visual {
    gap: 14px;
  }

  .hero-showcase {
    min-height: 240px;
    border-radius: 24px;
  }

  .hero-showcase::after {
    background: linear-gradient(180deg, rgba(6, 7, 9, 0.12), rgba(6, 7, 9, 0.72));
  }

  .hero-showcase-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .hero-showcase-copy span {
    font-size: 0.82rem;
  }

  .hero-showcase-copy strong {
    max-width: 17ch;
    font-size: 1rem;
  }

  .hero-metric-card {
    position: static;
    width: 100%;
    padding: 14px 16px;
    background: rgba(14, 16, 20, 0.88);
    box-shadow: none;
  }

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

  .hero-metric-grid strong {
    font-size: 1rem;
  }

  .hero-floating-proof {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0;
    box-shadow: none;
    background: rgba(17, 18, 22, 0.82);
  }

  .hero-form-card {
    margin-top: 0;
    padding: 24px 20px 20px;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(20, 23, 29, 0.88), rgba(15, 18, 24, 0.92)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 12px 28px rgba(0, 0, 0, 0.22) !important;
  }

  .hero-form-card .button-submit,
  .promo-form .button-submit,
  .lead-card .button-submit {
    min-height: 54px;
  }

  .hero-secondary {
    margin-top: 16px;
  }

  .hero-proof-row,
  .hero-audience,
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proof-chip,
  .audience-card,
  .hero-note,
  .service-card,
  .timeline-item,
  .faq-item,
  .region-band,
  .glass-card,
  .lead-card,
  .promo-form {
    backdrop-filter: blur(10px);
  }

  .proof-chip,
  .audience-card,
  .hero-note {
    padding: 16px;
  }

  .section {
    padding: var(--mobile-section-gap) 0;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .split-copy h2,
  .promo-copy h2,
  .final-copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .section-heading p,
  .split-copy > p,
  .promo-copy p,
  .final-copy p,
  .guarantee-copy p,
  .case-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .trust-strip {
    padding: 14px 0 10px;
  }

  .trust-grid,
  .service-grid,
  .cases-grid,
  .guarantee-grid,
  .guarantee-cards,
  .promo-grid,
  .final-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-card,
  .service-card,
  .guarantee-cards article {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .service-featured {
    min-height: auto;
  }

  .split-layout {
    display: grid;
    gap: 18px;
  }

  .split-panel {
    min-height: 280px;
    order: -1;
  }

  .proof-rail {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 14px;
  }

  .floating-insight {
    right: auto;
    bottom: auto;
    max-width: none;
  }

  .timeline {
    display: grid;
    gap: 12px;
  }

  .timeline-track {
    display: none;
  }

  .timeline-item {
    min-height: auto;
    padding: 18px;
  }

  .promo-copy {
    order: 1;
  }

  .promo-form {
    order: 0;
    padding: var(--mobile-card-padding);
  }

  .case-card,
  .case-card.case-card-featured {
    min-height: auto;
    border-radius: 24px;
  }

  .case-status-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 16px 0;
  }

  .case-copy {
    position: relative;
    inset: auto;
    padding: 12px 16px 16px;
  }

  .case-copy ul {
    padding-left: 18px;
  }

  .region-band {
    gap: 16px;
    padding: 18px;
  }

  .faq-item {
    padding: 4px 16px;
    border-radius: 18px;
  }

  .site-footer {
    padding: 20px 0 calc(124px + var(--safe-bottom));
  }

  .footer-grid {
    gap: 18px;
  }

  .sticky-bar {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    transform: none;
    border-radius: 24px 24px 0 0;
    padding:
      10px
      calc(14px + var(--safe-right))
      calc(10px + var(--safe-bottom))
      calc(14px + var(--safe-left));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    background: rgba(10, 11, 14, 0.92);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }

  .sticky-bar[data-sticky-state="hidden"] {
    transform: translateY(calc(100% + var(--safe-bottom)));
  }

  .sticky-bar[data-sticky-state="visible"] {
    transform: translateY(0);
  }

  .sticky-bar[data-sticky-state="dock-hidden"] {
    transform: translateY(calc(72px + var(--safe-bottom)));
    opacity: 0.8;
  }

  .sticky-bar-phone {
    padding-left: 0;
    text-align: left;
    font-size: 0.98rem;
  }

  .sticky-bar-action {
    min-width: 0;
    padding-inline: 18px;
  }
}

@media (max-width: 767px) {
  .eyebrow {
    margin-bottom: 16px;
  }

  .eyebrow-pill,
  .section-kicker,
  .trust-label,
  .service-tag,
  .case-status-chip,
  .hero-metric-label {
    font-size: 0.8rem;
  }

  .hero-title-line {
    font-size: clamp(2.15rem, 12.5vw, 3.2rem);
  }

  .hero-lead {
    font-size: 0.97rem;
  }

  .hero-showcase {
    min-height: 220px;
  }

  .hero-showcase-copy strong {
    font-size: 0.94rem;
  }

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

  .service-pills {
    gap: 8px;
  }

  .service-pill,
  .service-pills-stack .service-pill {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding-inline: 14px;
    font-size: 0.88rem;
  }

  .service-selection-note {
    padding-inline: 0;
  }

  .hero-proof-row {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .local-coverage {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 10px calc(-1 * var(--mobile-shell-padding)) 0;
    padding: 0 var(--mobile-shell-padding) 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .local-coverage::-webkit-scrollbar {
    display: none;
  }

  .sticky-bar {
    grid-template-columns: 1fr;
  }

  .sticky-bar-copy {
    gap: 4px;
  }

  .sticky-bar-action {
    width: 100%;
  }
}

@media (max-width: 479px) {
  :root {
    --container: min(100vw - 24px, 100%);
    --mobile-shell-padding: 12px;
    --mobile-card-padding: 16px;
  }

  .page-shell {
    padding-bottom: calc(112px + var(--safe-bottom));
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .hero-section {
    padding-top: 16px;
  }

  .hero-title-line {
    font-size: clamp(1.9rem, 12vw, 2.85rem);
  }

  .hero-lead,
  .section-heading p,
  .split-copy > p,
  .promo-copy p,
  .final-copy p,
  .guarantee-copy p,
  .case-copy p,
  .faq-item p {
    font-size: 0.94rem;
  }

  .button,
  .hero-actions .button,
  .button-submit,
  .sticky-bar-action {
    min-height: 52px;
    font-size: 0.96rem;
  }

  .hero-showcase,
  .split-panel {
    min-height: 208px;
  }

  .floating-insight {
    max-width: none;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .case-status-row,
  .case-copy,
  .hero-showcase-copy {
    padding-inline: 14px;
  }

  .site-footer {
    padding-bottom: calc(132px + var(--safe-bottom));
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .mobile-nav-sheet {
    min-height: auto;
  }

  .sticky-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-sheet,
  .mobile-nav-toggle span,
  .sticky-bar,
  .hero-title-line,
  .hero-title-line-inner,
  .reveal,
  .reveal-stagger {
    transition: none !important;
    animation: none !important;
  }

  .hero-title-reveal .hero-title-line-inner {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
  }

}

.trust-card {
  background: none;
  border-color: transparent;
}

.trust-card::after {
  height: 1px;
}

.trust-card:hover {
  transform: translateY(-2px);
}

.section {
  padding: 92px 0;
}

.section-heading {
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.promo-copy h2,
.final-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.service-grid {
  gap: 20px;
}

.service-card {
  background: linear-gradient(180deg, rgba(26, 28, 33, 0.88), rgba(18, 20, 24, 0.9));
  border-color: rgba(255, 255, 255, 0.08);
}

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

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

.service-featured {
  min-height: 320px;
}

.service-tag {
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
}

.advantage-list {
  gap: 8px;
}

.advantage-item {
  padding: 16px 0;
}

.advantage-item:hover,
.advantage-item.active {
  transform: translateX(2px);
}

.advantage-index,
.timeline-item span,
.promo-checklist span {
  background: rgba(217, 170, 99, 0.11);
  color: var(--accent-strong);
}

.proof-rail {
  background: rgba(11, 13, 16, 0.56);
}

.proof-rail-item {
  padding: 8px 10px;
}

.proof-rail-item.active {
  background: rgba(255, 255, 255, 0.045);
}

.timeline-item {
  background: linear-gradient(180deg, rgba(27, 29, 34, 0.88), rgba(18, 20, 24, 0.9));
}

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

.promo-checklist {
  background: rgba(17, 19, 23, 0.64);
}

.promo-form {
  background: linear-gradient(180deg, rgba(28, 31, 37, 0.88), rgba(19, 21, 25, 0.88));
}

.case-card {
  border-color: rgba(255, 255, 255, 0.08);
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-status-chip {
  min-height: 32px;
  background: rgba(12, 14, 18, 0.44);
  border-color: rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
}

.case-copy {
  gap: 8px;
}

.case-copy span {
  color: rgba(255, 255, 255, 0.78);
}

.faq-item {
  background: linear-gradient(180deg, rgba(26, 28, 33, 0.86), rgba(18, 20, 24, 0.88));
}

.faq-item summary {
  font-size: 1.02rem;
}

.faq-item summary::after {
  font-size: 1.2rem;
}

.sticky-bar {
  width: min(calc(100vw - 28px), 640px);
  padding: 10px;
  border-radius: 24px;
  background: rgba(10, 11, 14, 0.82);
  border-color: rgba(255, 255, 255, 0.07);
}

.sticky-bar::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.sticky-bar-phone {
  font-size: 0.96rem;
}

@media (max-width: 1120px) {
  .hero-metric-card,
  .hero-floating-proof {
    box-shadow: var(--shadow);
  }
}

@media (max-width: 840px) {
  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .promo-copy h2,
  .final-copy h2 {
    max-width: none;
  }

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

/* Layout harmonization fixes */
.page-shell {
  padding-bottom: 120px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
}

.hero-title {
  gap: 8px;
  max-width: 12.5ch;
}

.hero-title-line {
  line-height: 0.95;
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 24px;
}

.hero-actions {
  align-items: center;
  margin-bottom: 18px;
}

.hero-actions .button {
  min-width: 0;
}

.hero-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.audience-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.audience-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.audience-card strong {
  line-height: 1.45;
  font-size: 0.95rem;
}

.audience-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  margin-top: 4px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.audience-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 170, 99, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.hero-proof-row {
  align-items: stretch;
}

.hero-stats {
  margin: 0 0 20px;
}

.hero-note {
  margin-top: 0;
}

.hero-showcase {
  min-height: 400px;
}

.hero-showcase-copy {
  max-width: 78%;
}

.hero-showcase-copy strong {
  max-width: 18ch;
  line-height: 1.28;
}

.hero-metric-card {
  top: 16px;
  left: 16px;
  width: 196px;
  padding: 14px 16px;
}

.hero-floating-proof {
  right: 16px;
  bottom: 16px;
  max-width: 208px;
}

.hero-form-card {
  margin-top: 20px;
}

.trust-strip {
  position: relative;
  padding: 0 0 20px;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.50) 30%,
    rgba(5, 5, 5, 0.10) 65%,
    transparent 100%
  );
}

.trust-grid {
  position: relative;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-card {
  position: relative;
  min-height: 100%;
  padding: 28px 32px;
  border-radius: 0;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: none;
  transition: background 260ms ease;
}

.trust-card:first-child {
  border-left: none;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 32px;
  width: 24px;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.trust-card strong {
  display: block;
  max-width: 26ch;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.local-coverage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  border-top: none;
}

.coverage-label {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.coverage-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.coverage-chip-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trust-label {
  display: block;
  margin: 0 0 16px;
  padding-left: 40px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(24, 27, 33, 0.9), rgba(16, 18, 24, 0.8)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 44px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .trust-card strong {
    max-width: none;
    font-size: 1rem;
  }
}

.section-services {
  padding-top: 78px;
}

@media (max-width: 767px) {
  .trust-strip {
    padding: 18px 0 18px;
  }

  .trust-card {
    padding: 18px 18px 20px;
    border-radius: 0;
  }

  .trust-card::before {
    top: 16px;
    left: 18px;
    width: 24px;
  }

  .trust-label {
    margin-bottom: 14px;
    padding-left: 34px;
    font-size: 0.72rem;
  }

  .local-coverage {
    gap: 8px;
    margin: 14px calc(-1 * var(--mobile-shell-padding)) 0;
    padding: 14px var(--mobile-shell-padding) 4px;
    border-top-color: rgba(255, 255, 255, 0.05);
  }

  .coverage-label {
    flex: 0 0 auto;
    margin-right: 2px;
    font-size: 0.7rem;
  }

  .coverage-chip {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

/* Cinematic lower-page rhythm */
.site-header,
.mobile-nav {
  display: none !important;
}

.hero-section {
  padding-top: 42px;
}

.section-services,
.section-cases,
.section-gallery,
.section-final-cta,
.section-bottom-interlude,
.section.section-dark,
.section:not(.hero-section):not(.section-company-strip) {
  position: relative;
  overflow: clip;
}

.section-services::before,
.section-cases::before,
.section-gallery::before,
.section-final-cta::before,
.section-bottom-interlude::before,
.section.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-services {
  padding-top: 96px;
  padding-bottom: 100px;
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 170, 99, 0.12), transparent 30%),
    radial-gradient(circle at 92% 30%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(12, 13, 17, 0.6) 18%, rgba(10, 11, 14, 1) 42%);
}

.section-services::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 100%, rgba(95, 147, 255, 0.08), transparent 28%);
}

.section-services .container,
.section-cases .container,
.section-gallery .container,
.section-final-cta .container,
.section-bottom-interlude .container,
.section.section-dark .container {
  position: relative;
  z-index: 1;
}

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

.section-heading h2 {
  max-width: 14ch;
}

.services-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.services-proof-card {
  padding: 16px 18px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(24, 26, 32, 0.88), rgba(18, 20, 25, 0.78)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 44%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.16);
}

.services-proof-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-proof-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-grid {
  align-items: stretch;
  gap: 20px;
}

.service-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(28, 31, 37, 0.94), rgba(17, 19, 24, 0.98)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%);
}

.service-featured {
  min-height: 400px;
}

.service-card h3 {
  max-width: 14ch;
}

.section.section-dark {
  padding-top: 108px;
  padding-bottom: 108px;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.96), rgba(14, 16, 21, 0.98)),
    radial-gradient(circle at 100% 18%, rgba(217, 170, 99, 0.08), transparent 28%);
}

.section.section-dark::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015));
}

.split-layout {
  gap: 38px;
}

.split-copy {
  padding-top: 8px;
}

.split-copy h2 {
  max-width: 11ch;
}

.advantage-item {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.advantage-item.active {
  transform: translateX(8px);
}

.advantage-item.active h3 {
  color: rgba(255, 255, 255, 0.98);
}

.advantage-item.active p {
  color: rgba(255, 255, 255, 0.72);
}

.split-panel {
  padding: 22px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(14, 16, 20, 0.95), rgba(10, 11, 14, 0.98)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 28%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.split-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.02), rgba(4, 4, 6, 0.32)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.proof-rail {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.proof-rail-item.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateX(8px);
}

.section-stages {
  padding: 112px 0 24px;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 1), rgba(12, 13, 17, 0.98) 16%, rgba(10, 11, 15, 1) 100%);
}

.section-stages::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(217, 170, 99, 0.08), transparent 24%),
    radial-gradient(circle at 88% 68%, rgba(95, 147, 255, 0.06), transparent 22%);
}

.section-stages .section-heading {
  margin-bottom: 64px;
}

.stage-block {
  position: relative;
  min-height: 580px;
}

.stage-block + .stage-block {
  margin-top: 0;
}

.stage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.5)),
    linear-gradient(90deg, rgba(3, 4, 6, 0.1), transparent 34%);
  pointer-events: none;
}

.stage-content {
  position: relative;
  gap: 18px;
  padding: 84px 72px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(15, 17, 22, 0.88), rgba(10, 11, 14, 0.94));
}

.stage-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 70%);
}

.stage-meta {
  display: none;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.stage-number {
  font-size: 6rem;
  color: rgba(236, 196, 138, 0.18);
}

.section-cases {
  padding-top: 112px;
  padding-bottom: 108px;
  background:
    radial-gradient(circle at 84% 14%, rgba(217, 170, 99, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(14, 15, 19, 0.98), rgba(9, 10, 13, 1));
}

.section-cases::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.015));
}

.case-card {
  border-radius: 30px;
}

.case-card-featured {
  min-height: 620px;
}

.case-card::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.88)),
    linear-gradient(0deg, rgba(7, 8, 11, 0.14), transparent 40%);
}

.case-copy {
  gap: 12px;
}

.case-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-proof-line span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
}

.section-gallery {
  padding-top: 96px;
  padding-bottom: 104px;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 1), rgba(12, 13, 17, 0.96)),
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.04), transparent 24%);
}

.section-gallery::before {
  background: radial-gradient(circle at 86% 78%, rgba(95, 147, 255, 0.05), transparent 24%);
}

.section-bottom-interlude {
  padding: 34px 0 16px;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0), rgba(13, 14, 18, 0.7) 26%, rgba(13, 14, 18, 0.96));
}

.bottom-interlude {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: end;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bottom-interlude-copy h2 {
  max-width: 14ch;
}

.bottom-interlude-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.bottom-interlude-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 600;
}

.section-final-cta {
  padding-top: 96px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 15% 18%, rgba(217, 170, 99, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(11, 12, 15, 0.98), rgba(7, 8, 11, 1));
}

.section-final-cta::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    radial-gradient(circle at 82% 40%, rgba(255, 255, 255, 0.05), transparent 24%);
}

.final-cta-grid {
  gap: 36px;
}

.final-copy h2 {
  max-width: 11ch;
}

@media (max-width: 1120px) {
  .services-proof-row,
  .bottom-interlude {
    grid-template-columns: 1fr;
  }

  .bottom-interlude-points {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .section-services,
  .section.section-dark,
  .section-stages,
  .section-cases,
  .section-gallery,
  .section-final-cta {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .services-proof-card,
  .service-card {
    padding: 20px;
  }

  .stage-block {
    min-height: 0;
  }

  .stage-block + .stage-block {
    margin-top: 0;
  }

  .stage-content {
    padding: 40px 26px;
  }

  .stage-meta {
    font-size: 0.74rem;
  }

  .stage-number {
    font-size: 4.1rem;
  }

  .case-card-featured {
    min-height: 540px;
  }

  .bottom-interlude {
    gap: 18px;
    padding: 22px 0;
  }
}

@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 24px;
  }

  .services-proof-row {
    gap: 10px;
    margin-bottom: 16px;
  }

  .services-proof-card strong {
    font-size: 0.9rem;
  }

  .service-card h3,
  .case-copy h3 {
    max-width: none;
  }

  .split-layout,
  .final-cta-grid {
    gap: 22px;
  }

  .stage-content::before {
    display: none;
  }

  .case-proof-line {
    gap: 6px;
  }

  .case-proof-line span,
  .bottom-interlude-points span {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }
}

.section-heading h2,
.split-copy h2,
.promo-copy h2,
.final-copy h2 {
  line-height: 1.08;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-title,
  .section-heading h2,
  .split-copy h2,
  .promo-copy h2,
  .final-copy h2 {
    max-width: none;
  }

  .hero-showcase-copy {
    max-width: none;
  }

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

@media (max-width: 840px) {
  .page-shell {
    padding-bottom: 140px;
  }

  .hero-title {
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

@media (max-width: 560px) {
  .page-shell {
    padding-bottom: 156px;
  }

  .hero-section {
    padding-top: 20px;
  }

  .hero-title-line {
    line-height: 0.98;
  }

  .hero-showcase {
    min-height: 320px;
  }

  .hero-metric-card,
  .hero-floating-proof {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .local-coverage {
    gap: 8px;
  }

  .coverage-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }
}

/* ============================================================
   HERO FULL-BLEED PHOTO (новый дизайн)
   ============================================================ */

.hero-section {
  position: relative !important;
  padding: 0 0 56px !important;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

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

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video,
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroBgZoom 1.6s ease forwards;
}

.hero-bg-video {
  display: block;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
}

@keyframes heroBgZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.22) 0%,
    rgba(5, 5, 5, 0.52) 38%,
    rgba(5, 5, 5, 0.86) 70%,
    rgba(5, 5, 5, 0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 48px;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 6.8rem) !important;
  line-height: 0.94 !important;
  max-width: 14ch !important;
  display: block !important;
  margin: 22px 0 26px;
}

.hero-title-reveal {
  display: grid !important;
  gap: 0.02em;
}

.hero-title-line-mask {
  position: relative;
  display: block;
  overflow: hidden;
  padding-right: 0.1em;
  margin-right: -0.1em;
}

.hero-title-line-mask:nth-child(1) {
  --hero-line-delay: 0ms;
}

.hero-title-line-mask:nth-child(2) {
  --hero-line-delay: 90ms;
}

.js .hero-title-line-inner {
  position: relative;
  display: block;
  max-width: 100%;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 20px, 0);
  clip-path: polygon(-20% -12%, -4% -12%, -28% 112%, -44% 112%);
  will-change: clip-path, opacity, filter, transform;
}

.js .hero-title-reveal.is-revealing .hero-title-line-inner {
  animation: heroTitleWipe 1180ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: var(--hero-line-delay);
}

.js .hero-title-reveal.is-revealed .hero-title-line-inner,
.js .hero-title-reveal.is-static .hero-title-line-inner {
  opacity: 1;
  filter: none;
  transform: none;
  clip-path: polygon(0 0, 112% 0, 100% 100%, 0 100%);
}

@keyframes heroTitleWipe {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 20px, 0);
    clip-path: polygon(-20% -12%, -4% -12%, -28% 112%, -44% 112%);
  }
  35% {
    opacity: 1;
    filter: blur(2px);
    transform: translate3d(0, 4px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: none;
    clip-path: polygon(0 0, 112% 0, 100% 100%, 0 100%);
  }
}

.hero-cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-phone-btn {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.hero-quick-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-quick-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-quick-stats strong {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1;
}

.hero-quick-stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.hero-form-wrap {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.hero-form-card {
  max-width: 720px;
  padding: 34px 32px 28px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: linear-gradient(180deg, rgba(21, 24, 30, 0.84), rgba(15, 18, 24, 0.88)) !important;
  backdrop-filter: blur(28px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(4, 6, 10, 0.38) !important;
}

.hero-form-card .form-heading {
  gap: 12px;
  margin-bottom: 24px;
}

.hero-form-card .section-kicker {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-form-card .form-heading h2 {
  max-width: 12ch;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-form-card .form-subtitle {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-form-card .service-pills {
  gap: 8px;
  margin-bottom: 14px;
}

.hero-form-card .service-pill {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.028);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.hero-form-card .service-pill:hover,
.hero-form-card .service-pill:focus-visible {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.048);
  color: rgba(255, 255, 255, 0.82);
  transform: none;
}

.hero-form-card .service-pill.active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 8px rgba(0, 0, 0, 0.16);
}

.hero-form-card .service-selection-note {
  min-height: 34px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 6px;
}

.hero-form-card .service-selection-note span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
}

.hero-form-card .service-selection-note strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-form-card .form-grid {
  gap: 16px;
}

.hero-form-card label > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 500;
}

.hero-form-card input[type="text"],
.hero-form-card input[type="tel"] {
  min-height: 56px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.96);
  padding: 17px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-form-card input[type="text"]::placeholder,
.hero-form-card input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.hero-form-card input[type="text"]:focus,
.hero-form-card input[type="tel"]:focus {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 4px rgba(255, 255, 255, 0.05);
}

.hero-form-card .consent {
  gap: 10px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.54);
}

.hero-form-card .consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.hero-form-card .consent span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-form-card .consent a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(255, 255, 255, 0.26);
  text-underline-offset: 0.15em;
}

.hero-form-card .button-submit {
  min-height: 58px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(251, 251, 252, 0.96), rgba(224, 227, 232, 0.94)) !important;
  color: #12161d !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(0, 0, 0, 0.18) !important;
}

.hero-form-card .button-submit:hover,
.hero-form-card .button-submit:focus-visible {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(232, 235, 240, 0.98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 26px rgba(0, 0, 0, 0.2) !important;
}

.hero-form-card .button-submit.button-glow::after {
  display: none;
}

.hero-form-card .form-hint {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
}

.hero-form-card .form-status {
  margin-top: 10px;
  font-size: 0.88rem;
}

/* ============================================================
   REVEAL ANIMATIONS — DIRECTIONAL
   ============================================================ */

.reveal-from-left,
.reveal-from-right {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-from-left  { transform: translateX(-56px); }
.reveal-from-right { transform: translateX(56px); }

.reveal-from-left.is-visible,
.reveal-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   STAGES SECTION
   ============================================================ */

.section-stages {
  padding: 82px 0 0;
  overflow: hidden;
}

.section-stages .section-heading {
  margin-bottom: 48px;
}

.stage-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.stage-block-reverse .stage-photo {
  order: 2;
}

.stage-block-reverse .stage-content {
  order: 1;
}

.stage-photo {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 0;
}

.stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stage-block:hover .stage-photo img {
  transform: scale(1.04);
}

.stage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 20px 72px 72px;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

/* reverse (текст слева, фото справа): сдвигаем контент вправо к фото */
.stage-block-reverse .stage-content {
  padding: 72px 72px 72px 20px;
  align-items: flex-end;
}

.stage-number {
  font-family: "Sora", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  letter-spacing: -0.04em;
  margin-bottom: -8px;
}

.stage-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stage-content p {
  color: var(--muted);
  line-height: 1.72;
  max-width: 50ch;
}

.stage-content .button {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .stage-block,
  .stage-block-reverse {
    grid-template-columns: 1fr;
  }

  .stage-block-reverse .stage-photo,
  .stage-block-reverse .stage-content {
    order: initial;
  }

  .stage-photo {
    min-height: 320px;
  }

  .stage-content {
    padding: 40px 32px;
  }

  .stage-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 560px) {
  .stage-photo { min-height: 260px; }
  .stage-content { padding: 32px 20px; }
  .stage-number { font-size: 2.8rem; }
  .hero-quick-stats { gap: 24px; }
  .hero-cta-block { flex-direction: column; }
  .hero-cta-block .button { width: 100%; }
  .hero-content { padding-top: 100px; }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.section-gallery {
  padding: 82px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 10px;
  margin-bottom: 32px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #111;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item.gallery-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid.is-visible .gallery-item {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid.is-visible .gallery-item:nth-child(1) { transition-delay: 0ms; }
.gallery-grid.is-visible .gallery-item:nth-child(2) { transition-delay: 70ms; }
.gallery-grid.is-visible .gallery-item:nth-child(3) { transition-delay: 140ms; }
.gallery-grid.is-visible .gallery-item:nth-child(4) { transition-delay: 210ms; }
.gallery-grid.is-visible .gallery-item:nth-child(5) { transition-delay: 280ms; }
.gallery-grid.is-visible .gallery-item:nth-child(6) { transition-delay: 350ms; }
.gallery-grid.is-visible .gallery-item:nth-child(7) { transition-delay: 420ms; }
.gallery-grid.is-visible .gallery-item:nth-child(8) { transition-delay: 490ms; }
.gallery-grid.is-visible .gallery-item:nth-child(9) { transition-delay: 560ms; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

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

.gallery-cta {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }
  .gallery-item.gallery-hero {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }
  .gallery-item.gallery-hero {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ============================================================
   COMPANY STRIP — Apple pre-footer band
   ============================================================ */

.section-company-strip {
  padding: 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.company-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.company-strip-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-strip-logo strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.company-strip-logo span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
}

.company-strip-details {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.84rem;
}

.cs-dot {
  opacity: 0.4;
}

.company-strip-cta .button {
  white-space: nowrap;
}

@media (max-width: 840px) {
  .company-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .company-strip-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cs-dot { display: none; }
  .company-strip-cta .button {
    width: 100%;
  }
}

/* ============================================================
   FOOTER — Apple-style
   ============================================================ */

.site-footer {
  padding: 48px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand-logo strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.brand-mark-sm {
  width: 30px;
  height: 30px;
  font-size: 0.85rem;
}

.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 26ch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-head {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 6px;
}

.footer-col a,
.footer-col span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-phone {
  font-size: 0.96rem !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* hero mobile fixes */
@media (max-width: 840px) {
  .hero-section {
    min-height: 100svh;
  }
  .hero-content {
    padding-top: 110px;
  }
  .hero-title {
    max-width: 100% !important;
    font-size: clamp(2.7rem, 11.5vw, 4.6rem) !important;
  }
}

@media (max-width: 560px) {
  .hero-title {
    margin: 18px 0 20px;
    font-size: clamp(2rem, 10.8vw, 3.05rem) !important;
    line-height: 0.96 !important;
  }

  .hero-title-line-mask {
    padding-right: 0;
    margin-right: 0;
  }

  .hero-lead {
    max-width: 32ch;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(1.82rem, 10.2vw, 2.7rem) !important;
    line-height: 0.98 !important;
    margin: 16px 0 18px;
  }

  .hero-title-line-mask,
  .hero-title-line-inner {
    max-width: 100%;
  }
}

/* trust-card mobile: vertical → horizontal dividers */
@media (max-width: 767px) {
  .trust-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 4px;
  }
  .trust-card:first-child {
    border-top: none;
  }
  .trust-card::before {
    top: 20px;
    left: 4px;
  }
}

/* ============================================================
   PRICE STRIP
   ============================================================ */

.price-strip {
  margin-top: 48px;
  padding: 36px 40px;
  display: grid;
  gap: 28px;
}

.price-strip-head {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price-strip-head .section-kicker {
  flex-shrink: 0;
  margin: 0;
}

.price-strip-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.price-service {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.price-val {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}

.price-from {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-val strong {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.price-disclaimer {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  max-width: 680px;
}

@media (max-width: 900px) {
  .price-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-strip {
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  .price-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REVIEWS — Apple-style
   ============================================================ */

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

.review-card {
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  transition: border-color 0.25s ease;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

/* Decorative opening quote */
.review-q {
  font-size: 4rem;
  line-height: 0.75;
  color: var(--accent);
  opacity: 0.55;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 14px;
  user-select: none;
  letter-spacing: -2px;
}

.review-text {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  line-height: 1.72;
  flex: 1;
}

/* Project photo */
.review-project-thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.4);
}

.review-project-thumb img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.3s ease;
}

.review-card:hover .review-project-thumb img {
  filter: brightness(0.96) saturate(1);
}

.review-project-thumb span {
  display: block;
  padding: 9px 13px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.01em;
}

/* Author row at bottom */
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.9;
}

.review-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-role {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Ozon chip */
.case-ozon-chip {
  background: linear-gradient(135deg, #005bff22, #005bff33) !important;
  border-color: #005bff55 !important;
  color: #5ca0ff !important;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 24px 20px 20px;
  }
}
