/* =====================================
   SECTIONS - HERO, CONTENT AREAS
==================================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    padding: var(--space-4xl) var(--space-xl);
    overflow: hidden;
    scroll-margin-top: 92px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
}

@media (prefers-color-scheme: light) {
    .hero::before {
        mix-blend-mode: color-dodge ;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-tight);
}

.hero-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2xl);
    line-height: var(--line-height-relaxed);
}

/* Sections */
.section {
    padding: var(--space-2xl) var(--space-xl);
    scroll-margin-top: 92px;
}

.section--alternate {
    background: var(--color-surface);
}

.section-title {
    font-size: var(--font-size-3xl);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-subtitle {
    text-align: center;
    margin-bottom: var(--space-3xl);
    font-size: var(--font-size-lg);
}

/* Grids */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-text h3 {
    margin-top: var(--space-2xl);
}

.about-text h3:first-child {
    margin-top: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.feature-list li {
    padding: var(--space-md) 0;
    padding-left: var(--space-lg);
    position: relative;
    line-height: var(--line-height-relaxed);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: var(--font-weight-bold);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.stat-card {
    background: var(--color-background);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--font-size-base);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: var(--space-lg);
}

.info-box {
    background: var(--color-background);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.info-box p {
    margin-bottom: var(--space-md);
    line-height: var(--line-height-relaxed);
}

.info-box a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.info-box a:hover {
    color: var(--color-accent);
}

