/* Growth Camp Landing Page Styles */

:root {
    --primary: #ca20fd;
    --primary-color: var(--primary);
    --secondary: #f27839;
    --accent2: #eb4f74;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
}

#footer .footer-top .footer-info h3 {
    color: #fff;
}

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

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 150px;
    max-width: 62vw;
    height: auto;
    animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(202, 32, 253, 0.2);
}

.announcement-bar p {
    margin: 0;
    color: var(--white);
}

.live-time {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(202, 32, 253, 0.05), rgba(242, 120, 57, 0.05));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 32, 253, 0.1), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.hero-left h1 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.2;
    color: var(--text-dark);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 16px 36px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(202, 32, 253, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(202, 32, 253, 0.4);
}

.trust-line {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(202, 32, 253, 0.1);
}

.signup-card {
    max-width: 100%;
}

.signup-card .header {
    text-align: center;
    margin-bottom: 22px;
}

.signup-card .header h1 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.15;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-card .header p {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.signup-card form {
    display: flex;
    flex-direction: column;
}

.signup-card .success {
    background: #d1fae5;
    color: #065f46;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: none;
    font-size: 13px;
    font-weight: 600;
}

.signup-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.signup-card .form-group {
    margin-bottom: 16px;
}

.signup-card .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signup-card .form-group input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--primary);
    border-radius: 999px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(202, 32, 253, 0.1);
}

.signup-card .form-group input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(242, 120, 57, 0.15);
}

.signup-card .form-group.has-value input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.signup-card .form-group.focused input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(242, 120, 57, 0.15);
}

.signup-card .form-group input::placeholder {
    color: #9ca3af;
}

.signup-card .password-group {
    position: relative;
}

.signup-card .password-group input {
    padding-right: 72px;
}

.signup-card .toggle-password {
    position: absolute;
    right: 14px;
    top: 50px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 12px;
    user-select: none;
    transition: color 0.2s;
    font-weight: 500;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
}

.signup-card .toggle-password:hover {
    color: var(--primary);
}

.signup-card .error {
    display: none;
    margin-top: 6px;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 600;
}

.signup-card .input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.18) !important;
}

.signup-card .form-group.focused input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.signup-card .dropdown-selected.focused {
    border-color: var(--secondary);
}

.signup-card .gender-options {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.signup-card .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
}

.signup-card input[type="radio"] {
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.signup-card input[type="radio"] + .radio-indicator {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.signup-card input[type="radio"]:checked + .radio-indicator {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 2px 8px rgba(243, 81, 106, 0.3);
}

.signup-card input[type="radio"]:checked + .radio-indicator::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    margin: 5px 0 0 5px;
}

.signup-card .dropdown-custom {
    position: relative;
    width: 100%;
}

.signup-card .dropdown-selected {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--primary);
    border-radius: 999px;
    font-size: 14px;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(202, 32, 253, 0.1);
}

.signup-card #lookingForLabel {
    color: var(--text-light);
}

.signup-card .dropdown-selected.has-value #lookingForLabel {
    color: var(--text-dark);
}

.signup-card .dropdown-selected:hover {
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(242, 120, 57, 0.15);
}

.signup-card .dropdown-selected.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(202, 32, 253, 0.12);
}

.signup-card .dropdown-selected::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.3s ease;
}

.signup-card .dropdown-selected.active::after {
    transform: rotate(-135deg);
}

.signup-card .dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid rgba(202, 32, 253, 0.15);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 20;
    display: none;
}

.signup-card .dropdown-menu.active {
    display: block;
}

.signup-card .dropdown-option {
    padding: 12px 14px;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
}

.signup-card .dropdown-option:hover,
.signup-card .dropdown-option.selected {
    background: linear-gradient(135deg, rgba(202, 32, 253, 0.08), rgba(242, 120, 57, 0.08));
    color: var(--primary);
    font-weight: 600;
}

.signup-card .dropdown-option::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.signup-card .dropdown-option.selected::before {
    opacity: 1;
}

