/* ==========================================================
   PYTHON HERO
========================================================== */

.python-hero{

    background:linear-gradient(135deg,#0b1f3a,#132f52);

    color:#ffffff;

    padding:90px 20px;

}

.python-hero-content{

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.python-hero-text{

    flex:1;

}

.hero-badge{

    display:inline-block;

    background:#ffd43b;

    color:#132f52;

    padding:10px 20px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:25px;

}

.python-hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

}

.python-hero h1 span{

    display:block;

    color:#ffd43b;

    font-size:34px;

    margin-top:15px;

}

.python-hero p{

    font-size:21px;

    line-height:1.9;

    color:#d7dde8;

    max-width:700px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin:40px 0;

}

.btn-primary{

    display:inline-block;

    background:#ffd43b;

    color:#132f52;

    padding:16px 32px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    background:#ffca1c;

}

.btn-secondary{

    display:inline-block;

    border:2px solid #ffd43b;

    color:#ffffff;

    padding:16px 32px;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:#ffd43b;

    color:#132f52;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:35px;

}

.hero-features div{

    background:rgba(255,255,255,.08);

    padding:14px 18px;

    border-radius:10px;

}

.python-hero-image{

    flex:1;

    text-align:center;

}

.python-hero-image img{

    width:100%;

    max-width:650px;

    height:auto;

}
/* ==========================================================
   INTRODUCTION
========================================================== */

.intro{

    padding:80px 20px;

    background:#ffffff;

}

.intro .container{

    max-width:1100px;

    margin:auto;

}

.intro h2{

    text-align:center;

    font-size:42px;

    color:#132f52;

    margin-bottom:35px;

}

.intro p{

    max-width:900px;

    margin:20px auto;

    font-size:19px;

    line-height:1.9;

    color:#4b5563;

}

/* ==========================================================
   ROADMAP
========================================================== */

.roadmap{

    padding:90px 20px;

    background:#f4f8fc;

}

.roadmap .container{

    max-width:1300px;

    margin:auto;

}

.roadmap h2{

    text-align:center;

    font-size:42px;

    color:#132f52;

    margin-bottom:50px;

}

.roadmap-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.roadmap-card{

    background:#ffffff;

    padding:30px;

    border-radius:14px;

    text-decoration:none;

    color:#132f52;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.roadmap-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.roadmap-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.roadmap-card p{

    color:#2563eb;

    font-weight:bold;

}

/* ==========================================================
   FEATURES
========================================================== */

.features{

    padding:90px 20px;

    background:#ffffff;

}

.features .container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.feature-card{

    background:#f8fafc;

    padding:35px;

    border-radius:14px;

    text-align:center;

    transition:.3s;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-card h3{

    color:#132f52;

    margin-bottom:20px;

    font-size:26px;

}

.feature-card p{

    line-height:1.8;

    color:#4b5563;

}

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

.cta{

    background:linear-gradient(135deg,#0b1f3a,#132f52);

    color:#ffffff;

    text-align:center;

    padding:90px 20px;

}

.cta .container{

    max-width:900px;

    margin:auto;

}

.cta h2{

    font-size:48px;

    margin-bottom:25px;

}

.cta p{

    font-size:21px;

    line-height:1.9;

    color:#d7dde8;

    margin-bottom:40px;

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

@media (max-width:1000px){

.python-hero-content{

    flex-direction:column;

    text-align:center;

}

.python-hero h1{

    font-size:48px;

}

.python-hero h1 span{

    font-size:28px;

}

.python-hero p{

    margin:auto;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-features{

    grid-template-columns:1fr;

    max-width:450px;

    margin:35px auto 0;

}

.python-hero-image{

    margin-top:40px;

}

.python-hero-image img{

    max-width:500px;

}

}

@media (max-width:768px){

.python-hero{

    padding:70px 20px;

}

.python-hero h1{

    font-size:38px;

}

.python-hero h1 span{

    font-size:24px;

}

.python-hero p{

    font-size:18px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.btn-primary,

.btn-secondary{

    width:260px;

    text-align:center;

}

.intro h2,

.roadmap h2,

.cta h2{

    font-size:34px;

}

.intro p,

.cta p{

    font-size:17px;

}

.roadmap-grid,

.features .container{

    grid-template-columns:1fr;

}

.feature-card{

    padding:30px;

}

}

@media (max-width:480px){

.python-hero{

    padding:60px 15px;

}

.python-hero h1{

    font-size:32px;

}

.python-hero h1 span{

    font-size:20px;

}

.hero-badge{

    font-size:14px;

    padding:8px 16px;

}

.btn-primary,

.btn-secondary{

    width:100%;

    max-width:300px;

}

.hero-features{

    max-width:100%;

}

}
