:root {
    --primary: #0e5a36; /* Trustworthy Forest Green */
    --primary-hover: #0a4328;
    --accent: #d97706; /* Warm Gold/Amber */
    --accent-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --background: #fbfaf5; /* Soft, warm off-white */
    --text-color: #1f2937; /* Dark slate gray */
    --text-muted: #4b5563; /* Slate gray */
    --font-family: 'Outfit', sans-serif;
    --card-bg: #ffffff;
    --card-border: rgba(14, 90, 54, 0.08);
    --card-hover-bg: #ffffff;
    --card-hover-border: rgba(14, 90, 54, 0.18);
}

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

body {
    font-family: var(--font-family);
    background: var(--background);
    min-height: 100vh;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

/* Ambient floating circles */
.ambient-glow-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(14, 90, 54, 0.05);
    border-radius: 50%;
    top: 5%;
    right: -10%;
    filter: blur(100px);
    z-index: 1;
    animation: float-glow-1 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.ambient-glow-2 {
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(217, 119, 6, 0.04);
    border-radius: 50%;
    bottom: 25%;
    left: -15%;
    filter: blur(120px);
    z-index: 1;
    animation: float-glow-2 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 40px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 90, 54, 0.06);
    background: rgba(251, 250, 245, 0.85);
    position: sticky;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 26px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-ghost {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 20px;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-nav-cta {
    background: var(--primary);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(14, 90, 54, 0.15);
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 90, 54, 0.25);
}

/* Redesigned Hero Section: 2 Column Layout */
.hero-wrapper {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
    z-index: 10;
}

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

.badge-hero {
    display: inline-block;
    background: rgba(14, 90, 54, 0.08);
    border: 1px solid rgba(14, 90, 54, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--primary);
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #0f172a;
    letter-spacing: -1.5px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: var(--accent-gradient);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.25);
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.35);
}

.btn-secondary-cta {
    background: #ffffff;
    border: 1px solid rgba(14, 90, 54, 0.2);
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: rgba(14, 90, 54, 0.04);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Local Images Hero Grid (Right Column) */
.hero-image-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.hero-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--card-border);
    transition: all 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(14, 90, 54, 0.1);
}

.hero-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.hero-card-content {
    padding: 20px;
    text-align: left;
}

.hero-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.hero-card-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-badge-overlay {
    position: absolute;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 20px rgba(14, 90, 54, 0.2);
    z-index: 10;
    white-space: nowrap;
}

/* Quick Access Hero Card Widget */
.quick-access-hero-card {
    background: #ffffff;
    border: 1px solid rgba(14, 90, 54, 0.15);
    border-radius: 24px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 15px 35px rgba(14, 90, 54, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-access-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.quick-access-header {
    margin-bottom: 18px;
}

.quick-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.quick-access-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.quick-access-header p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.quick-access-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quick-input-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .quick-input-grid {
        grid-template-columns: 1fr;
    }
}

.quick-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quick-input-group label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-input-group label i {
    color: var(--primary);
}

.quick-input-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(14, 90, 54, 0.15);
    background: #fbfaf5;
    font-family: var(--font-family);
    font-size: 14px;
    color: #0f172a;
    transition: all 0.25s ease;
}

.quick-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 90, 54, 0.1);
}

.btn-quick-start {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(14, 90, 54, 0.2);
    transition: all 0.3s ease;
}

.btn-quick-start:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(14, 90, 54, 0.3);
}

.quick-access-footer {
    font-size: 12px;
    color: #64748b;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-access-footer i {
    color: #10b981;
}

/* Statistics Banner */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 24px;
    z-index: 10;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
    box-shadow: 0 15px 35px rgba(14, 90, 54, 0.06);
}

.stat-card .number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Showcase Section */
.showcase-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 24px;
    z-index: 10;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
}

.showcase-header h2 span {
    color: var(--primary);
}

.showcase-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.showcase-container {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
}

.showcase-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    background: #f3f2eb;
    border: 1px solid rgba(14, 90, 54, 0.05);
    padding: 6px;
    border-radius: 16px;
}

.showcase-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.showcase-tab-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.5);
}

.showcase-tab-btn.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(14, 90, 54, 0.08);
    border: 1px solid rgba(14, 90, 54, 0.06);
}

.showcase-content-area {
    min-height: 250px;
    position: relative;
    color: var(--text-color);
}

.showcase-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.showcase-tab-content.active {
    display: block;
}