.signup-card .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.signup-card .checkbox-label input {
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.signup-card .checkbox-indicator {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
    flex-shrink: 0;
}

.signup-card .checkbox-label input:checked + .checkbox-indicator {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 2px 8px rgba(243, 81, 106, 0.3);
}

.signup-card .checkbox-label input:checked + .checkbox-indicator::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.signup-card .checkbox-label.input-error {
    color: #b91c1c;
}

.signup-card .gender-options.input-error {
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.signup-card .dropdown-selected.input-error {
    border-color: #ef4444;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.18);
}

.password-strength {
    display: none;
    font-size: 12px;
    margin-top: 6px;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.password-strength.weak {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

.password-strength.medium {
    display: block;
    background: #fef3c7;
    color: #92400e;
}

.password-strength.strong {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.match-status {
    display: none;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.match-status.match {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.match-status.mismatch {
    display: block;
    background: #fff1f2;
    color: #b91c1c;
    border: 1px solid #fecdd3;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    font-size: 14px;
}

.landing-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.required {
    color: var(--accent2);
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(202, 32, 253, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    margin-top: 5px;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202, 32, 253, 0.3);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

/* Social Proof Section */
.social-proof-section {
    padding: 48px 20px;
    background: var(--bg-light);
}

.social-proof-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.proof-grid {
    display: grid;
    gap: 12px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(202, 32, 253, 0.07), rgba(242, 120, 57, 0.06), rgba(255, 255, 255, 0.96));
    text-align: left;
}

.proof-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.proof-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.proof-item-rating .proof-icon {
    background: rgba(79, 70, 229, 0.12);
    color: var(--text-dark);
}

.proof-item-members .proof-icon {
    background: rgba(14, 165, 233, 0.12);
    color: var(--text-dark);
}

.proof-item-income .proof-icon {
    background: rgba(16, 185, 129, 0.12);
    color: var(--text-dark);
}

.proof-item-success .proof-icon {
    background: rgba(234, 88, 12, 0.12);
    color: var(--text-dark);
}

.proof-content {
    min-width: 0;
}

.proof-content h4 {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--primary);
    font-weight: 800;
    font-family: inherit;
}

.metric-value {
    font: inherit;
}

.metric-suffix {
    font-size: 0.58em;
    line-height: 1;
}

.proof-content h5 {
    margin: 0 0 6px;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.25;
    font-weight: 600;
    color: var(--secondary);
}

.proof-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: color-mix(in srgb, var(--primary) 58%, var(--secondary) 42%);
}

@media (min-width: 1024px) {
    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-item {
        padding: 1.2rem;
    }

    .proof-content h4 {
        font-size: 1.7rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(32px, 3vw, 42px);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

.inline-cta {
    margin-top: 36px;
    padding: 26px 24px;
    border-radius: 14px;
    text-align: left;
    background: linear-gradient(135deg, rgba(202, 32, 253, 0.08), rgba(242, 120, 57, 0.08));
    border: 1px solid rgba(202, 32, 253, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.inline-cta p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.inline-cta .cta-btn {
    margin: 0;
    flex-shrink: 0;
}

.inline-cta-light {
    background: var(--white);
    border-color: rgba(202, 32, 253, 0.14);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

/* Mentors & Session Preview Section */
.mentors-preview-section {
    padding: 96px 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(202, 32, 253, 0.08), transparent 26%),
        radial-gradient(circle at 18% 18%, rgba(242, 120, 57, 0.08), transparent 20%),
        linear-gradient(180deg, #1f1d1c 0%, #23211f 100%);
    color: var(--white);
}

.mentors-preview-header {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.mentors-preview-header .section-kicker,
.preview-column .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f9ecf4;
    color: var(--accent2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    margin-bottom: 14px;
}

.mentors-preview-header h2 {
    margin: 0 0 8px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.mentors-preview-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.mentors-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.preview-column {
    min-width: 0;
}

.preview-column h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.preview-column > p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.session-video-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.session-video-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.12), transparent 24%),
        radial-gradient(circle at 72% 24%, rgba(202, 32, 253, 0.2), transparent 22%),
        linear-gradient(135deg, #23211f 0%, #2c2927 100%);
}

/* Video element inside session stage */
.session-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keep overlay play button centered above the video */
.session-video-stage .session-play-button {
    position: absolute;
    z-index: 6;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.session-play-button {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(202, 32, 253, 0.28);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.session-play-button.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.session-play-button svg,
.session-mini-play svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.session-video-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--white);
    padding: 14px 16px;
}

.session-video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.session-mini-play {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    flex-shrink: 0;
}

.session-video-meta h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    color: var(--text-dark);
    font-weight: 700;
}

.session-video-meta p {
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.2;
    color: var(--text-light);
}

.session-video-views {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-light);
    flex-shrink: 0;
}

.mentor-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px 22px 18px;
}

.mentor-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    margin: 0;
}

.mentor-row::-webkit-scrollbar {
    display: none;
}

.mentor-item {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

/* Normalize spacing for mentor items and ensure the last item doesn't add extra padding */
.mentor-row .mentor-item {
    padding: 0;
    margin: 0;
}

.mentor-row .mentor-item:last-child {
    margin-right: 0;
    padding-right: 0;
}

.mentor-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    overflow: hidden;
}

.mentor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-rahul {
    background: #fdebf4;
    border-color: #f5b9d1;
}

.mentor-priya {
    background: #ede9ff;
    border-color: #c8baf7;
}

.mentor-arjun {
    background: #e4fbf0;
    border-color: #b5ebd0;
}

.mentor-item h4 {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 700;
}

.mentor-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-light);
}

.mentor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.mentor-badge-rose {
    background: #fde8f1;
    color: #be185d;
}

.mentor-badge-indigo {
    background: #eef2ff;
    color: #4338ca;
}

.mentor-badge-mint {
    background: #e8fbf2;
    color: #0f5132;
}

.mentor-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.mentor-card-footer p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.mentor-view-all {
    color: var(--accent2);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.mentor-view-all:hover {
    color: var(--primary);
}

/* Default state for mobile carousel */
.mentor-mobile-carousel {
    display: none;
}

.mentor-row {
    display: flex;
}

.mentor-desktop-nav {
    display: flex;
}

.mentor-mobile-card {
    width: 100%;
    margin: 0 0 20px 0;
}

.mentor-mobile-card:hover {
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: none;
}

.mentor-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.mentor-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mentor-arrow svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    transition: transform 0.25s ease, fill 0.25s ease;
}

.mentor-arrow:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(202, 32, 253, 0.24);
}

.mentor-arrow:hover:not(:disabled) svg {
    fill: var(--white);
}

#mentorPrev:hover:not(:disabled) svg {
    transform: translateX(-3px);
}

#mentorNext:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.mentor-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mentor-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mentor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--text-light) 40%, transparent);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.mentor-dot.is-active {
    border-color: var(--primary);
    transform: scale(1.4);
}

.mentor-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 1023px) {
    .mentors-preview-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .preview-column h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .mentors-preview-section {
        padding: 72px 20px;
    }

    .mentors-preview-header {
        margin-bottom: 28px;
    }

    .mentors-preview-header h2 {
        font-size: 30px;
    }

    .preview-column h3 {
        font-size: 22px;
    }

    /* Hide desktop navigation and row on mobile */
    .mentor-desktop-nav {
        display: none !important;
    }

    .mentor-row {
        display: none !important;
    }

    /* Show mobile carousel on mobile */
    .mentor-mobile-carousel {
        display: block !important;
    }



    .session-video-footer,
    .mentor-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .session-video-views {
        margin-left: 0;
    }

    .mentor-card {
        padding: 22px 16px 16px;
    }

    .mentor-item {
        flex-basis: 100%;
    }

    .mentor-row,
    .mentor-card-footer {
        display: none;
    }

    .mentor-card-footer {
        display: flex;
    }

    .mentor-mobile-card .mentor-row {
        display: flex !important;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .mentor-mobile-card .mentor-item {
        flex: 0 1 auto;
        min-width: 0;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mentor-mobile-card .mentor-item h4 {
        margin: 4px 0 0;
        font-size: 16px;
        line-height: 1.2;
        color: var(--text-dark);
        font-weight: 700;
    }

    .mentor-mobile-card .mentor-item p {
        margin: 0;
        font-size: 13px;
        line-height: 1.3;
        color: var(--text-light);
    }

    .mentor-mobile-card .mentor-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 4px;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.01em;
    }
}


@media (max-width: 480px) {
    .mentors-preview-header p,
    .preview-column > p {
        font-size: 14px;
    }

    .mentor-row {
        gap: 14px;
    }

    .session-video-meta h4 {
        font-size: 14px;
    }

    .mentor-mobile-stage {
        gap: 10px;
    }

    .mentor-mobile-viewport {
        min-height: 226px;
    }

    .mentor-mobile-avatar {
        width: 80px;
        height: 80px;
        font-size: 26px;
    }

    .mentor-mobile-name {
        font-size: 17px;
    }

    .mentor-mobile-role {
        font-size: 13px;
    }

    .mentor-mobile-arrow {
        width: 34px;
        height: 34px;
    }

    .mentor-mobile-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Curriculum Section */
.curriculum-section {
    padding: 80px 20px;
    background:
        radial-gradient(circle at 14% 12%, rgba(202, 32, 253, 0.07), transparent 34%),
        radial-gradient(circle at 88% 88%, rgba(242, 120, 57, 0.08), transparent 36%),
        linear-gradient(180deg, #fbf8ff 0%, #f6fbff 100%);
}

.curriculum-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curriculum-day {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: flex-start;
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
}

.curriculum-day:hover {
    box-shadow: 0 8px 25px rgba(202, 32, 253, 0.1);
    transform: translateX(5px);
}

.day-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.day-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.day-time {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.day-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.day-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Transformation Section */
.transformation-section {
    padding: 80px 20px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 153, 102, 0.14), transparent 36%),
        radial-gradient(circle at 90% 90%, rgba(35, 169, 146, 0.14), transparent 38%),
        linear-gradient(180deg, #fffdf8 0%, #f7fffc 100%);
}

.transformation-shell {
    max-width: 980px;
    margin: 0 auto;
}

.outcome-ribbon {
    width: fit-content;
    margin: 0 auto 26px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: #083b33;
    background: #e8f8f3;
    border: 1px solid rgba(8, 59, 51, 0.2);
}

.transformation-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.transformation-timeline::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 122, 61, 0.7), rgba(35, 169, 146, 0.7));
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
}

