:root {
    --primary: #109baa;   /* Teal */
    --secondary: #1ee6fd; /* Cyan */
    --dark: #0a0c10;      /* Ultra Dark Background */
    --surface: rgba(255, 255, 255, 0.03); /* Glass Base */
    --surface-border: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --text-body: #94a3b8;
    --text-heading: #f8fafc;
    
    --font-heading: 'Archivo', sans-serif;
    --font-body: 'Karla', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--dark);
    line-height: 1.6;
}

/* Ambient Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}
.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    opacity: 0.2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.animate-gradient {
    animation: shine 5s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-teal { color: var(--secondary); }

/* Glass Card Global Utility */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 12, 16, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-heading);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0c6f7a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 155, 170, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 155, 170, 0.6);
}

.btn-glow {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--surface-border);
    box-shadow: 0 0 0 0 rgba(30, 230, 253, 0.4);
}
.btn-glow:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 15px 0 rgba(30, 230, 253, 0.4);
    color: var(--secondary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 5rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    min-height: 95vh;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(30, 230, 253, 0.1);
    border: 1px solid rgba(30, 230, 253, 0.2);
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--surface-border);
    padding-top: 1.5rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
}

.relative {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.overlay-gradient {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(0deg, var(--dark) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    background: rgba(10, 12, 16, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 3s;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 230, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    color: var(--text-heading);
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--text-body);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Partners Track */
/* Education & Affiliates */
.partners-section {
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    padding: 4rem 0;
    background: rgba(0,0,0,0.25);
    text-align: center;
}
.partners-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.partners-sub {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.logo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 1.6rem 2.2rem;
    transition: all 0.3s ease;
    min-width: 160px;
}
.partner-item:hover {
    background: rgba(30,230,253,0.07);
    border-color: rgba(30,230,253,0.35);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30,230,253,0.15);
}
.partner-item span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-body);
    font-weight: 700;
    text-align: center;
}
.logo-track img {
    height: 54px;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}
.partner-item:hover img {
    opacity: 1;
    transform: scale(1.06);
    filter: brightness(1.15) drop-shadow(0 0 6px rgba(30,230,253,0.4));
}

/* Features grid */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.feature-card {
    padding: 3rem 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(30, 230, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 6rem 2rem;
}
.split-section.align-center {
    align-items: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}
.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.premium-callout {
    padding: 3rem;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(16, 155, 170, 0.1) 100%);
}
.premium-callout h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.premium-callout .divider {
    height: 1px;
    background: var(--surface-border);
    margin: 2rem 0;
}

/* Testimonials grid */
.testimonials-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 155, 170, 0.06) 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.tcard {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(30, 230, 253, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(30, 230, 253, 0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}
.tcard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.tcard-icon {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.6;
    line-height: 1;
}
.tcard-stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
    color: #f5c518;
}
.tcard-quote {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-body);
    flex: 1;
    font-style: italic;
}
.tcard-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Shared avatar + author styles */
.author-block {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}
.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--secondary);
    flex-shrink: 0;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info {
    text-align: left;
}
.author-info strong {
    display: block;
    color: var(--text-heading);
    font-size: 1rem;
    font-weight: 700;
}
.author-info span {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Legacy single-testimonial (other pages) */
.testimonial-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 155, 170, 0.05) 100%);
}
.big-quote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-heading);
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

/* YouTube Section */
.yt-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(16,155,170,0.04) 0%, transparent 100%);
}
.yt-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}
.yt-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 1rem;
}
.yt-label i {
    font-size: 1.2rem;
}
.yt-header h2 {
    margin-bottom: 1rem;
}
.yt-header p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
}
.yt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.yt-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.yt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(30, 230, 253, 0.2);
}
.yt-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.yt-embed-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.yt-cta {
    text-align: center;
    margin-top: 3rem;
}
.yt-cta .btn i {
    margin-right: 0.4rem;
}
@media (max-width: 768px) {
    .yt-grid {
        grid-template-columns: 1fr;
    }
    .yt-section {
        padding: 4rem 0;
    }
}

/* Lead Capture Form */
.lead-capture-section {
    padding: 5rem 0 8rem 0;
}

.lead-form-container {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.lead-form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}
.form-header h3 {
    font-size: 2rem;
}

.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group {
    margin-bottom: 1.5rem;
}
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-heading);
}

