/* ═══ RESET & BASE ═══ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ═══ NAVBAR ═══ */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.lp-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.lp-nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav .nav-brand {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-nav .nav-brand img {
    height: 36px;
    border-radius: 8px;
}

.lp-nav.scrolled .nav-brand {
    color: #064e3b;
}

.lp-nav .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.lp-nav .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-nav.scrolled .nav-links a {
    color: #475569;
}

.lp-nav .nav-links a:hover {
    color: #10b981;
}

.lp-nav .nav-cta {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.lp-nav.scrolled .nav-cta {
    background: linear-gradient(135deg, #059669, #10b981);
    border-color: transparent;
    color: #fff;
}

.lp-nav .nav-cta:hover {
    background: #059669;
    color: #fff;
    border-color: transparent;
}

/* ═══ LANGUAGE SWITCHER ═══ */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-switcher .lang-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    text-decoration: none;
}

.lang-switcher .lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lp-nav.scrolled .lang-switcher .lang-btn {
    background: #f0fdf4;
    border-color: #d1fae5;
    color: #064e3b;
}

.lp-nav.scrolled .lang-switcher .lang-btn:hover {
    background: #ecfdf5;
}

.lang-switcher .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher .lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher .lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151 !important;
    text-decoration: none;
    transition: background 0.2s;
}

.lang-switcher .lang-dropdown a:hover {
    background: #f0fdf4;
}

.lang-switcher .lang-dropdown a.active-lang {
    background: #ecfdf5;
    color: #059669 !important;
    font-weight: 700;
}

.lang-switcher .lang-dropdown a .lang-flag {
    font-size: 18px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.lp-nav.scrolled .nav-toggle {
    color: #064e3b;
}

/* ═══ HERO ═══ */
.lp-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #064e3b 0%, #047857 30%, #059669 55%, #0d9488 100%);
    display: flex;
    align-items: center;
}

.lp-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
}

.lp-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #34d399;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-lp {
    background: #fff;
    color: #064e3b;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-lp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-lp {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-lp:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mockup-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-bar span:nth-child(1) {
    background: #ef4444;
}

.mockup-bar span:nth-child(2) {
    background: #f59e0b;
}

.mockup-bar span:nth-child(3) {
    background: #22c55e;
}

.mockup-screen {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    min-height: 280px;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mockup-stat {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.mockup-stat .ms-val {
    font-size: 20px;
    font-weight: 800;
    color: #34d399;
}

.mockup-stat .ms-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
    margin-top: 10px;
}

.mockup-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #34d399, rgba(52, 211, 153, 0.3));
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.hero-trust .trust-avatars {
    display: flex;
}

.hero-trust .trust-avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    margin-left: -8px;
}

.hero-trust .trust-avatars span:first-child {
    margin-left: 0;
}

.hero-trust .trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-trust .trust-text strong {
    color: #34d399;
}

/* ═══ STATS BAR ═══ */
.stats-bar {
    background: #f0fdf4;
    padding: 40px 0;
    border-bottom: 1px solid #d1fae5;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-item .si-num {
    font-size: 36px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.stat-item .si-lbl {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 500;
}

/* ═══ SECTION COMMON ═══ */
.lp-section {
    padding: 80px 0;
}

.lp-section.bg-light {
    background: #f8fffe;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #064e3b;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ═══ FEATURES ═══ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 12px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #34d399);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.1);
    border-color: #d1fae5;
}

.feature-card:hover::before {
    opacity: 1;
}

.fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #059669;
    margin-bottom: 16px;
}

.fc-title {
    font-size: 17px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 8px;
}

.fc-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* ═══ INDUSTRIES ═══ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.industry-card:hover {
    border-color: #10b981;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
    transform: translateY(-3px);
}

.industry-card .ic-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #059669;
    margin: 0 auto 14px;
}

.industry-card:hover .ic-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.industry-card .ic-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* ═══ PRICING ═══ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12);
}

.price-card.popular {
    border: 2px solid #10b981;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.15);
}

.price-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card .pc-name {
    font-size: 18px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 4px;
}

.price-card .pc-desc {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.price-card .pc-price {
    font-size: 42px;
    font-weight: 900;
    color: #059669;
    line-height: 1;
}

.price-card .pc-price span {
    font-size: 16px;
    font-weight: 500;
    color: #9ca3af;
}

.price-card .pc-period {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.price-card .pc-save-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: #059669;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 4px;
}

.price-card .pc-features {
    list-style: none;
    margin-bottom: 24px;
}

.price-card .pc-features li {
    padding: 8px 0;
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.price-card .pc-features li:last-child {
    border-bottom: none;
}

.price-card .pc-features li i {
    color: #10b981;
    font-size: 14px;
    width: 18px;
}

.price-card .pc-features li i.fa-times {
    color: #d1d5db;
}

.price-card .pc-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #10b981;
    color: #059669;
    background: #fff;
}

.price-card .pc-btn:hover {
    background: #ecfdf5;
}

.price-card.popular .pc-btn {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.price-card.popular .pc-btn:hover {
    background: linear-gradient(135deg, #047857, #059669);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* ═══ CTA ═══ */
.lp-cta {
    background: linear-gradient(135deg, #064e3b, #047857, #059669);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
}

.lp-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.lp-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.lp-cta .cta-btns {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
.lp-footer {
    background: #064e3b;
    padding: 48px 0 24px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .fb-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-brand .social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-brand .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-brand .social-links a:hover {
    background: #10b981;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #34d399;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        margin: 0 auto 28px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-nav .nav-links {
        display: none;
    }

    .lp-nav .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .lp-nav .nav-links.active a {
        color: #1f2937;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ═══ ANIMATION ═══ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}