.timeline-marker {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    background: #0f6d61;
    box-shadow: 0 10px 24px rgba(26, 160, 135, 0.24);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #13243a;
}

.timeline-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.state-card {
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid transparent;
}

.state-before {
    background: rgba(255, 122, 61, 0.08);
    border-color: rgba(255, 122, 61, 0.24);
}

.state-after {
    background: rgba(35, 169, 146, 0.1);
    border-color: rgba(35, 169, 146, 0.26);
}

.state-label {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #0f172a;
}

.state-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #3d4b5d;
}

.state-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1aa087;
    padding: 0 6px;
}

.transformation-summary {
    margin-top: 24px;
    padding: 26px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(140deg, #13243a 0%, #183d55 50%, #18655a 100%);
    box-shadow: 0 12px 30px rgba(24, 61, 85, 0.32);
}

.transformation-summary h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f7fbff;
}

.transformation-summary p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    margin-top: 16px;
    background: var(--bg-light);
}

.testimonials-slider {
    overflow: hidden;
    padding: 12px 6px 14px;
    margin: -12px -6px 18px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(202, 32, 253, 0.16), 0 -6px 18px rgba(202, 32, 253, 0.08);
}

.star-rating {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: normal;
    line-height: 1.7;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonials-arrow svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    transition: transform 0.25s ease, fill 0.25s ease;
}

