  /* HERO */
  .hero {
    padding: 60px clamp(16px, 5vw, 80px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-green);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
  }

  .hero-badge::before {
    content: '★';
    font-size: 10px;
  }

  .hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--c-dark);
    margin-bottom: 20px;
  }

  .hero h1 .accent-1 {
    color: var(--c-orange);
  }

  .hero h1 .accent-2 {
    color: var(--c-blue);
  }

  .hero-sub {
    font-size: 17px;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: 32px;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 50px;
    background: var(--c-orange);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Golos Text', sans-serif;
  }

  .btn-hero:hover {
    background: #d96a08;
    transform: translateY(-2px);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .stat-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
  }

  .stat-card:nth-child(1)::before {
    background: var(--c-green);
  }

  .stat-card:nth-child(2)::before {
    background: var(--c-orange);
  }

  .stat-card:nth-child(3)::before {
    background: var(--c-blue);
  }

  .stat-card:nth-child(4)::before {
    background: var(--c-violet);
  }

  .stat-card:nth-child(5)::before {
    background: var(--c-pink);
  }

  .stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--c-dark);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.4;
  }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
  }

  .hero-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e4df 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-img-placeholder {
    font-size: 80px;
    opacity: 0.2;
  }

  .hero-price-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--c-white);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .hero-price-badge .price {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--c-orange);
  }

  .hero-price-badge .price-label {
    font-size: 12px;
    color: var(--c-muted);
  }

  .hero-trust-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--c-green);
    border-radius: 14px;
    padding: 12px 18px;
    color: #fff;
    text-align: center;
  }

  .hero-trust-badge .num {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
  }

  .hero-trust-badge .lbl {
    font-size: 11px;
    opacity: 0.9;
  }