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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
    background: #FEFEFE;
}

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

/* Color Variables */
:root {
    --primary-color: #FF813F;
    --primary-hover: #E55A11;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --bg-light: #FEFEFE;
    --bg-gray: #F9FAFB;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
}

/* Header */
.header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transform: scaleX(-1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link:focus {
    color: var(--text-primary);
    outline: none;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
    transform-origin: center;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 129, 63, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #FEFEFE 0%, #F9FAFB 100%);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    color: #efefef;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 60px;
}

.hero-note {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    border: 1px solid var(--border-color);
}

.mockup-header {
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.mockup-tabs {
    display: flex;
    gap: 24px;
}

.tab {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mockup-content {
    padding: 32px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
}

.session-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
}

.session-info {
    flex: 1;
}

.session-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.session-subject {
    font-size: 13px;
    color: var(--text-secondary);
}

.session-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.session-status.confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.session-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.feature-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block.reverse .feature-content {
    direction: rtl;
}

.feature-block.reverse .feature-content > * {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Mockups */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.credits-mockup,
.calendar-mockup,
.metrics-mockup,
.reminders-mockup,
.templates-mockup {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
    width: 100%;
    max-width: 400px;
}

/* Credits Mockup */
.credit-card {
    background: var(--bg-gray);
    border-radius: 12px;
    padding: 20px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    font-size: 32px;
}

.name {
    font-weight: 600;
    color: var(--text-primary);
}

.plan {
    font-size: 13px;
    color: var(--text-secondary);
}

.credits-bar {
    background: #E5E7EB;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.credits-used {
    background: var(--primary-color);
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.credits-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

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

/* Calendar Mockup */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.time-zone {
    font-size: 12px;
    color: var(--text-secondary);
}

.calendar-grid {
    display: flex;
    gap: 16px;
}

.calendar-day {
    flex: 1;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 12px;
}

.date {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
}

.slots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.slot {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.slot.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.slot.booked {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: #ef4444;
    cursor: not-allowed;
}

.slot.booked:hover {
    background: rgba(239, 68, 68, 0.15);
}

.slot.priority {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: #f59e0b;
}

.slot.priority:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.slot.premium {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.slot.premium:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

/* Performance Metrics */
.instructor-card {
    text-align: center;
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.instructor-info .avatar {
    font-size: 40px;
}

.instructor-info .name {
    font-size: 16px;
    font-weight: 600;
}

.subject {
    font-size: 13px;
    color: var(--text-secondary);
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric {
    text-align: center;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* WhatsApp Reminders */
.whatsapp-message {
    background: #E7F5E7;
    border-radius: 12px;
    padding: 16px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.contact {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.time {
    font-size: 12px;
    color: var(--text-secondary);
}

.message-bubble p {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.session-details {
    background: rgba(255, 255, 255, 0.5);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

/* Course Templates */
.template-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.template-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.template-icon {
    font-size: 24px;
}

.template-name {
    font-weight: 600;
    color: var(--text-primary);
}

.template-sessions {
    font-size: 13px;
    color: var(--text-secondary);
}

.progress-tracker {
    padding: 16px;
}

.progress-item {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.progress-item:last-child {
    border-bottom: none;
}

.progress-item.completed span {
    color: var(--success-color);
}

.progress-item.current span {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-item.upcoming span {
    color: var(--text-secondary);
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-gray);
}

.social-badge {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-title {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Testimonial Grid Responsive */
@media (max-width: 900px) {
    .testimonials .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-apps {
    display: flex;
    gap: 16px;
}

.app-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.app-link:hover {
    color: var(--text-primary);
}

.footer-legal {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .feature-block {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #FEFEFE 0%, #F9FAFB 100%);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    color: #efefef;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 60px;
}

.hero-note {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    border: 1px solid var(--border-color);
}

.mockup-header {
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.mockup-tabs {
    display: flex;
    gap: 24px;
}

.tab {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mockup-content {
    padding: 32px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
}

.session-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
}

.session-info {
    flex: 1;
}

.session-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.session-subject {
    font-size: 13px;
    color: var(--text-secondary);
}

.session-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.session-status.confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.session-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.feature-block {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block.reverse .feature-content {
    direction: rtl;
}

.feature-block.reverse .feature-content > * {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Mockups */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.credits-mockup,
.calendar-mockup,
.metrics-mockup,
.reminders-mockup,
.templates-mockup {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
    width: 100%;
    max-width: 400px;
}

.credit-card {
    background: var(--bg-gray);
    border-radius: 12px;
    padding: 20px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    font-size: 32px;
}

.name {
    font-weight: 600;
    color: var(--text-primary);
}

.plan {
    font-size: 13px;
    color: var(--text-secondary);
}

.credits-bar {
    background: #E5E7EB;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.credits-used {
    background: var(--primary-color);
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.credits-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

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

/* Calendar Mockup */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.time-zone {
    font-size: 12px;
    color: var(--text-secondary);
}

.calendar-grid {
    display: flex;
    gap: 16px;
}

.calendar-day {
    flex: 1;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 12px;
}

.date {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
}

.slots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.slot {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.slot.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.slot.booked {
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-secondary);
}

/* Metrics Mockup */
.instructor-card {
    text-align: center;
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.instructor-info .avatar {
    font-size: 40px;
}

.instructor-info .name {
    font-size: 16px;
    font-weight: 600;
}

.subject {
    font-size: 13px;
    color: var(--text-secondary);
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric {
    text-align: center;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Reminders Mockup */
.whatsapp-message {
    background: #E7F5E7;
    border-radius: 12px;
    padding: 16px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.contact {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.time {
    font-size: 12px;
    color: var(--text-secondary);
}

.message-bubble p {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.session-details {
    background: rgba(255, 255, 255, 0.5);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

/* Templates Mockup */
.template-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.template-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.template-icon {
    font-size: 24px;
}

.template-name {
    font-weight: 600;
    color: var(--text-primary);
}

.template-sessions {
    font-size: 13px;
    color: var(--text-secondary);
}

.progress-tracker {
    padding: 16px;
}

.progress-item {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.progress-item:last-child {
    border-bottom: none;
}

.progress-item.completed span {
    color: var(--success-color);
}

.progress-item.current span {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-item.upcoming span {
    color: var(--text-secondary);
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-gray);
}

.social-badge {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    font-size: 48px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.author-title {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Benefits */
.benefits {
    padding: 100px 0;
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-apps {
    display: flex;
    gap: 16px;
}

.app-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.app-link:hover {
    color: var(--text-primary);
}

.footer-legal {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .feature-block {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.feature-content {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection Colors */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Features Slideshow */
.features-slideshow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slideshow-container {
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-light);
    position: relative;
    width: 100%;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 500%; /* 5 slides x 100% */
    transform: translateX(0%); /* Initial position */
}

.feature-slide {
    width: 20%; /* 100% / 5 slides */
    flex-shrink: 0;
    flex-grow: 0;
    padding: 80px 40px;
    box-sizing: border-box;
}

.feature-slide .feature-content {
    padding: 0;
}

/* Slideshow Controls */
.slideshow-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover,
.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile slideshow adjustments */
@media (max-width: 768px) {
    .feature-slide {
        padding: 60px 20px;
    }
    
    .feature-slide .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Benefit Icons SVG Styling */
.benefit-icon svg {
    width: 48px;
    height: 48px;
    color: #ffffff;
}

/* Author Avatar SVG Styling */
.author-avatar svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

/* Authentication Pages Styles */
.auth-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    background: #fafafa;
}

.auth-container {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.auth-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
}

.auth-visual {
    background: #f8f9fa;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.auth-header {
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.auth-form {
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 129, 63, 0.08);
}

.password-requirements {
    margin-top: 6px;
    display: none;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 3px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-button {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 0;
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    display: none;
}

.auth-divider span {
    background: white;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    position: relative;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: #f8f9fa;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.auth-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.signup-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Auth Visual Side */
.auth-visual {
    background: #f8f9fa;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.visual-content {
    width: 100%;
    max-width: 380px;
}

.feature-highlight {
    margin-bottom: 40px;
}

.feature-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.minimal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.minimal-stats .stat-item {
    text-align: center;
    padding: 20px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.minimal-stats .stat-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.minimal-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.minimal-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.minimal-benefits .benefit-item {
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.minimal-benefits .benefit-item span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Auth Styles */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 50% 50%;
    }
    
    .auth-content {
        padding: 50px 40px;
    }
    
    .auth-visual {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .auth-section {
        padding: 40px 20px;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 480px;
        border-radius: 16px;
    }
    
    .auth-content {
        padding: 40px 30px;
        order: 1;
    }
    
    .auth-visual {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-options {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 20px 10px;
    }
    
    .auth-content {
        padding: 30px 20px;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .stats-preview {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

/* Payment Management */
.payment-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.student-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.payment-methods {
    padding: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.payment-method:last-child {
    border-bottom: none;
}

.method-icon {
    font-size: 20px;
    width: 32px;
    text-align: center;
}

.method-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 2px;
}

.method-status {
    font-size: 13px;
}

.method-status.paid {
    color: var(--success-color);
    font-weight: 500;
}

.method-status.pending {
    color: var(--warning-color);
    font-weight: 500;
}

.method-status.available {
    color: var(--text-secondary);
}

/* Multiple Credit Cards Layout */
.credits-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: none;
    height: auto;
    overflow: visible;
}

.credit-card + .credit-card {
    margin-top: 0;
}

/* Compact credit card styling for better fit */
.credit-card {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.student-info .avatar {
    font-size: 16px;
}

.student-info .info .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.student-info .info .plan {
    font-size: 12px;
    color: var(--text-secondary);
}

.credits-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.credits-used {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.credits-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.credits-info span:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

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

.renewal-urgent {
    color: var(--warning-color) !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .credits-mockup {
        gap: 10px;
    }
    
    .credit-card {
        padding: 10px 12px;
    }
    
    .student-info .info .name {
        font-size: 13px;
    }
    
    .student-info .info .plan {
        font-size: 11px;
    }
    
    .credits-info {
        font-size: 10px;
    }
}

/* Updated Feature Slide Layout */
.feature-content .text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-content .text-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.feature-content .text-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.feature-content .text-content .feature-tag {
    display: inline-block;
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-top: 8px;
}

/* Mobile adjustments for new layout */
@media (max-width: 768px) {
    .feature-content .text-content {
        text-align: center;
    }
    
    .feature-content .text-content .feature-tag {
        align-self: center;
    }
}

/* Feature Visual Enhancements */
.feature-visual {
    height: 400px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Credits Mockup */
.credits-mockup {
    width: 100%;
    max-width: 350px;
}

/* Calendar Mockup */
.calendar-mockup {
    width: 100%;
    max-width: 320px;
}

/* Metrics Mockup */
.metrics-mockup {
    width: 100%;
    max-width: 300px;
}

/* Reminders Mockup */
.reminders-mockup {
    width: 100%;
    max-width: 350px;
}

/* Payments Mockup */
.payments-mockup {
    width: 100%;
    max-width: 350px;
}

/* Mobile adjustments for feature-visual */
@media (max-width: 768px) {
    .feature-visual {
        height: 300px;
        min-height: 300px;
        padding: 15px;
    }
    
    .credits-mockup {
        max-width: 100%;
    }
    
    .calendar-mockup,
    .metrics-mockup,
    .reminders-mockup,
    .payments-mockup {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-visual {
        height: 250px;
        min-height: 250px;
        padding: 10px;
    }
}

/* Enhanced Metrics Mockup for Multiple Instructors */
.metrics-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instructor-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.instructor-info .avatar {
    font-size: 20px;
}

.instructor-info .name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.instructor-info .subject {
    font-size: 13px;
    color: var(--text-secondary);
}

.performance-metrics {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .metrics-mockup {
        gap: 12px;
    }
    
    .instructor-card {
        padding: 12px;
    }
    
    .instructor-info .name {
        font-size: 15px;
    }
    
    .instructor-info .subject {
        font-size: 12px;
    }
    
    .metric-value {
        font-size: 14px;
    }
}

/* Enhanced Payments Mockup for Multiple Students */
.payments-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payments-mockup .payment-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.payments-mockup .payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.payments-mockup .student-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.payments-mockup .amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.payments-mockup .payment-methods {
    padding: 14px 16px;
}

.payments-mockup .payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.payments-mockup .payment-method:last-child {
    border-bottom: none;
}

.payments-mockup .method-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.payments-mockup .method-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 13px;
    margin-bottom: 1px;
}

.payments-mockup .method-status {
    font-size: 12px;
}

.payments-mockup .method-status.paid {
    color: var(--success-color);
    font-weight: 500;
}

.payments-mockup .method-status.pending {
    color: var(--warning-color);
    font-weight: 500;
}

.payments-mockup .method-status.available {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .payments-mockup {
        gap: 12px;
    }
    
    .payments-mockup .payment-header {
        padding: 12px;
    }
    
    .payments-mockup .payment-methods {
        padding: 10px 12px;
    }
    
    .payments-mockup .student-name {
        font-size: 13px;
    }
    
    .payments-mockup .amount {
        font-size: 15px;
    }
}

/* Enhanced Calendar Slot Interactions */
.slot {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.slot.available {
    border-color: var(--success-color) !important;
}

.slot.available:hover {
    background: rgba(16, 185, 129, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3) !important;
}

.slot.booked {
    cursor: not-allowed !important;
}

.slot.booked:hover {
    background: rgba(239, 68, 68, 0.15) !important;
}

.slot.priority:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3) !important;
}

.slot.premium:hover {
    background: rgba(139, 92, 246, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3) !important;
}

/* Company Pages Styles */
.legal-page, .about-page, .careers-page, .contact-page, .press-page {
    min-height: 100vh;
}

/* Hero Sections for Company Pages */
.legal-hero, .about-hero, .careers-hero, .contact-hero, .press-hero {
    text-align: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    color: white;
}

.legal-hero-content, .about-hero-content, .careers-hero-content, 
.contact-hero-content, .press-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1, .about-hero h1, .careers-hero h1, 
.contact-hero h1, .press-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: #efefef;
}

/* Section Styles */
.about-section, .careers-section, .legal-section, .contact-section, .press-section {
    padding: 80px 0;
}

.about-section:nth-child(even), .careers-section:nth-child(even) {
    background-color: var(--bg-gray);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-align: center;
}

.section-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* About Page Specific Styles */
.values-grid, .culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card, .culture-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover, .culture-card:hover {
    transform: translateY(-5px);
}

.value-card h3, .culture-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.team-grid, .bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-member, .bio-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover, .bio-card:hover {
    transform: translateY(-5px);
}

.member-photo, .bio-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.member-role, .bio-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.member-bio, .bio-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B3F 100%);
    color: white;
    padding: 80px 0;
}

.stats-section h2 {
    color: white;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.join-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B3F 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.join-section h2 {
    color: white;
    margin-bottom: 24px;
}

.join-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.join-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Press Page Styles */
.company-facts {
    background: var(--bg-gray);
    padding: 80px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.fact-item {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fact-item h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fact-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.press-releases, .news-coverage {
    padding: 80px 0;
}

.press-list, .coverage-list {
    margin-top: 48px;
}

.press-item, .coverage-item {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-item:hover, .coverage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.press-date, .coverage-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.coverage-source {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-item h3, .coverage-item h3 {
    margin-bottom: 16px;
}

.press-item h3 a, .coverage-item h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-item h3 a:hover, .coverage-item h3 a:hover {
    color: var(--primary-color);
}

.press-tags {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-gray);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.media-kit {
    background: var(--bg-gray);
    padding: 80px 0;
}

.media-resources {
    margin-top: 48px;
}

.resource-category {
    margin-bottom: 64px;
}

.asset-grid, .screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.asset-item, .screenshot-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.asset-item:hover, .screenshot-item:hover {
    transform: translateY(-2px);
}

.asset-preview, .screenshot-preview {
    width: 100%;
    height: 120px;
    background: var(--bg-gray);
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.logo-preview {
    background: var(--primary-color);
    color: white;
}

.logo-white {
    background: var(--text-primary);
    color: white;
}

.icon-preview {
    color: var(--primary-color);
}

.placeholder-screenshot {
    color: var(--text-secondary);
    font-weight: 500;
}

.download-all {
    background: white;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-all h3 {
    margin-bottom: 16px;
}

.download-all p {
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-bios {
    padding: 80px 0;
}

.press-contact {
    background: var(--bg-gray);
    padding: 80px 0;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.contact-method {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-time {
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 32px;
}

/* Careers Page Styles */
.benefits-section, .process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.process-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.process-section h2 {
    color: white;
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.process-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B3F);
    border-radius: 2px;
}

.process-section > .container > .section-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid, .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 4rem;
    position: relative;
}

/* Add connecting line for larger screens */
@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
    
    .process-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), #FF6B3F);
        z-index: 1;
    }
}

.benefit-card, .process-step {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 1px solid transparent;
}

.process-step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.benefit-card:hover, .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 129, 63, 0.3);
}

.process-step:hover {
    background: white;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.benefit-icon, .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B3F 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(255, 129, 63, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon,
.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 129, 63, 0.4);
}

.benefit-card h3, .process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-card p, .process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced benefit categories */
.benefit-category {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 129, 63, 0.2);
}

.benefit-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.benefit-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B3F);
    border-radius: 1px;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.benefit-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.positions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.positions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.positions-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B3F);
    border-radius: 2px;
}

.positions-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.position-list {
    margin-top: 48px;
    display: grid;
    gap: 24px;
}

.position-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.position-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B3F);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.position-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #FF813F;
}

.position-item:hover::before {
    opacity: 1;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.position-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.position-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.position-type, .position-location {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.position-type {
    background: var(--primary-color);
    color: white;
}

.position-location {
    background: #e8f4fd;
    color: #1e40af;
}

.position-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 16px;
}

.position-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1rem;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.skill-tag {
    background: var(--bg-gray);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.apply-btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.apply-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 129, 63, 0.3);
}

.no-position-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B3F 100%);
    color: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    margin-top: 32px;
    box-shadow: 0 8px 16px rgba(255, 129, 63, 0.3);
}

.no-position-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: white;
}

.no-position-card p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.no-position-card .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
}

.no-position-card .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Contact Page Styles */
.contact-options {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
}

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

.contact-form-section {
    background: var(--bg-gray);
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.office-info {
    padding: 80px 0;
}

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

.office-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-faq {
    background: var(--bg-gray);
    padding: 80px 0;
}

.faq-list {
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #FF813F;
    box-shadow: 0 4px 8px rgba(255, 129, 63, 0.1);
}

.faq-question {
    padding: 24px 32px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #FF813F;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

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

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

.faq-item.active .faq-question {
    background-color: rgba(255, 129, 63, 0.05);
}

.faq-answer {
    padding: 0 32px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 32px 24px;
    opacity: 1;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: var(--bg-gray);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Legal Pages Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 48px 0 24px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-content ul, .legal-content ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-hero h1, .about-hero h1, .careers-hero h1, 
    .contact-hero h1, .press-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .values-grid, .culture-grid, .team-grid, .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-details, .office-grid {
        grid-template-columns: 1fr;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .legal-hero, .about-hero, .careers-hero, .contact-hero, .press-hero {
        padding: 100px 0 60px;
    }
    
    .about-section, .careers-section, .legal-section, .contact-section, .press-section {
        padding: 60px 0;
    }
    
    .facts-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .asset-grid, .screenshot-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Stats Primary Colors */
.hero-visual .stat-card {
    background: linear-gradient(135deg, var(--primary-color), #FF6B3F) !important;
    color: white !important;
}

.hero-visual .stat-number {
    color: white !important;
}

.hero-visual .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Homepage Hero Text Color Fixes */
.hero .hero-subtitle {
    color: var(--text-secondary) !important;
}

/* Ensure good contrast for all hero text elements */
.hero .hero-title {
    color: var(--text-primary) !important;
}

.hero .hero-note {
    color: var(--text-secondary) !important;
}

/* Fix any remaining contrast issues on light backgrounds */
.features p, .benefits p, .cta-subtitle {
    color: var(--text-secondary) !important;
}

.feature-content p {
    color: var(--text-secondary) !important;
}

.benefit-card p {
    color: var(--text-secondary) !important;
}

/* Enhanced Open Positions Section */
.open-positions-section {
    background: var(--bg-gray);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.position-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.position-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B3F);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.position-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #FF813F;
}

.position-item:hover::before {
    opacity: 1;
}

.featured-position {
    border-color: #FF813F;
    background: linear-gradient(135deg, rgba(255, 129, 63, 0.02), rgba(255, 107, 63, 0.02));
}

.featured-position::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), #FF6B3F);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.position-title-group h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.position-tags span {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.tag-type {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
}

.tag-location {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.tag-level {
    background: rgba(168, 85, 247, 0.1);
    color: #7c2d12;
}

.salary-range {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.position-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.position-requirements {
    margin-bottom: 24px;
}

.position-requirements h4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.position-requirements ul {
    list-style: none;
    padding: 0;
}

.position-requirements li {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.position-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.position-skills .skill-tag {
    background: var(--bg-gray);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.position-skills .skill-tag:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.position-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.apply-btn {
    flex: 1;
    min-width: 120px;
}

.learn-more-btn {
    flex: 1;
    min-width: 120px;
}

.no-position-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e2e8f0;
}

.no-position-card .card-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-position-card .card-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.no-position-card h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 16px;
}

.no-position-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 16px;
}

/* Mobile responsiveness for positions */
@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .position-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .salary-range {
        align-self: flex-start;
    }
    
    .position-actions {
        flex-direction: column;
    }
    
    .no-position-card {
        padding: 32px 24px;
    }
}

/* Enhanced Hiring Process Section */
.hiring-process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    color: var(--text-primary);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    color: var(--text-primary);
    font-size: 48px;
    margin-bottom: 20px;
}

.process-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-color) 10%, var(--primary-color) 90%, transparent 100%);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
    padding-right: 0;
    padding-left: 40px;
}

.process-step:nth-child(odd) .step-content {
    padding-right: 40px;
    padding-left: 0;
}

.step-circle {
    background: linear-gradient(135deg, var(--primary-color), #FF6B3F);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(255, 129, 63, 0.3);
    flex-shrink: 0;
    border: 4px solid white;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.step-content {
    flex: 1;
    max-width: 400px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.step-header h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin: 0;
}

.step-duration {
    background: rgba(255, 129, 63, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
}

.step-tips {
    background: var(--bg-gray);
    padding: 16px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    color: var(--text-primary);
    font-size: 14px;
}

.process-footer {
    margin-top: 80px;
    text-align: center;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.process-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.process-cta h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.process-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Mobile responsiveness for hiring process */
@media (max-width: 768px) {
    .hiring-process-section {
        padding: 60px 0;
    }
    
    .process-header h2 {
        font-size: 32px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        text-align: center;
        padding: 32px;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .step-header {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .process-cta {
        padding: 30px 20px;
        margin: 0 20px;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Mobile Navigation Override */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        color: var(--text-primary);
        text-decoration: none;
    }
    
    .nav-menu .nav-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }
    
    .nav-menu .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    /* Mobile Hero Improvements */
    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 50px;
    }
    
    /* Mobile Feature Slides */
    .feature-slide {
        padding: 40px 20px;
    }
    
    .text-content {
        margin-bottom: 40px;
    }
    
    /* Mobile Mockups */
    .dashboard-mockup,
    .credits-mockup,
    .calendar-mockup,
    .metrics-mockup,
    .reminders-mockup,
    .payments-mockup {
        max-width: 100%;
        margin: 0 auto;
        transform: scale(0.9);
    }
    
    /* Mobile Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    /* Mobile Session List */
    .session-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px;
    }
    
    .session-time {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-color);
    }
    
    /* Mobile Feature Tags */
    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Mobile Credit Cards */
    .credit-card {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .student-info {
        margin-bottom: 10px;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    /* Mobile Calendar */
    .calendar-day {
        padding: 15px 10px;
    }
    
    .slots {
        gap: 5px;
    }
    
    .slot {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    /* Mobile Metrics */
    .instructor-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .performance-metrics {
        gap: 15px;
    }
    
    /* Mobile Messages */
    .whatsapp-message {
        padding: 15px;
        margin: 10px 0;
    }
    
    .message-bubble p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mobile Payment Cards */
    .payment-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .method-info {
        font-size: 14px;
    }
    
    /* Mobile Slideshow Controls */
    .slideshow-controls {
        margin-top: 30px;
    }
    
    .slide-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-large {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    .feature-content h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pricing-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary-color);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active::after {
    transform: translateX(30px);
}

.savings-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-plans {
    padding: 80px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.plan-card {
    background: white;
    border: 2px solid #f1f3f4;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 129, 63, 0.1);
    transform: translateY(-5px);
}

.plan-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 129, 63, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.plan-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.plan-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 24px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.plan-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
}

.plan-features h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 16px;
}

.feature-comparison {
    background: #f8f9fa;
    padding: 80px 0;
}

.comparison-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f1f3f4;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-column {
    text-align: left !important;
    font-weight: 500;
    width: 40%;
}

.plan-column {
    width: 20%;
    font-weight: 600;
}

.plan-column.starter {
    background: rgba(255, 129, 63, 0.05);
}

.category-row {
    background: #f8f9fa;
}

.category-title {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.check-mark {
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.x-mark {
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
}

.pricing-faq {
    padding: 80px 0;
    background: white;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6722f 100%);
    color: white;
    text-align: center;
}

.pricing-cta .cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.pricing-cta .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Responsive Pricing Styles */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-subtitle {
        font-size: 18px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .plan-card.popular {
        transform: none;
        margin-bottom: 20px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .comparison-title {
        font-size: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .pricing-cta .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 32px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
}