/* Global Reset and Variables */
:root {
    --color-dark: #121212;
    --color-neon-green: #3DDC97;
    --color-ochre: #F4A261;
    --color-light: #F7F8FA;
    --color-teal: #2A9D8F;
    --color-surface: #1E1E1E;
    --color-border: #2C2C2C;
    --color-text-primary: #F7F8FA;
    --color-text-secondary: #B0B0B0;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
    color: var(--color-neon-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-teal);
}

/* Wrapper Container */
.wrapper-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.brand-text {
    font-family: var(--font-mono);
}

.primary-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-item:hover,
.nav-item.active {
    color: var(--color-neon-green);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-neon-green);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url(../images/banner.jpg) no-repeat center center/cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.3);
    border-radius: 20px;
    color: var(--color-neon-green);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background: var(--color-neon-green);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-teal);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 220, 151, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-neon-green);
}

.btn-primary-large {
    background: var(--color-neon-green);
    color: var(--color-dark);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background: var(--color-teal);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 220, 151, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-neon-green);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

/* Chart Card */
.chart-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h3 {
    font-size: 1rem;
    color: var(--color-text-primary);
}

.chart-tabs {
    display: flex;
    gap: 0.5rem;
}

.chart-tab {
    padding: 0.375rem 0.875rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-secondary);
    font-size: 0.813rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chart-tab:hover,
.chart-tab.active {
    background: rgba(61, 220, 151, 0.1);
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
}

#learningChart,
#candlestickChart {
    width: 100%;
    height: auto;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

/* Market Stats Section */
.market-stats-section {
    padding: 4rem 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    margin-bottom: 0.75rem;
}

.section-header-center p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

.candlestick-container {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.chart-controls {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.time-frames {
    display: flex;
    gap: 0.5rem;
}

.timeframe-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.timeframe-btn:hover,
.timeframe-btn.active {
    background: rgba(61, 220, 151, 0.1);
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
}

/* Courses Section */
.courses-section {
    padding: 4rem 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.link-with-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-neon-green);
    font-weight: 500;
}

.link-with-arrow:hover {
    gap: 0.75rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-neon-green);
}

.course-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.course-title {
    margin-bottom: 1rem;
}

.course-desc {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.course-duration,
.course-level {
    padding: 0.375rem 0.875rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.3);
    border-radius: 20px;
    color: var(--color-neon-green);
}

/* Projects Section */
.projects-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(42, 157, 143, 0.05) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
     margin-top: 3rem;
}

.project-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-thumbnail {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.938rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.3);
    border-radius: 16px;
    color: var(--color-neon-green);
    font-size: 0.813rem;
}

.section-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-rating {
    color: var(--color-ochre);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(61, 220, 151, 0.2);
    transition: var(--transition-smooth);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-card:hover .author-avatar {
    border-color: var(--color-neon-green);
    transform: scale(1.05);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-neon-green);
    color: var(--color-dark);
    border-color: var(--color-neon-green);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-neon-green);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.938rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    background: var(--color-surface);
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--color-text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--color-neon-green);
    text-decoration: underline;
}

.cookie-accept {
    padding: 0.75rem 1.5rem;
    background: var(--color-neon-green);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-accept:hover {
    background: var(--color-teal);
    color: var(--color-text-primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-neon-green);
    box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #ef4444;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .wrapper-container {
        padding: 0 1.5rem;
    }
    
    .primary-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    
    .primary-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        text-align: center;
    }
    
    .nav-item {
        padding: 1rem 2rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-55deg) translate(3px, -2px);
    }
    
    .hero-section {
        padding: 3rem 0 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .courses-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-popup {
        right: 1rem;
        max-width: calc(100vw - 2rem);
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1rem;
    }
    
    .chart-tabs,
    .time-frames {
        flex-wrap: wrap;
    }
}

/* Additional Page Styles */
.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, rgba(61, 220, 151, 0.05) 0%, transparent 100%);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Learning Path Modules */
.learning-path-section {
    padding: 4rem 0;
}

.path-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.path-module {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.path-module:hover {
    border-color: var(--color-neon-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--color-border);
}

.module-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--color-neon-green);
    opacity: 0.3;
}

.module-info h2 {
    margin-bottom: 0.5rem;
}

.module-duration {
    color: var(--color-text-secondary);
    font-size: 0.938rem;
}

.module-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.module-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.063rem;
}

.module-topics {
    margin-bottom: 2rem;
    flex: 1;
}

