/* Base Styles */
:root {
    --primary: #10B981;
    --primary-dark: #079465;
    --dark-green: #0B4D3C;
    --dark-green-deep: #083D30;
    --mint-light: #F0FDF9;
    --mint-lighter: #F7FEFB;
    --primary-light: #10B981;
    --secondary: #10B981;
    --accent: #F59E0B;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray: #6B7280;
    --light-gray: #E5E7EB;
    --card-bg: #FFFFFF;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
    font-size: 0.9375rem;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9375rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(124, 58, 237, 0.05);
}

.btn-light {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
    background-color: #fff !important;

}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.header__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s ease;
    text-decoration: none;
}

.header__logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.header__logo img {
    height: 38px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.header__nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9375rem;
}

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

/* Dropdown Navigation */
.header__nav-dropdown {
    position: relative;
}

.header__nav-link i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.header__nav-dropdown:hover .header__nav-link i {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 8px 0;
    z-index: 1001;
}

.header__nav-dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.header__dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s ease;
}

.header__dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 24px;
}

.header__cta {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.header__cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.header__mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 999;
}

.header__mobile-menu--active {
    display: block;
}

.header__mobile-nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
    font-size: 1.1rem;
}

.header__mobile-cta {
    display: block;
    margin-top: 20px;
    padding: 7px;
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f5fff9 0%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 100%;
}

.hero__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

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

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.hero__trust-icon {
    width: 22px;
    height: 22px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__trust-icon i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.hero__image {
    text-align: center;
    position: relative;
}

.hero__image img {
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

}

/* Problem Section */
.problem {
    background-color: #fff;
    position: relative;
}

.problem__container {
    text-align: center;
}


.problem__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.problem__text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem__issues {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.problem__issue {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    margin-right: 1.4rem;
}

.problem__issue-icon {
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem__issue-icon i {
    color: #EF4444;
    font-size: 0.9rem;
}

.problem__issue-text {
    color: var(--dark);
    font-weight: 500;
}

.problem__subtitle {
    font-style: italic;
    color: var(--gray);
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.problem__visual {
    text-align: center;
    position: relative;
}

.problem__visual img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.solution__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.solution__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.solution__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.solution__item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution__item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.solution__icon {
    width: 70px;
    height: 70px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution__icon i {
    font-size: 1.8rem;
    color: var(--primary-light);
}

.solution__item-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.solution__item-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison {
    background-color: #F9FAFB;
}

.comparison__container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.comparison__table:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.comparison__table th {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison__table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.comparison__table tr:last-child td {
    border-bottom: none;
}

.comparison__table tr:nth-child(even) {
    background: rgba(124, 58, 237, 0.02);
}

.comparison__bad {
    color: #EF4444;
    /* font-weight: 600; */
}

.comparison__good {
    color: var(--secondary);
    /* font-weight: 600; */
}

.comparison__summary {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-style: italic;
    color: var(--dark);
    font-size: 1.1rem;
    border-left: 4px solid var(--primary);
}

/* How It Works Section */
.process {
    background: white;
}

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

.process__item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.process__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}


.process__number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.process__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process__text {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.875rem;
}

.process__time {
    margin-top: 1.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 30px;
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
}

/* Pricing Section */
/* Pricing Section */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing__card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing__card--popular {
    border-color: var(--primary);
}

.pricing__popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing__plan {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing__price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing__period {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.pricing__features {
    margin-bottom: 2rem;
}

.pricing__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing__feature-icon {
    color: var(--secondary);
}

.pricing__feature-text {
    color: var(--gray);
}

.pricing__button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pricing__button--default {
    background-color: var(--light);
    color: var(--dark);
}

.pricing__button--default:hover {
    background-color: var(--light-gray);
}

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

.pricing__button--primary:hover {
    background-color: var(--primary-dark);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 70px 0;
}

.cta__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta__subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta__button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cta__button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    background: #f9f9f9;
}

.cta__note {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 30px;
}

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

.footer__logo img {
    height: 35px;
    width: auto;
    opacity: 0.9;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    flex-grow: 1;
    margin: 0 2rem;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__trust {
        align-items: center;
    }

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

    .pricing__card--highlight {
        transform: none;
    }

    .pricing__card--highlight:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 80px 0;
        background-color: #fff !important;
    }

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

    .problem__issues {
        display: block;
    }

    .footer__container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer__text {
        margin: 0;
    }

    .comparison__table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 70px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .pricing__cards {
        grid-template-columns: 1fr;
    }

    .cta__title {
        font-size: 2.2rem;
    }
}