/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.partner-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('assets/img/reg-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.219);
}

.hero-content h1 {
    position: relative;
    color: white;
           margin-top: 101px;
}
 .overlay
        {
            margin-top: 91px;
        }
/* TIERS */
.tiers-section {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
     margin-top: 40px;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tier-card {
    padding: 40px;
    border-radius: 20px;
    background: #464646;
    color: white;
    transition: 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
}

.tier-card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    color: #f57c00;
    margin-bottom: 20px;
}

.tier-card ul {
    list-style: none;
    padding: 0;
}

.tier-card li {
    margin-bottom: 10px;
}

/* FORM */
.partner-form-section {
    padding: 80px 10%;
    background: #000000;
}

.partner-form-container {
    max-width: 700px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.btn-submit {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
    background: #f57c00;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #ff9800;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgb(41, 41, 41);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content i {
    font-size: 50px;
    color: #f57c00;
    margin-bottom: 20px;
}

.modal-content button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #f57c00;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-content button:hover {
    background: #ff9800;
}

/* ===============================
RESPONSIVE RANGE SYSTEM
================================= */

/* SMALL LAPTOPS 901px — 1200px */
@media (min-width:901px) and (max-width:1200px) {
    .tiers-section, .partner-form-section {
        padding: 60px 8%;
    }

    .partner-hero {
        height: 45vh;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .tier-card {
        padding: 35px;
    }

    .price {
        font-size: 22px;
    }
     .top-bar{
        font-size: 12px;
    }
  .hero-content{
        margin-top: 101px;
    }

    .overlay
        {
            margin-top: 91px;
        }
}

/* TABLETS 769px — 900px */
@media (min-width:769px) and (max-width:900px) {
    .tiers-section, .partner-form-section {
        padding: 50px 6%;
    }

    .partner-hero {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .tier-card {
        padding: 30px;
    }

    .price {
        font-size: 20px;
    }
     .top-bar{
        font-size: 12px;
    }
  .hero-content{
        margin-top: 101px;
    }

    .overlay
        {
            margin-top: 91px;
        }
}

/* LARGE PHONES 481px — 768px */
@media (min-width:481px) and (max-width:768px) {
    .tiers-section, .partner-form-section {
        padding: 40px 5%;
    }

    .partner-hero {
        height: 35vh;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .tier-card {
        padding: 25px;
    }

    .price {
        font-size: 18px;
    }
     .top-bar{
        font-size: 12px;
    }
  .hero-content{
        margin-top: 101px;
    }

    .overlay
        {
            margin-top: 91px;
        }
}

/* SMALL PHONES 0px — 480px */
@media (max-width:480px) {
    .tiers-section, .partner-form-section {
        padding: 30px 4%;
    }

    .partner-hero {
        height: 30vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .tier-card {
        padding: 20px;
    }

    .price {
        font-size: 16px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 14px;
    }

    .modal-content {
        padding: 30px;
    }
    .top-bar{
        font-size: 12px;
    }
  .hero-content h1 {
        margin-top: 101px;
    }

    .overlay
        {
            margin-top: 91px;
        }
}

/* =========================================
   WHY EVOKE
========================================= */

.why-evoke{

    padding:80px 10%;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.stat-card{

    background:#303030;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h1{

    font-size:2.8rem;

    color:#f57c00;

    margin-bottom:10px;

}

.stat-card p{

    color:#ddd;

}

/* =========================================
   OPPORTUNITY
========================================= */

.opportunity-section{

    padding:80px 10%;

    text-align:center;

}

.opportunity-section p{

    max-width:900px;

    margin:auto;

    color:#d8d8d8;

    font-size:18px;

}

/* =========================================
   PARTNERSHIP AREAS
========================================= */

.partnership-section{

    padding:80px 10%;

}

.partnership-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.partner-card{

    background:#303030;

    border-radius:18px;

    padding:35px;

    transition:.3s;

}

.partner-card:hover{

    transform:translateY(-8px);

}

.partner-card h3{

    color:#f57c00;

    margin-bottom:15px;

}

.partner-card p{

    color:#ddd;

}

/* =========================================
   PARTICIPATION TYPES
========================================= */

.participation-section{

    padding:80px 10%;

}

.partner-types{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.type-card{

    background:#303030;

    padding:30px;

    border-radius:18px;

    text-align:center;

    transition:.3s;

}

.type-card:hover{

    transform:translateY(-8px);

}

.type-card h3{

    color:#f57c00;

    margin-bottom:15px;

}

.type-card p{

    color:#ddd;

}

/* =========================================
   IMPACT TARGETS
========================================= */

.impact-targets{

    padding:80px 10%;

    background:#1c1c1c;

}

/* =========================================
   FINAL CTA
========================================= */

.final-cta{

    padding:100px 10%;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #232323,
    #101010
    );

}

.final-cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.final-cta p{

    max-width:850px;

    margin:auto;

    color:#ddd;

    margin-bottom:30px;

}

.hero-btn{

    display:inline-block;

    padding:15px 35px;

    background:#f57c00;

    color:white;

    border-radius:40px;

    transition:.3s;

}

.hero-btn:hover{

    background:#ff9800;

}

/* =========================================
   PARTNERSHIP TYPE ICONS
========================================= */

.type-icon{

    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(245,124,0,.15);

    display:flex;
    align-items:center;
    justify-content:center;

}

.type-icon i{

    font-size:32px;

    color:#f57c00;

}

.type-card{

    text-align:center;

}