:root {
    --green: #1B5E20;
    --green-light: #2E7D32;
    --green-bright: #43A047;
    --green-pale: #E8F5E9;
    --mustard: #F9A825;
    --mustard-light: #FBC02D;
    --mustard-dark: #F57F17;
    --mustard-pale: #FFF8E1;
    --dark: #0F172A;
    --gray: #64748B;
    --light-gray: #F1F5F9;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--green);
    text-decoration: none;
}

.brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-img {
    height: 56px;
    width: auto;
    filter: none;
}

.logo-slogan {
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.0;
    padding-left: 3.15rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mustard);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
}

.btn-mustard {
    background: linear-gradient(135deg, var(--mustard), var(--mustard-light));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(249, 168, 37, 0.3);
}

.btn-mustard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 168, 37, 0.4);
}

/* ===== HERO ===== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 4.5rem 5% 3rem;
    background: linear-gradient(135deg, var(--green-pale) 0%, #fff 50%, var(--mustard-pale) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(27, 94, 32, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--mustard);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--green), var(--mustard));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-states {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.payment-states span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    border: 1px solid rgba(27, 94, 32, 0.1);
    border-radius: 50px;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem 0.8rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.payment-states i {
    color: var(--green);
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mockup-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mock-card {
    padding: 1.2rem;
    border-radius: 16px;
    background: var(--light-gray);
}

.mock-card.green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
}

.mock-card.mustard {
    background: linear-gradient(135deg, var(--mustard), var(--mustard-light));
    color: var(--dark);
}

.mock-card-label {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.mock-card-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.mock-table {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.mock-table-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
}

.mock-table-row:last-child {
    border-bottom: none;
}

.mock-status {
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mock-status.paid {
    background: var(--green-pale);
    color: var(--green);
}

.mock-status.pending {
    background: var(--mustard-pale);
    color: var(--mustard-dark);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card1 {
    top: -30px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.floating-card-icon.green {
    background: var(--green-pale);
    color: var(--green);
}

.floating-card-icon.mustard {
    background: var(--mustard-pale);
    color: var(--mustard-dark);
}

.floating-card-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

.floating-card-sub {
    font-size: 0.7rem;
    color: var(--gray);
}

/* ===== FEATURES ===== */
.features {
    padding: 1rem 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-extra {
    display: none;
}

.expandable-features.show-all .feature-extra {
    display: block;
}

.feature-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--mustard));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon.green-bg {
    background: var(--green-pale);
    color: var(--green);
}

.feature-icon.mustard-bg {
    background: var(--mustard-pale);
    color: var(--mustard-dark);
}

.feature-icon.gradient-bg {
    background: linear-gradient(135deg, var(--green-pale), var(--mustard-pale));
    color: var(--green);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 1.2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.feature-list li i {
    color: var(--green);
    font-size: 0.8rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 1rem 5%;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-number.green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.3);
}

.step-number.mustard {
    background: linear-gradient(135deg, var(--mustard), var(--mustard-light));
    color: var(--dark);
    box-shadow: 0 8px 30px rgba(249, 168, 37, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 35px;
    left: 33%;
    width: 34%;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--mustard));
    z-index: 1;
}

/* ===== PRICING ===== */
.pricing {
    padding: 3rem 5%;
    background: var(--white);
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--light-gray);
    transition: all 0.4s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-color: var(--green);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(27, 94, 32, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--mustard), var(--mustard-light));
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.3rem;
    line-height: 1.15;
}

.pricing-price span {
    display: block;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--gray);
    margin-top: 0.4rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--green);
}

