/* ======================================
   Industrial Entrepreneurship Bootcamp
   Modern CSS Styles
   ====================================== */

/* ======================================
   CSS Variables & Base Styles
   ====================================== */
:root {
    /* Color Palette */
    --primary-color: #1e3a8a;
    --primary-dark: #1e293b;
    --primary-light: #3b82f6;
    --secondary-color: #facc15;
    --accent-color: #ef4444;
    --success-color: #10b981;

    /* Neutral Colors */
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #facc15 0%, #facc15 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ======================================
   Container & Layout
   ====================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ======================================
   Typography
   ====================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-family: var(--font-display);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight-negative {
    color: var(--accent-color);
}

/* ======================================
   Buttons
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
}

/* ======================================
   Section Styling
   ====================================== */
section {
    padding: 5rem 0;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
}

/* ======================================
   Navigation
   ====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ======================================
   Hero Section
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3a8a" width="1200" height="600"/><g fill-opacity="0.1"><polygon fill="%23444" points="1200 0 900 600 1200 600"/><polygon fill="%23222" points="900 600 1200 0 600 0"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item i {
    color: var(--secondary-color);
}

/* ======================================
   Legacy Section
   ====================================== */
.legacy-section {
    background: var(--background-light);
    margin-top: 2rem;
    position: relative;

}



.legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: relative;
}

.legacy-timeline {
    position: relative;
    padding-left: 2rem;
}

.legacy-timeline::before {
    content: '';
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-icon {
    position: absolute;
    left: -2.625rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-medium);
}

.legacy-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.legacy-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.legacy-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legacy-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.number-item h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.number-item span {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* ======================================
   Bootcamp Section
   ====================================== */
.bootcamp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bootcamp-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.bootcamp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.bootcamp-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bootcamp-card p {
    color: var(--text-medium);
}

/* ======================================
   Differentiators Section
   ====================================== */
.differentiators-section {
    background: var(--background-light);
}

.diff-container {
    max-width: 1000px;
    margin: 0 auto;
}

.diff-item {
    margin-bottom: 3rem;
    position: relative;
}

.diff-number {
    position: absolute;
    left: -80px;
    top: 0;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.1);
    font-family: var(--font-display);
}

.diff-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.diff-content h3 i {
    color: var(--secondary-color);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.comparison-item {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-md);
}

.comparison-item.others {
    border-left: 4px solid #ef4444;
}

.comparison-item.ours {
    border-left: 4px solid #10b981;
}

.comparison-item .label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-item.others .label {
    color: #ef4444;
}

.comparison-item.ours .label {
    color: #10b981;
}

/* ======================================
   Paths Section
   ====================================== */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.path-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.path-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.path-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.path-badge.premium {
    background: var(--gradient-secondary);
}

