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

:root {
    /* CodeFlicker.ai-inspired Color Scheme */
    --primary-color: #00D4AA;
    --primary-dark: #00B894;
    --primary-light: #00FFD0;
    --primary-glow: rgba(0, 212, 170, 0.15);
    --secondary-color: #5B6B7F;
    --accent-color: #00B4D8;
    --accent-light: #48CAE4;
    /* Dark background colors */
    --dark-bg: #272439;
    --darker-bg: #1E1B2E;
    --card-bg: #111820;
    --card-hover: #182028;
    --card-border: #1E2A36;
    /* Text colors */
    --text-light: #F0F4F8;
    --text-muted: #8899AA;
    --text-dim: #5B6B7F;
    --border-color: #1E2A36;
    --border-light: #2A3A4A;
    --gradient-primary: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    --gradient-accent: linear-gradient(135deg, #00D4AA 0%, #00FFD0 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 580px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

/* Narrow Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Language Selector Icon (Single Icon with Dropdown) */
.language-selector-icon {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
}

.lang-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--card-bg);
    color: var(--text-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.lang-icon-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.language-selector-icon.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    text-align: left;
    transition: all 0.2s ease;
}

.lang-option:hover {
    color: var(--text-light);
    background: rgba(0, 212, 170, 0.1);
}

.lang-option.active {
    color: var(--primary-color);
    background: rgba(0, 212, 170, 0.15);
}

/* Legacy Language Selector (keep for backward compatibility) */
.language-selector {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    display: flex;
    gap: 4px;
    background: var(--card-bg);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-light);
    background: rgba(0, 212, 170, 0.1);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(39, 36, 57, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text {
    color: #7C3AED;
}

.logo-dot {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 24px;
    margin-right: 16px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
    z-index: 101;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu (NotebookLM-style slide-in) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--darker-bg);
    border-right: 1px solid var(--border-color);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-close-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--text-light);
    background: rgba(0, 212, 170, 0.1);
}

.mobile-nav a.active {
    color: var(--primary-color);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Header CTA */
.header-cta {
    margin-left: 16px;
}

/* Mobile Menu Button (Legacy) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .language-selector-icon {
        top: 12px;
        right: 70px;
    }
    
    .lang-icon-btn {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 100px;
    font-size: 16.25px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-emoji {
    font-size: 1.25em;
    vertical-align: middle;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-quote {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 40px;
    position: relative;
}

.hero-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.hero-quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
}

.hero-quote cite {
    font-size: 13px;
    color: var(--text-dim);
    font-style: normal;
    padding-left: 20px;
}

/* Integrations */
.integrations {
    margin-top: 40px;
}

.integrations-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.integration-item svg {
    width: 16px;
    height: 16px;
}

.integration-item:hover {
    border-color: var(--border-light);
    color: var(--text-light);
}

.integration-item.more {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.2);
    color: var(--primary-light);
    font-weight: 600;
}

/* Book Section */
.book-section {
    padding: 40px 0;
    background: var(--dark-bg);
    text-align: center;
}

.book-section .btn-large {
    font-size: 16px;
    padding: 16px 32px;
}

.availability {
    margin-top: 12px;
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.section-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Built For Section */
.built-for {
    background: var(--darker-bg);
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.built-for-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.2s ease;
}

.built-for-card:hover {
    border-color: var(--border-light);
    background: var(--card-hover);
}

.built-for-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.built-for-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Always On Section */
.always-on {
    background: var(--darker-bg);
}

.always-on-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.always-on-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.always-on-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.always-on-card-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.always-on-card-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.always-on-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    text-align: center;
}

.always-on-card p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.time-badge {
    flex-shrink: 0;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
}

.always-on-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.always-on-note {
    font-size: 14px;
    color: var(--text-dim);
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Executive Agent Section */
.executive-agent {
    background: var(--dark-bg);
}

.executive-agent p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.executive-agent .exec-agent-extra {
    margin-top: 16px;
}

/* How It Works Section */
.how-it-works {
    background: var(--darker-bg);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-bg);
}

.testimonial-highlight {
    text-align: left;
    padding: 32px 24px;
    margin-bottom: 32px;
    border-left: 3px solid var(--primary-color);
    background: rgba(0, 212, 170, 0.05);
    border-radius: var(--radius-md);
}

.testimonial-highlight p {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-highlight cite {
    font-size: 15px;
    color: var(--text-muted);
    font-style: normal;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.testimonial p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial cite {
    font-size: 12px;
    color: var(--text-dim);
    font-style: normal;
}

/* Why Hire Section */
.why-hire {
    background: var(--darker-bg);
}

.why-hire > .container > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pricing-notes {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.pricing-notes p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

.guarantee {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.guarantee h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.guarantee p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    background: var(--darker-bg);
    padding: 60px 0;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: var(--border-light);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price {
    margin-bottom: 4px;
}

.currency {
    font-size: 16px;
    vertical-align: top;
    color: var(--text-muted);
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
}

.price-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 20px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 12px;
}

.pricing-card .btn {
    width: 100%;
}

/* After Purchase Section */
.after-purchase {
    background: var(--dark-bg);
}

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

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.timeline-badge {
    flex-shrink: 0;
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    white-space: nowrap;
}

.timeline-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--darker-bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: var(--dark-bg);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.final-cta p:not(.availability) {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 40px 0 24px;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 13px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-dim);
    font-size: 13px;
}

/* Feature Carousel Section */
.feature-carousel {
    padding: 60px 0;
    background: var(--dark-bg);
}

.feature-carousel h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 16px;
    padding: 0 24px;
}

.carousel-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.carousel-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.card-image {
    width: 240px;
    height: 240px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: var(--radius-md);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.carousel-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    text-align: center;
}

.carousel-card p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
}

