.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    background: rgba(199, 146, 90, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.4rem;
    margin: 0.3rem 0;
    color: var(--color-text);
}
.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1a1512 0%, #2b1f16 30%, #3a2517 60%, #1e1a17 100%);
    overflow: hidden;
    text-align: center;
    padding: 6rem 2rem;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(199, 146, 90, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(156, 102, 68, 0.08) 0%, transparent 60%),
        url('../../assets/images/hero/hero-bg.webp') center/cover no-repeat;
    opacity: 0.3;
    mix-blend-mode: soft-light;
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-up 8s infinite ease-in;
}
.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 20%; animation-delay: 1.2s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { left: 35%; animation-delay: 2.4s; width: 5px; height: 5px; }
.hero-particles span:nth-child(4) { left: 50%; animation-delay: 3.6s; }
.hero-particles span:nth-child(5) { left: 65%; animation-delay: 0.6s; width: 3px; height: 3px; opacity: 0.2; }
.hero-particles span:nth-child(6) { left: 75%; animation-delay: 1.8s; }
.hero-particles span:nth-child(7) { left: 85%; animation-delay: 3s; width: 4px; height: 4px; }
.hero-particles span:nth-child(8) { left: 15%; animation-delay: 4.2s; width: 3px; height: 3px; opacity: 0.25; }
.hero-particles span:nth-child(9) { left: 55%; animation-delay: 2s; }
.hero-particles span:nth-child(10) { left: 92%; animation-delay: 5s; width: 5px; height: 5px; opacity: 0.35; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(199, 146, 90, 0.15);
    border: 1px solid rgba(199, 146, 90, 0.3);
    color: var(--color-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(237, 224, 212, 0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 0.85rem 2.2rem;
    font-size: 1.05rem;
}
.hero-scroll {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(237, 224, 212, 0.5);
    font-size: 0.8rem;
    animation: bounce-down 2s infinite;
}
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: auto;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}
.animate-slide-up {
    animation: slideUp 1s ease forwards;
}
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro {
    padding: 5rem 0;
    background: var(--color-bg);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-visual {
    display: flex;
    justify-content: center;
}
.intro-image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 24px var(--color-shadow);
    max-width: 500px;
    width: 100%;
}
.intro-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.intro-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.intro-text .section-tag {
    margin-bottom: 0.8rem;
}
.intro-text h2 {
    font-size: 2.2rem;
    margin: 0 0 1rem;
}
.intro-desc {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.intro-feature svg {
    flex-shrink: 0;
}

.featured {
    padding: 5rem 0;
    background: var(--color-surface);
}
.featured .products-grid {
    margin-bottom: 2rem;
}
.featured-action {
    text-align: center;
}

.services {
    padding: 5rem 0;
    background: var(--color-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(199, 146, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.35s, background 0.35s;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(199, 146, 90, 0.2);
}
.service-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    color: var(--color-text);
}
.service-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0 0 1rem;
}
.service-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.service-link:hover {
    color: var(--color-primary-hover);
}

.process-mini {
    padding: 5rem 0;
    background: var(--color-surface);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.process-step {
    position: relative;
    padding: 2rem 1rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.step-number {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(199, 146, 90, 0.1);
    pointer-events: none;
    transition: color 0.3s;
}
.process-step:hover .step-number {
    color: rgba(199, 146, 90, 0.2);
}
.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(199, 146, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.process-step h4 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--color-text);
}
.process-step p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(160deg, #1f1a16 0%, var(--color-bg) 50%, #1f1a16 100%);
}
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.testimonials-track {
    display: flex;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    background: var(--color-surface);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
    text-align: center;
}
.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}
.testimonial-stars {
    color: #f0c040;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.2rem;
    position: relative;
    z-index: 0;
}
.testimonial-card p::before {
    content: '"';
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(199, 146, 90, 0.08);
    z-index: -1;
}
.testimonial-card footer strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
}
.testimonial-card footer span {
    display: block;
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}
.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}
.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--color-primary);
}

.stats {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--color-bg) 0%, #1f1a16 100%);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(199, 146, 90, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
}
.stat-item:first-child .stat-number,
.stat-item:first-child .stat-suffix {
    display: inline;
}
.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.cta-banner {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(160deg, #2b1f16 0%, #1a1512 100%);
    overflow: hidden;
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(199, 146, 90, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(156, 102, 68, 0.08) 0%, transparent 50%),
        url('../../assets/images/hero/hero-bg.webp') center/cover no-repeat;
    opacity: 0.25;
    mix-blend-mode: soft-light;
}
.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.cta-banner-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin: 0 0 1rem;
}
.cta-banner-content p {
    font-size: 1.15rem;
    color: rgba(237, 224, 212, 0.8);
    margin: 0 0 2.5rem;
    line-height: 1.7;
}
.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .intro-visual {
        order: -1;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .stat-number,
    .stat-suffix {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .intro-text h2 {
        font-size: 1.8rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .cta-banner-content h2 {
        font-size: 2rem;
    }
    .hero-actions,
    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-lg {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 1rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-badge {
        font-size: 0.75rem;
    }
    .intro-features {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: opacity 0.3s ease;
        transform: none;
    }
    .hero-particles span,
    .hero-scroll {
        animation: none;
    }
    .service-card:hover,
    .process-step:hover {
        transform: none;
    }
}

.stat-percent {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-number-group {
    display: inline-block;
}
