:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #202020;
  --muted: #646464;
  --line: #deded8;
  --primary: #8a6700;
  --primary-dark: #684e00;
  --accent: #fff5cc;
  --brand-yellow: #ffc400;
  --charcoal: #202020;
  --shadow: 0 18px 45px rgba(29, 36, 51, 0.08);
  --shadow-strong: 0 24px 60px rgba(29, 36, 51, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #f2a900;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  background: rgba(32, 32, 32, 0.97);
  border-bottom: 1px solid #3b3b3b;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(280px, 58vw);
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: #f3f3f3;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--brand-yellow);
}

.hero {
  padding: 86px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
}

.hero-image,
.image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}

.hero-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}

.hero-visual .hero-card {
  position: static;
  width: 100%;
  margin: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

h1 {
  font-size: clamp(2.45rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 780px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--charcoal);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 var(--brand-yellow);
}

.button.primary:hover {
  background: #373737;
}

.button.secondary {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.button.large {
  margin-top: 12px;
  padding-inline: 26px;
}

.hero-card,
.card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
}

.hero-card h2 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

ul,
ol {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

.section {
  padding: 78px 0;
}

.muted {
  background: #eef2f7;
}

.problem p,
.trust p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 30px;
  max-width: 780px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 44px;
}

.image-card {
  margin: 0;
}

.image-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.split-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

.split-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--brand-yellow);
  background: var(--accent);
  border-radius: 12px;
  color: var(--text) !important;
  font-weight: 650;
}

.about {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 56px;
}

.about-portrait {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 10px 0 0 10px;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0 10px 10px 0;
  border-radius: calc(var(--radius) + 10px);
  background: var(--brand-yellow);
}

.about-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow-strong);
}

.about-content > p:not(.eyebrow, .about-note) {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-strengths {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.about-strengths li {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}

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

.about-strengths span {
  color: var(--muted);
}

.about-note {
  margin: 0;
  padding: 17px 19px;
  border-left: 4px solid var(--brand-yellow);
  border-radius: 12px;
  background: var(--accent);
  font-weight: 650;
}

.quick-check {
  padding-block: 34px;
  background: var(--charcoal);
  border-top: 4px solid var(--brand-yellow);
}

.quick-check-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 50px;
  color: #ffffff;
}

.quick-check h2 {
  margin-bottom: 12px;
}

.quick-check p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.quick-check .eyebrow {
  color: var(--brand-yellow);
}

.quick-check-action {
  display: grid;
  gap: 12px;
}

.quick-check-action .button {
  width: 100%;
  margin: 0;
  background: var(--brand-yellow);
  color: var(--charcoal);
  box-shadow: none;
}

.quick-check-action .button:hover {
  background: #ffd33d;
}

.quick-check-action p {
  font-size: 0.88rem;
}

.cards,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.card,
.price-card {
  padding: 26px;
}

.card p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link::after {
  content: "→";
  text-decoration: none;
}

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

.price-card.featured {
  border-color: var(--brand-yellow);
}

.price {
  color: var(--text) !important;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.small {
  font-size: 0.96rem;
}

.note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 22px 68px;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.trust {
  background: var(--charcoal);
  border-top: 4px solid var(--brand-yellow);
  color: #ffffff;
}

.trust p {
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  text-align: center;
  background: #ffffff;
}

.site-footer {
  border-top: 1px solid #3b3b3b;
  background: var(--charcoal);
  color: #c9c9c9;
  font-size: 0.95rem;
}

.site-footer a {
  color: #c9c9c9;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-yellow);
}

.legal-page {
  background: #ffffff;
}

.legal-content {
  padding: 64px 0;
  max-width: 860px;
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.placeholder-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8e6;
  padding: 20px;
  margin: 24px 0;
}

@media (max-width: 860px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 12px;
  }

  .nav a {
    min-width: 0;
  }

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

  .actions .button {
    width: 100%;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .quick-check-card,
  .three-columns,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .quick-check-card {
    gap: 32px;
  }

  .about-portrait {
    width: min(440px, 100%);
    margin-inline: auto;
  }

  .about-strengths li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .section {
    padding: 56px 0;
  }
}

.legal-content address {
  font-style: normal;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 28px;
}

.legal-content .small {
  color: var(--muted);
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.service-hero {
  padding: 34px 0 68px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.service-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.7vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.service-hero .lead {
  max-width: 820px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: start;
  gap: 48px;
}

.service-content > p,
.service-content > ul,
.service-content > ol {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-content h2:not(:first-child) {
  margin-top: 44px;
}

.service-aside {
  position: sticky;
  top: 132px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-yellow);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-aside h2 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-aside p,
.service-aside li {
  color: var(--muted);
}

.service-aside .button {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

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

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 900;
}

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

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

.service-links .text-link {
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-item h3 {
  margin-bottom: 8px;
}

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

@media (max-width: 860px) {
  .service-layout,
  .service-links {
    grid-template-columns: 1fr;
  }

  .service-aside {
    position: static;
  }

  .service-hero {
    padding-bottom: 52px;
  }
}