/* Security Section */
.security-section {
    padding: 60px 0;
    background: var(--darker-bg);
}

.security-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.security-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.security-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.security-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.security-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-light) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 241, 229, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .header .btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .built-for-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .language-selector {
        top: 12px;
        right: 12px;
    }
    
    .step {
        flex-direction: column;
        gap: 12px;
    }
    
    .always-on-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .integrations-grid {
        gap: 6px;
    }
    
    .integration-item {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .amount {
        font-size: 28px;
    }
}

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

.hero-badge,
.hero h1,
.hero-subtitle,
.hero-quote,
.integrations {
    animation: fadeIn 0.6s ease-out;
}

.hero h1 {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-quote {
    animation-delay: 0.3s;
}

.integrations {
    animation-delay: 0.4s;
}

/* ===== LANDING PAGE STYLES ===== */

.landing-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
}

.landing-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.landing-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-chooser {
    padding: 60px 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.service-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-dim);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 11px;
}

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

.landing-about {
    padding: 60px 0;
    background: var(--darker-bg);
}

.landing-about h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-item {
    text-align: center;
    padding: 24px;
}

.about-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
}

.about-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.about-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.about-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.landing-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    text-align: center;
}

.landing-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.landing-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== BRIGHT THEME (WEBSITE PAGE) ===== */

.bright-theme {
    background-color: #fafafa;
    color: #1a1a1a;
}

.header-bright {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e5e5e5;
}

.header-bright .logo-text {
    color: #7C3AED;
}

.header-bright .nav a {
    color: #666;
}

.header-bright .nav a:hover {
    color: #1a1a1a;
}

.hero-bright {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
}

.hero-bright::before {
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
}

.hero-bright .hero-badge {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.2);
    color: var(--primary-color);
}

.hero-bright h1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bright .hero-subtitle {
    color: #666;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-bright {
    background: transparent;
    color: #1a1a1a;
    border-color: #d1d5db;
}

.btn-outline-bright:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.05);
}

.section-bright {
    padding: 60px 0;
    background: #fafafa;
}

.section-bright-alt {
    padding: 60px 0;
    background: var(--card-bg);
}

.section-bright h2,
.section-bright-alt h2 {
    color: #999;
}

.section-bright .section-intro,
.section-bright-alt .section-intro {
    color: #666;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.portfolio-item:hover {
    border-color: var(--primary-color);
}

.portfolio-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e5e5e5 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder svg {
    width: 48px;
    height: 48px;
    color: #999;
}

.portfolio-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 16px 4px;
}

.portfolio-item p {
    font-size: 13px;
    color: #666;
    padding: 0 16px 16px;
}

.pricing-card-bright {
    background: var(--card-bg);
    border-color: #e5e5e5;
}

.pricing-card-bright:hover {
    border-color: #d1d5db;
}

.pricing-card-bright.featured {
    border-color: var(--primary-color);
}

.pricing-card-bright h3 {
    color: #1a1a1a;
}

.pricing-card-bright .amount {
    color: #1a1a1a;
}

.pricing-card-bright .pricing-features li {
    color: #666;
    border-color: #f0f0f0;
}

.quote-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    background: var(--card-bg);
    color: #1a1a1a;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

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

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

.quote-form .btn {
    width: 100%;
    margin-bottom: 16px;
}

.whatsapp-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.whatsapp-alt:hover {
    color: var(--primary-color);
}

.whatsapp-alt svg {
    color: #25D366;
}

.section-cta-bright {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
    text-align: center;
}

.section-cta-bright h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-cta-bright p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.footer-bright {
    background: var(--card-bg);
    border-top: 1px solid #e5e5e5;
}

.footer-bright .logo-text {
    color: #7C3AED;
}

.footer-bright .footer-brand p {
    color: #666;
}

.footer-bright .footer-links h4,
.footer-bright .footer-contact h4 {
    color: #999;
}

.footer-bright .footer-links a {
    color: #666;
}

.footer-bright .footer-links a:hover {
    color: #1a1a1a;
}

.footer-bright .footer-contact p {
    color: #666;
}

.footer-bright .footer-bottom {
    border-top-color: #e5e5e5;
    color: #999;
}

/* ===== RESPONSIVE FOR LANDING & WEBSITE ===== */

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-hero h1 {
        font-size: 32px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        padding: 120px 0 60px;
    }
    
    .landing-hero h1 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
}

/* ===== PRICING PAGE STYLES ===== */

.pricing-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
}

.pricing-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

.pricing-section {
    padding: 40px 0 80px;
    background: var(--dark-bg);
}

/* What's Included Section */
.whats-included {
    background: var(--darker-bg);
    padding: 60px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.included-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.2s ease;
}

.included-item:hover {
    border-color: var(--border-light);
    background: var(--card-hover);
}

.included-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.included-icon svg {
    width: 100%;
    height: 100%;
}

.included-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.included-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 180, 216, 0.1));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.guarantee-box p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 60px 0;
    background: var(--darker-bg);
}

.pricing-faq .faq-list {
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing CTA Section */
.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    text-align: center;
}

.pricing-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pricing-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Responsive for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 0 40px;
    }
    
    .pricing-hero h1 {
        font-size: 28px;
    }
    
    .pricing-hero p {
        font-size: 16px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        padding: 24px;
    }
    
    .pricing-cta h2 {
        font-size: 24px;
    }
}
