:root {
    --primary: #ffffff;
    --primary-light: #ffffff;
    --accent: #2fb362; /* Slightly darker, premium Emerald Green */
    --accent-hover: rgba(26, 93, 58, 0.1);
    --accent-secondary: #cda34f; /* Gold */
    --text-main: #2d3748;
    --text-dim: #4a5568;
    --heading-color: #1a202c;
    --bg-dark: #f8fafc;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --luminary-blue: #60a5fa; /* Vibrant Sky Blue for visibility */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(26, 46, 35, 0.15);
    border-radius: 20px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #2fb362;
}

/* Base Styles (Mobile First) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 46, 35, 0.15) transparent;
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 100px; /* Accounts for fixed header */
}

/* --- THE "ALIVE" SYSTEM --- */

/* 1. Breathing Background Mesh */
@keyframes meshAnimation {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, 2%) scale(1.1); }
    66% { transform: translate(-1%, 3%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(26, 93, 58, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(205, 163, 79, 0.03) 0%, transparent 40%);
    animation: meshAnimation 20s infinite linear;
    z-index: -1;
}

/* 2. Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* 3. Magnetic Interaction Base */
.magnetic-wrap {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.magnetic-wrap:hover {
    transform: scale(1.02) translateY(-5px);
}

/* --- END ALIVE SYSTEM --- */

/* Ensure sections have spacing when navigated to */
section[id], .hero-form-side[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-main);
    background-color: #f0f4f1;
    color: #1a2e23;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    color: #1a2e23;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem; /* Increased from 1.5rem for better mobile safety */
}

/* On mobile, we want a bit more for the nav */
.nav.container {
    padding: 0 1rem;
}

/* Header & Nav - Revamped to Floating Glass */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: #f7f6f2;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    top: 10px;
    width: 98%;
    background: #f7f6f2;
    border-bottom: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 0;
    transition: none;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px;
}

.logo:hover {
    transform: none;
    box-shadow: none;
}

.brand-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-cta-mobile {
    display: none;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
}

.logo-subtext {
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* Mobile Nav - Hidden by default, or simplified */
 .nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(26, 46, 35, 0.6);
    padding: 0.5rem 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-link.active:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

.nav-link.btn-primary-outline {
    background: var(--accent);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(47, 179, 98, 0.3);
}

.nav-link.btn-primary-outline:hover {
    background: #3ac770;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 179, 98, 0.4);
    color: white !important;
}

/* Hamburger Button (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(26, 46, 35, 0.6);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Consolidated styles moved to top */

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(47, 179, 98, 0.4), 0 0 0 1px rgba(47, 179, 98, 0.6);
    background: linear-gradient(135deg, #3ac770 0%, #1f9c4f 100%);
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.brand-highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Hero Section (Mobile Default) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 0 60px; 
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(26, 46, 35, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 179, 98, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.glow-1 { top: -10%; right: -10%; }
.glow-2 { bottom: -10%; left: -10%; }

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center; /* Center for mobile */
}

.hero-blueprint-side {
    width: 100%;
    max-width: 580px;
}

.blueprint-card {
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(47, 179, 98, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.85);
}

.blueprint-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    color: rgba(26, 46, 35, 0.5);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blueprint-dot {
    width: 8px;
    height: 8px;
    background: #2fb362;
    border-radius: 50%;
    box-shadow: 0 0 10px #2fb362;
}

.blueprint-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    transform: translateX(-50%);
    top: 30px;
    bottom: -1.5rem;
    width: 2px;
    background: #2fb362;
    opacity: 0.15;
    z-index: 0;
}

.timeline-item.active::after {
    opacity: 0.35;
}

.blueprint-timeline .timeline-item:nth-child(2)::after {
    opacity: 0.65;
}

.blueprint-timeline .timeline-item:nth-child(3)::after {
    opacity: 1;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 30px;
    height: 30px;
    background: rgba(47, 179, 98, 0.06);
    border: 2px solid rgba(47, 179, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(26, 46, 35, 0.35);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item.active .step-num {
    border-color: #2fb362;
    color: #2fb362;
    box-shadow: 0 0 15px rgba(47, 179, 98, 0.3);
    background: rgba(47, 179, 98, 0.06);
}

.blueprint-timeline .timeline-item:nth-child(2) .step-num {
    background: rgba(47, 179, 98, 0.35);
    border-color: #2fb362;
    color: #166534;
}

.blueprint-timeline .timeline-item:nth-child(3) .step-num {
    background: rgba(47, 179, 98, 0.70);
    border-color: #2fb362;
    color: #ffffff;
}

.timeline-item.highlight .step-num {
    background: #2fb362;
    border-color: #2fb362;
    color: #ffffff;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #1a2e23;
}

.step-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(26, 46, 35, 0.55);
}

.blueprint-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 46, 35, 0.08);
}

