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

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

input,
select,
textarea,
button,
[tabindex="0"] {
    scroll-margin-top: 120px;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

:root {
    --primary: #1a73e8;
    --primary-hover: #1557b0;
    --success: #34a853;
    --success-hover: #2d9249;
    --warning: #fbbc04;
    --dark: #202124;
    --border-grey: #dadce0;
    --text-main: #3c4043;
    --text-muted: #5f6368;
    --bg-main: #f0f2f5;
    --white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-main);
    min-height: 100vh;
    font-size: 14px;
    color: var(--text-main);
    overflow-y: auto;
}

body.landing-body {
    display: block;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    color: var(--text-main);
    line-height: 1.6;
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-dark {
    color: var(--dark);
}

.text-main {
    color: var(--text-main);
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-underline {
    text-decoration: underline;
}

.btn-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-cta:hover {
    background: var(--primary-hover);
    color: #fff !important;
}

.btn-cta.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-cta.btn-outline:hover {
    background: var(--primary);
    color: #fff !important;
}

.landing-header {
    padding: 15px 10% 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.landing-header .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.landing-nav a:not(.btn-cta) {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
}

.landing-body .hero {
    padding: 50px 10% 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.landing-body .hero-content {
    flex: 1.2;
}

.landing-body .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.landing-body .hero-content h1 span {
    color: var(--success);
}

.landing-body .hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.landing-body .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-body .hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    display: block;
}

.landing-body .features {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.landing-body .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .landing-body .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .landing-body .feature-grid {
        grid-template-columns: 1fr;
    }
}

.landing-body .feature-card {
    padding: 40px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s;
    text-align: left;
}

.landing-body .feature-card:hover {
    transform: translateY(-6px);
}

.landing-body .feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.landing-body .feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.landing-body .feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.plans-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-plan-card {
    background: #fff;
    border: 2px solid var(--border-grey);
    border-radius: 16px;
    padding: 32px 28px;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.landing-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.landing-plan-card.featured {
    border-color: var(--success);
    box-shadow: 0 8px 30px rgba(52, 168, 83, 0.18);
}

.landing-plan-card .plan-tag {
    font-size: 0.65rem;
    margin-bottom: 12px;
    display: inline-block;
}

.landing-plan-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
}

.landing-plan-card .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin: 4px 0;
}

.landing-plan-card .price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.landing-plan-card .price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.landing-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid #eee;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.landing-plan-card ul li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.landing-plan-card ul li i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.landing-plan-card ul li.locked i {
    color: #ccc;
}

.landing-plan-card ul li.locked {
    color: var(--text-muted);
    opacity: 0.65;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-plan.plan-primary {
    background: var(--primary);
    color: #fff !important;
}

.btn-plan.plan-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-plan.plan-success {
    background: var(--success);
    color: #fff !important;
}

.btn-plan.plan-success:hover {
    background: #2d9249;
    transform: translateY(-2px);
}

.cta-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d47a1 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    background: var(--success);
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 10px;
}

.cta-section .btn-cta:hover {
    background: #2d9249;
}

.legal-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-main);
}

.legal-content {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    line-height: 1.8;
    color: var(--text-main);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.version-badge {
    display: inline-block;
    background: #e8f0fe;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-content h1 {
    color: var(--dark);
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.legal-content h2 {
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 12px;
}

.alert-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    font-size: 0.95rem;
}

.standard-footer {
    padding: 40px 5%;
    background: #fff;
    border-top: 1px solid var(--border-grey);
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-info strong {
    color: var(--dark);
}

.footer-info a {
    color: inherit;
    text-decoration: none;
}

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

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f1f3f4;
    color: var(--primary) !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.btn-social:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-email {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    gap: 8px;
}

.btn-email span {
    font-weight: 600;
}

.footer-social-list-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 15px 0;
    font-size: 1.8rem;
}

.footer-social-link-primary {
    color: var(--primary);
}

.footer-info-text-muted {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.footer-copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-btns-container {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-large {
    font-size: 1.05rem;
    padding: 14px 36px;
}

.plans-section-custom {
    padding: 80px 10%;
    background: var(--bg-main);
}

.legal-badge-custom {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f0fe;
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.legal-alert-box-custom {
    background: #e8f0fe;
    border-left: 4px solid var(--primary);
    color: var(--dark);
}

.legal-back-link-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.m-0 {
    margin: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-0 {
    padding: 0;
}

.p-8 {
    padding: 8px;
}

.p-10 {
    padding: 10px;
}

.p-14 {
    padding: 14px;
}

.p-15 {
    padding: 15px;
}

.p-30 {
    padding: 30px;
}

.ph-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.ph-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.ph-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.ph-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.pv-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-5 {
    padding-top: 5px;
}

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

.font-bold-700 {
    font-weight: 700;
}

.font-bold-800 {
    font-weight: 800;
}

.border-primary {
    border: 1px solid var(--primary);
}

.nowrap {
    white-space: nowrap;
}

.cursor-pointer {
    cursor: pointer;
}

.outline-none {
    outline: none;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-09 {
    opacity: 0.9;
}

.overflow-y-auto {
    overflow-y: auto;
}

.line-h-15 {
    line-height: 1.5;
}

.line-h-16 {
    line-height: 1.6;
}

.inline-block {
    display: inline-block;
}

.list-none {
    list-style: none;
}

.gap-4 {
    gap: 4px;
}

.hidden-pixel {
    display: none;
}

.cta-section .final-cta-btn-custom {
    display: inline-flex !important;
    flex-direction: column !important;
    padding: 20px 40px !important;
    line-height: 1.2 !important;
    background: var(--success) !important;
    font-size: 1.05rem !important;
    border-radius: 10px !important;
    width: auto !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.cta-section .final-cta-btn-custom:hover {
    background: #2d9249 !important;
}

@media (max-width: 768px) {
    .landing-header {
        padding: 12px 20px;
    }

    .landing-header .logo {
        font-size: 1.1rem;
    }

    .landing-nav a:not(.btn-cta) {
        display: none;
    }

    .landing-header .landing-nav a.btn-cta:nth-child(4) {
        display: none;
    }

    .landing-nav .btn-cta {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        margin: 0 !important;
        display: inline-block !important;
    }

    .landing-body .hero {
        padding: 60px 20px 40px;
    }

    .landing-body .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .landing-body .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .landing-body .hero-content p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .landing-body .hero-content div {
        flex-direction: column;
        width: 100%;
        gap: 12px !important;
    }

    .landing-body .hero-content .btn-cta {
        width: 100%;
        box-sizing: border-box;
        padding: 16px !important;
        font-size: 1rem !important;
    }

    .landing-section-title h2 {
        font-size: 1.6rem;
    }

    .features {
        padding: 40px 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 20px;
    }

    .landing-plan-card {
        width: 100%;
        max-width: 400px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .btn-cta {
        width: 100%;
        flex-direction: column !important;
        padding: 16px 20px !important;
        text-align: center;
    }

    .legal-content {
        margin: 10px auto !important;
        padding: 20px !important;
        border-radius: 12px !important;
        max-width: calc(100vw - 20px) !important;
        width: 90% !important;
        box-sizing: border-box !important;
    }

    .footer-links a {
        display: block;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .landing-body .hero-content h1 {
        font-size: 1.6rem;
    }
}