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

:root {
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --bg-dark: #0f172a;
    --bg-darker: #0a0f1b;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(15, 23, 42, 0.4);
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border-color: rgba(6, 182, 212, 0.2);
    --glow: 0 0 20px rgba(6, 182, 212, 0.3);
    --glow-bright: 0 0 40px rgba(6, 182, 212, 0.5);
}

html {
    scroll-behavior: smooth;
}

/* RTL Support for Arabic and Hebrew */
html[lang="ar"],
html[lang="he"] {
    direction: rtl;
    text-align: right;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0a0f1b 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    z-index: 1000;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 1.75rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-free {
    font-size: 0.65rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
    animation: floatUpDown 2s ease-in-out infinite;
    letter-spacing: 1.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.logo-highlight {
    color: #06b6d4;
}

.lang-switch {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-color);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(6, 182, 212, 0.2));
    box-shadow: var(--glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 10;
}

.animated-logo {
    display: flex;
    gap: 0.5rem;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.logo-word {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease forwards;
    opacity: 0;
}

.word-1 { animation-delay: 0s; }
.word-2 { animation-delay: 0.2s; }
.word-3 { animation-delay: 0.4s; }

.main-tagline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    animation: slideInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.main-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    animation: slideInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    line-height: 1.6;
}

/* RTL text alignment */
html[lang="ar"] .main-subtitle,
html[lang="he"] .main-subtitle {
    text-align: right;
}

.hero-proof {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    animation: slideInUp 0.8s ease 0.9s forwards;
    opacity: 0;
}

/* RTL alignment for hero proof */
html[lang="ar"] .hero-proof,
html[lang="he"] .hero-proof {
    text-align: right;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
}

.cta-icon {
    font-size: 1.3rem;
    animation: bounce 2s ease infinite;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Advantage Section - WOW Factor */
.advantage-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.08), rgba(8, 145, 178, 0.05));
    max-width: 100%;
    margin: 0 auto;
}

.advantage-content {
    text-align: center;
}

.advantage-intro {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #00f5ff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 4rem;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.advantage-item {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.advantage-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1), transparent);
    pointer-events: none;
    animation: glow-pulse 3s ease infinite;
}

.advantage-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3), inset 0 0 40px rgba(0, 245, 255, 0.1);
}

.advantage-item:hover .advantage-badge {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(6, 182, 212, 0.5);
}

.advantage-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 0.8rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.4));
}

.advantage-item h3 {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    margin: 0.5rem 0;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-item p {
    display: none;
}

.advantage-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: center;
}

.advantage-solution {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, #00f5ff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.8;
}

/* Alias for problem section to advantage section for backwards compatibility */
.problem-section { display: none; }
.problem-content { display: none; }

/* Browser Bar */
.browser-bar {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInUp 0.8s ease 1.1s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.browser-bar-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.browser-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.browser-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    border: 2px solid rgba(6, 182, 212, 0.3);
    color: var(--text-secondary);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.browser-btn:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.15));
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 32px rgba(6, 182, 212, 0.3), inset 0 0 20px rgba(0, 245, 255, 0.1);
}

.browser-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(6, 182, 212, 0.15));
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}

.edge-icon {
    background: linear-gradient(135deg, #0078d4, #50e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brave-icon {
    background: linear-gradient(135deg, #fb542b, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opera-icon {
    background: linear-gradient(135deg, #ff1b2d, #de1c25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vivaldi-icon {
    background: linear-gradient(135deg, #ef2b2d, #a6282f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.browser-btn-name {
    display: inline;
}

.workflow-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0.5rem 0 2rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 2rem;
}

#pricingDescription {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 1rem 0;
}

.quick-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    animation: slideInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Visual - BOLD & CLEAR */
.hero-visual {
    position: relative;
    height: auto;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
}

.workflow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    max-width: 900px;
    width: 100%;
}

.workflow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    text-align: center;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.big-card:nth-child(1) { animation-delay: 0.1s; }
.big-card:nth-child(3) { animation-delay: 0.2s; }
.big-card:nth-child(5) { animation-delay: 0.3s; }
.big-card:nth-child(7) { animation-delay: 0.4s; }

.workflow-card:hover {
    transform: scale(1.05);
}

.success-card {
    border: none;
    background: transparent;
    box-shadow: none;
}

.success-card:hover {
    box-shadow: none;
}

.big-number {
    display: none;
}

.big-icon {
    font-size: 3.5rem;
    animation: bounce 3s ease infinite;
    margin-bottom: 0.5rem;
}

.big-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.big-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.big-arrow {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
    margin: 0.3rem 0;
}


/* Browser Compatibility */
.browser-compatibility {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(8, 145, 178, 0.05));
    max-width: 1400px;
    margin: 0 auto;
}

