/* ===========================================
   MISSIS LASER - Improved Homepage Styles
   Matched to existing site design system
   Prefix: hi- (home-improved)
   =========================================== */

/* --- Variables matching site design --- */
:root {
  --hi-pink: #FF7BA3;
  --hi-pink-light: #FFD2E0;
  --hi-pink-bg: #FFF5F8;
  --hi-teal: #14ADA9;
  --hi-dark: #2A2A2A;
  --hi-black: #000000;
  --hi-white: #FFFFFF;
  --hi-gray-bg: #F4F4F4;
  --hi-gray-card: #EDEDED;
  --hi-gray-border: #C7C7C7;
  --hi-gray-text: #5a5a5a;
  --hi-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hi-font-accent: "Cormorant Garamond", Georgia, serif;
  --hi-max-width: 1570px;
}

/* --- Reset for hi- blocks --- */
[class^="hi-"] *, [class^="hi-"] *::before, [class^="hi-"] *::after {
  box-sizing: border-box;
}

/* --- Common --- */
.hi-container {
  max-width: var(--hi-max-width);
  margin: 0 auto;
  padding: 0 30px;
}

.hi-section-title {
  font-family: var(--hi-font-accent);
  font-size: 48px;
  font-weight: 500;
  color: var(--hi-dark);
  text-align: center;
  margin: 0 0 16px;
  line-height: 105%;
}

.hi-section-subtitle {
  font-family: var(--hi-font);
  font-size: 18px;
  color: var(--hi-gray-text);
  text-align: center;
  margin: 0 0 60px;
  line-height: 140%;
  font-weight: 400;
}

/* --- Buttons: Elementor-style (dark, square) --- */
.hi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hi-font);
  font-size: 18px;
  font-weight: 500;
  padding: 20px 40px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hi-btn-primary {
  background: var(--hi-dark);
  color: var(--hi-white);
  border-color: var(--hi-dark);
}

.hi-btn-primary:hover {
  background: var(--hi-white);
  color: var(--hi-black);
  border-color: var(--hi-black);
}

.hi-btn-secondary {
  background: transparent;
  color: var(--hi-white);
  border-color: rgba(255,255,255,0.6);
}

.hi-btn-secondary:hover {
  background: var(--hi-white);
  color: var(--hi-black);
  border-color: var(--hi-white);
}

/* Theme-style rounded buttons */
.hi-btn-teal {
  background: var(--hi-teal);
  color: var(--hi-white);
  border-radius: 40px;
  border-color: var(--hi-teal);
  font-weight: 600;
  padding: 16px 36px;
  text-transform: none;
}

.hi-btn-teal:hover {
  background: #119e9a;
  border-color: #119e9a;
}

.hi-btn-pink {
  background: var(--hi-pink);
  color: var(--hi-white);
  border-radius: 40px;
  border-color: var(--hi-pink);
  font-weight: 600;
  padding: 16px 36px;
  text-transform: none;
}

.hi-btn-pink:hover {
  background: #e86a91;
  border-color: #e86a91;
}

.hi-btn-bordered-pink {
  background: transparent;
  color: var(--hi-pink);
  border: 1px solid var(--hi-pink);
  border-radius: 40px;
  font-weight: 600;
  padding: 16px 36px;
  text-transform: none;
}

.hi-btn-bordered-pink:hover {
  background: var(--hi-pink);
  color: var(--hi-white);
}

/* =====================
   1. HERO SECTION
   ===================== */
