:root {
    --primary-green: #CCD43D;
    --secondary-charcoal: #2E2E2E;
    --tertiary-beige: #F3EBE3; 
    --bg-cream: #FAF7F3;
    --text-dark: #1a1a1a;
    --text-light: #3a3a32;
}

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

body {
      font-family: "Onest", sans-serif;

      /* font-family: "Rethink Sans", sans-serif; */
    /* font-family: "Sora", sans-serif; */
    /* font-family: "Outfit", sans-serif; */
    /* font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; */
    /* font-family: 'Funnel Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; */
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(204, 212, 61, 0.4),
        rgba(204, 212, 61, 0.2),
        rgba(243, 235, 227, 0.1),
        transparent 40%
    );
    pointer-events: none;
    z-index: 1;
}



/* Navigation
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
} */
/* Navigation */
/* Navigation */
/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(
        180deg, 
        rgba(204, 212, 61, 0.15) 0%, 
        rgba(204, 212, 61, 0.08) 40%, 
        rgba(204, 212, 61, 0.03) 70%, 
        rgba(250, 247, 243, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 212, 61, 0.1);
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 1;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 1;
}
.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo {
    color: var(--secondary-charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
}

button, input, select, textarea {
    font-family: inherit;
}
/* 
.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}


.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
} */

/* .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-green);
} */

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--primary-green);
    color: var(--secondary-charcoal);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--tertiary-beige);
    color: var(--secondary-charcoal);
    /* transform: translateY(-2px); */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(204, 212, 61, 0.4);

}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--secondary-charcoal);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid #e5e7eb;
        z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 10000;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f3f4f6;
    }

    .cta-btn {
        margin-top: 1rem;
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--bg-cream);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary-charcoal);
    position: relative;
    padding: 1rem 0;
}

.hero-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    right: -2rem;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 212, 61, 0.05) 0%, rgba(168, 179, 42, 0.03) 50%, rgba(204, 212, 61, 0.05) 100%);
    border-radius: 1rem;
    z-index: -1;
}

.hero-content .highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, #A8B32A 50%, var(--primary-green) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

/* Style the Sona section */
.sona-intro {
    text-align: center;
    padding: 2rem;
}

.sona-avatar {
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem;
}

.sona-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sona-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sona-description {
    color: var(--secondary-charcoal);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #A8B32A, var(--primary-green));
    border-radius: 2px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
    /* letter-spacing: 0.4px; */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--tertiary-beige);
    color: var(--secondary-charcoal);
    border-radius: 2rem;
    font-size: 1.0rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: var(--primary-green);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--secondary-charcoal);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--bg-cream);
    color: var(--secondary-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(204, 212, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-charcoal);
    padding: 16px 38px;
    border: 2px solid rgba(46, 46, 46, 0.2);
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--secondary-charcoal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(204, 212, 61, 0.4);
    border-color: var(--secondary-charcoal);
}

/* Problem Section */
.problem-section {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    z-index: 2;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--secondary-charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(46, 46, 46, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(46, 46, 46, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--tertiary-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-charcoal);
}

.problem-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 8rem 2rem;
    background: var(--secondary-charcoal);
    color: white;
    position: relative;
    z-index: 2;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-section .section-title {
    color: white;
}

.solution-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-charcoal);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Pricing */
.pricing {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    z-index: 2;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    background: var(--secondary-charcoal);
    color: white;
    transform: scale(1.05);
}

.pricing-card.popular .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--secondary-charcoal);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkmark {
    color: var(--primary-green);
    font-weight: bold;
}

.pricing-card.popular .checkmark {
    color: var(--primary-green);
}

/* CTA Section */
.final-cta {
    padding: 8rem 2rem;
    background: var(--primary-green);
    text-align: center;
    color: var(--secondary-charcoal);
    position: relative;
    z-index: 2;
}

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

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--secondary-charcoal);
    color: white;
}

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

.btn-outline:hover {
    background: var(--secondary-charcoal);
    color: white;
}

.cta-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--secondary-charcoal);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

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

    .hero-demo {
        padding: 2rem 1.5rem;
    }

    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step:nth-child(even) {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
