/**
 * Стили страницы «Создание сайта под ключ» (slug: sozdanie-sajta-pod-klyuch).
 * Дизайн-система сайта: градиенты, карточки, переменные.
 */

.lsi-web-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", sans-serif;
  color: #1b1b1b;
  line-height: 1.7;
}

.lsi-web-page a {
  color: #004a99;
  text-decoration: none;
}
.lsi-web-page a:hover {
  text-decoration: underline;
}

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

/* ── Buttons ── */
.lsi-web-page a.wb-btn,
a.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lsi-web-page a.wb-btn--primary,
a.wb-btn--primary {
  background: linear-gradient(135deg, #004a99, #022c5c);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(0, 74, 153, 0.35);
}
.lsi-web-page a.wb-btn--primary:hover,
a.wb-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 74, 153, 0.45);
  color: #fff !important;
}

.lsi-web-page a.wb-btn--ghost,
a.wb-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
}
.lsi-web-page a.wb-btn--ghost:hover,
a.wb-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.lsi-web-page a.wb-btn--ghost-light,
a.wb-btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
}
.lsi-web-page a.wb-btn--ghost-light:hover,
a.wb-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.lsi-web-page a.wb-btn--white,
a.wb-btn--white {
  background: #fff;
  color: #022c5c !important;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}
.lsi-web-page a.wb-btn--white:hover,
a.wb-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.25);
  color: #022c5c !important;
}

.lsi-web-page a.wb-btn--outline,
a.wb-btn--outline {
  background: transparent;
  border: 1px solid rgba(0, 74, 153, 0.25);
  color: #004a99 !important;
}
.lsi-web-page a.wb-btn--outline:hover,
a.wb-btn--outline:hover {
  border-color: #004a99;
  background: rgba(0, 74, 153, 0.05);
  color: #004a99 !important;
}

.lsi-web-page a.wb-btn--telegram,
a.wb-btn--telegram {
  background: linear-gradient(135deg, #0088cc, #004a99);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(0, 136, 204, 0.4);
}
.lsi-web-page a.wb-btn--telegram:hover,
a.wb-btn--telegram:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 136, 204, 0.55);
  color: #fff !important;
}

.wb-btn--full { width: 100%; }

/* ── Hero ── */
.wb-hero {
  padding: 56px 0 48px;
  background: linear-gradient(160deg, #021835 0%, #003d80 50%, #022c5c 100%);
  color: #fff;
  overflow: hidden;
}

.wb-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.wb-hero__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 180, 0, 0.2);
  color: #ffb400;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wb-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  color: #fff;
}

.wb-hero__subtitle {
  margin: 0 0 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.7;
}

.wb-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.wb-hero__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.wb-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  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);
}

.wb-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero card */
.wb-hero__side {
  display: flex;
  flex-direction: column;
  max-width: 380px;
  margin-left: auto;
}

.wb-hero__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  color: #1b1b1b;
}

.wb-hero__card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 74, 153, 0.08);
  color: #004a99;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.wb-hero__card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #022c5c;
  line-height: 1.3;
}

.wb-hero__card > p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6f7a;
  margin: 0 0 16px;
}

.wb-hero__card-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.wb-hero__card-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wb-hero__card-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #004a99;
}

.wb-hero__card-stat-label {
  font-size: 12px;
  color: #6b6f7a;
}

.wb-hero__card-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #6b6f7a;
  text-align: center;
}

/* ── Sections ── */
.wb-section {
  padding: 48px 0;
}

.wb-section--light {
  background: #f4f6fb;
}

.wb-section--accent {
  background: linear-gradient(160deg, #021835 0%, #003d80 50%, #022c5c 100%);
  color: #fff;
}

.wb-section--cta {
  background: linear-gradient(120deg, #022c5c, #004a99);
  color: #fff;
  padding: 40px 0;
}

.wb-section__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.5vw, 28px);
  text-align: center;
}

.wb-section--accent .wb-section__title,
.wb-section--cta .wb-section__title {
  color: #fff;
}

.wb-section__subtitle {
  margin: 0 0 32px;
  font-size: 15px;
  color: #6b6f7a;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ── */
.wb-grid {
  display: grid;
  gap: 20px;
}
.wb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wb-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Feature cards ── */
.wb-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wb-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.1);
}

