/**
 * Стили страницы SEO аудита (/run-a-seo-report/).
 * Дизайн-система совпадает с главной страницей (front-page.css).
 */
:root {
  --color-bg: #f4f6fb;
  --color-bg-light: #ffffff;
  --color-primary: #004a99;
  --color-primary-dark: #022c5c;
  --color-accent: #ffb400;
  --color-text: #1b1b1b;
  --color-muted: #6b6f7a;
  --radius-md: 14px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.lsi-audit-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", sans-serif;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
}

.lsi-audit-page .container {
  width: min(1140px, 100% - 32px);
  margin: 0 auto;
}

/* ── Hero ── */
.audit-hero {
  padding: 56px 0 64px;
  background: linear-gradient(160deg, #021835 0%, #003d80 50%, #022c5c 100%);
  color: #fff;
  overflow: hidden;
}
.audit-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.audit-hero h1 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.01em;
}
.audit-hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 0 22px;
}

/* Checklist */
.audit-hero__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.audit-hero__checks li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.audit-hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 180, 0, 0.9);
  box-shadow: 0 0 8px rgba(255, 180, 0, 0.4);
}

/* Stats row */
.audit-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.audit-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
}
.audit-hero__stat-num {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.audit-hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Right column — form card */
.audit-hero__side {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin-left: auto;
}
.audit-hero__form-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.audit-hero__form-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--color-accent), #e6a200);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.4);
}
.audit-hero__form-card h2 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--color-text);
  line-height: 1.3;
}
.audit-hero__form-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0 0 20px;
}

/* Form */
.audit-form__group {
  margin-bottom: 14px;
}
.audit-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 5px;
}
.audit-form__input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid #d5dbe5;
  border-radius: 10px;
  background: #f8f9fc;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  box-shadow: none;
}
.audit-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
  background: #fff;
}
.audit-form__input::placeholder {
  color: #a0a6b4;
}
.audit-form__privacy {
  font-size: 12px;
  color: var(--color-muted);
  margin: 10px 0 14px;
  line-height: 1.5;
}
.audit-form__privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}
.audit-form__submit {
  display: block;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 74, 153, 0.35);
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}
.audit-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 74, 153, 0.45);
}

/* ── Steps section ── */
.audit-steps {
  padding: 64px 0;
  background: var(--color-bg);
}
.audit-section__title {
  text-align: center;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--color-primary-dark);
  margin: 0 0 8px;
  line-height: 1.2;
}
.audit-section__subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-muted);
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.audit-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.audit-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}
.audit-step:hover {
  transform: translateY(-4px);
}
.audit-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.audit-step h3 {
  font-size: 18px;
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}
.audit-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

/* ── Benefits section ── */
.audit-benefits {
  padding: 64px 0;
  background: #fff;
}
.audit-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audit-benefit {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.audit-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.audit-benefit__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 74, 153, 0.1), rgba(2, 44, 92, 0.06));
  color: var(--color-primary);
  margin-bottom: 14px;
}
.audit-benefit h3 {
  font-size: 17px;
  color: var(--color-primary-dark);
  margin: 0 0 6px;
}
.audit-benefit p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
}

/* ── SEO text ── */
.audit-text {
  padding: 48px 0;
  background: var(--color-bg);
}
.audit-text__card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 48px;
  box-shadow: var(--shadow-soft);
  max-width: 860px;
  margin: 0 auto;
}
.audit-text__card h2 {
  font-size: 24px;
  color: var(--color-primary-dark);
  margin: 0 0 16px;
}
.audit-text__card p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 14px;
}
.audit-text__card p:last-child {
  margin-bottom: 0;
}

/* ── CTA section ── */
.audit-cta {
  padding: 56px 0;
  background: linear-gradient(160deg, #021835 0%, #003d80 50%, #022c5c 100%);
  color: #fff;
  text-align: center;
}
.audit-cta h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 10px;
  color: #fff;
}
.audit-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
}
.audit-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.audit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.audit-btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #e6a200);
  color: var(--color-primary-dark);
  box-shadow: 0 10px 24px rgba(255, 180, 0, 0.35);
}
.audit-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 180, 0, 0.45);
  text-decoration: none;
  color: var(--color-primary-dark);
}
.audit-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.audit-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
}

/* ── Contact section ── */
.audit-contact {
  padding: 56px 0 64px;
  background: #fff;
}
.audit-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.audit-contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.audit-contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.audit-contact__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  margin-bottom: 14px;
}
.audit-contact__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.audit-contact__value {
  font-size: 15px;
  color: var(--color-primary-dark);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .audit-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .audit-hero__side {
    max-width: 100%;
    margin-left: 0;
  }
  .audit-steps__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .audit-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit-contact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .audit-hero {
    padding: 40px 0 48px;
  }
  .audit-benefits__grid {
    grid-template-columns: 1fr;
  }
  .audit-text__card {
    padding: 28px 20px;
  }
  .audit-hero__form-card {
    padding: 24px 20px 22px;
  }
  .audit-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .audit-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Hide reCAPTCHA badge on this page */
.grecaptcha-badge {
  visibility: hidden !important;
}
