/* ========== Reset & Variables ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4C6EF5;
    --primary-2: #7C5CFF;
    --accent-color: #FFD43B;
    --accent-2: #FF7A59;
    --gradient-1: linear-gradient(135deg, #4C6EF5 0%, #7C5CFF 100%);
    --glass: rgba(255,255,255,0.6);
    --text-color: #212529;
    --white: #FFFFFF;
    --success-color: #51cf66;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(76, 110, 245, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ========== Utilities ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    animation: popIn 700ms cubic-bezier(.2,.9,.3,1);
    opacity: 1;
    transform: translateY(0);
}

/* ========== Hero Section ========== */
.hero {
    background-image: url(https://media-nova.fr/alternance/accueil.jpg);   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%); */
    color: var(--white);
    padding: 180px 20px 120px;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
    will-change: transform;
    transition: transform 0.25s ease-out;
}

.hero-shape.shape-1 {
    top: 10%;
    left: 5%;
    width: 160px;
    height: 160px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 30px rgba(76,110,245,0.15));
}

.hero-shape.shape-2 {
    bottom: 10%;
    right: 8%;
    width: 220px;
    height: 140px;
    animation: float 7s ease-in-out 0.4s infinite;
    border-radius: 12px;
    overflow: hidden;
}

.hero-shape.shape-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.95;
    transform: scale(1.03);
}

.hero-shape.shape-3 {
    top: 30%;
    right: 25%;
    width: 90px;
    height: 90px;
    background: var(--accent-2);
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: float 5.5s ease-in-out 0.8s infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(76,110,245,0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(124,92,255,0.22);
}

/* ========== Stats Bar ========== */
.stats-bar {
    background: var(--white);
    padding: 60px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* ========== Trust Badges ========== */
.trust-section {
    background: var(--secondary-color);
    padding: 40px 20px;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #666;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    fill: var(--success-color);
}

/* ========== How It Works Section ========== */
.how-it-works {
    padding: 100px 20px;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--secondary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 1rem;
    color: #666;
}

/* ========== Benefits Section ========== */
.benefits-section {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ========== Timeline Section ========== */
.timeline-section {
    padding: 100px 20px;
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* ========== Pricing Section ========== */
.pricing {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(76, 110, 245, 0.3);
}

.pricing-card.featured::before {
    content: '🔥 POPULAIRE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF7A59, #FFD43B);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 110, 245, 0.4);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.pricing-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-2));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
}

.pricing-button:hover {
    background: #3b5dd6;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 110, 245, 0.4);
}

/* ========== Comparison Table ========== */
.comparison-section {
    padding: 60px 20px;
    background: var(--white);
}

.comparison-table {
    max-width: 1000px;
    margin: 40px auto 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

th, td {
    padding: 20px;
    text-align: left;
}

th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

td {
    border-bottom: 1px solid var(--secondary-color);
}

tr:hover {
    background: var(--secondary-color);
}

.check {
    color: var(--success-color);
    font-size: 1.2rem;
}

.cross {
    color: #ccc;
    font-size: 1.2rem;
}

/* ========== Testimonials Section ========== */
.testimonials {
    padding: 100px 20px;
    background: var(--white);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '★★★★★';
    color: var(--accent-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* ========== Success Stories Section (Carrousel) ========== */
.success-stories {
    padding: 100px 20px;
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.success-story {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.success-story.active {
    opacity: 1;
}

.student-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(.2,.9,.3,1), box-shadow 0.3s ease;
    opacity: 0;
}

/* when slide active show and pop */
.success-story.active .student-avatar {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
}

.success-story h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.success-story .position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.success-story .stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.success-story .testimonial {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(76, 110, 245, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.16);
    transition: all 0.3s;
}

.carousel-indicators .dot.active {
    background: var(--primary-2);
    box-shadow: 0 6px 18px rgba(124,92,255,0.18);
}

/* ========== FAQ Section ========== */
.faq {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.faq-items {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

/* ========== Newsletter Section ========== */
.newsletter-section {
    background: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.newsletter-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #3b5dd6;
    transform: translateY(-2px);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ========== Urgency Banner ========== */
.urgency-banner {
    background: var(--accent-color);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.urgency-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.urgency-close:hover {
    opacity: 1;
}

/* ========== Footer ========== */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-links {
    margin: 30px 0;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    bottom: 30px;
}

.back-to-top:hover {
    background: #3b5dd6;
    transform: translateY(-5px);
}

/* ========== Toast Notification ========== */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: bottom 0.5s ease;
    font-weight: 500;
}

.toast.show {
    bottom: 100px;
}

/* ========== Keyframes ========== */
@keyframes float {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-12px) translateX(6px) rotate(2deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

@keyframes popIn {
    0% { transform: scale(0.85); opacity: 0; }
    60% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 15px 10px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urgency-banner {
        font-size: 0.9rem;
        padding: 15px 40px 15px 15px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    
    .success-story {
        padding: 20px;
    }

    .student-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .hero-shape { display: none; }
    .student-avatar-img { width: 80px; height: 80px; }
}