.testimonials-arrow:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(202, 32, 253, 0.24);
}

.testimonials-arrow:hover:not(:disabled) svg {
    fill: var(--white);
}

#testimonialsPrev:hover:not(:disabled) svg {
    transform: translateX(-3px);
}

#testimonialsNext:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.testimonials-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--text-light) 40%, transparent);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonials-dot.is-active {
    border-color: var(--primary);
    transform: scale(1.4);
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 650px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* Doubts Section */
.doubts-section {
    padding: 80px 20px;
}

.doubts-slider {
    overflow: hidden;
    padding: 12px 6px 14px;
    margin: -12px -6px 18px;
}

.doubts-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.doubt-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f5f5f5;
    transition: all 0.3s ease;
}

.doubt-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(202, 32, 253, 0.1);
}

.doubt-card h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.doubt-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.doubts-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.doubts-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.doubts-arrow svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    transition: transform 0.25s ease, fill 0.25s ease;
}

.doubts-arrow:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(202, 32, 253, 0.24);
}

.doubts-arrow:hover:not(:disabled) svg {
    fill: var(--white);
}

#doubtsPrev:hover:not(:disabled) svg {
    transform: translateX(-3px);
}

#doubtsNext:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.doubts-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.doubts-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doubts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--text-light) 40%, transparent);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.doubts-dot.is-active {
    border-color: var(--primary);
    transform: scale(1.4);
}