.pricing-features li i.fa-xmark {
    color: var(--gray);
    opacity: 0.5;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.pricing-details {
    max-width: 1200px;
    margin: 2rem auto 0;
    background: linear-gradient(180deg, #fff 0%, var(--green-pale) 100%);
    border: 1px solid rgba(27, 94, 32, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

.pricing-details summary {
    cursor: pointer;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
}

.pricing-details summary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.pricing-summary-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pricing-summary-label small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

.pricing-details[open] summary {
    border-bottom: 1px solid rgba(27, 94, 32, 0.12);
}

.details-intro,
.detail-block,
.detail-grid {
    padding: 1.6rem;
}

.details-intro {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.85);
}

.pricing-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid rgba(27, 94, 32, 0.14);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.05);
}

.details-intro p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.detail-block h3,
.detail-note h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    background: white;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem 1.2rem;
    text-align: left;
    font-size: 0.95rem;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--green), var(--mustard));
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.comparison-table td:first-child {
    color: var(--dark);
    font-weight: 700;
    min-width: 220px;
}

.comparison-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.9);
}

.comparison-table tbody tr:hover {
    background: rgba(220, 240, 220, 0.35);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1rem;
}

.detail-note {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.detail-note p,
.detail-note li {
    color: var(--gray);
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0;
}

.detail-note ul {
    padding-left: 1.25rem;
    margin-top: 0.8rem;
}

.detail-note li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 0;
    }

    .pricing-details summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-chips {
        justify-content: flex-start;
    }
}

/* ===== CONTACT ===== */
.contact {
    padding: 3rem 5%;
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--mustard-pale) 100%);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-panel,
.ai-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-panel h3,
.ai-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-panel p,
.ai-card p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
}

.contact-methods i,
.ai-card i {
    color: var(--mustard-dark);
}

.ai-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ai-card i {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

/* ===== CTA ===== */
.cta {
    padding: 3rem 5%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-btn {
    background: linear-gradient(135deg, var(--mustard), var(--mustard-light));
    color: var(--dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(249, 168, 37, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(249, 168, 37, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--green), var(--mustard));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--mustard);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--mustard);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ===== AI CHATBOT ===== */
.ai-chatbot {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
}

.chatbot-toggle {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 16px 45px rgba(27, 94, 32, 0.35);
    cursor: pointer;
    font-weight: 800;
}

.chatbot-toggle i {
    color: var(--mustard-light);
    font-size: 1.1rem;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 4.3rem;
    width: min(360px, calc(100vw - 2rem));
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition: all 0.25s ease;
}

.ai-chatbot.open .chatbot-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--dark), var(--green));
    color: white;
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--mustard-light);
}

.chatbot-header h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.chatbot-header p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.35;
}

.chatbot-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
}

.chatbot-messages {
    max-height: 290px;
    min-height: 220px;
    overflow-y: auto;
    padding: 1rem;
    background: linear-gradient(180deg, #fff 0%, var(--green-pale) 100%);
}

.chat-message {
    display: flex;
    margin-bottom: 0.75rem;
}

.chat-message p {
    max-width: 86%;
    border-radius: 14px;
    padding: 0.75rem 0.85rem;
    font-size: 0.88rem;
    line-height: 1.55;
}

.chat-message.bot p {
    background: white;
    color: var(--dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.user p {
    background: var(--green);
    color: white;
}

.chatbot-prompts {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--light-gray);
}

.chatbot-prompts button {
    flex: 0 0 auto;
    border: 1px solid rgba(27, 94, 32, 0.18);
    border-radius: 50px;
    background: var(--green-pale);
    color: var(--green);
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.chatbot-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 0.85rem;
    border-top: 1px solid var(--light-gray);
}

.chatbot-form input {
    min-width: 0;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    font: inherit;
    outline: none;
}

.chatbot-form input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.08);
}

.chatbot-form button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mustard), var(--mustard-light));
    color: var(--dark);
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-8px);
    }

    .contact-grid,
    .ai-panel,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btns {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 48px;
    }

    .logo-slogan {
        display: none;
    }

    .payment-states {
        justify-content: center;
    }

    .features,
    .how-it-works,
    .pricing,
    .contact,
    .cta {
        padding: 2.5rem 5%;
    }

    .pricing-card {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .ai-chatbot {
        right: 1rem;
        bottom: 1rem;
    }

    .chatbot-toggle span {
        display: none;
    }

    .chatbot-toggle {
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
    }
}