.path-icon {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.path-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.path-description {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.path-features {
    margin-bottom: 2rem;
}

.path-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.path-features i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.path-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.path-footer strong {
    color: var(--primary-color);
}

/* ======================================
   Schedule Section
   ====================================== */
.schedule-section {
    background: var(--background-light);
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.session-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
}

.session-header i {
    font-size: 2rem;
}

.session-header h3 {
    flex: 1;
    color: white;
    margin: 0;
}

.session-time {
    font-weight: 600;
    font-size: 1.125rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.timeline-block {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-block::before {
    content: '';
    position: absolute;
    left: -3.625rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid var(--background-light);
    box-shadow: var(--shadow-md);
}

.timeline-time {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.timeline-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.timeline-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.timeline-card.highlight-card {
    border-left: 4px solid var(--secondary-color);
}

.timeline-card.lunch {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.timeline-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-card h4 i {
    color: var(--secondary-color);
}

.timeline-card p {
    margin-bottom: 0.75rem;
}

.timeline-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.timeline-card li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    list-style: disc;
}

/* ======================================
   Audience Section
   ====================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

.audience-card.for {
    border-left: 4px solid var(--success-color);
}

.audience-card.for:hover {
    border-color: var(--success-color);
}

.audience-card.not-for {
    border-left: 4px solid var(--accent-color);
}

.audience-card.not-for:hover {
    border-color: var(--accent-color);
}

.audience-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.audience-card.for .audience-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.audience-card.not-for .audience-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-color);
}

.audience-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.audience-card p {
    color: var(--text-medium);
}

/* ======================================
   Mentor Section
   ====================================== */
.mentor-section {
    background: var(--background-light);
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mentor-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.mentor-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
}

.mentor-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.mentor-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mentor-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.mentor-credentials {
    display: grid;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
}

.credential-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.credential-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.credential-item span {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* ======================================
   Pricing Section
   ====================================== */
.pricing-section {
    background: var(--gradient-hero), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3a8a" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
}

.pricing-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-section .section-title,
.pricing-section .section-description {
    color: white;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.pricing-badge {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.pricing-header {
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.price-original {
    margin-bottom: 1rem;
}

.price-original .label {
    display: block;
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-original .amount {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current .label {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-current .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.price-current .gst {
    font-size: 1.5rem;
    color: var(--text-medium);
    font-weight: 500;
}

.savings {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.pricing-features {
    padding: 2.5rem;
}

.pricing-features h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features h4 i {
    color: var(--secondary-color);
}

.pricing-features ul li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-features ul li strong {
    color: var(--text-dark);
}

.pricing-cta {
    padding: 0 2.5rem 2.5rem;
    text-align: center;
}

.pricing-cta .btn {
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-note i {
    color: var(--secondary-color);
}

.pricing-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: var(--background-light);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.guarantee-item i {
    color: var(--secondary-color);
}

/* ======================================
   FAQ Section
   ====================================== */
.faq-section {
    background: var(--background-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.faq-category-title i {
    color: var(--secondary-color);
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.faq-question h4 {
    flex: 1;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 3rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.faq-answer ol li {
    list-style: decimal;
}

/* ======================================
   Enrollment Section
   ====================================== */
.enroll-section {
    background: var(--background-white);
}

.enroll-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.enroll-info h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.enroll-info h3 i {
    color: var(--secondary-color);
}

.process-steps {
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

.enroll-highlights {
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
}

.enroll-highlights h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.enroll-highlights h4 i {
    color: var(--secondary-color);
}

.enroll-highlights ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.enroll-highlights ul li i {
    color: var(--success-color);
}

.enroll-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.enroll-form .form-group {
    margin-bottom: 1.5rem;
}

.enroll-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.enroll-form label i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.enroll-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label .link {
    color: var(--primary-light);
    text-decoration: underline;
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--secondary-color);
}

/* ======================================
   Contact Section
   ====================================== */
.contact-section {
    background: var(--background-light);
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

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

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card a {
    color: var(--primary-light);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* ======================================
   Footer
   ====================================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ======================================
   Modals
   ====================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    position: relative;
    animation: slideUp 0.3s ease;
    margin: 1rem;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    padding: 2rem;
    background: var(--gradient-primary);
    color: white;
    margin: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.modal-body ul {
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.modal-content.success {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin: 2rem 0;
}

.success-next-steps {
    text-align: left;
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
}

.success-next-steps h4 {
    margin-bottom: 1rem;
}

.success-next-steps ol {
    padding-left: 1.5rem;
}

.success-next-steps li {
    margin-bottom: 0.5rem;
    list-style: decimal;
}

/* ======================================
   Scroll to Top Button
   ====================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ======================================
   Responsive Design
   ====================================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .legacy-content,
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .diff-number {
        position: relative;
        left: 0;
        font-size: 3rem;
        margin-bottom: 1rem;
    }

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

    .enroll-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .bootcamp-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-block::before {
        left: -2.625rem;
    }

    .legacy-timeline {
        padding-left: 1.5rem;
    }

    .timeline-icon {
        left: -2.125rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .price-current .amount {
        font-size: 3rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        gap: 1rem;
    }
}