/* =========================================
   GLOBAL RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* =========================================
   CONTAINER
========================================= */

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 24px;
}

/* =========================================
   SECTIONS
========================================= */

section{
    position:relative;
    overflow:hidden;
}

.dark-section{
    background:#050505;
    color:#fff;
}

.white-section{
    background:#f4f4f4;
    color:#111;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section{
    padding:120px 0;
    background:
    linear-gradient(rgba(0,0,0,0.85),rgba(0,0,0,0.92)),
    url('images/grid-bg.png');
    background-size:cover;
    background-position:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    background:#d7a72a20;
    color:#d7a72a;
    border-radius:100px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:24px;
}

.hero-content h1{
    font-size:78px;
    line-height:1;
    font-weight:800;
    margin-bottom:28px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#bcbcbc;
    max-width:650px;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.primary-btn{
    padding:16px 28px;
    background:#d7a72a;
    color:#000;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
    transition:0.35s ease;
}

.primary-btn:hover{
    transform:translateY(-4px);
    background:#e6ba4c;
}

.secondary-btn{
    padding:16px 28px;
    background:#151515;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    transition:0.35s ease;
}

.secondary-btn:hover{
    transform:translateY(-4px);
    background:#222;
}

/* =========================================
   HERO OVERVIEW
========================================= */

.hero-overview{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.overview-card{
    background:linear-gradient(180deg,#111,#0a0a0a);
    border-radius:24px;
    padding:34px 28px;
    transition:0.35s ease;
    border:1px solid rgba(255,255,255,0.05);
}

.overview-card:hover{
    transform:translateY(-8px);
    border-color:#d7a72a40;
    box-shadow:0 15px 40px rgba(215,167,42,0.12);
}

.overview-icon{
    width:62px;
    height:62px;
    background:#d7a72a;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.overview-icon i{
    color:#000;
    font-size:22px;
}

.overview-card h3{
    font-size:42px;
    margin-bottom:8px;
    font-weight:800;
}

.overview-card p{
    color:#bcbcbc;
    font-size:15px;
}

/* =========================================
   INFO SECTION
========================================= */

.info-section{
    padding:90px 0;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.info-card{
    background:#fff;
    border-radius:26px;
    padding:38px 30px;
    transition:0.35s ease;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-icon{
    width:56px;
    height:56px;
    background:#d7a72a;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.info-icon i{
    color:#000;
    font-size:20px;
}

.info-card h3{
    font-size:28px;
    margin-bottom:10px;
    color:#000;
}

.info-card p{
    color:#666;
    line-height:1.8;
}

/* =========================================
   WEEK SECTION
========================================= */

.week-section{
    padding:110px 0;
}

.week-header{
    margin-bottom:50px;
}

.week-title{
    display:flex;
    align-items:center;
    gap:22px;
    margin-bottom:24px;
}

.week-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#d7a72a;
    display:flex;
    align-items:center;
    justify-content:center;
}

.week-icon i{
    color:#000;
    font-size:28px;
}

.week-title span{
    color:#d7a72a;
    font-size:15px;
    font-weight:700;
}

.week-title h2{
    font-size:54px;
    line-height:1.1;
    margin-top:6px;
}

.week-header p{
    max-width:900px;
    color:#bcbcbc;
    line-height:2;
    font-size:17px;
}

.dark-text p{
    color:#555;
}

/* =========================================
   WEEK STATS
========================================= */

.week-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-bottom:60px;
}

.stat-card{
    background:#fff;
    color:#000;
    border-radius:22px;
    padding:32px;
    transition:0.35s ease;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card h3{
    font-size:38px;
    margin-bottom:10px;
}

.stat-card p{
    color:#666;
}

/* =========================================
   GALLERY
========================================= */

.campaign-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.gallery-card{
    overflow:hidden;
    border-radius:24px;
    background:#111;
    transition:0.35s ease;
}

.gallery-card.large{
    grid-column:span 2;
}

.gallery-card img{
    width:100%;
    display:block;
    transition:0.45s ease;
}

.gallery-card:hover img{
    transform:scale(1.03);
}

/* =========================================
   STRATEGY SECTION
========================================= */

.strategy-section{
    padding:120px 0;
}

.strategy-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.section-mini-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#d7a72a;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.strategy-content h2{
    font-size:64px;
    line-height:1.05;
    color:#000;
    margin-bottom:28px;
}

.strategy-content p{
    color:#666;
    line-height:2;
    font-size:17px;
}

.strategy-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.mini-card{
    background:#fff;
    padding:38px 30px;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:0.35s ease;
}

.mini-card:hover{
    transform:translateY(-8px);
}

.mini-card i{
    width:58px;
    height:58px;
    background:#d7a72a;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    font-size:22px;
    margin-bottom:20px;
}

.mini-card h4{
    color:#000;
    font-size:28px;
    line-height:1.3;
}

/* =========================================
   SUMMARY SECTION
========================================= */

.summary-section{
    padding:120px 0;
}

.summary-header{
    text-align:center;
    margin-bottom:70px;
}

.summary-header h2{
    font-size:68px;
    color:#000;
    margin-bottom:24px;
}

.summary-header p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:2;
    font-size:17px;
}

.summary-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.summary-card{
    background:#fff;
    border-radius:26px;
    padding:44px 32px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:0.35s ease;
}

.summary-card:hover{
    transform:translateY(-8px);
}

.summary-card i{
    font-size:32px;
    color:#d7a72a;
    margin-bottom:22px;
}

.summary-card h3{
    color:#000;
    font-size:48px;
    margin-bottom:12px;
}

.summary-card p{
    color:#666;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .hero-content h1{
        font-size:62px;
    }

    .week-title h2{
        font-size:44px;
    }

    .strategy-content h2{
        font-size:50px;
    }

    .summary-header h2{
        font-size:52px;
    }

}

@media(max-width:992px){

    .hero-grid,
    .strategy-grid{
        grid-template-columns:1fr;
    }

    .hero-overview{
        margin-top:20px;
    }

    .info-grid,
    .week-stats,
    .summary-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .hero-section{
        padding:90px 0;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:16px;
    }

    .week-title h2{
        font-size:36px;
    }

    .strategy-content h2{
        font-size:40px;
    }

    .summary-header h2{
        font-size:42px;
    }

    .campaign-gallery{
        grid-template-columns:1fr;
    }

    .gallery-card.large{
        grid-column:span 1;
    }

}

@media(max-width:576px){

    .info-grid,
    .week-stats,
    .summary-grid,
    .hero-overview,
    .strategy-cards{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:40px;
    }

    .week-title{
        align-items:flex-start;
    }

    .week-title h2{
        font-size:30px;
    }

    .summary-header h2{
        font-size:34px;
    }

    .container{
        padding:0 18px;
    }

}