.compatibility-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.browsers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.browser-card {
    padding: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.browser-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.browser-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.browser-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.browser-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.browser-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.08));
    max-width: 1400px;
    margin: 0 auto;
}

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

.step {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1), transparent);
    pointer-events: none;
    animation: glow-pulse 3s ease infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3), inset 0 0 40px rgba(0, 245, 255, 0.1);
}

.step-icon-large {
    font-size: 4rem;
    margin: 0 auto 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
    position: relative;
    z-index: 1;
}

.step-label {
    font-size: 1.3rem;
    margin: 1rem 0;
    font-weight: 700;
    background: linear-gradient(135deg, #00f5ff, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.step-arrow {
    font-size: 3rem;
    color: #00f5ff;
    font-weight: 900;
    animation: pulse-arrow 2s ease infinite;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

@keyframes pulse-arrow {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.animated-arrow {
    animation: pulse-arrow 2s ease infinite;
}

/* Pricing */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(8, 145, 178, 0.05));
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
}

.price-display {
    font-size: 3rem;
    font-weight: 900;
    margin: 2rem 0;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.trial-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 500;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.rating {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.testimonial-company {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.testimonial-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(6, 182, 212, 0.5);
    transition: all 0.2s ease;
}

.testimonial-link:hover {
    border-bottom-color: var(--primary);
}

/* Case Studies */
.case-studies {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

.case-studies-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 2rem;
    text-align: center;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.case-study-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.case-study-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.case-study-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary);
    transition: all 0.2s ease;
}

.read-more:hover {
    padding-bottom: 2px;
}

/* FAQ */
.faq {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.05));
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* Language Modal */
.language-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.language-modal.active {
    display: flex;
}

.language-modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.language-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.language-btn {
    padding: 0.75rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.language-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.language-btn.active {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #0f172a;
    border-color: var(--primary);
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    color: var(--text-secondary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Taste Demo Button */
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Responsive - Mobile First */

/* Small phones (320px - 480px) - ULTRA MINIMAL MOBILE */
@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo-wrapper {
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .logo-free {
        font-size: 0.45rem;
        margin-left: 0.2rem;
    }

    .lang-switch {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    /* Hero Section - AGGRESSIVE CLEANUP */
    .hero {
        grid-template-columns: 1fr !important;
        padding: 5rem 1.2rem 2rem;
        gap: 2.5rem;
        min-height: auto;
    }

    .hero-content {
        gap: 1.5rem;
        order: 1;
    }

    .animated-logo {
        font-size: 1.8rem;
        gap: 0.2rem;
        margin-bottom: 0;
    }

    .main-tagline {
        font-size: 1.8rem;
        line-height: 1.15;
        margin: 0;
    }

    .main-subtitle {
        font-size: 1rem;
        line-height: 1.45;
        margin: 0;
    }

    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.05rem;
        min-height: 52px;
        width: 100%;
        justify-content: center;
        margin: 0.8rem 0;
    }

    .hero-proof {
        font-size: 0.75rem;
        margin: 0.5rem 0 0;
    }

    /* HIDE ONLY QUICK STATS - KEEP BROWSER BAR */
    .quick-stats,
    .stat-item,
    .stat-number,
    .stat-label {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* SHOW BROWSER BAR ON MOBILE */
    .browser-bar {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .browser-bar-label {
        display: block !important;
        font-size: 0.9rem;
    }

    .browser-buttons {
        display: flex !important;
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .browser-btn {
        display: inline-flex !important;
        min-height: 44px;
    }

    .browser-btn-name {
        display: inline !important;
    }

    /* Hero Visual - HIDE COMPLETELY ON MOBILE */
    .hero-visual {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .workflow-container {
        display: none !important;
    }

    .workflow-card {
        display: none !important;
    }

    .big-arrow {
        display: none !important;
    }

    .big-number {
        display: none !important;
    }

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

    .big-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .big-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .big-arrow {
        font-size: 0.8rem;
        margin: 1rem 0;
    }

    /* Sections - BIG SPACING */
    .advantage-section {
        padding: 5rem 1.2rem;
        margin-top: 3rem;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .advantage-item {
        min-height: 140px;
        padding: 2rem;
    }

    .advantage-icon {
        font-size: 2.5rem;
    }

    .advantage-item h3 {
        font-size: 1.1rem;
    }

    .advantage-badge {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
    }

    .advantage-intro {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }

    /* How it Works */
    .how-it-works {
        padding: 5rem 1.2rem;
        margin-top: 3rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        min-width: 100%;
        padding: 2rem 1.5rem;
    }

    .step-icon-large {
        font-size: 3.2rem;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .step-label {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 0.95rem;
    }

    .step-arrow {
        font-size: 2rem;
        transform: rotate(90deg);
    }

    /* Browser Compatibility */
    .browser-compatibility {
        padding: 5rem 1.2rem;
        margin-top: 3rem;
    }

    .browsers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .browser-card {
        padding: 2rem 1.5rem;
    }

    .browser-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .browser-card h3 {
        font-size: 1.05rem;
    }

    .browser-card p {
        font-size: 0.9rem;
    }

    .browser-link {
        padding: 0.5rem 1.3rem;
        font-size: 0.9rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Testimonials */
    .ai-testimonials-section {
        padding: 5rem 1.2rem;
        margin-top: 3rem;
    }

    .ai-testimonials-title {
        font-size: 1.9rem;
        margin-bottom: 3rem;
    }

    .ai-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ai-card {
        padding: 2rem 1.5rem;
    }

    .ai-logo {
        height: 80px;
        width: 80px;
    }

    .ai-quote {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    /* FAQ */
    .faq-section {
        padding: 5rem 1.2rem;
        margin-top: 3rem;
    }

    .faq-title {
        font-size: 1.9rem;
        margin-bottom: 3rem;
    }

    .faq-item {
        padding: 1.8rem 1.5rem;
        margin-bottom: 1.2rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 0.98rem;
    }

    /* Case Studies */
    .case-studies-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .case-study-card {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 1.2rem;
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-section h4 {
        font-size: 1.05rem;
    }

    .footer-section a {
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* Tablets and medium phones (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .navbar {
        padding: 0.9rem 1.5rem;
    }

    .logo-wrapper {
        font-size: 1.2rem;
        gap: 0.6rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .logo-free {
        font-size: 0.6rem;
    }

    .lang-switch {
        padding: 0.45rem 0.9rem;
        font-size: 0.9rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 1.5rem 3rem;
        gap: 2rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .animated-logo {
        font-size: 2.5rem;
    }

    .main-tagline {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1.05rem;
        min-height: 48px;
    }

    .hero-visual {
        height: 350px;
    }

    .workflow-card {
        padding: 2rem;
    }

    .big-icon {
        font-size: 3rem;
    }

    .big-title {
        font-size: 1.2rem;
    }

    .big-description {
        font-size: 1.1rem;
    }

    .quick-stats {
        gap: 1rem;
        flex-direction: row;
    }

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

    .advantage-item {
        padding: 1.5rem;
    }

    .advantage-icon {
        font-size: 2.2rem;
    }

    .advantage-item h3 {
        font-size: 1rem;
    }

    .browser-buttons {
        gap: 0.8rem;
    }

    .browser-btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        padding: 2rem 1.5rem;
        min-width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .ai-testimonials-title {
        font-size: 2.2rem;
    }

    .case-studies-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

/* Large tablets and desktops (769px+) */
@media (min-width: 769px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .browsers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ai-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .case-studies-container {
        grid-template-columns: repeat(3, 1fr);
    }
}