/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f17619, #d97706);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    background: none;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #f17619;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #111827;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #f17619, #d97706);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #f17619;
    color: #f17619;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    border: 1px solid #f59e0b;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.6); }
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #92400e;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #111827;
}

.title-line {
    display: block;
}

.title-line.emphasis {
    background: linear-gradient(135deg, #f17619, #d97706, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-callout {
    margin-bottom: 3rem;
    position: relative;
}

.callout-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #374151;
    font-weight: 500;
    margin: 0;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.callout-text::before {
    content: '"';
    font-size: 4rem;
    color: #f17619;
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.callout-text::after {
    content: '"';
    font-size: 4rem;
    color: #f17619;
    position: absolute;
    right: -1rem;
    bottom: -2rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f17619;
    margin-bottom: 0.5rem;
}

.stat-247 {
    animation: pulse-247 3s ease-in-out infinite;
}

@keyframes pulse-247 {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 0 rgba(241, 118, 25, 0.4);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(241, 118, 25, 0.6);
    }
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* Hero Video */
.video-container-simple {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-video-large {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-video-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #f17619;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f17619, #fbbf24);
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

/* 3-Column Layout for Roles */
.roles-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.role-column {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.role-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.employee-column {
    border-top-color: #3b82f6;
}

.employee-column:hover {
    border-top-color: #1d4ed8;
}

.manager-column {
    border-top-color: #f59e0b;
}

.manager-column:hover {
    border-top-color: #d97706;
}

.executive-column {
    border-top-color: #8b5cf6;
}

.executive-column:hover {
    border-top-color: #7c3aed;
}

.role-header-compact {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.role-header-compact .role-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.role-header-compact .employee-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.role-header-compact .manager-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.role-header-compact .executive-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.role-header-compact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.role-header-compact .role-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.features-list-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.feature-item-compact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item-compact .feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-item-compact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.feature-item-compact p {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Role Pricing Section */
.role-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.role-pricing .price-display {
    margin-bottom: 1.5rem;
}

.role-pricing .price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #f17619;
    line-height: 1;
}

.role-pricing .price-period {
    color: #6b7280;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.yearly-price {
    display: none;
}

/* Billing Toggle - Enhanced */
.popular-badge {
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    font-weight: 600;
}

.toggle-switch.active + .toggle-label .popular-badge {
    background: #22c55e;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.demo-cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.demo-highlight {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid #f17619;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.demo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f17619, #fbbf24, #f17619);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.demo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f17619, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 15px -3px rgba(241, 118, 25, 0.4);
}

.demo-highlight h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.demo-phone {
    font-size: 2.25rem;
    font-weight: 800;
    color: #f17619;
    font-family: 'SF Mono', 'Monaco', monospace;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.demo-availability {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

.demo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-demo-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f17619, #d97706);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px -3px rgba(241, 118, 25, 0.4);
    border: none;
    cursor: pointer;
}

.btn-demo-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -5px rgba(241, 118, 25, 0.6);
    color: white;
}

.btn-demo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #374151;
    padding: 1.25rem 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-demo-secondary:hover {
    background: #f9fafb;
    border-color: #f17619;
    color: #f17619;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.15);
}

.demo-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Mobile responsive for demo */
@media (max-width: 768px) {
    .demo-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-demo-primary,
    .btn-demo-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .demo-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .demo-phone {
        font-size: 1.75rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    font-weight: 500;
    color: #4b5563;
}

.toggle-label.active {
    color: #f17619;
    font-weight: 600;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #f17619;
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

.discount-badge {
    background: #22c55e;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #f59e0b;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.price-display {
    margin-bottom: 1rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #f17619;
    line-height: 1;
}

.price-period {
    color: #6b7280;
    font-size: 0.9rem;
}

.plan-description {
    color: #6b7280;
    margin: 0;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.feature-item:last-child {
    border-bottom: none;
}

.btn-employee {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-manager {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-executive {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover, .faq-item.active {
    border-color: #f17619;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.question-icon {
    flex-shrink: 0;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .question-icon {
    transform: rotate(180deg);
    color: #f17619;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer .answer-content {
    padding: 0 2rem 2rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

/* Footer Transition Section */
.footer-transition {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #374151;
}

.transition-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transition-markets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.transition-market {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.transition-market:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f17619;
    transform: translateY(-2px);
}

.market-flag-small {
    font-size: 1.5rem;
}

.market-text {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.company-section {
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section p, .footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #f17619;
    transition: color 0.2s ease;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo Image Styles */
.nav-logo-img {
    border-radius: 8px;
    object-fit: cover;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        gap: 1rem;
    }
    
    .tech-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .market-card {
        padding: 1.5rem 1rem;
    }
    
    .market-flag {
        font-size: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .roles-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .role-column {
        margin-bottom: 1rem;
    }
    
    .primary-action {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
}
