@charset "UTF-8";

/* ============================================================
   Summer Audit Landing — /summer-audit/assets/css/style.css
   Стили изолированы (префикс sa-), не влияют на основной сайт
   ============================================================ */

/* ===== RESET & BASE ===== */
.sa-page * { box-sizing: border-box; }

/* ===== URGENCY STICKY BANNER ===== */
.sa-urgency {
  background: linear-gradient(90deg, #9e0e11 0%, #7a0a0d 100%);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.sa-urgency.sa-urgency--visible {
  transform: translateY(0);
}
.sa-urgency__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: 0 auto;
}
.sa-urgency__text {
  font-size: 1rem;
  line-height: 1.4;
}
.sa-urgency__text strong { font-weight: 700; }
.sa-urgency__btn {
  display: inline-block;
  padding: 8px 22px;
  background: #fff;
  color: #9e0e11 !important;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.sa-urgency__btn:hover { background: rgba(255,255,255,0.85); }

/* ===== SHARED SECTION STYLES ===== */
.sa-section {
  padding: 80px 0;
}
.sa-section--grey { background: #f9f9f9; }
.sa-section--red  { background: #9e0e11; }

@media (max-width: 991px) { .sa-section { padding: 60px 0; } }
@media (max-width: 767px) { .sa-section { padding: 44px 0; } }

.sa-section-header {
  margin-bottom: 44px;
}
.sa-section-header--center { text-align: center; }

.sa-badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sa-badge--red   { background: #9e0e11; color: #fff; }
.sa-badge--white { background: #fff; color: #9e0e11; }
.sa-badge--gold  { background: #fff3cd; border: 1px solid #ffc107; color: #856404; }


.sa-headline {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.15;
  color: #222;
  margin: 0 0 16px;
}
.sa-headline--white { color: #fff; }
.sa-headline--sm    { font-size: 1.75rem; }
.sa-headline-accent { color: #9e0e11; }

.sa-headline--main {
	font-size: 3.4rem;
}
.sa-lead {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}
.sa-lead--white { color: rgba(255,255,255,.75); }

@media (max-width: 1199px) {
  .sa-headline { font-size: 2.125rem; }
  .sa-headline--sm { font-size: 1.5rem; }
}
@media (max-width: 767px) {
  .sa-headline { font-size: 1.75rem; }
  .sa-headline--sm { font-size: 1.3125rem; }
  .sa-lead { font-size: 1rem; }
}

/* ===== BUTTONS ===== */
.sa-btn-outline {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1.125rem;
  border-radius: 50px;
  background-color: transparent;
  padding: 14px 40px 15px;
  border: 2px solid #9e0e11;
  color: #9e0e11;
  line-height: 1;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.sa-btn-outline:hover { background: #9e0e11; color: #fff; }
.sa-btn-outline--white { border-color: #fff; color: #fff; }
.sa-btn-outline--white:hover { background: #fff; color: #9e0e11; }
.sa-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sa-btns { flex-direction: column; }
  .sa-btns .btn, .sa-btns .sa-btn-outline { text-align: center; }
}

/* ===== HERO ===== */
.sa-hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #fff 55%, #f9f0f1 100%);
  overflow: hidden;
  position: relative;
}
.sa-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158,14,17,.06) 0%, transparent 70%);
  pointer-events: none;
}
.sa-hero__inner {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;
}

/* Отступы внутри контентной части героя */
.sa-hero__lead {
  margin-top: 24px;
}
.sa-hero__lead + .sa-hero__lead {
  margin-top: 20px;
}
.sa-hero__btns {
  margin-top: 44px;
}

.sa-hero__image {
  position: relative;
}
.sa-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 450px;
  border-radius: 24px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .sa-hero__inner { grid-template-columns: 1fr 300px; gap: 40px; }
}
@media (max-width: 991px) {
  .sa-hero__inner { grid-template-columns: 1fr; }
  .sa-hero__image { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .sa-hero { padding: 44px 0 40px; }
  .sa-hero__image { max-width: 260px; }
  .sa-hero__btns { margin-top: 32px; }
}

/* ===== PROBLEM SECTION ===== */
.sa-problem {
  padding: 80px 0;
  background: #f8f5f0;
}
.sa-risk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 44px 0;
}
.sa-risk-card {
  background: #fff;
  border: 1px solid #e8eaeb;
  border-radius: 12px;
  padding: 28px 22px;
  transition: transform .3s, box-shadow .3s;
}
.sa-risk-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.sa-risk-card__num {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9e0e11;
  margin-bottom: 12px;
}
.sa-risk-card__text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
.sa-problem__conclusion {
  background: #fef4f4;
  border: 1px solid rgba(158,14,17,.2);
  border-radius: 12px;
  padding: 22px 28px 22px 52px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  position: relative;
  margin-top: 8px;
}
.sa-problem__conclusion::before {
  content: '!';
  position: absolute;
  left: 18px;
  top: 22px;
  width: 26px; height: 26px;
  background: #9e0e11;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  line-height: 26px;
  text-align: center;
}

@media (max-width: 991px) { .sa-risk-cards { grid-template-columns: 1fr; } }

/* ===== WHY SUMMER ===== */
.sa-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sa-why-card {
  background: #fff;
  border: 1px solid #e8eaeb;
  border-radius: 12px;
  padding: 26px 22px;
  transition: box-shadow .3s, transform .3s;
}
.sa-why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.sa-why-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9e0e11;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sa-why-card__text {
  font-size: 1rem;
  color: #636466;
  line-height: 1.5;
}

@media (max-width: 991px) { .sa-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .sa-why-grid { grid-template-columns: 1fr; } }

/* ===== HELPS — аудит летом поможет и защитит ===== */
.sa-helps-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.sa-helps-col {
  background: #fff;
  border: 1px solid #e8eaeb;
  border-radius: 10px;
  padding: 20px 16px;
}
.sa-helps-col__title {
  font-size: 1rem;
  font-weight: 600;
  color: #9e0e11;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.3;
}
.sa-helps-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sa-helps-col ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  padding: 7px 0 7px 14px;
  position: relative;
  border-bottom: 1px solid #f9f9f9;
}
.sa-helps-col ul li:last-child { border-bottom: none; }
.sa-helps-col ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #9e0e11;
}
.sa-helps-cta {
  background: #fef4f4;
  border: 1px solid rgba(158,14,17,.2);
  border-radius: 12px;
  padding: 28px 32px;
}
.sa-helps-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9e0e11;
  margin-bottom: 12px;
  line-height: 1.3;
}
.sa-helps-cta p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin: 0 0 18px;
}
.sa-helps-cta__steps {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.sa-helps-cta__step {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
}
.sa-helps-cta__step strong {
  color: #9e0e11;
  margin-right: 4px;
}

@media (max-width: 1199px) { .sa-helps-table { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .sa-helps-table { grid-template-columns: 1fr; } }

/* ===== STAGES — что проверяем ===== */
.sa-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.sa-check-col {
  background: #fff;
  border: 1px solid #e8eaeb;
  border-radius: 10px;
  padding: 20px 16px;
}
.sa-check-col__title {
  font-size: 1rem;
  font-weight: 600;
  color: #9e0e11;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.3;
}
.sa-check-col ul { list-style: none; padding: 0; margin: 0; }
.sa-check-col ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  padding: 6px 0 6px 14px;
  position: relative;
  border-bottom: 1px solid #f9f9f9;
}
.sa-check-col ul li:last-child { border-bottom: none; }
.sa-check-col ul li::before {
  content: '\2022';
  position: absolute; left: 0;
  color: #9e0e11;
}

@media (max-width: 1199px) { .sa-check-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .sa-check-grid { grid-template-columns: 1fr; } }

/* ===== RESULTS ===== */
.sa-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.sa-number-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  transition: background .3s;
}
.sa-number-card:hover { background: rgba(255,255,255,.15); }
.sa-number-card__value {
  font-size: 2.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.sa-number-card__label {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}
.sa-results-list { list-style: none; padding: 0; margin: 0 0 40px; }
.sa-results-list li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  align-items: flex-start;
}
.sa-results-list li:last-child { border-bottom: none; }
.sa-results-list li::before {
  content: '\2014';
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}
.sa-results-cert {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 16px 24px;
  margin-top: 8px;
}

@media (max-width: 991px) { .sa-numbers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) {
  .sa-numbers { grid-template-columns: 1fr; }
  .sa-number-card__value { font-size: 1.625rem; }
}

/* ===== SPECIAL OFFER — 5 процедур ===== */
.sa-procedures { list-style: none; padding: 0; margin: 0 0 24px; counter-reset: proc; max-width: 720px; }
.sa-procedures li {
  counter-increment: proc;
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e8eaeb;
  align-items: flex-start;
}
.sa-procedures li:last-child { border-bottom: none; }
.sa-procedures li::before {
  content: counter(proc);
  min-width: 30px; height: 30px;
  background: #9e0e11;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.sa-procedures li span { font-size: 1rem; color: #222; line-height: 1.5; }
.sa-offer-cta {
  font-size: 1rem;
  color: #9e0e11;
  font-weight: 600;
  padding: 16px 22px;
  background: #fef4f4;
  border: 1px solid rgba(158,14,17,.2);
  border-radius: 10px;
  display: inline-block;
  margin-top: 8px;
}

/* ===== FORMATS — выберите формат ===== */
.sa-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sa-format-card {
  background: #fff;
  border: 1px solid #e8eaeb;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .3s, transform .3s;
}
.sa-format-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.sa-format-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #9e0e11;
  line-height: 1.3;
}
.sa-format-card__text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  flex: 1;
}
.sa-format-card .btn {
  align-self: flex-start;
}

@media (max-width: 991px) { .sa-formats-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ===== HOW TO START (steps) ===== */
.sa-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  position: relative;
}
.sa-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #9e0e11 0%, #f9f0f1 100%);
  z-index: 0;
}
.sa-step-card {
  background: #fff;
  border: 1px solid #e8eaeb;
  border-radius: 12px;
  padding: 28px 22px 24px;
  position: relative;
  z-index: 1;
  transition: box-shadow .3s, transform .3s;
}
.sa-step-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.sa-step-card__num {
  width: 46px; height: 46px;
  background: #9e0e11;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sa-step-card__title { font-size: 1.0625rem; font-weight: 600; color: #222; margin-bottom: 10px; line-height: 1.3; }
.sa-step-card__text { font-size: 1rem; color: #636466; line-height: 1.5; }

@media (max-width: 767px) {
  .sa-steps-grid { grid-template-columns: 1fr; }
  .sa-steps-grid::before { display: none; }
}

/* ===== SCROLL ANIMATIONS ===== */
.sa-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.sa-anim.sa-in {
  opacity: 1;
  transform: translateY(0);
}
.sa-anim-d1 { transition-delay: .1s; }
.sa-anim-d2 { transition-delay: .2s; }
.sa-anim-d3 { transition-delay: .3s; }
.sa-anim-d4 { transition-delay: .4s; }
.sa-anim-d5 { transition-delay: .5s; }
.sa-anim-d6 { transition-delay: .6s; }

/* ===== HIDE BITRIX DEFAULT PAGE HEADER ===== */
.header-page { display: none !important; }

/* ===== RESULTS INNER — список + фото ===== */
.sa-results-inner {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 48px;
  align-items: start;
  margin-bottom: 0;
}
.sa-results-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .sa-results-inner {
    grid-template-columns: 1fr;
  }
  .sa-results-photo {
    max-width: 340px;
  }
}

/* ===== HERO CAPTION — подпись на фото ===== */
.sa-hero__caption {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 2;
}
.sa-hero__caption-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 50%;
}
.sa-hero__caption-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}
.sa-hero__caption-role {
  font-size: 12px;
  line-height: 1.4;
  color: #636466;
}