.module-topics h4 {
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.topics-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.topics-list li {
    padding: 0.75rem 1rem;
    background: rgba(61, 220, 151, 0.05);
    border: 1px solid rgba(61, 220, 151, 0.2);
    border-radius: 6px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topics-list li::before {
    content: '✓';
    color: var(--color-neon-green);
    font-weight: 700;
    font-size: 1.125rem;
}

.module-action {
    text-align: center;
}

/* Library/Resource Cards */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.resource-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-neon-green);
}

.resource-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
        margin: 0 auto 1.5rem;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.resource-type {
    padding: 0.25rem 0.75rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.3);
    border-radius: 16px;
    color: var(--color-neon-green);
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(61, 220, 151, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.info-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-details p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.map-container {
    margin-top: 4rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Service Pages */
.service-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.service-content h2 {
    margin: 2rem 0 1rem;
    color: var(--color-neon-green);
}

.service-content h3 {
    margin: 1.5rem 0 0.75rem;
}

.service-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-content ul,
.service-content ol {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.service-content a {
    color: var(--color-neon-green);
    text-decoration: underline;
}

/* Thank You Page */
.thank-you-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .path-modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .module-number {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }

    /* Chart Display Responsive */
    .chart-display-area {
        min-height: 400px;
    }

    .chart-panel {
        padding: 1rem;
        overflow-x: auto;
    }

    .chart-panel canvas {
        max-width: 100%;
        min-width: unset !important;
        height: auto !important;
        width: 100% !important;
    }

    .chart-info {
        margin-top: 1rem;
        padding: 1rem;
        font-size: 0.875rem;
    }

    /* Chart Navigation Responsive */
    .chart-navigation {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .chart-nav-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        gap: 8px;
    }

    .chart-nav-btn img {
        width: 20px;
        height: 20px;
    }

    /* Carousel Responsive */
    .carousel-slide img {
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   NEW SECTIONS STYLES
   ============================================ */

/* Carousel Section */
.carousel-section {
    padding: 6rem 0;
    background: var(--color-dark);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-surface);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-surface);
    border-radius: 12px;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-surface);
    border: 2px solid var(--color-neon-green);
    color: var(--color-neon-green);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-neon-green);
    color: var(--color-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--color-neon-green);
    width: 32px;
    border-radius: 6px;
}

/* Interactive Charts Section */
.interactive-charts-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, #0d0d0d 100%);
}

.charts-slider {
    margin-top: 3rem;
}

.chart-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.chart-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
}

.chart-nav-btn:hover {
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
    background: rgba(61, 220, 151, 0.05);
}

.chart-nav-btn.active {
    border-color: var(--color-neon-green);
    color: var(--color-neon-green);
    background: rgba(61, 220, 151, 0.1);
}

.chart-nav-btn img {
    filter: brightness(0.5);
    transition: var(--transition-smooth);
}

.chart-nav-btn.active img,
.chart-nav-btn:hover img {
    filter: brightness(1);
}

.chart-display-area {
    position: relative;
    min-height: 500px;
}

.chart-panel {
    display: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.chart-panel canvas {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.chart-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chart-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(61, 220, 151, 0.05);
    border-left: 4px solid var(--color-neon-green);
    border-radius: 8px;
}

.chart-info p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.chart-info strong {
    color: var(--color-neon-green);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--color-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--color-neon-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(61, 220, 151, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(61, 220, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: rgba(61, 220, 151, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--color-neon-green);
}

.benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Process Timeline Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0d0d0d 0%, var(--color-dark) 100%);
}

.process-timeline {
    margin-top: 4rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--color-surface);
    border: 4px solid var(--color-neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-marker:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px rgba(61, 220, 151, 0.5);
}

.timeline-number {
    position: absolute;
    bottom: -30px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-neon-green);
    background: var(--color-dark);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid var(--color-neon-green);
}

.timeline-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 8px 32px rgba(61, 220, 151, 0.1);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--color-neon-green);
}

.timeline-content > p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--color-text-secondary);
}

.timeline-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-neon-green);
    font-weight: bold;
}

/* Technologies Section */
.technologies-section {
    padding: 6rem 0;
    background: var(--color-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-neon-green), var(--color-teal));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    border-color: var(--color-neon-green);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(61, 220, 151, 0.15);
}

.tech-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(61, 220, 151, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-icon-wrapper {
    background: rgba(61, 220, 151, 0.2);
    transform: rotateY(360deg);
}

.tech-card h3 {
    margin-bottom: 1rem;
    color: var(--color-neon-green);
}

.tech-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tech-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 0.375rem 0.875rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid var(--color-neon-green);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--color-neon-green);
    font-weight: 500;
}