.hi-hero {
  background: var(--hi-dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hi-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,123,163,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hi-hero .hi-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hi-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hi-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,123,163,0.1);
  border: 1px solid rgba(255,123,163,0.25);
  padding: 10px 24px;
  border-radius: 0;
  font-family: var(--hi-font);
  font-size: 14px;
  color: var(--hi-pink);
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hi-hero-badge-star {
  color: var(--hi-pink);
  font-size: 16px;
}

.hi-hero h1 {
  font-family: var(--hi-font);
  font-size: 72px;
  font-weight: 300;
  color: var(--hi-white);
  line-height: 1em;
  margin: 0 0 24px;
  letter-spacing: -2px;
}

.hi-hero h1 span {
  color: var(--hi-pink);
  font-weight: 300;
}

.hi-hero-subtitle {
  font-family: var(--hi-font);
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 140%;
  margin: 0 0 48px;
}

.hi-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hi-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hi-hero-trust-item {
  text-align: center;
}

.hi-hero-trust-value {
  font-family: var(--hi-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--hi-white);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.hi-hero-trust-label {
  font-family: var(--hi-font);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =====================
   2. TRUST STRIP
   ===================== */
.hi-trust-strip {
  background: var(--hi-pink);
  padding: 24px 0;
}

.hi-trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hi-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hi-white);
  font-family: var(--hi-font);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.hi-trust-strip-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* =====================
   3. PROBLEM → SOLUTION
   ===================== */
.hi-problem-solution {
  padding: 120px 0;
  background: var(--hi-white);
}

.hi-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.hi-problem-card {
  background: var(--hi-gray-bg);
  border: 1px solid var(--hi-gray-border);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s;
}

.hi-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hi-problem-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.hi-problem-title {
  font-family: var(--hi-font);
  font-size: 22px;
  font-weight: 500;
  color: var(--hi-dark);
  margin: 0 0 12px;
}

.hi-problem-text {
  font-family: var(--hi-font);
  font-size: 16px;
  color: var(--hi-gray-text);
  line-height: 140%;
  margin: 0;
}

.hi-solution-arrow {
  text-align: center;
  font-size: 36px;
  color: var(--hi-teal);
  margin: 40px 0;
}

.hi-solution-box {
  background: var(--hi-white);
  border: 2px solid var(--hi-teal);
  border-radius: 15px;
  padding: 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hi-solution-title {
  font-family: var(--hi-font-accent);
  font-size: 38px;
  font-weight: 500;
  color: var(--hi-dark);
  margin: 0 0 16px;
  line-height: 105%;
}

.hi-solution-text {
  font-family: var(--hi-font);
  font-size: 18px;
  color: var(--hi-gray-text);
  line-height: 140%;
  margin: 0;
}

.hi-section-cta {
  text-align: center;
  margin-top: 40px;
}

/* =====================
   4. WHY US (USP)
   ===================== */
.hi-why-us {
  padding: 120px 0;
  background: var(--hi-gray-bg);
}

.hi-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hi-usp-card {
  background: var(--hi-white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--hi-gray-border);
}

.hi-usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0,0,0,0.12);
}

.hi-usp-icon {
  width: 72px;
  height: 72px;
  background: var(--hi-pink-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 24px;
}

.hi-usp-title {
  font-family: var(--hi-font);
  font-size: 22px;
  font-weight: 500;
  color: var(--hi-dark);
  margin: 0 0 12px;
}

.hi-usp-text {
  font-family: var(--hi-font);
  font-size: 16px;
  color: var(--hi-gray-text);
  line-height: 140%;
  margin: 0;
}

/* =====================
   5. HOW IT WORKS
   ===================== */
.hi-how-it-works {
  padding: 120px 0;
  background: var(--hi-white);
}

.hi-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.hi-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--hi-gray-border);
  z-index: 0;
}

.hi-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hi-step-number {
  width: 72px;
  height: 72px;
  background: var(--hi-white);
  border: 2px solid var(--hi-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hi-font);
  font-size: 26px;
  font-weight: 300;
  color: var(--hi-teal);
  margin: 0 auto 20px;
}

.hi-step-title {
  font-family: var(--hi-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--hi-dark);
  margin: 0 0 8px;
}

.hi-step-text {
  font-family: var(--hi-font);
  font-size: 14px;
  color: var(--hi-gray-text);
  line-height: 140%;
  margin: 0;
}

/* =====================
   6. MYTHS & REALITY
   ===================== */
.hi-myths {
  padding: 120px 0;
  background: var(--hi-pink-bg);
}

.hi-myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hi-myth-card {
  background: var(--hi-white);
  border-radius: 15px;
  padding: 32px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,123,163,0.15);
  transition: transform 0.3s;
}

.hi-myth-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.hi-myth-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hi-pink-light);
}

