.hero {
    position: relative;
    text-align: center;
    padding: 5rem 0 6rem;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.hero-blob--1 {
    width: 600px;
    height: 600px;
    background: #f97316;
    top: -30%;
    right: -15%;
    animation: blobFloat1 14s infinite;
}

.hero-blob--2 {
    width: 500px;
    height: 500px;
    background: #ef4444;
    bottom: -35%;
    left: -10%;
    animation: blobFloat2 16s infinite;
}

.hero-blob--3 {
    width: 350px;
    height: 350px;
    background: #facc15;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    animation: blobFloat3 11s infinite;
}

.hero-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, transparent 40%, var(--color-bg) 75%),
        radial-gradient(ellipse at 50% 100%, transparent 40%, var(--color-bg) 75%),
        radial-gradient(ellipse at 0% 50%, transparent 40%, var(--color-bg) 75%),
        radial-gradient(ellipse at 100% 50%, transparent 40%, var(--color-bg) 75%);
    pointer-events: none;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-40px, 30px) scale(1.06); }
    66%  { transform: translate(20px, -35px) scale(0.94); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(35px, -20px) scale(1.07); }
    66%  { transform: translate(-25px, 15px) scale(0.93); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-50%, -65%) scale(1.12); }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.01) 2px,
            rgba(255,255,255,0.01) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.006) 2px,
            rgba(255,255,255,0.006) 4px
        );
    mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.why-section {
    padding: 5rem 0;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.info-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: #fff;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.features-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #fff;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.gallery-section {
    padding: 5rem 0;
}

.gallery-scroller {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
}

.gallery-scroller img {
    width: 260px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 750px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.faq-item[open] {
    background-color: var(--color-surface-elevated);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    color: #fff;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-text-secondary);
    transition: var(--transition);
    border-radius: 2px;
}
.faq-icon::before {
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
}
.faq-icon::after {
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
}

.faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item p {
    padding-top: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .infographic-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .gallery-scroller {
        flex-direction: column;
        align-items: center;
    }
    .gallery-scroller img {
        width: 100%;
        max-width: 320px;
    }
    .section-header h2 {
        font-size: 1.75rem;
    }
}