.blueprint-footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(26, 46, 35, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blueprint-footer-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.focus-item {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(26, 46, 35, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

.focus-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #2fb362;
    border-radius: 50%;
}

.hero-text-side {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(47, 179, 98, 0.06);
    color: #1a5d3a;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: 1px solid rgba(47, 179, 98, 0.15);
    text-shadow: none;
    box-shadow: none;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
}

.text-gradient {
    color: #2fb362;
    background: linear-gradient(90deg, #1a7a3a, #2fb362);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    color: #60a5fa;
    background: linear-gradient(90deg, #1a365d, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(26, 46, 35, 0.6);
    margin: 0 auto 2rem;
    max-width: 600px;
    text-align: center;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin: 0 auto 3rem;
    max-width: 600px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(26, 46, 35, 0.85);
    font-weight: 600;
    width: 100%;
    justify-content: flex-start;
    padding: 0.4rem 0;
    text-align: left;
    line-height: 1.4;
}

.feature-icon {
    color: #2fb362;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(47, 179, 98, 0.15);
    border-radius: 50%;
    padding: 4px;
    margin-top: 2px;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: flex-start;
}

.hero-actions .btn-submit {
    min-width: 280px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(47, 179, 98, 0.4);
}

@media (max-width: 768px) {
    .hero-features {
        gap: 0.8rem 0.5rem;
    }
    .feature-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .feature-icon {
        width: 20px;
        height: 20px;
        padding: 3px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .hero-actions .btn-submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.hero-actions .btn-submit:hover {
    background: linear-gradient(135deg, #3ac770 0%, #1f9c4f 100%);
    box-shadow: 0 15px 30px rgba(47, 179, 98, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* ==========================================
   LIGHT SECTION SYSTEM
   Reusable: add .light-section to any section
   ========================================== */

.light-section {
    background: #f8faf6 !important;
    color: #1a2e23 !important;
    position: relative;
}

/* Transition gradient disabled — entire site is light */
.light-section::after {
    display: none;
}

/* If the next sibling is also a light-section, hide the gradient */
.light-section + .light-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f8faf6;
    z-index: 2;
}

.light-section:has(+ .light-section)::after {
    display: none;
}

/* Nav adaptation for light background */
.header.light-zone {
    background: rgba(248, 250, 246, 0.75);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.header.light-zone .nav-link {
    color: rgba(26, 46, 35, 0.7);
}

.header.light-zone .nav-link:hover {
    color: #0d1511;
}

.header.light-zone .nav-link.active {
    color: #1a7a3a;
}

.header.light-zone .nav-link.btn-primary-outline {
    color: white !important;
}

.header.light-zone .hamburger span {
    background: rgba(26, 46, 35, 0.85);
}

.header.light-zone.scrolled {
    background: rgba(248, 250, 246, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* --- Shared Light Text Overrides --- */

.light-section .section-title {
    color: #0d1511 !important;
}

.light-section .hero-title {
    color: #0d1511 !important;
}

.light-section .text-gradient {
    background: linear-gradient(90deg, #1a7a3a, #2fb362) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.light-section .hero-subtitle {
    color: rgba(26, 46, 35, 0.6) !important;
}

.light-section .brand-highlight {
    color: #1a7a3a !important;
}

/* Badge */
.light-section .badge {
    background: rgba(47, 179, 98, 0.08);
    color: #1a7a3a;
    border-color: rgba(47, 179, 98, 0.25);
    text-shadow: none;
    box-shadow: 0 2px 12px rgba(47, 179, 98, 0.08);
}

/* Feature items */
.light-section .feature-item {
    color: #1a2e23 !important;
}

.light-section .feature-icon {
    color: #2fb362;
    background: rgba(47, 179, 98, 0.1);
}

/* Grid overlay */
.light-section .grid-overlay {
    background-image: radial-gradient(rgba(26, 46, 35, 0.06) 1px, transparent 1px) !important;
    opacity: 0.5 !important;
}

/* Glow effects */
.light-section .glow {
    background: radial-gradient(circle, rgba(47, 179, 98, 0.06) 0%, transparent 70%) !important;
    filter: blur(60px) !important;
}

/* Blueprint card — light theme */
.light-section .blueprint-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(47, 179, 98, 0.12) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.light-section .blueprint-card h4,
.light-section .blueprint-card span {
    color: #1a2e23 !important;
}

.light-section .blueprint-card p {
    color: rgba(26, 46, 35, 0.55) !important;
}

.light-section .blueprint-header {
    color: rgba(26, 46, 35, 0.5) !important;
}

.light-section .step-num {
    background: rgba(47, 179, 98, 0.06) !important;
    color: rgba(26, 46, 35, 0.35) !important;
    border-color: rgba(47, 179, 98, 0.15) !important;
}

.light-section .timeline-item.active .step-num {
    border-color: #2fb362 !important;
    color: #2fb362 !important;
    background: rgba(47, 179, 98, 0.06) !important;
}

.light-section .blueprint-timeline .timeline-item:nth-child(2) .step-num {
    background: rgba(47, 179, 98, 0.35) !important;
    border-color: #2fb362 !important;
    color: #166534 !important;
}

.light-section .blueprint-timeline .timeline-item:nth-child(3) .step-num {
    background: rgba(47, 179, 98, 0.70) !important;
    border-color: #2fb362 !important;
    color: #ffffff !important;
}

.light-section .timeline-item.highlight .step-num {
    background: #2fb362 !important;
    color: #ffffff !important;
    border-color: #2fb362 !important;
}



/* Hero CTA button on light */
.light-section .hero-actions .btn-submit {
    box-shadow: 0 10px 35px rgba(47, 179, 98, 0.3);
}

/* --- About Section Light Overrides --- */

.light-section.about {
    background: #f5f8f5 !important;
}

.light-section .about-description {
    color: rgba(26, 46, 35, 0.65) !important;
}

/* Differentiator cards — light glassmorphism */
.light-section .diff-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(47, 179, 98, 0.1) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.light-section .diff-card:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(47, 179, 98, 0.3) !important;
    box-shadow: 0 8px 25px rgba(47, 179, 98, 0.08);
}

.light-section .diff-card h4 {
    color: #0d1511 !important;
}

.light-section .diff-card p {
    color: rgba(26, 46, 35, 0.6) !important;
}

.light-section .diff-icon {
    background: rgba(47, 179, 98, 0.08) !important;
    color: #2fb362 !important;
}

.light-section .diff-card:hover .diff-icon {
    background: #2fb362 !important;
    color: #ffffff !important;
}

.light-section .diff-number {
    color: rgba(47, 179, 98, 0.2) !important;
}

/* Philosophy card — stays dark for contrast */
.light-section .philosophy-card {
    background: rgba(13, 26, 18, 0.95) !important;
    border-color: rgba(47, 179, 98, 0.15) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.light-section .philosophy-card h3 {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.light-section .philosophy-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* --- Services / Ecosystem Light Overrides --- */

.light-section.services {
    background: #f2f6f3 !important;
}

.light-section .section-subtitle {
    color: rgba(26, 46, 35, 0.55) !important;
}

/* Service arm cards — white glass */
.light-section .service-arm {
    background: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.light-section .service-arm:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06) !important;
}

.light-section .arm-for-profit {
    border-color: rgba(47, 179, 98, 0.12) !important;
    background: rgba(240, 255, 245, 0.7) !important;
}

.light-section .arm-for-profit:hover {
    border-color: rgba(47, 179, 98, 0.35) !important;
    box-shadow: 0 12px 35px rgba(47, 179, 98, 0.06) !important;
}

.light-section .arm-non-profit {
    border-color: rgba(96, 165, 250, 0.12) !important;
    background: rgba(240, 245, 255, 0.7) !important;
}

.light-section .arm-non-profit:hover {
    border-color: rgba(96, 165, 250, 0.35) !important;
    box-shadow: 0 12px 35px rgba(96, 165, 250, 0.06) !important;
}

/* Arm headers & text */
.light-section .service-arm h3 {
    color: #0d1511 !important;
}

.light-section .service-arm p {
    color: rgba(26, 46, 35, 0.55) !important;
}

.light-section .arm-badge {
    background: rgba(47, 179, 98, 0.06) !important;
    color: #1a7a3a !important;
    border-color: rgba(47, 179, 98, 0.15) !important;
}

.light-section .arm-badge.accent-warm {
    background: rgba(96, 165, 250, 0.06) !important;
    color: #2563eb !important;
    border-color: rgba(96, 165, 250, 0.15) !important;
}

/* Service list items */
.light-section .service-list h4 {
    color: #0d1511 !important;
}

.light-section .service-list p {
    color: rgba(26, 46, 35, 0.55) !important;
}

.light-section .list-icon {
    background: rgba(47, 179, 98, 0.06) !important;
}

.light-section .arm-for-profit .list-icon {
    color: #2fb362 !important;
    filter: none !important;
}

.light-section .arm-non-profit .list-icon {
    color: #3b82f6 !important;
    filter: none !important;
}

/* Know More buttons */
.light-section .btn-know-more {
    border-color: #2fb362 !important;
    color: #2fb362 !important;
}

.light-section .btn-know-more:hover {
    background: #2fb362 !important;
    color: #ffffff !important;
}

.light-section .btn-know-more.btn-warm {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.light-section .btn-know-more.btn-warm:hover,
.light-section .arm-non-profit .btn-know-more:hover {
    background: #3b82f6 !important;
    color: #ffffff !important;
    border-color: #3b82f6 !important;
}

/* --- FAQ Section Light Overrides --- */

.light-section.section-faq {
    background: #f8faf6 !important;
}

.light-section .faq-item {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.light-section .faq-item:hover {
    border-color: rgba(47, 179, 98, 0.2) !important;
    background: rgba(255, 255, 255, 0.85) !important;
}

.light-section .faq-item.open {
    border-color: rgba(47, 179, 98, 0.3) !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(47, 179, 98, 0.06) !important;
}

.light-section .faq-trigger {
    color: #1a2e23 !important;
}

.light-section .faq-trigger:hover {
    color: #1a7a3a !important;
}

.light-section .faq-item.open .faq-trigger {
    color: #1a7a3a !important;
}

.light-section .faq-icon {
    background: rgba(26, 46, 35, 0.05) !important;
    border-color: rgba(26, 46, 35, 0.1) !important;
    color: rgba(26, 46, 35, 0.4) !important;
}

.light-section .faq-item.open .faq-icon {
    background: rgba(47, 179, 98, 0.1) !important;
    border-color: rgba(47, 179, 98, 0.3) !important;
    color: #2fb362 !important;
}

.light-section .faq-answer p {
    color: rgba(26, 46, 35, 0.6) !important;
}

.light-section .faq-answer ul {
    color: rgba(26, 46, 35, 0.6) !important;
}

.light-section .faq-answer strong {
    color: #1a2e23 !important;
}

/* FAQ answer list styling */
.faq-answer ul {
    list-style: none;
    padding: 0 28px 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-answer ul li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.92rem;
    line-height: 1.55;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2fb362;
}

.faq-answer ul li strong {
    font-weight: 700;
}

/* --- Contact Section Light Overrides --- */

.light-section.section-contact-bottom {
    background: #f0f4f1 !important;
}

/* Form card — light version */
.light-section .lead-card-premium {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.light-section .lead-card-premium .card-grid-overlay {
    background-image: radial-gradient(rgba(47, 179, 98, 0.06) 1px, transparent 1px) !important;
    opacity: 0.3 !important;
}

.light-section .lead-card-premium .card-header h2 {
    color: #0d1511 !important;
}

.light-section .lead-card-premium .card-header p {
    color: rgba(26, 46, 35, 0.55) !important;
}

/* Form labels */
.light-section .lead-card-premium label {
    color: rgba(26, 46, 35, 0.7) !important;
}

/* Form inputs */
.light-section .lead-card-premium input,
.light-section .lead-card-premium select,
.light-section .lead-card-premium textarea {
    background: rgba(26, 46, 35, 0.04) !important;
    border: 1px solid rgba(26, 46, 35, 0.12) !important;
    color: #1a2e23 !important;
}

.light-section .lead-card-premium input::placeholder,
.light-section .lead-card-premium textarea::placeholder {
    color: rgba(26, 46, 35, 0.35) !important;
}

.light-section .lead-card-premium input:focus,
.light-section .lead-card-premium select:focus,
.light-section .lead-card-premium textarea:focus {
    border-color: #2fb362 !important;
    box-shadow: 0 0 0 3px rgba(47, 179, 98, 0.1) !important;
    outline: none;
}

/* Form select dropdown arrow */
.light-section .lead-card-premium select {
    color: #1a2e23 !important;
    border: 1px solid rgba(26, 46, 35, 0.18) !important;
    -webkit-appearance: auto;
    appearance: auto;
}

.light-section .lead-card-premium select option {
    color: #1a2e23;
    background: #ffffff;
}

.light-section .lead-card-premium select option[disabled] {
    color: rgba(26, 46, 35, 0.4);
}

/* Form divider */
.light-section .form-divider {
    background: rgba(26, 46, 35, 0.08) !important;
}

/* Direct action buttons */
.light-section .btn-direct {
    background: rgba(26, 46, 35, 0.04) !important;
    border-color: rgba(26, 46, 35, 0.1) !important;
    color: #1a2e23 !important;
}

.light-section .btn-direct:hover {
    background: rgba(47, 179, 98, 0.06) !important;
    border-color: rgba(47, 179, 98, 0.25) !important;
    color: #1a7a3a !important;
}

.light-section .btn-direct svg {
    color: rgba(26, 46, 35, 0.5) !important;
}

.light-section .btn-direct:hover svg {
    color: #2fb362 !important;
}

/* Footer premium text */
.light-section .form-footer-premium p {
    color: rgba(26, 46, 35, 0.45) !important;
}

/* Remove bottom gradient — footer is also light now */
.light-section.section-contact-bottom::after {
    display: none !important;
}


/* Lead Gen Card (Mobile Default) */
.lead-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(26, 46, 35, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.card-header {
    text-align: center;
}

.card-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.card-header p {
    font-size: 0.85rem;
    color: rgba(26, 46, 35, 0.5);
    margin-bottom: 1.5rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(26, 46, 35, 0.6);
}

input, select, textarea {
    background: rgba(26, 46, 35, 0.04);
    border: 1px solid rgba(26, 46, 35, 0.15);
    border-radius: 8px;
    padding: 0.7rem;
    color: #1a2e23;
    font-size: 0.9rem;
}

.btn-submit {
    margin-top: 0.5rem;
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    transition: var(--transition);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #3ac770 0%, #1f9c4f 100%);
    box-shadow: 0 15px 30px rgba(47, 179, 98, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(26, 46, 35, 0.08);
    padding-top: 1rem;
}

.form-footer p {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    color: rgba(26, 46, 35, 0.45);
}

.direct-actions {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(26, 46, 35, 0.6);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(26, 46, 35, 0.04);
    transition: var(--transition);
    border: 1px solid transparent;
}

.action-link:hover {
    background: rgba(47, 179, 98, 0.06);
    transform: translateY(-1px);
    border-color: rgba(47, 179, 98, 0.12);
}

.action-link.wa:hover {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.action-link.tel:hover {
    color: #2fb362;
    border-color: rgba(47, 179, 98, 0.3);
}

/* Footer Bottom (Mobile) */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(26, 46, 35, 0.08);
    text-align: center;
    background: #edf1ee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(26, 46, 35, 0.45);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(26, 46, 35, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2fb362;
}

/* About Section (Who We Are) */
.about {
    padding: 100px 0;
    background: #0f1a14;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 4rem;
}

.differentiators-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.diff-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 46, 35, 0.06);
    transition: var(--transition);
}

.diff-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.diff-card:hover {
    background: rgba(47, 179, 98, 0.05);
    border-color: rgba(47, 179, 98, 0.2);
    transform: translateY(-5px);
}

.diff-icon {
    width: 40px;
    height: 40px;
    background: rgba(47, 179, 98, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
}

.diff-card:hover .diff-icon {
    background: var(--accent);
    color: var(--bg-dark);
}

.diff-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    font-family: var(--font-accent);
}

.diff-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a2e23;
    flex-grow: 1;
}

.diff-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(26, 46, 35, 0.5);
}

@media (max-width: 991px) {
    .differentiators-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .diff-card {
        padding: 1rem !important;
        border-radius: 12px !important;
    }

    .diff-header-row {
        gap: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }

    .diff-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .diff-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .diff-card h4 {
        font-size: 1rem !important;
    }

    .diff-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* Sleeker Blueprint Card */
    .blueprint-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .blueprint-header {
        margin-bottom: 1.5rem;
    }

    .blueprint-timeline {
        gap: 1.25rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .step-num {
        width: 26px;
        height: 26px;
    }

    .timeline-item:not(:last-child)::after {
        left: 13px;
        top: 26px;
        bottom: -1.25rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.78rem;
    }

    .blueprint-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Super-Compact Bento Grid */
    .bento-grid {
        gap: 1rem !important;
    }

    .bento-item {
        padding: 1rem !important;
        border-radius: 12px !important;
        gap: 0.5rem !important;
    }

    .bento-header {
        gap: 0.75rem !important;
        margin-bottom: 0 !important;
    }

    .bento-icon {
        font-size: 1.25rem !important;
    }

    .bento-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .bento-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
    }

    .bento-item p {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
        opacity: 0.8 !important;
    }

    /* Mode Switcher Overrides */
    .mode-switcher-wrap {
        margin-bottom: 1.25rem !important;
    }

    .mode-btn {
        padding: 0.5rem !important;
        min-width: 120px !important;
        font-size: 0.72rem !important;
        gap: 0.3rem !important;
    }

    .btn-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .service-view {
        padding: 30px 0 !important;
    }

    .view-header {
        margin-bottom: 1.5rem !important;
    }

    /* Sleeker Strategy Map (Vertical & Compact on Mobile) */
    .strategy-map {
        flex-direction: column !important;
        padding: 1.5rem 1rem !important;
        gap: 0.5rem !important;
        width: 100% !important;
        align-items: center !important;
    }

    .map-node {
        padding: 0 !important;
        width: 100% !important;
        max-width: 280px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .node-core {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.4rem !important;
    }

    .node-core svg {
        width: 20px !important;
        height: 20px !important;
    }

    .node-label {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.15rem !important;
        white-space: normal !important;
    }

    .node-result {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        white-space: normal !important;
    }

    .map-flow {
        width: 2px !important;
        height: 12px !important;
        min-width: auto !important;
        flex: none !important;
        background: rgba(26, 46, 35, 0.05) !important;
    }

    .flow-pulse {
        width: 100% !important;
        height: 80% !important;
        left: 0 !important;
        top: -10% !important;
        background: linear-gradient(180deg, transparent, var(--accent), transparent) !important;
        animation: flowPulseVertical 1.5s infinite linear !important;
    }

    @keyframes flowPulseVertical {
        0% { top: -60%; }
        100% { top: 160%; }
    }

    /* Sleeker Philosophy Card */
    .philosophy-card {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
    }

    .philosophy-card h3 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }

    .quote-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

    /* Sleeker Success Modal */
    .success-modal-overlay {
        padding: 0 !important; /* Reset padding to use modal margin instead */
    }

    .success-modal {
        padding: 2.5rem 1.5rem !important;
        width: calc(100% - 40px) !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }

    .modal-icon-wrapper {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 1.25rem !important;
    }

    .modal-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .modal-title {
        font-size: 1.6rem !important;
    }

    .modal-body {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    .modal-close {
        top: 0.75rem !important;
        right: 1rem !important;
        font-size: 1.5rem !important;
    }

    /* ==========================================
       HAMBURGER MENU (Mobile ≤ 768px)
       ========================================== */

    .hamburger {
        display: flex !important;
    }

    .nav {
        padding: 0.25rem 1rem !important;
        min-height: auto !important;
    }

    .logo {
        height: 55px !important;
    }

    .brand-logo {
        height: 55px !important;
    }

    .nav-cta-mobile {
        display: inline-flex !important;
        margin-left: auto;
        margin-right: 0.75rem;
        padding: 0.5rem 1.2rem;
        font-size: 0.78rem;
        font-weight: 600;
        background: var(--accent);
        color: white !important;
        border: none;
        border-radius: 100px;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(47, 179, 98, 0.3);
        letter-spacing: 0.3px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.18s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.26s; }

    .nav-link {
        font-size: 1.4rem !important;
        padding: 0.6rem 1rem !important;
        font-weight: 600;
    }

    .nav-link.btn-primary-outline {
        padding: 0.9rem 2.5rem !important;
        font-size: 1.1rem !important;
        margin-top: 0.5rem;
    }
}


.about-philosophy {
    width: 100%;
}

.philosophy-card {
    background: rgba(47, 179, 98, 0.08);
    color: #1a2e23;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(47, 179, 98, 0.15);
}

.philosophy-card h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.philosophy-card p {
    opacity: 0.9;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.quote-icon {
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

@media (min-width: 1024px) {
    .about {
        padding: 120px 0;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 4rem;
    }

    .about .section-title {
        max-width: 1000px;
    }

    .about-description {
        max-width: 800px !important;
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        margin-bottom: 3.5rem !important;
    }


}

/* Services Section (Mobile Default) */
.services {
    padding: 80px 0;
    background: #f0f4f1;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    color: #1a2e23;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(26, 46, 35, 0.55);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-arm {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 46, 35, 0.06);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
    display: flex;
    flex-direction: column;
    perspective: 1000px;
}

.service-arm:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #2fb362;
}

.arm-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.know-more-link {
    display: none; /* Removed in favor of btn-know-more */
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1.5px solid #2fb362;
    color: #2fb362;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.btn-know-more svg {
    transition: transform 0.3s ease;
}

.btn-know-more:hover {
    background: #2fb362;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(47, 179, 98, 0.2);
}

.btn-know-more:hover svg {
    transform: translateX(4px);
}

/* Warm variant for Non-Profit arm */
.btn-know-more.btn-warm {
    border-color: #60a5fa;
    color: #60a5fa;
}

.btn-know-more.btn-warm:hover,
.arm-non-profit .btn-know-more:hover {
    background: #60a5fa !important;
    color: #ffffff !important;
    border-color: #60a5fa !important;
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.25) !important;
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background: #f0f4f1;
    position: relative;
    overflow: hidden;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 46, 35, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(47, 179, 98, 0.3);
    transform: translateY(-5px);
}

.method-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(26, 46, 35, 0.06);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2e23;
}

.method-card p {
    color: rgba(26, 46, 35, 0.55);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .btn-know-more {
        width: auto;
    }
}

.service-arm:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.arm-for-profit:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(47, 179, 98, 0.15);
}

.arm-non-profit:hover {
    border-color: #60a5fa;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.15);
}

/* For-Profit Styling */
.arm-for-profit {
    border: 1px solid rgba(47, 179, 98, 0.15);
    background: rgba(47, 179, 98, 0.02);
}

/* Non-Profit Styling */
.arm-non-profit {
    border: 1px solid rgba(96, 165, 250, 0.35);
    background: rgba(59, 130, 246, 0.03);
}

.arm-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.arm-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(47, 179, 98, 0.1);
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(47, 179, 98, 0.2);
}

.arm-badge.accent-warm {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.2);
}

.service-arm h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a2e23;
}

.service-arm p {
    font-size: 0.85rem;
    color: rgba(26, 46, 35, 0.55);
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.list-icon {
    font-size: 1.2rem;
    background: rgba(47, 179, 98, 0.06);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arm-for-profit .list-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(47, 179, 98, 0.2));
}

.arm-non-profit .list-icon {
    color: #60a5fa;
    filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.3));
}

.service-list h4 {
    font-size: 1rem;
    color: #1a2e23;
    margin-bottom: 0.2rem;
}

.service-list p {
    font-size: 0.8rem;
    color: rgba(26, 46, 35, 0.5);
}

/* --- Tablet & Desktop Enhancements (Reverse Path) --- */

@media (min-width: 768px) {


    .nav-link {
        font-size: 0.95rem;
    }

    .btn-primary-outline {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .hero-title { font-size: 3.2rem; text-align: center; }
    .hero-subtitle { font-size: 1.1rem; text-align: center; }
    
    .lead-card {
        padding: 2.5rem;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }

    .hero-text-side {
        text-align: left;
    }

    .hero .hero-title {
        text-align: left;
    }

    .hero .hero-subtitle {
        margin-left: 0;
        max-width: 540px;
        text-align: left;
    }

    .hero-features {
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .glow {
        width: 600px;
        height: 600px;
    }

    .lead-card {
        margin: 0;
    }

    .card-header {
        text-align: left;
    }

    .services-grid {
        flex-direction: row;
        gap: 3rem;
    }
    
    .service-arm {
        flex: 1;
        padding: 3rem;
    }

    .hero-cta-mobile {
        display: none;
    }
}

/* --- SERVICES PAGE STYLES --- */

.services-hero {
    padding: 160px 0 60px;
    background: #f0f4f1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-hero .hero-title,
.services-hero .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.mode-switcher-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.mode-switcher {
    display: flex;
    background: rgba(26, 46, 35, 0.04);
    padding: 6px;
    border-radius: 100px;
    position: relative;
    border: 1px solid rgba(26, 46, 35, 0.08);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mode-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(26, 46, 35, 0.5);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.mode-btn.active {
    color: #ffffff;
    text-shadow: none;
}

.mode-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: #2fb362; /* Solid darker green */
    border-radius: 100px;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Reduced glow, focused shadow */
}

/* Impact Mode Theme Override */
.impact-mode .mode-indicator {
    background: #1a365d; /* Deep premium blue */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.impact-mode .bento-item {
    background: rgba(59, 130, 246, 0.02);
    border-color: rgba(59, 130, 246, 0.1);
}

.impact-mode .bento-icon {
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.3));
}

.service-view {
    display: none;
    padding: 60px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.view-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}



.bento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bento-item {
    background: rgba(47, 179, 98, 0.02); /* Subtle green tint */
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(47, 179, 98, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: #2fb362;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06), 0 0 15px rgba(47, 179, 98, 0.05);
}

.impact-mode .bento-item:hover {
    border-color: #3b82f6; /* Premium blue for impact mode */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06), 0 0 15px rgba(59, 130, 246, 0.1);
}

.bento-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(47, 179, 98, 0.2));
}

.bento-item h3 {
    font-size: 1.3rem;
    color: #1a2e23;
}

.bento-item p {
    font-size: 0.95rem;
    color: rgba(26, 46, 35, 0.55);
    line-height: 1.6;
}

/* Highlighting markers removed to maintain uniformity per user request */
.bento-item.highlight,
.highlight-impact,
.impact-mode .bento-item.highlight {
    /* Styles removed to allow perfect inheritance from .bento-item and :hover */
}

/* Flexibility Banner Enhanced */
.flexibility-banner {
    background: rgba(47, 179, 98, 0.04);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid rgba(47, 179, 98, 0.12);
    position: relative;
    overflow: hidden;
    color: #1a2e23;
}

.flexibility-banner h3 {
    color: #1a2e23;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #1a2e23, #2fb362);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flexibility-banner p {
    color: rgba(26, 46, 35, 0.6);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.flexibility-banner .btn-know-more {
    border-color: #2fb362;
    color: #2fb362;
    padding: 1rem 2rem;
}

.flexibility-banner .btn-know-more:hover {
    background: #2fb362;
    color: var(--primary-dark);
}

.banner-impact {
    background: rgba(59, 130, 246, 0.04) !important;
}

.banner-impact h3 {
    background: linear-gradient(to right, #1a2e23, var(--luminary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-impact .btn-know-more {
    border-color: #60a5fa;
    color: #60a5fa;
    opacity: 1;
}

.banner-impact .btn-know-more:hover {
    background: #60a5fa;
    color: white;
}

.banner-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.banner-text {
    max-width: 500px;
}

.mini-badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #2fb362; /* Vibrant, readable green */
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.banner-impact .mini-badge {
    color: #60a5fa; /* Vibrant, readable blue */
}

/* Strategy Map - The Fluid Engine */
.strategy-map {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
    flex: 1;
}

.map-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.node-core {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 46, 35, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 46, 35, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-core svg {
    stroke: rgba(26, 46, 35, 0.4);
}

.map-node:hover .node-core svg,
.node-prime .node-core svg {
    stroke: #2fb362;
}

.map-impact .map-node:hover .node-core svg,
.map-impact .node-prime-impact .node-core svg {
    stroke: #60a5fa;
}

.node-info {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.node-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e23;
}

.node-result {
    font-size: 0.7rem;
    color: rgba(26, 46, 35, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.map-node:hover .node-result,
.node-prime .node-result {
    color: #2fb362; /* Brighter green on active/hover */
    opacity: 1;
}

.map-impact .node-result {
    color: rgba(26, 46, 35, 0.55) !important;
}

.map-impact .map-node:hover .node-result,
.map-impact .node-prime-impact .node-result {
    color: #60a5fa; /* Brighter blue on active */
    opacity: 1;
}

.map-flow {
    flex: 1;
    height: 2px;
    background: rgba(26, 46, 35, 0.05);
    position: relative;
    min-width: 30px;
}

.flow-pulse {
    position: absolute;
    top: 0;
    left: -10%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: flowPulse 2s infinite linear;
}

@keyframes flowPulse {
    0% { left: -20%; }
    100% { left: 120%; }
}

.node-prime .node-core {
    width: 80px;
    height: 80px;
    background: rgba(26, 93, 58, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(26, 93, 58, 0.2);
    color: var(--accent);
}

.node-prime-impact .node-core {
    width: 80px;
    height: 80px;
    background: rgba(0, 112, 243, 0.1);
    border-color: var(--luminary-blue);
    box-shadow: 0 0 30px rgba(0, 112, 243, 0.2);
    color: var(--luminary-blue);
}

.map-impact .node-result {
    color: var(--luminary-blue);
}

.map-impact .flow-pulse {
    background: linear-gradient(90deg, transparent, var(--luminary-blue), transparent);
}

.map-node:hover .node-core {
    transform: scale(1.1) translateY(-5px);
    border-color: #2fb362;
    background: rgba(47, 179, 98, 0.08);
    color: #2fb362;
}

@media (max-width: 768px) {
    .flexibility-banner {
        padding: 4rem 1rem;
        text-align: center;
    }
    
    .flexibility-banner .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .strategy-map {
        flex-direction: row; /* Force horizontal on mobile */
        justify-content: center;
        align-items: flex-start;
        gap: 0.3rem; /* Very tight gap for mobile */
        width: 100%;
        margin-top: 1rem;
    }

    .map-node {
        flex: 1;
        gap: 0.5rem;
    }

    .node-core {
        width: 45px; /* Smaller nodes for mobile row */
        height: 45px;
    }

    .node-prime .node-core,
    .node-prime-impact .node-core {
        width: 55px; /* Smaller prime nodes */
        height: 55px;
    }

    .node-label {
        font-size: 0.7rem;
    }

    .node-result {
        font-size: 0.55rem;
        white-space: nowrap;
    }

    .map-flow {
        flex: 1;
        height: 1px;
        margin-top: 22px; /* Align with node centers */
        min-width: 15px;
    }

    .flow-pulse {
        width: 30%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        animation: flowPulse 2s infinite linear;
        left: -30%;
        top: 0;
    }

    .map-impact .flow-pulse {
        background: linear-gradient(90deg, transparent, var(--luminary-blue), transparent);
    }
}

@keyframes flowPulseVert {
    0% { top: -20%; }
    100% { top: 120%; }
}

@media (min-width: 1024px) {
    .banner-grid {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 1rem 2rem;
        gap: 4rem;
    }

    .strategy-map {
        flex: 1;
        justify-content: flex-end;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .bento-grid-internal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-item.highlight, .highlight-impact {
        grid-column: span 1;
        grid-row: span 1; /* Keeping it simpler for now */
    }
}

@media (max-width: 600px) {
    .mode-btn {
        min-width: 150px;
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f1;
    color: #1a2e23;
}

.contact-hero .hero-title, 
.contact-hero .hero-subtitle {
    color: #1a2e23;
}

.contact-hero .mini-badge {
    color: #2fb362;
}

.contact-hero .grid-overlay {
    opacity: 0.04;
    background-image: radial-gradient(rgba(26, 46, 35, 0.15) 1px, transparent 1px);
}

.contact-hero .glow {
    display: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 46, 35, 0.08);
    border-radius: 24px;
    padding: 3rem;
}

.premium-form .card-header {
    margin-bottom: 2rem;
}

.card-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.7rem;
    color: #1a2e23;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1a2e23;
}

.card-header p {
    color: rgba(26, 46, 35, 0.5);
    font-size: 0.95rem;
    line-height: 1.5;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.premium-form .form-group {
    margin-bottom: 1.5rem;
}

.premium-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(26, 46, 35, 0.6);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    background: rgba(26, 46, 35, 0.04);
    border: 1px solid rgba(26, 46, 35, 0.15);
    border-radius: 12px;
    padding: 1rem;
    color: #1a2e23;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

/* Custom Sleek Dropdown Styles */
.custom-select-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-container select {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    bottom: 0;
    left: 0;
}

.select-trigger {
    width: 100%;
    background: rgba(26, 46, 35, 0.04);
    border: 1px solid rgba(26, 46, 35, 0.15);
    border-radius: 12px;
    padding: 1rem;
    color: rgba(26, 46, 35, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-select-container.open .select-trigger {
    border-color: #2fb362;
    background: rgba(47, 179, 98, 0.04);
    box-shadow: 0 0 0 3px rgba(47, 179, 98, 0.1);
}

.custom-select-container.has-value .select-trigger {
    color: #1a2e23;
}

.select-arrow {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #2fb362;
}

.custom-select-container.open .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 46, 35, 0.1);
    border-radius: 16px;
    padding: 0.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.custom-select-container.open .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: rgba(26, 46, 35, 0.7);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.select-option:hover {
    background: rgba(47, 179, 98, 0.06);
    color: #1a2e23;
    padding-left: 1.2rem;
}

.select-option.selected {
    background: rgba(47, 179, 98, 0.08);
    color: #2fb362;
    font-weight: 700;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: #2fb362;
    background: rgba(47, 179, 98, 0.04);
    box-shadow: 0 0 0 3px rgba(47, 179, 98, 0.1);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 46, 35, 0.08);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: #2fb362;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06), 0 0 20px rgba(47, 179, 98, 0.08);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: rgba(47, 179, 98, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #2fb362;
    filter: none;
}

.action-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a2e23;
}

.action-card p {
    font-size: 0.85rem;
    color: rgba(26, 46, 35, 0.55);
    margin-bottom: 1.25rem;
}

.btn-action {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid #2fb362;
    color: #2fb362;
    background: rgba(47, 179, 98, 0.06);
}

.btn-action:hover {
    background: #2fb362;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(47, 179, 98, 0.2);
}

.wa-btn {
    border-color: #2fb362;
    color: #2fb362;
    background: rgba(47, 179, 98, 0.06);
}

.wa-btn:hover {
    background: #2fb362;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(47, 179, 98, 0.2);
}

.whatsapp-card .action-icon,
.call-card .action-icon {
    color: #25D366;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .card-glass {
        padding: 2rem 1.5rem;
    }
    
    .contact-hero {
        padding-top: 150px;
    }
}

/* Homepage Premium Form Overrides */
.lead-card-premium {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 46, 35, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    padding: 3.5rem 2.5rem 2.5rem; /* Spacious padding as seen in screenshot */
    border-radius: 24px;
}

.card-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(26, 46, 35, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.lead-card-premium .card-header,
.lead-card-premium .premium-form,
.lead-card-premium .form-divider,
.lead-card-premium .form-footer-premium {
    position: relative;
    z-index: 1;
}

.lead-card-premium .card-header h2 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1a2e23;
    text-align: left; /* Align left as in screenshot */
}

.lead-card-premium .card-header p {
    font-size: 1rem;
    color: rgba(26, 46, 35, 0.55);
    margin-bottom: 2rem;
    text-align: left;
}

.form-divider {
    border: none;
    height: 1px;
    background: rgba(26, 46, 35, 0.08);
    margin: 2rem 0;
}

.form-footer-premium p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(26, 46, 35, 0.45);
    margin-bottom: 1.2rem;
}

.direct-actions-premium {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-direct {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: rgba(26, 46, 35, 0.04);
    border: 1px solid rgba(26, 46, 35, 0.1);
    border-radius: 100px;
    color: #1a2e23;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-direct:hover {
    background: rgba(47, 179, 98, 0.06);
    transform: translateY(-2px);
    border-color: rgba(47, 179, 98, 0.2);
}

.btn-direct svg {
    color: rgba(26, 46, 35, 0.5);
}

/* Specific label style to match screenshot (not all caps) */
.lead-card-premium .premium-form label {
    text-transform: none;
    letter-spacing: normal;
    color: rgba(26, 46, 35, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Button override for the arrow alignment */
.lead-card-premium .btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}
.hero-actions .btn-submit {
    min-width: 280px;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(47, 179, 98, 0.3);
}

@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions .btn-submit {
        width: 100%;
        font-size: 0.95rem;
        white-space: nowrap;
        padding: 1.1rem 1rem;
    }
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-glow:hover::before {
    animation: btn-shine 1s infinite forwards;
}

@keyframes btn-shine {
    100% {
        left: 200%;
    }
}

@media (max-width: 500px) {
    .lead-card-premium {
        padding: 2rem 1.5rem;
    }
    
    .direct-actions-premium {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-direct {
        justify-content: center;
    }
}

.section-contact-bottom {
    padding: 100px 0;
    background: #f0f4f1;
    position: relative;
}

.contact-grid-bottom {
    max-width: 800px;
    margin: 0 auto;
}

.section-contact-bottom .lead-card-premium {
    margin-top: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .section-contact-bottom {
        padding: 60px 0;
    }
}

/* --- SUCCESS MODAL --- */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 244, 241, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    position: relative;
    max-width: 480px;
    width: 90%;
    padding: 3rem 2.5rem;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(47, 179, 98, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 40px rgba(47, 179, 98, 0.06);
}

.success-modal-overlay.active .success-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(47, 179, 98, 0.1);
    border: 2px solid rgba(47, 179, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(47, 179, 98, 0.2);
}

.modal-icon {
    width: 40px;
    height: 40px;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-body {
    color: rgba(26, 46, 35, 0.55);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.modal-body strong {
    color: #1a2e23;
    font-weight: 600;
}

.modal-btn {
    width: 100%;
    justify-content: center;
}

/* --- 404 ERROR PAGE --- */
.error-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.error-hero {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px;
}



.error-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 800;
    line-height: 0.9;
    background: linear-gradient(135deg, rgba(26, 46, 35, 1) 0%, rgba(26, 46, 35, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0rem;
    letter-spacing: -0.05em;
    filter: drop-shadow(0 20px 40px rgba(47, 179, 98, 0.2));
    position: relative;
}

.error-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 1.5rem auto 3rem;
    max-width: 550px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }
}

/* ==========================================
   FLOATING ACTION BUTTONS (FAB)
   ========================================== */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    pointer-events: none; /* Only children interact */
}

.fab-button {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(26, 46, 35, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fab-button svg {
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}

/* WhatsApp FAB */
.fab-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}

.fab-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.fab-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.fab-whatsapp:hover::before {
    opacity: 1;
}

/* Call FAB */
.fab-call {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.3);
}

.fab-call::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #60a5fa;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.fab-call:hover {
    transform: translateY(-5px) scale(1.05);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(96, 165, 250, 0.3);
}

.fab-call:hover::before {
    opacity: 1;
}

/* Label Tooltip */
.fab-label {
    position: absolute;
    right: 75px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1a2e23;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(26, 46, 35, 0.06);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.fab-button:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
    }
    
    .fab-button svg {
        width: 22px;
        height: 22px;
    }
    
    .fab-label {
        display: none; /* Hide labels on very small mobile for cleaner look */
    }
}

/* Animation for attention */
@keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 179, 98, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(47, 179, 98, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 179, 98, 0); }
}

.fab-whatsapp {
    animation: fabPulse 3s infinite;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.section-faq {
    padding: 100px 0 80px;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .section-subtitle {
    max-width: 550px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 46, 35, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(47, 179, 98, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.faq-item.open {
    border-color: rgba(47, 179, 98, 0.3);
    background: rgba(47, 179, 98, 0.03);
    box-shadow: 0 0 30px rgba(47, 179, 98, 0.05);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: rgba(26, 46, 35, 0.85);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: #2fb362;
}

.faq-item.open .faq-trigger {
    color: #2fb362;
}

.faq-question {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(26, 46, 35, 0.04);
    border: 1px solid rgba(26, 46, 35, 0.08);
    color: rgba(26, 46, 35, 0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
    background: rgba(47, 179, 98, 0.1);
    border-color: rgba(47, 179, 98, 0.3);
    color: #2fb362;
    transform: rotate(0deg);
}

.faq-icon-v {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
}

.faq-item.open .faq-icon-v {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: rgba(26, 46, 35, 0.55);
    font-size: 0.95rem;
    line-height: 1.75;
    font-family: var(--font-main);
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .section-faq {
        padding: 70px 0 60px;
    }

    .faq-trigger {
        padding: 16px 20px;
        font-size: 0.95rem;
        gap: 12px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.88rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}
