﻿:root {
  --bg: #09090b;
  --surface: rgba(18, 18, 22, 0.92);
  --text: #f4f1ea;
  --muted: #afaba3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #df7240;
  --accent-deep: #9f4521;
  --success: #d4f0c9;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(223, 114, 64, 0.18), transparent 22%),
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #0c0c10 0%, #08080a 40%, #050507 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-shell,
.header-actions,
.hero-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.section-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 6px;
}

.header-shell {
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.header-actions {
  gap: 14px;
}

.brand img {
  width: auto;
  height: 28px;
}

.language-switcher {
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-button,
.button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.language-button {
  min-width: 54px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
  border-radius: 999px;
  background: transparent;
}

.language-button.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
}

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

.button-primary {
  color: #fff8f3;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 34px rgba(223, 114, 64, 0.22);
}

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

.section-link,
.text-link {
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.section-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.section-link:hover,
.section-link.is-current {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-block {
  width: 100%;
}

.hero,
.section {
  padding: 40px 0 0;
}

.hero {
  padding-top: 88px;
}

.hero-grid,
.pricing-shell,
.final-shell {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.hero-copy,
.hero-panel,
.point-card,
.audit-card,
.step-card,
.value-card,
.pricing-card,
.proof-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(30px, 5vw, 56px);
}

.hero-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.eyebrow,
.signal-label,
.pricing-label {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Newsreader", serif;
  font-weight: 600;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 8vw, 6.2rem);
  line-height: 0.92;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

p,
li,
span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 57ch;
  margin-top: 22px;
  font-size: 1.05rem;
}

.hero-actions {
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-proof {
  max-width: 28ch;
  font-size: 0.95rem;
}

.signal-card {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.signal-list,
.pricing-list {
  margin: 0;
  padding-left: 18px;
}

.signal-list li + li,
.pricing-list li + li {
  margin-top: 10px;
}

.timeline-list {
  margin: 0;
  padding-left: 18px;
}

.timeline-list li + li {
  margin-top: 10px;
}

.stat-grid,
.audit-grid,
.steps-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.stat-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 18px;
  min-height: 164px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card strong,
.pricing-value {
  display: block;
  color: var(--text);
  letter-spacing: -0.05em;
}

.stat-card strong {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.stat-card-decision strong {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--text);
}

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

.timeline-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.timeline-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(223, 114, 64, 0.1);
  border: 1px solid rgba(223, 114, 64, 0.2);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 11ch;
}

.section-shell,
.problem-grid,
.value-shell {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading p,
.pricing-copy p,
.final-copy p {
  max-width: 62ch;
}

.problem-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.problem-copy {
  display: grid;
  gap: 16px;
}

.problem-points,
.value-list {
  display: grid;
  gap: 18px;
}

.point-card,
.audit-card,
.step-card,
.value-card,
.proof-card {
  padding: 24px;
}

.point-card span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--text);
  border-radius: 50%;
  background: rgba(223, 114, 64, 0.18);
}

.point-card p,
.audit-card p,
.step-card p,
.value-card p,
.proof-card p {
  margin-top: 12px;
}

.audit-grid,
.steps-grid,
.proof-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.pricing-shell,
.final-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
}

.pricing-card {
  padding: 28px;
}

.pricing-value {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 0.9;
}

.proof-quote {
  font-size: 1.15rem;
  color: var(--text);
}

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

.mockup-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(223, 114, 64, 0.2), transparent 35%),
    #111116;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.24);
}

.mockup-topbar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mockup-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.8fr);
  gap: 16px;
  padding: 20px;
}

.mockup-score,
.mockup-side {
  display: grid;
  gap: 12px;
}

.mockup-score p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.mockup-score strong,
.mockup-chip {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.mockup-score strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.mockup-fit {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.mockup-fit strong {
  position: relative;
  z-index: 1;
}

.mockup-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(223, 114, 64, 0.34), rgba(223, 114, 64, 0.12));
  animation: mockup-fill 1.4s ease forwards;
}

.mockup-fit-low .mockup-fill {
  width: 28%;
}

.mockup-fit-mid .mockup-fill {
  width: 76%;
}

.mockup-fit-high .mockup-fill {
  width: 92%;
}

.mockup-chip {
  font-size: 0.94rem;
}

.service-meta {
  margin-top: 16px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.final-cta {
  padding-bottom: 64px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

.lead-form span {
  color: var(--text);
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(223, 114, 64, 0.6);
  outline-offset: 2px;
}

.form-note,
.form-feedback {
  font-size: 0.94rem;
}

.form-feedback {
  min-height: 24px;
}

.form-feedback.is-success {
  color: var(--success);
}

.site-footer {
  padding: 0 0 28px;
}

.footer-shell-simple {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell-simple p {
  font-size: 0.9rem;
  color: #8f8b84;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@keyframes mockup-fill {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .problem-grid,
  .value-shell,
  .pricing-shell,
  .final-shell,
  .audit-grid,
  .steps-grid,
  .proof-grid,
  .stat-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

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

  .header-shell,
  .header-actions,
  .section-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .section-nav {
    margin: 0;
  }

  .language-switcher {
    justify-content: center;
  }

  .language-button {
    min-width: 0;
    flex: 1 1 0;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-copy,
  .hero-panel,
  .point-card,
  .audit-card,
  .step-card,
  .value-card,
  .pricing-card,
  .proof-card,
  .lead-form {
    padding: 22px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }
}
