/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --aws-navy: #161D26;
    --aws-navy-dark: #2C3A4A;
    --aws-orange: #FF9900;
    --aws-orange-light: #FFB84D;
    --aws-orange-dark: #F08B00;
    --aws-blue: #2C87C5;
    --aws-blue-light: #4A9FD8;
    --text-dark: #2C3E50;
    --text-medium: #5A6C7D;
    --text-light: #7B8794;
    --bg-light: #FAFAFA;
    --bg-gray: #F0F2F4;
    --bg-white: #ffffff;
    --border-color: #D5DBDB;
    --success-color: #3A9D23;
    --warning-color: #FFB84D;
    --error-color: #E74C3C;
    --gradient: linear-gradient(135deg, #37475A 0%, #2C87C5 100%);
    --shadow-sm: 0 1px 2px 0 rgba(55, 71, 90, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(55, 71, 90, 0.12);
    --shadow-lg: 0 10px 15px -3px rgba(55, 71, 90, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(55, 71, 90, 0.18);
}

body {
    font-family: 'Inter', "Helvetica Neue", Roboto, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--aws-navy);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: white;
}

.nav-chat-status-row {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: 0.35rem;
    flex-shrink: 0;
}

.navbar .nav-status-badge {
    margin-left: 0;
    flex-shrink: 0;
}

.nav-region-display {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-region-display--muted {
    opacity: 0.55;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--aws-orange);
}

/* Chat Link Styling */
.nav-chat-item {
    margin-left: 2rem !important;
}

.nav-chat-link {
    display: inline-flex !important;
    align-items: center;
    background: rgba(255, 153, 0, 0.15);
    padding: 6px 14px !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 0, 0.3);
    transition: all 0.2s;
}

.nav-chat-link:hover {
    background: rgba(255, 153, 0, 0.25);
    border-color: var(--aws-orange);
}

.nav-chat-link svg {
    flex-shrink: 0;
}

/* User Dropdown in Nav */
.nav-user-dropdown {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 6px 12px 6px 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}

.nav-user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-user-btn.active {
    background: rgba(255, 255, 255, 0.2);
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.nav-user-email-text {
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    transition: transform 0.2s;
    opacity: 0.7;
}

.nav-user-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 14px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
}

.dropdown-email {
    font-size: 0.85rem;
    color: #2C3E50;
    font-weight: 500;
    word-break: break-all;
}

.nav-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #2C3E50 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s;
}

.nav-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #2C3E50 !important;
}

.nav-dropdown-menu .dropdown-item.active {
    color: #FF9900 !important;
}

.nav-dropdown-menu .dropdown-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 4px 0;
}

.nav-dropdown-menu .dropdown-logout {
    color: #dc3545 !important;
}

.nav-dropdown-menu .dropdown-logout:hover {
    background: #fff5f5;
    color: #dc3545 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

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

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

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

/* Medium screens - tighter nav spacing */
@media (max-width: 1100px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .nav-user-email-text {
        display: none;
    }
    
    .nav-user-btn {
        padding: 4px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--aws-navy-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-links.mobile-open {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
    }
    
    .nav-links .btn-secondary {
        display: inline-block;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    /* Mobile dropdown styles */
    .nav-user-dropdown {
        width: 100%;
    }
    
    .nav-user-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    .nav-user-email-text {
        display: inline;
    }
    
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
    }
    
    .nav-dropdown-menu.show {
        transform: none;
    }
    
    .dropdown-header {
        background: rgba(255,255,255,0.05);
        border-bottom-color: rgba(255,255,255,0.1);
    }
    
    .dropdown-email {
        color: white;
    }
    
    .nav-dropdown-menu .dropdown-item {
        color: white !important;
    }
    
    .nav-dropdown-menu .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        color: white !important;
    }
    
    .nav-dropdown-menu .dropdown-item.active {
        color: #FF9900 !important;
    }
    
    .dropdown-divider {
        background: rgba(255,255,255,0.1);
    }
    
    .nav-dropdown-menu .dropdown-logout {
        color: #ff6b6b !important;
    }
    
    .nav-dropdown-menu .dropdown-logout:hover {
        background: rgba(255,100,100,0.1);
        color: #ff6b6b !important;
    }
}

/* Logout link styling */
.nav-logout {
    cursor: pointer;
    color: #ff6b6b !important;
}

.nav-logout:hover {
    color: #ff5252 !important;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--aws-orange-light);
    color: white;
    font-weight: 600;
}

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

.btn-secondary {
    background: var(--aws-orange-light);
    color: white;
    border: 2px solid var(--aws-orange-light);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--aws-orange);
    border-color: var(--aws-orange);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.03) 0%, rgba(20, 110, 180, 0.03) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--aws-orange-light);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.browser-content {
    padding: 2rem;
    min-height: 300px;
}

.chat-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    max-width: 80%;
}

.chat-message.user {
    background: var(--aws-navy);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.chat-message.assistant {
    background: var(--bg-light);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.typing-indicator {
    display: flex;
    gap: 0.5rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--aws-orange-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-light);
}

.step-arrow {
    font-size: 2rem;
    color: var(--aws-orange-light);
}

/* Use Cases */
.use-cases {
    padding: 5rem 0;
    background: var(--bg-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.use-case {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    border-left: 4px solid var(--aws-orange-light);
}

.use-case h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.use-case p {
    color: var(--text-light);
}

/* Pricing Preview */
.pricing-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--aws-orange-light);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aws-orange-light);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--aws-navy);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--aws-navy);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

/* Pricing Page Specific Styles */
.pricing-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(35, 47, 62, 0.03) 0%, rgba(20, 110, 180, 0.03) 100%);
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.billing-option {
    font-weight: 600;
    cursor: pointer;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--aws-orange-light);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Detailed Pricing */
.pricing-detailed {
    padding: 3rem 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-column {
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.pricing-column:hover {
    border-color: var(--aws-orange-light);
    box-shadow: var(--shadow-lg);
}

.pricing-column.featured {
    border-color: var(--aws-orange-light);
    border-width: 3px;
    position: relative;
}

.popular-badge {
    background: var(--aws-orange-light);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-tier-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.tier-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tier-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.annual-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.annual-total {
    font-weight: 600;
    color: var(--text-dark);
}

.trial-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.pricing-tier-features {
    padding: 2rem;
}

.pricing-tier-features h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-tier-features ul {
    list-style: none;
}

.pricing-tier-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.checkmark {
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.crossmark {
    color: var(--text-light);
    margin-right: 0.5rem;
}

.overage-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin: 1rem 0;
    color: var(--text-light);
}

.ideal-for {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.comparison-table-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards,
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .pricing-cards,
    .pricing-table,
    .use-cases-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