.hi-myth-x {
  width: 30px;
  height: 30px;
  background: var(--hi-pink-light);
  color: var(--hi-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.hi-myth-text {
  font-family: var(--hi-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--hi-pink);
  text-decoration: line-through;
  line-height: 130%;
  margin: 0;
}

.hi-reality-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hi-reality-check {
  width: 30px;
  height: 30px;
  background: rgba(20,173,169,0.1);
  color: var(--hi-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.hi-reality-text {
  font-family: var(--hi-font);
  font-size: 16px;
  color: var(--hi-dark);
  line-height: 150%;
  margin: 0;
}

/* =====================
   7. PRICE COMPARISON
   ===================== */
.hi-prices {
  padding: 120px 0;
  background: var(--hi-white);
}

.hi-price-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.hi-price-table thead {
  background: var(--hi-dark);
}

.hi-price-table th {
  font-family: var(--hi-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--hi-white);
  padding: 20px 24px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hi-price-table tbody tr {
  transition: background 0.2s;
}

.hi-price-table tbody tr:hover {
  background: var(--hi-pink-bg);
}

.hi-price-table td {
  font-family: var(--hi-font);
  font-size: 16px;
  color: var(--hi-dark);
  padding: 20px 24px;
  border-bottom: 1px solid var(--hi-gray-border);
}

.hi-price-zone {
  font-weight: 500;
}

.hi-price-avg {
  color: var(--hi-gray-text);
  text-decoration: line-through;
}

.hi-price-ours {
  font-weight: 700;
  color: var(--hi-pink);
  font-size: 18px;
}

.hi-price-save {
  color: var(--hi-teal);
  font-weight: 500;
}

.hi-price-popular {
  position: relative;
}

.hi-price-popular td:first-child::after {
  content: 'Хит';
  display: inline-block;
  background: var(--hi-pink);
  color: var(--hi-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0;
  margin-left: 10px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hi-price-footer {
  text-align: center;
  max-width: 600px;
  margin: 30px auto 0;
}

.hi-price-footer-text {
  font-family: var(--hi-font-accent);
  font-size: 22px;
  font-weight: 500;
  color: var(--hi-dark);
  font-style: italic;
  margin: 0 0 8px;
  line-height: 105%;
}

.hi-price-footer-note {
  font-family: var(--hi-font);
  font-size: 14px;
  color: var(--hi-gray-text);
  margin: 0;
}

/* =====================
   8. PERFECT FOR YOU
   ===================== */
.hi-perfect-for {
  padding: 120px 0;
  background: var(--hi-gray-bg);
}

.hi-perfect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.hi-perfect-yes {
  background: var(--hi-white);
  border-radius: 15px;
  padding: 40px;
  border: 2px solid var(--hi-teal);
}

.hi-perfect-wait {
  background: var(--hi-white);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid var(--hi-gray-border);
}

.hi-perfect-heading {
  font-family: var(--hi-font);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hi-perfect-yes .hi-perfect-heading {
  color: var(--hi-teal);
}

.hi-perfect-wait .hi-perfect-heading {
  color: var(--hi-gray-text);
}

.hi-perfect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hi-perfect-list li {
  font-family: var(--hi-font);
  font-size: 16px;
  color: var(--hi-dark);
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  line-height: 140%;
  border-bottom: 1px solid var(--hi-gray-bg);
}

.hi-perfect-list li:last-child {
  border-bottom: none;
}

.hi-perfect-yes .hi-perfect-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--hi-teal);
  font-weight: 700;
}

.hi-perfect-wait .hi-perfect-list li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: var(--hi-gray-text);
}

/* =====================
   10. FINAL CTA
   ===================== */
.hi-final-cta {
  padding: 120px 0;
  background: var(--hi-dark);
  text-align: center;
}

.hi-final-cta .hi-section-title {
  color: var(--hi-white);
  margin-bottom: 12px;
}

.hi-final-cta-subtitle {
  font-family: var(--hi-font);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 48px;
}

.hi-form-note {
  font-family: var(--hi-font);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .hi-hero h1 {
    font-size: 52px;
  }

  .hi-section-title {
    font-size: 38px;
  }

  .hi-usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hi-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .hi-steps::before {
    display: none;
  }

  .hi-problem-solution,
  .hi-why-us,
  .hi-how-it-works,
  .hi-myths,
  .hi-prices,
  .hi-perfect-for,
  .hi-final-cta {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  .hi-container {
    padding: 0 20px;
  }

  .hi-hero {
    padding: 60px 0 50px;
    min-height: auto;
  }

  .hi-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hi-hero-subtitle {
    font-size: 18px;
  }

  .hi-hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hi-hero-cta .hi-btn {
    width: 100%;
  }

  .hi-trust-strip-inner {
    gap: 20px;
  }

  .hi-trust-strip-item {
    font-size: 14px;
  }

  .hi-problems-grid {
    grid-template-columns: 1fr;
  }

  .hi-section-title {
    font-size: 32px;
  }

  .hi-usp-grid {
    grid-template-columns: 1fr;
  }

  .hi-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hi-myths-grid {
    grid-template-columns: 1fr;
  }

  .hi-price-table th,
  .hi-price-table td {
    padding: 14px 12px;
    font-size: 14px;
  }

  .hi-perfect-grid {
    grid-template-columns: 1fr;
  }

  .hi-problem-solution,
  .hi-why-us,
  .hi-how-it-works,
  .hi-myths,
  .hi-prices,
  .hi-perfect-for,
  .hi-final-cta {
    padding: 70px 0;
  }

  .hi-section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hi-btn {
    font-size: 16px;
    padding: 16px 30px;
  }
}

@media (max-width: 480px) {
  .hi-hero h1 {
    font-size: 28px;
  }

  .hi-hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hi-hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .hi-hero-trust-value {
    font-size: 24px;
  }

  .hi-trust-strip-inner {
    flex-direction: column;
    gap: 12px;
  }

  .hi-steps {
    grid-template-columns: 1fr;
  }

  .hi-section-title {
    font-size: 28px;
  }
}
