/* ==========================================================
   AlterMind Programs
   ========================================================== */


/* ==========================================================
   HERO
   ========================================================== */

.programs-hero{

    position:relative;

    overflow:hidden;

    padding:190px 0 120px;

    background:
        radial-gradient(circle at top right,
        rgba(124,92,255,.18),
        transparent 45%),

        radial-gradient(circle at bottom left,
        rgba(0,212,255,.12),
        transparent 40%);

}

.programs-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(255,255,255,.02),
            rgba(255,255,255,.01));

    pointer-events:none;

}

.programs-hero .section-title{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.programs-hero h1{

    color:#fff;

    font-size:clamp(48px,6vw,70px);

    margin-bottom:28px;

}

.programs-hero p{

    max-width:760px;

    margin:auto;

    color:rgba(255,255,255,.72);

    line-height:1.9;

}

.programs-hero .am-buttons{

    justify-content:center;

    margin-top:45px;

}


/* ==========================================================
   GLOBAL
   ========================================================== */

.featured-program,
.learning-paths,
.why-altermind,
.learning-journey,
.programs-faq,
.programs-cta{

    padding:110px 0;

}
/* ==========================================================
   FEATURED PROGRAM
   ========================================================== */

.featured-card{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

    padding:60px;

    border-radius:30px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

}

.featured-badge{

    display:inline-flex;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(124,92,255,.12);

    color:var(--accent);

    font-weight:700;

}

.featured-card h2{

    color:#fff;

    margin:24px 0;

    font-size:2.6rem;

}

.featured-list{

    margin-top:35px;

    padding-left:18px;

}

.featured-list li{

    margin-bottom:16px;

    color:rgba(255,255,255,.82);

}

.featured-right{

    display:flex;

    justify-content:center;

}
/* ==========================================================
   PROGRAM CARDS
   ========================================================== */

.program-card{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    padding:40px;

    min-height:360px;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

}

.program-card:hover{

    transform:translateY(-8px);

    border-color:rgba(124,92,255,.30);

}

.program-type{

    display:inline-flex;

    width:max-content;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(124,92,255,.12);

    color:var(--accent);

    font-weight:700;

    margin-bottom:22px;

}

.program-card h3{

    color:#fff;

    margin-bottom:18px;

}

.program-card p{

    color:rgba(255,255,255,.72);

    line-height:1.8;

    flex:1;

}

.program-actions{

    margin-top:28px;

}

.program-actions .btn{

    width:100%;

}
/* ==========================================================
   WHY + FAQ + CTA
   ========================================================== */

.why-altermind .card,
.programs-faq .faq-item{

    padding:38px;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

}

.why-altermind .card:hover,
.programs-faq .faq-item:hover{

    transform:translateY(-8px);

    border-color:rgba(124,92,255,.30);

}

.learning-journey .journey-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.journey-step{

    text-align:center;

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

}

.step-number{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:700;

    background:rgba(124,92,255,.12);

    color:var(--accent);

}

.programs-cta .section-title{

    max-width:920px;

    margin:auto;

    padding:70px 60px;

    border-radius:30px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

}

.programs-cta .am-buttons{

    justify-content:center;

    margin-top:40px;

}
/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media(max-width:992px){

    .featured-card{

        grid-template-columns:1fr;

    }

    .journey-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .programs-hero{

        padding:130px 0 80px;

    }

    .featured-program,
    .learning-paths,
    .why-altermind,
    .learning-journey,
    .programs-faq,
    .programs-cta{

        padding:75px 0;

    }

    .featured-card{

        padding:35px;

    }

    .journey-grid{

        grid-template-columns:1fr;

    }

    .programs-hero .am-buttons{

        flex-direction:column;

    }

    .programs-hero .btn{

        width:100%;

    }

    .programs-cta .section-title{

        padding:40px 30px;

    }

}
/* ==========================================================
   FLAGSHIP PROGRAM CARD
   Future Human Academy
   ========================================================== */

.program-card-flagship {

	position: relative;
	overflow: hidden;

	border: 1px solid rgba(255, 216, 77, .35) !important;

	background:
		radial-gradient(
			circle at top right,
			rgba(255, 216, 77, .16),
			transparent 55%
		),
		rgba(255, 255, 255, .035) !important;

	box-shadow:
		0 20px 60px rgba(245, 197, 66, .08);

}

.program-card-flagship::before {

	content: "";

	position: absolute;

	top: 0;
	left: 0;
	right: 0;

	height: 3px;

	background:
		linear-gradient(
			90deg,
			#d89b00,
			#ffd84d,
			#fff0a8,
			#ffd84d,
			#d89b00
		);

}

.program-card-flagship .program-type {

	color: #ffd84d !important;

	font-weight: 800;

}

.program-card-flagship h3 {

	color: #fff;

}

.program-card-flagship:hover {

	border-color: rgba(255, 216, 77, .60) !important;

	transform: translateY(-8px);

	box-shadow:
		0 25px 75px rgba(245, 197, 66, .16);

}

.program-card-flagship .btn {

	background:
		linear-gradient(
			135deg,
			#ffe98a,
			#ffd84d,
			#d89b00
		) !important;

	color: #17130a !important;

	border-color: transparent !important;

	font-weight: 800;

	box-shadow:
		0 10px 30px rgba(245, 197, 66, .18);

}
