/* =========================================
GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#eef3f1;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    color:#0f172a;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 70px;
}


/* =========================================
HERO SECTION
========================================= */

.hero-section{
    padding:60px 0 90px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.08fr 0.92fr;
    gap:60px;
    align-items:center;
}

.hero-content{
    max-width:700px;
}

.hero-tag{
    display:inline-block;
    color:#ff7a1a;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:24px;
    position:relative;
    padding-top:22px;
}

.hero-tag::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:76px;
    height:5px;
    border-radius:100px;
    background:#ff7a1a;
}

.hero-content h1{
    font-size:64px;
    line-height:1.02;
    font-weight:800;
    color:#004d43;
    letter-spacing:-2px;
    margin-bottom:30px;
}

.hero-content p{
    font-size:19px;
    line-height:1.9;
    color:#667085;
    margin-bottom:40px;
    max-width:620px;
}


/* =========================================
BUTTONS
========================================= */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:38px;
}

.primary-btn,
.secondary-btn{
    min-width:240px;
    height:68px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    text-decoration:none;

    font-size:16px;
    font-weight:700;

    transition:all 0.35s ease;

    cursor:pointer;
}

.primary-btn{
    background:#00a99d;
    color:#ffffff;
    border:none;
}

.primary-btn:hover{
    background:#ff7a1a;
    color:#ffffff;

    transform:translateY(-4px);
}

.secondary-btn{
    background:#ffffff;
    color:#005c52;

    border:1.5px solid #d7dfdc;
}

.secondary-btn:hover{
    background:#ff7a1a;
    border-color:#ff7a1a;
    color:#ffffff;

    transform:translateY(-4px);
}


/* =========================================
CATEGORY STRIP
========================================= */

.expert-strip{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.expert-strip a{
    text-decoration:none;

    background:#00a99d;
    color:#ffffff;

    padding:12px 18px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    transition:0.3s ease;
}

.expert-strip a:hover{
    background:#ff7a1a;
    color:#ffffff;

    transform:translateY(-3px);
}


/* =========================================
HERO CARD
========================================= */

.hero-card{
    background:#ffffff;
    border-radius:36px;
    overflow:hidden;

    box-shadow:
    0 20px 55px rgba(0,0,0,0.06);
}

.hero-card img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
}

.hero-card-content{
    padding:36px;
}

.card-badge{
    display:inline-flex;

    background:#eef7f4;
    color:#ff7a1a;

    padding:12px 22px;

    border-radius:999px;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:24px;
}

.hero-card-content h3{
    font-size:34px;
    line-height:1.1;
    font-weight:800;

    color:#0f172a;

    margin-bottom:22px;
}

.hero-card-content p{
    color:#667085;
    line-height:1.8;
    font-size:17px;

    margin-bottom:28px;
}

.full-btn{
    width:100%;
}


/* =========================================
SECTION TITLE
========================================= */

.section-title{
    text-align:left;
    margin-bottom:55px;
}

.section-title span{
    color:#ff7a1a;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
}

.section-title h2{
    margin-top:18px;

    font-size:52px;
    line-height:1.08;

    color:#004d43;

    font-weight:800;

    letter-spacing:-2px;
}


/* =========================================
SESSIONS
========================================= */

.sessions-section{
    padding:90px 0;
}

.sessions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.session-card{
    background:#ffffff;

    border-radius:28px;
    overflow:hidden;

    transition:0.35s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
}

.session-card:hover{
    transform:translateY(-8px);
}

.session-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.session-content{
    padding:28px;
}

.session-content span{
    color:#ff7a1a;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
}

.session-content h3{
    font-size:28px;
    line-height:1.2;

    margin:16px 0;
}

.session-content p{
    color:#667085;
    line-height:1.8;
}


/* =========================================
EXPERTS
========================================= */

.experts-section{
    padding-bottom:90px;
}

.experts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.expert-card{
    background:#ffffff;

    border-radius:28px;
    overflow:hidden;

    transition:0.35s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
}

.expert-card:hover{
    transform:translateY(-8px);
}

.expert-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.expert-content{
    padding:28px;
}

.expert-content span{
    color:#ff7a1a;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
}