.wb-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 74, 153, 0.08), rgba(0, 74, 153, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004a99;
  margin-bottom: 14px;
}

.wb-feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #022c5c;
}

.wb-feature-card p {
  margin: 0;
  font-size: 14px;
  color: #6b6f7a;
  line-height: 1.7;
}

/* ── Pricing cards ── */
.wb-pricing {
  align-items: stretch;
}

.wb-price-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wb-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.wb-price-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b6f7a;
  margin-bottom: 4px;
}

.wb-price-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #022c5c;
}

.wb-price-card__price {
  font-size: 22px;
  font-weight: 700;
  color: #004a99;
  margin-bottom: 16px;
}

.wb-price-card ul {
  padding: 0;
  list-style: none;
  margin: 0 0 auto;
  font-size: 14px;
  line-height: 1.6;
}
.wb-price-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.wb-price-card ul li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb400;
}

.wb-price-card .wb-btn {
  margin-top: 18px;
}

.wb-price-card--popular {
  border: 1px solid rgba(255, 180, 0, 0.8);
  box-shadow: 0 24px 60px rgba(255, 180, 0, 0.2);
  transform: translateY(-4px);
  background: linear-gradient(145deg, rgba(255, 180, 0, 0.06), #ffffff);
}
.wb-price-card--popular .wb-price-card__label {
  color: #b37a00;
}

/* ── Steps ── */
.wb-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wb-step {
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.wb-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #004a99, #022c5c);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.wb-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #022c5c;
  line-height: 1.4;
}

.wb-step p {
  margin: 0;
  font-size: 14px;
  color: #6b6f7a;
  line-height: 1.65;
}

/* ── Advantages ── */
.wb-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wb-advantage {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
  transition: background 0.15s ease;
}
.wb-advantage:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wb-advantage__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 180, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb400;
}

.wb-advantage h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #fff;
}

.wb-advantage p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

/* ── Combo offer ── */
.wb-combo {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 74, 153, 0.04), rgba(0, 74, 153, 0.08));
  border: 1px solid rgba(0, 74, 153, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
}

.wb-combo__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 180, 0, 0.15);
  color: #b37a00;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.wb-combo__content h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.5vw, 28px);
  color: #022c5c;
}

.wb-combo__content > p {
  font-size: 15px;
  color: #6b6f7a;
  line-height: 1.7;
  margin: 0 0 16px;
}

.wb-combo__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.wb-combo__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
}
.wb-combo__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: #004a99;
}

.wb-combo__side {
  display: flex;
  justify-content: center;
}

.wb-combo__card {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.wb-combo__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb400, #ff8c00);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(255, 180, 0, 0.4);
}

.wb-combo__card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #022c5c;
}

.wb-combo__card p {
  margin: 0;
  font-size: 13px;
  color: #6b6f7a;
  line-height: 1.5;
}

/* ── FAQ ── */
.wb-faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.wb-faq__item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.wb-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #022c5c;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
}
.wb-faq__question::-webkit-details-marker { display: none; }
.wb-faq__question::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004a99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}
.wb-faq__item[open] .wb-faq__question::after { transform: rotate(180deg); }
.wb-faq__question:hover { background: rgba(0, 74, 153, 0.04); }

.wb-faq__answer {
  padding: 14px 18px 16px;
}
.wb-faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #1b1b1b;
}
.wb-faq__item[open] .wb-faq__question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── CTA section ── */
.wb-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wb-cta__content h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 28px);
  color: #fff;
}

.wb-cta__content p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

.wb-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .wb-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .wb-hero__side {
    max-width: 100%;
    margin-left: 0;
  }
  .wb-grid--2,
  .wb-grid--3 {
    grid-template-columns: 1fr;
  }
  .wb-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-advantages {
    grid-template-columns: 1fr;
  }
  .wb-combo {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .wb-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .wb-cta__actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .wb-hero {
    padding: 36px 0 40px;
  }
  .wb-section {
    padding: 36px 0;
  }
  .wb-steps {
    grid-template-columns: 1fr;
  }
  .wb-grid--2,
  .wb-grid--3 {
    grid-template-columns: 1fr;
  }
  .wb-combo {
    padding: 22px 18px;
  }
  .wb-price-card {
    padding: 20px 18px;
  }
}