.lead-form input, .lead-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lead-form input:focus, .lead-form select:focus {
    outline: none;
    border-color: var(--secondary);
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-body);
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 5rem 2rem 2rem 2rem;
    background: #050608;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(1.2);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-body);
    font-size: 1.1rem;
    transition: all 0.25s ease;
    text-decoration: none;
}
.footer-social a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(30, 230, 253, 0.08);
    transform: translateY(-2px);
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a, .footer-contact a {
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
    font-size: 0.9rem;
}

/* Utils */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Styling for split section upgrades */
.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s, background 0.3s;
}

.benefit-card:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    background: rgba(30, 230, 253, 0.05);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30, 230, 253, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text strong {
    display: block;
    color: var(--text-heading);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.benefit-text span {
    color: var(--text-body);
    font-size: 0.9rem;
}

.lead-text {
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile & Tablet Optimizations */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding-top: 10rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 3rem auto;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .split-section, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    /* Layout Adjustments */
    .container {
        padding: 0 1.2rem;
    }
    
    .header .nav-actions {
        display: block; 
    }
    
    .header .btn-glow {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Hero Adjustments */
    .hero {
        padding-top: 7rem;
        padding-bottom: 1.5rem;
        gap: 2rem;
    }

    .hero-visual { height: auto; }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1rem;
    }
    
    /* Image and Floating Badges */
    .image-wrapper {
        height: 400px;
        border-radius: 16px;
    }
    
    .floating-badge {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .floating-badge .icon-circle {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .badge-text strong {
        font-size: 0.9rem;
    }
    
    .badge-text span {
        font-size: 0.7rem;
    }
    
    .badge-1 { left: -2%; top: 5%; }
    .badge-2 { right: -2%; bottom: 10%; }
    
    /* Features & Splits */
    .features {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .split-section {
        padding: 3rem 1.2rem;
        gap: 2rem;
    }
    
    .premium-callout {
        padding: 2rem;
    }
    
    /* Logos */
    .logo-track {
        gap: 2rem;
    }
    .logo-track img {
        height: 30px;
    }

    /* Testimonials grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-section {
        padding: 3rem 0;
    }

    /* Testimonial (legacy single) */
    .testimonial-section {
        padding: 3rem 0;
    }
    .big-quote {
        font-size: 1.5rem;
    }
    
    /* Forms */
    .lead-capture-section {
        padding: 3rem 0;
    }
    
    .lead-form-container {
        padding: 2rem 1.2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}

/* ── Responsive utility grids ── */
.yt-responsive-grid {
    grid-template-columns: 1fr 1fr;
}
.practical-days-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.modal-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 640px) {
    .yt-responsive-grid,
    .practical-days-grid,
    .modal-name-row {
        grid-template-columns: 1fr;
    }
}

/* Quiz Additions */
.quiz-layout {
    max-width: 800px;
}
.quiz-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.quiz-step.active {
    display: block;
}
.quiz-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: var(--secondary);
    transition: width 0.4s ease;
}
.quiz-step h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.quiz-btn {
    padding: 1.2rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.quiz-btn:hover {
    background: rgba(30, 230, 253, 0.1);
    border-color: var(--secondary);
    transform: translateX(5px);
}
.quiz-success-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}
.score-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    background: rgba(30, 230, 253, 0.1);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(30, 230, 253, 0.3);
}
.result-screen p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Skip Link (Accessibility) ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Hamburger Menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none !important;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(10, 12, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem 2rem 2rem;
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: 1px solid var(--surface-border);
        z-index: 99;
    }
    .nav-links.open {
        display: flex !important;
    }
    .nav-links .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--surface-border);
        font-size: 1.1rem;
    }
}

/* ── Breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--secondary); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb-sep { opacity: 0.4; }

/* ── Inner Page Hero ── */
.page-hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.page-hero p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.page-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Generic page sections ── */
.page-section { padding: 5rem 0; }
.page-section-alt {
    padding: 5rem 0;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

/* ── Stats Row ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}
.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(16,155,170,0.15), rgba(30,230,253,0.05));
    border-top: 1px solid rgba(30,230,253,0.15);
    border-bottom: 1px solid rgba(30,230,253,0.15);
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.cta-banner-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Course Cards ── */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.course-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
}
.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
}
.course-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16,155,170,0.2), rgba(30,230,253,0.05));
    border-bottom: 1px solid var(--surface-border);
}
.course-card-header .icon-wrapper { margin-bottom: 1.5rem; }
.course-card-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.course-card-header p { font-size: 0.95rem; color: var(--text-body); }
.course-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.course-card-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}
.course-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--surface-border);
    font-size: 0.95rem;
    color: var(--text-body);
}
.course-card-features li:last-child { border-bottom: none; }
.course-card-features li i { color: var(--secondary); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.course-card .btn { margin-top: auto; }
.course-highlight {
    background: linear-gradient(135deg, rgba(16,155,170,0.25), rgba(30,230,253,0.1));
    border: 2px solid rgba(30,230,253,0.3) !important;
}
.course-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--secondary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Module / Curriculum Cards ── */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.module-card {
    padding: 1.8rem;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
}
.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}
.module-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(30,230,253,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.module-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.module-card p { font-size: 0.9rem; color: var(--text-body); }

/* ── Process Steps ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 3rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
    opacity: 0.3;
}
.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}
.process-step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0 auto 1.5rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-body); }

/* ── Contact Layout ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}
.contact-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-heading);
}
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin-bottom: 1.5rem;
}
.contact-form-wrapper textarea { resize: vertical; min-height: 140px; }
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus { outline: none; border-color: var(--secondary); }
.contact-form-wrapper select option { background: #0a0c10; }
.contact-info-list { list-style: none; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 16px;
}
.contact-info-item .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30,230,253,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary);
    flex-shrink: 0;
}
.contact-info-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-body);
    margin-bottom: 0.25rem;
}
.contact-info-item > div:last-child {
    min-width: 0;
    overflow-wrap: break-word;
}
.contact-info-item p, .contact-info-item a {
    color: var(--text-heading);
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
}
.contact-info-item a:hover { color: var(--secondary); }

/* ── Blog Grid ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30,230,253,0.3);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(16,155,170,0.3), rgba(30,230,253,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary);
    flex-shrink: 0;
}
.blog-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-body);
}
.blog-tag {
    background: rgba(30,230,253,0.1);
    border: 1px solid rgba(30,230,253,0.2);
    color: var(--secondary);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; line-height: 1.3; }
.blog-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; flex: 1; }
.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.2rem;
    transition: gap 0.2s;
}
.blog-card .read-more:hover { gap: 0.8rem; }

/* ── Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.team-card { padding: 2.5rem 2rem; text-align: center; }
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(30,230,253,0.3);
    overflow: hidden;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.team-card .team-role {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.team-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }

/* ── Lead Magnet / Focused Landing Page ── */
.lm-layout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 5rem;
}
.lm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.lm-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.lm-content p { font-size: 1.1rem; color: var(--text-body); margin-bottom: 2rem; line-height: 1.8; }
.lm-benefits-list { list-style: none; margin-bottom: 2rem; }
.lm-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: var(--text-heading);
    font-size: 1rem;
}
.lm-benefits-list li i { color: var(--secondary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.lm-form-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.lm-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.lm-form-card h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.lm-form-card > p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 2rem; }
.lm-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    transition: border-color 0.3s;
}
.lm-form input:focus { outline: none; border-color: var(--secondary); }
.lm-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}
.lm-steps {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-border);
}
.lm-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-body);
}
.lm-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Thank You page ── */
.ty-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}
.ty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(30,230,253,0.1);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary);
    margin: 0 auto 2rem;
}

/* ── Privacy / Legal ── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
}
.legal-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal-content .last-updated { color: var(--text-body); font-size: 0.9rem; margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--text-heading); }
.legal-content p, .legal-content li { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--secondary); }

/* ── 404 Page ── */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
}
.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
    .contact-grid, .lm-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-steps::before { display: none; }
}
@media (max-width: 600px) {
    .page-hero { padding: 8rem 1.2rem 3rem; }
    .course-grid, .modules-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.25rem; margin: 1rem 0; }
    .stat-item { padding: 0.75rem 0.25rem; }
    .stat-item .stat-num { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
    .stat-item .stat-label { font-size: 0.72rem; }
    .cta-banner { padding: 3rem 1.2rem; }
    .lm-layout { padding: 6rem 1.2rem 3rem; }
    .lm-form-card { padding: 2rem 1.2rem; }
    .legal-content { padding: 6rem 1.2rem 3rem; }

    /* Contact form — reduce inline padding on narrow screens */
    .contact-form-wrapper { padding: 1.5rem !important; }

    /* About page image — reduce height so full-width crop shows Jamie */
    .split-visual .image-wrapper { height: 280px !important; }
    .split-visual .image-wrapper .hero-img { object-position: left center !important; }
}

/* ── FAQ Section ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(30, 230, 253, 0.35);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    border-top: 1px solid var(--surface-border);
    padding-top: 1rem;
}