/* Career Section */
.career-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, var(--color-dark) 100%);
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid var(--color-neon-green);
    border-radius: 24px;
    color: var(--color-neon-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.career-content h2 {
    margin-bottom: 1rem;
}

.career-content > p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.career-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.career-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.career-item img {
    flex-shrink: 0;
    margin-top: 4px;
}

.career-item strong {
    color: var(--color-neon-green);
    display: block;
    margin-bottom: 0.25rem;
}

.career-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.career-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--color-neon-green);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-neon-green);
    font-family: var(--font-mono);
}

.stat-desc {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.career-visual {
    position: relative;
    height: 500px;
}

.career-card-stack {
    position: relative;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    width: 280px;
    transition: var(--transition-smooth);
}

.floating-card:hover {
    border-color: var(--color-neon-green);
    transform: scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(61, 220, 151, 0.2);
    z-index: 10;
}

.floating-card img {
    margin-bottom: 1rem;
}

.floating-card h4 {
    color: var(--color-neon-green);
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: var(--color-text-secondary);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    right: 0;
    transform: rotate(3deg);
    animation: float2 6s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    animation: float3 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-15px); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(-50%) rotate(-2deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(-2deg) translateY(-25px); }
}

/* Support Section */
.support-section {
    padding: 6rem 0;
    background: var(--color-dark);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    border-color: var(--color-ochre);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(244, 162, 97, 0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: rgba(244, 162, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.support-card:hover .support-icon {
    background: rgba(244, 162, 97, 0.2);
    transform: scale(1.1);
}

.support-card h3 {
    margin-bottom: 1rem;
    color: var(--color-ochre);
}

.support-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.support-link {
    color: var(--color-ochre);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.support-link:hover {
    color: var(--color-neon-green);
    transform: translateX(4px);
}

/* Course Features List */
.course-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.course-features li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-neon-green);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Project Stats */
.project-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.project-stats span {
    color: var(--color-text-secondary);
    padding: 0.375rem 0.75rem;
    background: rgba(61, 220, 151, 0.1);
    border-radius: 4px;
}

/* Responsive Styles for New Sections */
@media (max-width: 968px) {
    .path-modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .chart-navigation {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .timeline-spacer {
        display: none;
    }
    
    .timeline-content {
        grid-column: 2;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        grid-column: 1;
        grid-row: 1;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    .career-visual {
        height: 400px;
    }
    
    .floating-card {
        width: 240px;
    }
}

@media (max-width: 640px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .chart-navigation {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .benefits-grid,
    .tech-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .career-stats {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICE PAGES - STRUCTURED SECTIONS
   ======================================== */

/* Policy Pages Container */
.policy-container {
    padding: 3rem 0 5rem;
    background: var(--color-bg-primary);
}

.policy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Section Block Styling */
.policy-section {
    background: var(--color-bg-secondary);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-neon-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(61, 220, 151, 0.1);
}

.policy-section h2 {
    color: var(--color-neon-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-section h2::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-neon-green);
    border-radius: 50%;
    display: inline-block;
}

.policy-section h3 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-teal);
}

.policy-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
    position: relative;
}

.policy-section ul li::marker {
    color: var(--color-neon-green);
}

.policy-section a {
    color: var(--color-neon-green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-section a:hover {
    border-bottom-color: var(--color-neon-green);
}

.policy-section strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Contact Section Highlight */
.policy-section.contact-section {
    background: linear-gradient(135deg, rgba(61, 220, 151, 0.05) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-left-color: var(--color-teal);
}

.contact-info {
    background: var(--color-bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(61, 220, 151, 0.2);
}

.contact-info strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-neon-green);
    font-size: 1.125rem;
}

/* Icon Sections (with SVG icons) */
.policy-section.icon-section {
    display: flex;
    gap: 1.5rem;
}

.policy-section.icon-section .section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.policy-section.icon-section .section-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.policy-section.icon-section .section-text {
    flex: 1;
}

/* Category Tags */
.category-tag {
    display: inline-block;
    background: rgba(61, 220, 151, 0.1);
    color: var(--color-neon-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem 0.25rem 0.25rem 0;
    border: 1px solid rgba(61, 220, 151, 0.3);
}

/* Info Boxes */
.info-box {
    background: rgba(244, 162, 97, 0.1);
    border-left: 4px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.info-box p {
    color: var(--color-text-primary);
    margin: 0;
}

.info-box.warning {
    background: rgba(244, 162, 97, 0.15);
}

.info-box.success {
    background: rgba(61, 220, 151, 0.1);
    border-left-color: var(--color-neon-green);
}

/* Thank You Page Enhanced */
.thank-you-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thank-you-content {
    max-width: 700px;
    text-align: center;
    background: var(--color-bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: successPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.4);
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(61, 220, 151, 0);
    }
}

.thank-you-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.thank-you-content h1 {
    color: var(--color-neon-green);
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.thank-you-content p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Responsive for Service Pages */
@media (max-width: 968px) {
    .policy-section {
        padding: 2rem;
    }
    
    .policy-section.icon-section {
        flex-direction: column;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .policy-container {
        padding: 2rem 0 3rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section h3 {
        font-size: 1.125rem;
    }
    
    .thank-you-content {
        padding: 1.5rem;
    }
    
    .thank-you-icon {
        width: 80px;
        height: 80px;
    }
    
    .thank-you-icon img {
        width: 40px;
        height: 40px;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
    }
}

/* ========================================
   MODAL WINDOWS
   ======================================== */

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content Container */
.modal-content {
    position: relative;
    background: var(--color-bg-secondary);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-neon-green);
    color: var(--color-dark);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.modal-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(61, 220, 151, 0.1);
    border: 1px solid rgba(61, 220, 151, 0.3);
    border-radius: 20px;
    color: var(--color-neon-green);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Modal Body */
.modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.modal-details h3 {
    color: var(--color-neon-green);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.modal-details h3:first-child {
    margin-top: 0;
}

.modal-details p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Modal List */
.modal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modal-list li {
    padding: 0.75rem 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-list li:last-child {
    border-bottom: none;
}

.modal-list li img {
    flex-shrink: 0;
    filter: invert(71%) sepia(58%) saturate(465%) hue-rotate(100deg) brightness(93%) contrast(91%);
    margin-top: 2px;
}

/* Modal Tech Tags */
.modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.modal-tech span {
    padding: 0.5rem 1rem;
    background: rgba(42, 157, 143, 0.1);
    border: 1px solid rgba(42, 157, 143, 0.3);
    border-radius: 20px;
    color: var(--color-teal);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Modal Author */
.modal-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(61, 220, 151, 0.05);
    border: 1px solid rgba(61, 220, 151, 0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.modal-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-author .author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Modal Stats */
.modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-neon-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Details Button */
.btn-details {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.938rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 220, 151, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal.active {
        padding: 1rem;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-image {
        height: 200px;
    }

    .modal-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }

    .modal-tech {
        gap: 0.5rem;
    }

    .modal-tech span {
        font-size: 0.813rem;
        padding: 0.375rem 0.75rem;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 5rem 0;
    background: var(--color-surface);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 4px 20px rgba(61, 220, 151, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-neon-green);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-neon-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   TRILHA PAGE - ADDITIONAL SECTIONS
   ======================================== */

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--color-dark);
}

.stats-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--color-neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 220, 151, 0.15);
}

.stat-icon {
    margin-bottom: 1.5rem;
}

.stat-icon img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(58%) saturate(465%) hue-rotate(100deg) brightness(93%) contrast(91%);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-neon-green);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Skills Chart Section */
.skills-chart-section {
    padding: 5rem 0;
    background: var(--color-dark);
}

.skills-chart-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.skill-progress-item {
    margin-bottom: 2.5rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.skill-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.skill-percentage {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-neon-green);
    font-family: var(--font-mono);
}

.skill-bar-track {
    width: 100%;
    height: 12px;
    background: var(--color-surface);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-neon-green) 0%, var(--color-teal) 100%);
    border-radius: 10px;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(61, 220, 151, 0.5);
}

.skill-desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Testimonials Trilha */
.testimonials-section-trilha {
    padding: 5rem 0;
    background: var(--color-surface);
}

.testimonials-grid-trilha {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-trilha {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.testimonial-card-trilha:hover {
    border-color: var(--color-neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 220, 151, 0.15);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.938rem;
}

.testimonial-author-trilha {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.testimonial-author-trilha img {
    border-radius: 50%;
}

.author-info {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Responsive - Trilha Sections */
@media (max-width: 1024px) {
    .stats-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid-trilha {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section,
    .timeline-section,
    .skills-chart-section,
    .testimonials-section-trilha {
        padding: 3rem 0;
    }

    .stats-grid-four {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        justify-content: flex-start !important;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .testimonials-grid-trilha {
        grid-template-columns: 1fr;
    }

    .skill-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

