@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-green: #81D460;
    --primary-green-hover: #6eb74f;
    --dark-bg: #0D1117;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --section-spacing: 100px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 212, 96, 0.3);
}

.btn-outline {
    border: 1.5px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

section {
    padding: var(--section-spacing) 0;
}

header {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: #f1f8ee;
    color: var(--primary-green-hover);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-light);
}

.hero-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

/* Problem Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    padding: 40px;
    border-radius: 24px;
    background-color: #F8FAFC;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-red {
    background-color: #FEE2E2;
    color: #EF4444;
}

.icon-orange {
    background-color: #FFEDD5;
    color: #F97316;
}

.icon-yellow {
    background-color: #FEF9C3;
    color: #EAB308;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
    font-size: 15px;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--text-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 15px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(to right, #ddd, #ddd 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

/* Features (Dark Section) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(129, 212, 96, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.feature-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

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

.badge-icon {
    width: 64px;
    height: 64px;
    background-color: #f1f8ee;
    color: var(--primary-green-hover);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-badge p {
    font-size: 16px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding-bottom: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 16px;
    background-color: #F8FAFC;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 15px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 24px;
}

/* Final CTA Section */
.cta-section {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    margin-top: 100px;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    font-size: 15px;
    outline: none;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding-bottom: var(--section-spacing);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #F8FAFC;
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--card-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(129, 212, 96, 0.1);
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* DUNS Section */
.duns-section {
    padding: 20px 0;
    background-color: var(--white);
    border-top: 1px solid #E2E8F0;
}

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

.duns-image {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.duns-image:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Newsletter Status */
#newsletter-status {
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

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

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light);
}

.copyright {
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive */
/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-visual {
        order: -1;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .nav-links {
        display: none;
        /* Hide desktop nav by default on smaller screens if not toggled */
    }

    /* Mobile Navigation */
    .mobile-nav {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .mobile-nav.active {
        transform: translateX(0);
        display: flex;
        /* Ensure it's displayed when active */
    }

    .mobile-nav a {
        font-size: 20px;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background-color: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    body.no-scroll {
        overflow: hidden;
    }

    /* Ensure nav CTA is visible in mobile menu */
    .nav-cta {
        display: inline-flex !important;
    }
}

@media (min-width: 969px) {
    .hamburger-menu {
        display: none;
    }

    .mobile-nav {
        display: flex;
        position: static;
        height: auto;
        width: auto;
        background: none;
        transform: none;
        flex-direction: row;
        padding: 0;
    }
}

@media (max-width: 768px) {

    .problem-cards,
    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .contact-container {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .security-badges {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form button {
        width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 24px;
    }

    h1 {
        font-size: 32px !important;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}