/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 24px 80px;
}
.hero-slideshow {
    position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: 180%;
    background-position: center center;
    opacity: 0;
    animation: slideFade 18s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,15,0.75);
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

@keyframes slideFade {
    0% { opacity: 0; transform: scale(1.05); }
    10% { opacity: 1; }
    33% { opacity: 1; transform: scale(1); }
    43% { opacity: 0; }
    100% { opacity: 0; transform: scale(1.05); }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; padding: 20px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--border);
    padding: 8px 20px; border-radius: 100px;
    font-size: 0.85rem; color: var(--amber); font-weight: 500;
    margin-bottom: 0; animation: fadeUp 0.8s ease forwards;
}
.badge-dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero-title {
    font-family: var(--font2); font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 0; animation: fadeUp 0.8s ease 0.1s both;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text2);
    max-width: 650px; margin: 0 auto 0; animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 16px; animation: fadeUp 0.8s ease 0.4s both; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font2); font-size: 2.5rem; font-weight: 700; color: var(--amber); }
.stat-suffix { font-family: var(--font2); font-size: 1.5rem; font-weight: 700; color: var(--amber); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text3); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text3); font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 2px; animation: fadeUp 0.8s ease 0.5s both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--amber), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-lead { font-size: 1.15rem; color: var(--text); margin-bottom: 16px; }
.about-text p { color: var(--text2); margin-bottom: 24px; }
.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.about-visual { position: relative; display: flex; gap: 20px; justify-content: center; }

/* ===== SERVICES ===== */
.services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== PORTFOLIO STACK ===== */
.portfolio-stack {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 7;
    margin: 40px auto 0;
    perspective: 2000px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}
@media (max-width: 1024px) {
    .portfolio-stack { max-width: 800px; }
}
@media (max-width: 768px) {
    .portfolio-stack {
        aspect-ratio: 4 / 5;
        max-width: 100%;
    }
}
@media (max-width: 1024px) {
    .portfolio-stack { max-width: 800px; }
}
@media (max-width: 768px) {
    .portfolio-stack {
        aspect-ratio: 3 / 4;
        max-width: 100%;
    }
}

/* ===== REVIEWS ===== */
.reviews { background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.85)), url('../img/bg-reviews.jpg') center/cover fixed; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== PROCESS ===== */
.process { background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.85)), url('../img/bg-portfolio.jpg') center/cover fixed; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: process; }
.process-step {
    text-align: center; padding: 40px 24px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); position: relative; transition: all 0.4s ease;
}
.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(245,158,11,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-family: var(--font2); font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--amber), var(--coral));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: block; margin-bottom: 16px;
}
.process-step h3 { font-family: var(--font2); font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--text2); font-size: 0.9rem; }
.process-icon {
    width: 56px; height: 56px; margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(249,115,22,0.1));
    border: 1px solid rgba(245,158,11,0.2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.process-icon svg { width: 26px; height: 26px; stroke: var(--amber); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s; }
.faq-item.active { border-color: rgba(245,158,11,0.3); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: none; border: none;
    color: var(--text); font-family: var(--font); font-size: 1rem;
    font-weight: 500; cursor: pointer; text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--amber); }
.faq-icon { width: 24px; height: 24px; min-width: 24px; transition: transform 0.3s; stroke: var(--amber); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text2); font-size: 0.92rem; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(249,115,22,0.08));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 80px 0; text-align: center;
}
.cta-banner h2 { font-family: var(--font2); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.cta-banner p { color: var(--text2); max-width: 550px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ===== CONTACT ===== */
.contact-wrapper { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-info p { color: var(--text2); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text3); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.footer-links a { display: block; font-size: 0.85rem; color: var(--text3); padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text3); }

/* ===== FOOTER SOCIAL ===== */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--amber); background: rgba(245,158,11,0.1); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--text2); fill: none; transition: stroke 0.3s; }
.footer-social a:hover svg { stroke: var(--amber); }