/* Features Section */
.features-section {
    background: linear-gradient(rgba(243, 242, 235, 0.90), rgba(243, 242, 235, 0.90)), url('../uploads/scalability_bg.jpg') no-repeat center center;
    background-size: cover;
    border-top: 1px solid rgba(14, 90, 54, 0.06);
    border-bottom: 1px solid rgba(14, 90, 54, 0.06);
    padding: 80px 0;
    width: 100%;
    z-index: 10;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
    box-shadow: 0 15px 30px rgba(14, 90, 54, 0.08);
}

.feature-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.feature-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    z-index: 10;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-hover-border);
    box-shadow: 0 20px 40px rgba(14, 90, 54, 0.1);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: rgba(14, 90, 54, 0.02);
    box-shadow: 0 15px 30px rgba(14, 90, 54, 0.08);
}

.pricing-card.popular:hover {
    background: rgba(14, 90, 54, 0.04);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.plan-price {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary);
}

.plan-price span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 35px;
}

.plan-features-list li {
    font-size: 14.5px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features-list li i {
    color: #10b981;
    font-size: 14px;
}

.btn-pricing {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.popular .btn-pricing {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(14, 90, 54, 0.2);
}

.pricing-card.popular .btn-pricing:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 90, 54, 0.3);
}

.pricing-card:not(.popular) .btn-pricing {
    background: rgba(14, 90, 54, 0.05);
    border: 1px solid rgba(14, 90, 54, 0.15);
    color: var(--primary);
}

.pricing-card:not(.popular) .btn-pricing:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* FAQs Section */
.faq-section {
    max-width: 800px;
    width: 100%;
    margin: 40px auto 80px auto;
    padding: 0 24px;
    z-index: 10;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #111827;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.faq-answer-inner {
    padding-bottom: 20px;
}

/* ROI Calculator Styles */
.roi-section {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    z-index: 10;
}

.roi-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.roi-control {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roi-label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-label {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.roi-value-display {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(14, 90, 54, 0.08);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(14, 90, 54, 0.15);
}

.roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.06);
    outline: none;
    transition: background 0.3s;
}

.roi-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-gradient);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.3);
    margin-top: -7px;
    transition: transform 0.1s;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-results-card {
    background: rgba(14, 90, 54, 0.03);
    border: 1px solid rgba(14, 90, 54, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(14, 90, 54, 0.02);
}

.roi-metric-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roi-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.roi-metric-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-metric-val {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
}

.roi-sub-metric {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.roi-sub-metric i {
    color: #10b981;
}

.roi-recommended-plan {
    background: rgba(14, 90, 54, 0.06);
    border: 1px solid rgba(14, 90, 54, 0.12);
    border-radius: 12px;
    padding: 12px 15px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(14, 90, 54, 0.08);
    padding: 60px 80px 40px 80px;
    background: #f3f2eb;
    z-index: 10;
    color: var(--text-color);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--text-muted);
}

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

/* Mobile Hamburger & Drawer Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    z-index: 101;
    padding: 8px;
    transition: transform 0.3s;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    transform: scale(1.1);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(251, 250, 245, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(14, 90, 54, 0.08);
    padding: 30px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.mobile-nav-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(14, 90, 54, 0.03);
    transition: color 0.3s;
}

.mobile-nav-menu a:hover, .mobile-nav-menu a.active {
    color: var(--primary);
}

/* Responsive Layouts */
@media(max-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero h1 {
        font-size: 44px;
    }
    .hero-ctas {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .logo img {
        height: 44px !important;
    }
    .hamburger {
        display: flex;
    }
    .navbar {
        padding: 15px 20px !important;
        flex-wrap: wrap;
        gap: 15px;
    }
    .nav-actions #nav-login, .nav-actions #nav-register {
        display: none !important;
    }
    .nav-links {
        display: none !important;
    }
    .hero-image-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .showcase-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding: 6px;
    }
    .showcase-tab-btn {
        flex: 0 0 auto;
        padding: 10px 16px;
    }
    .showcase-container {
        padding: 20px 15px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-card {
        padding: 30px 20px;
    }
    .footer {
        padding: 40px 20px 20px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .roi-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    .roi-inputs {
        gap: 20px;
    }
    .roi-results-card {
        padding: 24px 20px;
    }
    .roi-metric-val {
        font-size: clamp(28px, 6vw, 36px);
    }
    .roi-label {
        font-size: 14px;
    }
}