@media (max-width: 992px) {
    .doubt-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 650px) {
    .doubt-card {
        flex: 0 0 100%;
    }
}

/* Is This For You Section */
.for-you-section {
    padding: 80px 20px;
    background:
        radial-gradient(circle at 18% 16%, rgba(26, 160, 135, 0.12), transparent 35%),
        radial-gradient(circle at 84% 82%, rgba(255, 104, 129, 0.12), transparent 36%),
        linear-gradient(180deg, #f7fbff 0%, #f9f8ff 100%);
}

.for-you-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.for-you-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.for-you-column {
    position: relative;
    padding: 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.for-you-column::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
}

.for-you-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.for-you-column h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 20px;
    margin-bottom: 22px;
    line-height: 1.35;
}

.for-you-column.yes h3 {
    color: #0f7b67;
}

.for-you-column.yes {
    background: linear-gradient(165deg, rgba(230, 255, 247, 0.94) 0%, rgba(255, 255, 255, 0.98) 68%);
}

.for-you-column.yes::before {
    background: linear-gradient(180deg, #0ca678, #20c997);
}

.for-you-column.no h3 {
    color: #c24156;
}

.for-you-column.no {
    background: linear-gradient(165deg, rgba(255, 236, 241, 0.95) 0%, rgba(255, 255, 255, 0.98) 68%);
}

.for-you-column.no::before {
    background: linear-gradient(180deg, #e15674, #f08aa0);
}

.verdict-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 800;
}

.for-you-column.yes .verdict-chip {
    background: rgba(12, 166, 120, 0.15);
    border: 1px solid rgba(12, 166, 120, 0.3);
}

.for-you-column.no .verdict-chip {
    background: rgba(225, 86, 116, 0.16);
    border: 1px solid rgba(225, 86, 116, 0.28);
}

.for-you-list {
    list-style: none;
    display: grid;
    gap: 11px;
}

.for-you-list li {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.55;
    padding: 11px 14px 11px 40px;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.84);
}

.for-you-column.yes li::before {
    content: '✓';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0a8f6f;
    font-weight: 800;
    font-size: 12px;
}

.for-you-column.no li::before {
    content: '✗';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #d14d66;
    font-weight: 800;
    font-size: 12px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--bs-border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    background: transparent;
    font-weight: 500;
    color: var(--text-dark);
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
    margin: 0;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:focus-visible {
    outline: none;
}

.faq-question span {
    flex: 1;
    font: inherit;
    font-size: 16px;
    line-height: 1.45;
}

.faq-question svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
    transform-origin: center;
}

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

.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq-answer-inner {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 18px;
}

.faq-item.active .faq-answer-inner {
    transform: scaleY(1);
}

.faq-answer p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.is-collapsing .faq-answer,
.faq-item.is-collapsing .faq-answer-inner {
    transition-duration: 0s !important;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--text-dark), rgba(26, 26, 46, 0.9));
    padding: 80px 20px;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: clamp(32px, 3vw, 42px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-section .highlight {
    color: var(--secondary);
    background: none;
    -webkit-text-fill-color: var(--secondary);
    -webkit-background-clip: initial;
    background-clip: border-box;
}

.final-cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta-btn-large {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(202, 32, 253, 0.3);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(202, 32, 253, 0.4);
}

.cta-subtext {
    font-size: 14px !important;
    margin-top: 20px !important;
    color: rgba(255, 255, 255, 0.75);
}

.bootcamp-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bootcamp-sticky-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.bootcamp-sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bootcamp-sticky-title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
}

