/* ========================================
   UNIFIED STYLESHEET - Shothik AI
   All pages use this single CSS file
   ======================================== */

/* ========================================
   1. GLOBAL STYLES & RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --shothik-green: #00d084;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   2. ANIMATIONS
   ======================================== */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes fadeInUpCookie {
    from { opacity: 0; transform: translate(-50%, 40px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ========================================
   3. HEADER STYLES (CONSISTENT FOR ALL PAGES)
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.6s ease-out;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

header.scrolled .header-content {
    padding: 0.75rem 2rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-container img:first-child {
    height: 40px;
    width: auto;
    animation: fadeIn 0.8s ease-out;
}

.india-flag {
    height: 28px;
    width: 42px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.premium-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ========================================
   4. FOOTER STYLES (CONSISTENT FOR ALL PAGES)
   ======================================== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
    width: 100%;
    left: 0;
    right: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ========================================
   5. MOBILE MENU (CONSISTENT FOR ALL PAGES)
   ======================================== */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    color: var(--text-dark);
}

body.menu-open {
    overflow: hidden;
}

.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.menu-open .menu-backdrop {
    display: block;
    opacity: 1;
}

.menu-toggle svg {
    display: block;
}

.menu-toggle .bar {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    transition: d .3s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
}

.drawer-logo {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.drawer-logo img {
    height: 38px;
    width: auto;
}

.drawer-close {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform 0.2s ease, background 0.2s ease;
    border-radius: 8px;
    position: absolute;
    top: -8px;
    right: 0;
}

.drawer-close:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.drawer-close:active {
    background: rgba(0, 0, 0, 0.1);
}

.drawer-close svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex !important;
        order: 3;
        margin-left: auto;
        position: relative;
        z-index: 10003 !important;
    }

    #menu-toggle svg {
        color: #111;
    }

    nav.header-nav,
    .header-nav,
    #site-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 300px;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        padding: 24px 16px;
        transition: left 0.35s ease-in-out;
        z-index: 10000;
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
    }

    body.menu-open nav.header-nav,
    body.menu-open .header-nav,
    body.menu-open #site-nav {
        left: 0;
    }

    nav.header-nav a.nav-link {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
        text-align: left;
    }

    nav.header-nav a.nav-link:last-of-type {
        border-bottom: none;
    }

    nav.header-nav .premium-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 12px 0 0;
        padding: 12px 16px;
        text-align: center;
        border-radius: 10px;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    :root {
        --header-h: 64px;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 10000;
        background: #fff;
    }

    header .header-content {
        min-height: var(--header-h);
        padding: 10px 16px;
    }

    header > .header-content > .premium-btn {
        display: none !important;
    }

    .drawer-logo {
        display: flex;
        animation: fadeIn 0.4s ease-in-out;
    }

    .drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body:not(.menu-open) .menu-toggle {
        display: flex !important;
    }

    body.menu-open .menu-toggle {
        display: none !important;
    }
}
/* INDEX, ABOUT, CONTACT, PRICING & GDPR STYLES CONSOLIDATED */
.hero{max-width:1400px;margin:0 auto;padding:4rem 2rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.hero-content h1{font-size:3.5rem;font-weight:700;line-height:1.2;margin-bottom:1.5rem;animation:fadeInUp .8s ease-out}.hero-content p{font-size:1.1rem;color:var(--text-light);margin-bottom:2rem;animation:fadeInUp .8s ease-out .2s both}.hero-kpis{display:flex;gap:12px;align-items:center;color:#6B7280;margin-bottom:16px}.stars{color:#FBBF24}.hero-buttons{display:flex;gap:1rem;animation:fadeInUp .8s ease-out .4s both}.btn-primary{background:var(--primary);color:var(--white);border:none;padding:.75rem 1.5rem;border-radius:8px;cursor:pointer;font-weight:600;text-decoration:none;transition:all .3s ease}.btn-primary:hover{background:var(--primary-dark);transform:translateY(-3px);box-shadow:0 8px 20px rgba(16,185,129,.3)}.btn-secondary{background:transparent;color:var(--primary);border:2px solid var(--primary);padding:.875rem 1.875rem;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease}.btn-secondary:hover{background:var(--primary-light);transform:translateY(-3px)}.hero-image{position:relative;animation:fadeInRight .8s ease-out}.mascot{width:100%;max-width:400px;animation:float 3s ease-in-out infinite}.tools-section{background:var(--bg-light);padding:4rem 2rem}.tools-container{max-width:1400px;margin:0 auto}.section-title{font-size:2.5rem;font-weight:700;text-align:center;margin-top:1.5rem; margin-bottom:3rem;animation:fadeInUp .8s ease-out}.tools-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.tool-card{background:var(--white);padding:2rem;border-radius:12px;border:1px solid var(--border);transition:all .3s ease;animation:fadeInUp .8s ease-out;cursor:pointer}.tool-card:hover{transform:translateY(-8px);box-shadow:0 12px 24px rgba(0,0,0,.1);border-color:var(--primary)}.tool-icon{width:50px;height:50px;background:var(--primary-light);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1rem}.tool-card h3{font-size:1.3rem;margin-bottom:.5rem;color:var(--text-dark)}.tool-card p{color:var(--text-light);font-size:.95rem}.powerful-features-section{background:linear-gradient(135deg,#f5f7fa 0%,#e8f5e9 100%);padding:80px 20px}.powerful-features-container{max-width:1200px;margin:0 auto}.powerful-features-header{text-align:center;margin-bottom:80px}.powerful-features-header h2{font-size:48px;font-weight:800;color:#1a1a1a;line-height:1.2;margin-bottom:10px}.powerful-features-header .highlight{color:var(--shothik-green)}.powerful-features-grid{display:flex;flex-direction:column;gap:100px}.powerful-feature-card{display:flex;align-items:center;justify-content:space-between;gap:60px;padding:60px 80px;background:white;border-radius:24px;box-shadow:0 10px 40px rgba(0,0,0,.08);transition:transform .3s ease,box-shadow .3s ease}.powerful-feature-card:hover{transform:translateY(-5px);box-shadow:0 15px 50px rgba(0,0,0,.12)}.powerful-feature-card.reverse{flex-direction:row-reverse}.powerful-feature-content{flex:1;max-width:450px}.powerful-feature-content h3{font-size:32px;font-weight:700;color:#1a1a1a;margin-bottom:20px;line-height:1.3}.powerful-feature-content .highlight{color:var(--shothik-green)}.powerful-feature-content p{font-size:16px;color:#666;line-height:1.6;margin-bottom:30px}.btn-signup-feature{display:inline-flex;align-items:center;gap:10px;padding:14px 28px;background:var(--shothik-green);color:white;font-size:15px;font-weight:600;border:none;border-radius:8px;cursor:pointer;transition:background .3s ease,transform .2s ease;text-decoration:none}.btn-signup-feature:hover{background:#00b870;transform:translateX(3px)}.btn-signup-feature::after{content:'';font-size:18px;transition:transform .3s ease}.btn-signup-feature:hover::after{transform:translateX(3px)}.powerful-feature-image{flex:1;display:flex;justify-content:center;align-items:center;max-width:500px}.powerful-feature-image img{width:100%;height:auto;max-width:400px;animation:floatFeature 3s ease-in-out infinite}.features-section{padding:4rem 2rem}.features-container{max-width:1400px;margin:0 auto}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}.feature-item{padding:2rem;background:var(--bg-light);border-radius:12px;text-align:center;animation:fadeInUp .8s ease-out;transition:all .3s ease}.feature-item:hover{background:var(--primary-light);transform:translateY(-5px)}.feature-icon{font-size:2.5rem;margin-bottom:1rem}.feature-item h3{font-size:1.2rem;margin-bottom:.5rem}.feature-item p{color:var(--text-light);font-size:.95rem}.partners-section{background:var(--white);padding:5rem 2rem;overflow:hidden}.partners-container{max-width:1400px;margin:0 auto}.partners-title{font-size:2.5rem;font-weight:700;text-align:center;margin-bottom:4rem;color:var(--text-dark);animation:fadeInUp .8s ease-out}.partners-grid-wrapper{overflow:hidden;position:relative}.partners-grid{display:flex;gap:3rem;align-items:center;animation:scrollLogos 20s linear infinite;width:fit-content}.partners-grid:hover{animation-play-state:paused}.partner-logo{display:flex;align-items:center;justify-content:center;padding:2rem;background:var(--white);border-radius:16px;border:2px solid var(--border);transition:all .3s ease;min-width:280px;width:280px;height:160px;flex-shrink:0}.partner-logo:hover{box-shadow:0 12px 28px rgba(0,0,0,.12);border-color:var(--primary)}.partner-logo img{max-width:100%;max-height:100%;object-fit:contain;transition:all .3s ease}.cta-section{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:var(--white);padding:4rem 2rem;text-align:center;animation:fadeIn .8s ease-out}.cta-content{max-width:600px;margin:0 auto}.cta-section h2{font-size:2.5rem;margin-bottom:1rem}.cta-section p{font-size:1.1rem;margin-bottom:2rem;opacity:.95}.cta-btn{background:var(--white);color:var(--primary);border:none;padding:1rem 2.5rem;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease}.cta-btn:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(0,0,0,.2)}.cta-section+footer{margin-top:0!important}.tool-card:nth-child(1){animation-delay:0s}.tool-card:nth-child(2){animation-delay:.1s}.tool-card:nth-child(3){animation-delay:.2s}.tool-card:nth-child(4){animation-delay:.3s}.tool-card:nth-child(5){animation-delay:.4s}.tool-card:nth-child(6){animation-delay:.5s}.feature-item:nth-child(1){animation-delay:0s}.feature-item:nth-child(2){animation-delay:.1s}.feature-item:nth-child(3){animation-delay:.2s}.feature-item:nth-child(4){animation-delay:.3s}.feature-item:nth-child(5){animation-delay:.4s}.feature-item:nth-child(6){animation-delay:.5s}.hero-about{background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop');background-size:cover;background-position:center;color:white;padding:6rem 2rem;text-align:left;animation:fadeInUp .8s ease-out}.hero-about h1{font-size:3.5rem;font-weight:700;margin-bottom:1rem;line-height:1.2}.hero-about .highlight{color:var(--primary)}.hero-about p{font-size:1.2rem;max-width:600px;opacity:.95}.about-content{padding:4rem 2rem;max-width:1200px;margin:0 auto}.about-section{margin-bottom:4rem;animation:fadeInUp .6s ease-out}.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}.about-text h2{font-size:2.5rem;font-weight:700;margin-bottom:1.5rem;color:var(--text-dark)}.about-text h2 .highlight{color:var(--primary)}.about-text p{font-size:1rem;color:var(--text-light);margin-bottom:1.5rem;line-height:1.8}.about-images{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}.about-images img{width:100%;height:300px;object-fit:cover;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,.1);transition:transform .3s ease}.about-images img:hover{transform:translateY(-5px)}.progress-container{margin-top:2.5rem}.progress-item{margin-bottom:1.5rem}.progress-label{display:flex;justify-content:space-between;margin-bottom:.5rem;font-size:.95rem;color:#1a1a1a;font-weight:600}.progress-label span:last-child{color:#666}.progress-bar-container{width:100%;height:8px;background:#e5e7eb;border-radius:10px;overflow:hidden}.progress-bar{height:100%;background:linear-gradient(90deg,#10b981 0%,#059669 100%);border-radius:10px;width:0;transition:width 1.5s ease-out}.progress-bar.animate{width:100%}.stats-section{background:linear-gradient(135deg,#f0fdf4 0%,#fff 100%);padding:3rem 2rem;margin:3rem 0;border-radius:12px}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;max-width:1200px;margin:0 auto}.stat-item{text-align:center}.stat-number{font-size:2.5rem;font-weight:700;color:var(--primary);margin-bottom:.5rem}.stat-label{font-size:1rem;color:var(--text-light);font-weight:500}.features-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-top:2rem}.features-list .feature-item{background:white;padding:2rem;border-radius:12px;border-left:4px solid var(--primary);box-shadow:0 4px 12px rgba(0,0,0,.08);text-align:left}.features-list .feature-item:hover{transform:translateY(-5px);box-shadow:0 8px 20px rgba(16,185,129,.15)}.features-list .feature-item h3{font-size:1.2rem;margin-bottom:.8rem;color:var(--primary)}.features-list .feature-item p{color:var(--text-light);font-size:.95rem;line-height:1.6}.contact-hero{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:var(--white);padding: 8rem 2rem 2rem 2rem;text-align:center;animation:fadeIn .8s ease-out}.contact-hero-content{max-width:800px;margin:0 auto}.contact-hero h1{font-size:3rem;font-weight:700;margin-bottom:1rem}.contact-hero p{font-size:1.1rem;opacity:.95}.contact-section{max-width:1400px;margin:0 auto;padding:4rem 2rem}.contact-container{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}.contact-info{animation:fadeInUp .8s ease-out}.contact-info h2{font-size:2rem;margin-bottom:2rem;color:var(--text-dark)}.info-item{margin-bottom:2.5rem;padding:1.5rem;background:var(--bg-light);border-radius:12px;border-left:4px solid var(--primary);transition:all .3s ease;animation:fadeInUp .8s ease-out}.info-item:hover{transform:translateX(8px);box-shadow:0 4px 12px rgba(16,185,129,.1)}.info-item h3{font-size:1.1rem;color:var(--primary);margin-bottom:.5rem;font-weight:600}.info-item p{color:var(--text-light);font-size:1rem}.info-item a{color:var(--primary);text-decoration:none;font-weight:600;transition:color .3s ease}.info-item a:hover{color:var(--primary-dark)}.info-item:nth-child(1){animation-delay:0s}.info-item:nth-child(2){animation-delay:.1s}.info-item:nth-child(3){animation-delay:.2s}.info-item:nth-child(4){animation-delay:.3s}.map-container{animation:fadeInUp .8s ease-out .2s both;border-radius:12px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.1)}.map-container iframe{width:100%;height:500px;border:none;display:block}body.pricing-page{padding-top:76px}.pricing-hero{background:linear-gradient(135deg,#1a7d5c 0%,#2a9d7c 100%);padding:4rem 2rem;text-align:center;color:white;animation:fadeIn .8s ease-out}.pricing-hero h1{font-size:2.5rem;margin-bottom:1rem;font-weight:700}.pricing-hero p{font-size:1rem;max-width:600px;margin:0 auto 2rem;line-height:1.6;opacity:.95}.toggle-container{display:flex;justify-content:center;align-items:center;gap:1rem;margin-bottom:3rem}.toggle-label{font-size:.9rem;font-weight:500}.toggle-switch{position:relative;width:50px;height:28px;background-color:rgba(255,255,255,.3);border-radius:14px;cursor:pointer;transition:background-color .3s}.toggle-switch.active{background-color:rgba(255,255,255,.6)}.toggle-slider{position:absolute;top:2px;left:2px;width:24px;height:24px;background-color:white;border-radius:50%;transition:left .3s}.toggle-switch.active .toggle-slider{left:24px}.savings-badge{background-color:#ff9500;color:white;padding:.25rem .75rem;border-radius:20px;font-size:.75rem;font-weight:600;margin-left:.5rem}.pricing-section{padding:3rem 2rem;max-width:1200px;margin:0 auto}.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}.pricing-card{background:white;border-radius:12px;padding:2rem;position:relative;transition:transform .3s,box-shadow .3s;box-shadow:0 2px 8px rgba(0,0,0,.08);animation:fadeInUp .8s ease-out}.pricing-card:hover{transform:translateY(-4px);box-shadow:0 8px 16px rgba(0,0,0,.12)}.pricing-card.featured{border:2px solid #1a7d5c;transform:scale(1.02)}.pricing-card.featured:hover{transform:scale(1.02) translateY(-4px)}.badge{position:absolute;top:-12px;right:20px;padding:.4rem .8rem;border-radius:20px;font-size:.75rem;font-weight:600}.badge.solid{background-color:#d4f4e8;color:#1a7d5c}.badge.popular{background-color:#f3e5ff;color:#7c3aed}.badge.best{background-color:#fef3c7;color:#d97706}.price{font-size:2.5rem;font-weight:700;margin-bottom:.5rem}.price-label{font-size:.9rem;color:var(--text-light);margin-bottom:.5rem}.plan-name{font-size:1.2rem;font-weight:600;margin-bottom:.5rem}.plan-name.free{color:var(--text-dark)}.plan-name.value,.plan-name.pro,.plan-name.unlimited{color:#ff9500}.plan-subtitle{font-size:.85rem;color:var(--text-light);margin-bottom:1.5rem}.pricing-card .features-list{list-style:none;margin-bottom:2rem}.pricing-card .features-list li{padding:.75rem 0;font-size:.9rem;color:var(--text-light);display:flex;align-items:flex-start;gap:.75rem}.pricing-card .features-list li:before{content:"";color:#1a7d5c;font-weight:bold;font-size:1.1rem;flex-shrink:0}.cta-button{width:100%;padding:.75rem 1.5rem;border:none;border-radius:6px;font-size:.95rem;font-weight:600;cursor:pointer;transition:all .3s}.cta-button.primary{background-color:#1a7d5c;color:white}.cta-button.primary:hover{background-color:#156b4d}.cta-button.secondary{background-color:white;color:#1a7d5c;border:2px solid #1a7d5c}.cta-button.secondary:hover{background-color:#f0f9f7}.comparison-section{background:white;padding:3rem 2rem;border-radius:12px;margin-top:3rem;animation:fadeInUp .8s ease-out .2s both}.comparison-title{text-align:center;font-size:1.5rem;font-weight:700;margin-bottom:2rem;color:var(--text-dark)}.comparison-table{width:100%;border-collapse:collapse;overflow-x:auto}.comparison-table th,.comparison-table td{padding:1rem;text-align:left;border-bottom:1px solid var(--border)}.comparison-table th{background-color:var(--bg-light);font-weight:600;color:var(--text-dark)}.comparison-table tr:last-child td{border-bottom:none}.feature-name{font-weight:500;color:var(--text-dark)}.feature-value{color:var(--text-light);font-size:.9rem}.feature-value.check{color:#1a7d5c;font-weight:600}.pricing-card:nth-child(1){animation-delay:0s}.pricing-card:nth-child(2){animation-delay:.1s}.pricing-card:nth-child(3){animation-delay:.2s}.pricing-card:nth-child(4){animation-delay:.3s}.table-scroll{width:100%;max-width:100vw;overflow-x:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;scrollbar-width:thin;contain:content}.table-scroll>table,.table-scroll>.features-table,.table-scroll>.pricing-table{width:auto;min-width:760px;border-collapse:separate!important;border-spacing:0;background:#fff}.table-scroll>table tr>*:first-child,.table-scroll>.features-table tr>*:first-child,.table-scroll>.pricing-table tr>*:first-child{position:sticky;left:0;z-index:2;background:#fff;min-width:150px;box-shadow:6px 0 8px rgba(0,0,0,.06)}.table-scroll>table thead tr>*,.table-scroll>.features-table thead tr>*,.table-scroll>.pricing-table thead tr>*{position:sticky;top:0;z-index:3;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.08)}.table-scroll>table thead tr>*:first-child,.table-scroll>.features-table thead tr>*:first-child,.table-scroll>.pricing-table thead tr>*:first-child{z-index:4;box-shadow:6px 2px 8px rgba(0,0,0,.08)}#cookie-banner{all:initial;position:fixed;bottom:25px;left:50%;transform:translateX(-50%);background:#fff;color:#333;border-radius:16px;box-shadow:0 8px 25px rgba(0,0,0,.25);padding:20px 24px;max-width:400px;width:calc(100% - 40px);text-align:center;z-index:9999;animation:fadeInUpCookie .6s ease;font-family:"Inter","Segoe UI",Roboto,Arial,sans-serif;box-sizing:border-box;display:none}#cookie-banner *{box-sizing:border-box}#cookie-banner .cookie-content{display:block;margin:0;padding:0}#cookie-banner .cookie-content p{margin:0;padding:0;font-size:15px;line-height:1.5;color:#333;font-family:"Inter","Segoe UI",Roboto,Arial,sans-serif;display:block}#cookie-banner .cookie-content a{color:#0078ff;font-weight:500;text-decoration:none;font-family:inherit}#cookie-banner .cookie-content a:hover{text-decoration:underline}#cookie-banner .cookie-buttons{margin-top:16px;margin-bottom:0;margin-left:0;margin-right:0;padding:0;display:flex;justify-content:center;gap:12px;list-style:none}#cookie-banner .cookie-btn{padding:8px 18px;border:none;border-radius:8px;font-weight:500;cursor:pointer;transition:all .3s ease;font-size:14px;font-family:"Inter","Segoe UI",Roboto,Arial,sans-serif;margin:0;outline:none;display:inline-block;text-align:center;line-height:normal}#cookie-banner .cookie-btn.accept{background-color:#0078ff;color:white;border:none}#cookie-banner .cookie-btn.accept:hover{background-color:#005fcc}#cookie-banner .cookie-btn.reject{background-color:transparent;color:#555;border:1px solid #ccc}#cookie-banner .cookie-btn.reject:hover{background-color:#f1f1f1}@media (prefers-color-scheme:dark){#cookie-banner{background:#1f1f1f;color:#f1f1f1;box-shadow:0 8px 25px rgba(0,0,0,.6)}#cookie-banner .cookie-content p{color:#f1f1f1}#cookie-banner .cookie-btn.reject{color:#ddd;border-color:#444}#cookie-banner .cookie-btn.reject:hover{background-color:#333}#cookie-banner .cookie-btn.accept{background-color:#4cc9f0;color:#000}#cookie-banner .cookie-btn.accept:hover{background-color:#3db4db}}@media (max-width:500px){#cookie-banner{bottom:15px;padding:16px}#cookie-banner .cookie-content p{font-size:14px}#cookie-banner .cookie-buttons{flex-direction:column}#cookie-banner .cookie-btn{width:100%}}@media (max-width:768px){.hero{grid-template-columns:1fr;padding:2rem 1rem}.hero-content h1{font-size:2rem}.header-nav{gap:1rem}.nav-link{display:none}.nav-link.active{color:var(--primary)}.section-title{font-size:1.8rem}.tools-grid{grid-template-columns:1fr}.cta-section h2{font-size:1.8rem}.powerful-features-header h2{font-size:36px}.powerful-feature-card,.powerful-feature-card.reverse{flex-direction:column;padding:40px 30px;gap:30px}.powerful-feature-content{text-align:center;max-width:100%}.powerful-feature-content h3{font-size:26px}.powerful-feature-image img{max-width:300px}.powerful-features-grid{gap:60px}.hero-about h1{font-size:2.5rem}.about-grid{grid-template-columns:1fr}.about-text h2{font-size:1.8rem}.stats-grid{grid-template-columns:repeat(2,1fr)}.contact-hero h1{font-size:2rem}.contact-container{grid-template-columns:1fr;gap:2rem}.map-container iframe{height:350px}.pricing-hero h1{font-size:1.8rem}.pricing-grid{grid-template-columns:1fr}.pricing-card.featured{transform:scale(1)}.pricing-card.featured:hover{transform:translateY(-4px)}.toggle-container{flex-direction:column;gap:.5rem}.comparison-table{font-size:.85rem}.comparison-table th,.comparison-table td{padding:.75rem}}@media (max-width:480px){.powerful-features-section{padding:40px 15px}.powerful-features-header h2{font-size:28px}.powerful-feature-card{padding:30px 20px}.powerful-feature-content h3{font-size:22px}.powerful-feature-content p{font-size:14px}.btn-signup-feature{padding:12px 24px;font-size:14px}.partners-section{padding:3rem 1rem}.partners-title{font-size:1.8rem;margin-bottom:2.5rem}.partners-grid{gap:2rem}.partner-logo{min-width:200px;width:200px;height:120px;padding:1rem}}@media (min-width:769px) and (max-width:1024px){.powerful-feature-card{padding:40px 50px;gap:40px}.powerful-feature-content h3{font-size:28px}.powerful-feature-image img{max-width:350px}.partners-grid{gap:2.5rem}.partner-logo{min-width:250px;width:250px;height:140px;padding:1.5rem}}

/* Hero Section */
.hero-price {
    background: linear-gradient(135deg, #1a7d5c 0%, #2a9d7c 100%);
    padding: 8rem 2rem 2rem 2rem;
    text-align: center;
    color: white;
    animation: fadeIn 0.8s ease-out;
}

.hero-price h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-price p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.95;
}