.expert-content h3{
    font-size:28px;
    margin:16px 0;
}

.expert-content p{
    color:#667085;
    line-height:1.8;
}


/* =========================================
CTA
========================================= */

.cta-section{
    padding-bottom:90px;
}

.cta-strip{
    background:
    linear-gradient(135deg,#00796b,#00a99d);

    border-radius:40px;

    padding:65px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;
}

.cta-strip span{
    color:#ffcfad;

    font-size:12px;
    font-weight:700;

    letter-spacing:4px;
}

.cta-strip h2{
    color:#ffffff;

    font-size:52px;
    line-height:1.08;

    margin-top:18px;

    max-width:700px;
}


/* =========================================
FOOTER
========================================= */

.footer{
    background:
    linear-gradient(135deg,#004d43,#00695c);

    color:#ffffff;

    padding:70px 0 25px;

    margin-top:100px;

    border-radius:40px 40px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:70px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:24px;
}

.footer-logo img{
    width:50px;
}

.footer-logo h2{
    font-size:42px;
    font-weight:800;
}

.footer-brand p{
    color:rgba(255,255,255,0.75);

    line-height:1.9;
    font-size:17px;

    max-width:420px;
}

.footer-socials{
    display:flex;
    gap:16px;

    margin-top:28px;
}

.footer-socials a{
    width:46px;
    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;

    text-decoration:none;

    transition:0.3s ease;
}

.footer-socials a:hover{
    background:#ff7a1a;
    transform:translateY(-4px);
}

.footer-links h4,
.footer-contact h4{
    font-size:22px;
    margin-bottom:28px;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:rgba(255,255,255,0.75);

    text-decoration:none;

    transition:0.3s ease;
}

.footer-links ul li a:hover{
    color:#ff7a1a;
}

.footer-contact p{
    color:rgba(255,255,255,0.75);

    margin-bottom:18px;

    line-height:1.7;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);

    margin-top:55px;
    padding-top:24px;

    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,0.65);
}


/* =========================================
FLOATING CTA
========================================= */

.floating-cta{
    position:fixed;

    right:24px;
    bottom:24px;

    width:72px;
    height:72px;

    border-radius:50%;

    background:#00a99d;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#ffffff;

    font-size:28px;

    z-index:999;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

    .hero-grid,
    .sessions-grid,
    .experts-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:54px;
    }

    .cta-strip{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:768px){

    .container{
        padding:0 24px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .section-title h2{
        font-size:38px;
    }

    .cta-strip{
        padding:40px 30px;
    }

    .cta-strip h2{
        font-size:36px;
    }
}
/* =========================================
BUTTONS
========================================= */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:38px;
}

.primary-btn,
.secondary-btn{
    min-width:240px;
    height:68px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    text-decoration:none;

    font-size:16px;
    font-weight:700;

    transition:all 0.35s ease;

    cursor:pointer;
}


/* PRIMARY BUTTON */

.primary-btn{
    background:#00a99d !important;
    color:#ffffff !important;

    border:none !important;

    box-shadow:none !important;

    background-image:none !important;
}

.primary-btn:hover{
    background:#ff7a1a !important;

    color:#ffffff !important;

    background-image:none !important;

    box-shadow:none !important;

    transform:translateY(-4px);
}


/* SECONDARY BUTTON */

.secondary-btn{
    background:#ffffff !important;

    color:#005c52 !important;

    border:1.5px solid #d7dfdc !important;

    box-shadow:none !important;

    background-image:none !important;
}

.secondary-btn:hover{
    background:#ff7a1a !important;

    border-color:#ff7a1a !important;

    color:#ffffff !important;

    background-image:none !important;

    box-shadow:none !important;

    transform:translateY(-4px);
}


/* CATEGORY BUTTONS */

.expert-strip a{
    text-decoration:none;

    background:#00a99d !important;

    color:#ffffff !important;

    padding:12px 18px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    transition:all 0.3s ease;

    box-shadow:none !important;

    background-image:none !important;
}

.expert-strip a:hover{
    background:#ff7a1a !important;

    color:#ffffff !important;

    box-shadow:none !important;

    background-image:none !important;

    transform:translateY(-3px);
}