.bootcamp-countdown {
    display: flex;
    align-items: center;
    gap: 18px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.countdown-value {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-top: 5px;
}

.bootcamp-register-btn {
    border: none;
    border-radius: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(202, 32, 253, 0.3);
    margin-left: 60px;
}

.bootcamp-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(202, 32, 253, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 60px 20px 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 32, 253, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-card {
        padding: 30px;
    }

    .signup-card .form-row {
        grid-template-columns: 1fr;
    }

    .signup-card .gender-options {
        gap: 10px;
    }

    .social-buttons {
        flex-wrap: wrap;
    }

    .curriculum-day {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .stat-item {
        text-align: center;
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .timeline-panels {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .state-arrow {
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: rotate(90deg);
        padding: 2px 0;
        margin: 2px 0;
        line-height: 1;
    }

    .transformation-summary {
        padding: 22px;
    }

    .for-you-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .for-you-column {
        padding: 24px;
        border-radius: 18px;
    }

    .for-you-column h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .proof-item {
        text-align: left;
        padding: 14px 16px;
        gap: 12px;
    }

    .proof-content h4 {
        font-size: 24px;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .final-cta-section h2 {
        font-size: 24px;
    }

    .announcement-bar {
        font-size: 12px;
        padding: 10px 15px;
    }

    .hero-section {
        padding: 50px 20px;
    }

    .mentors-preview-section,
    .curriculum-section,
    .transformation-section,
    .doubts-section,
    .for-you-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .inline-cta {
        margin-top: 28px;
        padding: 22px 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .inline-cta p {
        font-size: 16px;
    }

    .inline-cta .cta-btn {
        width: auto;
        text-align: center;
    }

    .bootcamp-sticky-content {
        gap: 14px;
        padding: 10px 12px;
        justify-content: space-between;
    }

    .bootcamp-sticky-title {
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .bootcamp-countdown {
        gap: 10px;
    }

    .countdown-value {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .bootcamp-register-btn {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 10px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        gap: 30px;
    }

    .form-card {
        padding: 20px;
    }

    .signup-card .form-group label {
        font-size: 12px;
    }

    .signup-card .toggle-password {
        top: 38px;
    }

    .signup-card .dropdown-selected,
    .signup-card .form-group input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
        font-size: 13px;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .final-cta-section h2 {
        font-size: 22px;
    }

    .stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .mentors-preview-grid,
    .testimonials-grid,
    .doubts-grid {
        grid-template-columns: 1fr;
    }

    .mentors-preview-header {
        margin-bottom: 28px;
    }

    .mentors-preview-header h2 {
        font-size: 30px;
    }

    .preview-column h3 {
        font-size: 22px;
    }

    .mentor-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mentor-item {
        flex-basis: 100%;
    }



    .transformation-timeline,
    .for-you-grid {
        gap: 20px;
    }

    .for-you-column {
        padding: 18px;
        border-radius: 16px;
    }

    .for-you-list li {
        padding: 10px 10px 10px 36px;
        font-size: 14px;
        border-radius: 10px;
    }

    .timeline-step {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .timeline-marker {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 14px;
    }

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

    .timeline-content {
        padding: 16px;
        border-radius: 16px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .state-card {
        padding: 12px;
    }

    .state-card p {
        font-size: 14px;
    }

    .transformation-summary h3 {
        font-size: 20px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .proof-content h4 {
        font-size: 22px;
    }

    .form-group input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .form-group label {
        font-size: 12px;
    }

    .badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    .cta-btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }

    .inline-cta {
        padding: 18px 14px;
    }

    .inline-cta p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .bootcamp-sticky-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }

    .bootcamp-sticky-title {
        width: 100%;
        text-align: center;
    }

    .bootcamp-register-btn {
        width: 100%;
        max-width: 220px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions */
button,
a,
input,
select,
textarea {
    transition: all 0.3s ease;
}
