/* =======================================
   CSS Variables & Tokens (Nature/Earthy)
   ======================================= */
   :root {
    /* Colors */
    --clr-primary: #145951; /* Dark Teal */
    --clr-primary-light: #1C7A6E;
    --clr-primary-dark: #0D3B35;
    
    --clr-secondary: #EFECE6; /* Off-white/Beige */
    --clr-secondary-hover: #DCD8CF;
    
    --clr-accent: #E2E8E4; /* Soft Sage */
    --clr-bg: #FFFFFF; /* Clean white */
    
    --clr-text: #2A3631; /* Very dark green/grey for text */
    --clr-text-light: #5B6B64;
    
    --clr-white: #FFFFFF;
    --clr-dark: #121E19;
    
    --clr-error: #E53E3E;
    --clr-success: #38A169;
    --clr-whatsapp: #25D366;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(15, 58, 39, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 58, 39, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(15, 58, 39, 0.1);
    --shadow-glow: 0 0 30px rgba(42, 131, 93, 0.15);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
    
    /* Layout */
    --container-width: 1200px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =======================================
   Reset & Base Styles
   ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Ambient Noise Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Smooth motion for parallax elements */
.parallax-el {
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

h1, h2, h3, h4, .counter, .logo {
    font-family: var(--font-heading);
    color: var(--clr-primary-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Utilities */
.highlight-text {
    color: var(--clr-primary-light);
    position: relative;
    display: inline-block;
}
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--clr-accent);
    z-index: -1;
    transform: skew(-15deg);
}

.text-center { text-align: center; }
.text-error { color: var(--clr-error) !important; }
.text-green { color: var(--clr-primary) !important; }
.text-light-green { color: var(--clr-accent) !important; }
.text-white { color: var(--clr-white) !important; }

/* Spacing Utilities */
.py-large { padding: var(--space-xl) 0; }
.mt-medium { margin-top: var(--space-md); }
.mt-large { margin-top: var(--space-lg); }

/* Background Utilities */
.bg-dark { background-color: var(--clr-dark); }
.bg-soft-green { background-color: var(--clr-accent); }

/* =======================================
   Components
   ======================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--transition);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}
.btn-secondary:hover {
    background-color: var(--clr-primary-light);
    color: var(--clr-white);
    border-color: var(--clr-primary-light);
}

.btn-whatsapp {
    background-color: var(--clr-whatsapp);
    color: var(--clr-white);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

/* =======================================
   Navigation
   ======================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-primary-dark);
}
.logo span {
    color: var(--clr-secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-weight: 500;
    color: var(--clr-text);
}
.nav-links a:hover {
    color: var(--clr-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-primary-dark);
}

/* =======================================
   Hero Section
   ======================================= */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250,250,247,0.95) 0%, rgba(233,237,201,0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    padding: 0.4rem 1rem;
    background: rgba(42, 131, 93, 0.1);
    color: var(--clr-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: floating 3s ease-in-out infinite;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Floating 3D Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 3;
    animation: float-3d 5s ease-in-out infinite alternate;
}

.floating-card i {
    font-size: 2rem;
    color: var(--clr-primary);
}

.fc-title {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-text-light);
    font-weight: 600;
}
.fc-stat {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--clr-primary-dark);
}

.prop-1 {
    top: 20%;
    right: -5%;
    transform: rotate(5deg);
}
.prop-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
    transform: rotate(-3deg);
}

/* =======================================
   Social Proof Section
   ======================================= */
.social-proof {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0,0,0,0.1);
}

.stat-card h2 {
    font-size: 3.5rem;
    color: var(--clr-primary);
    display: inline-block;
}

.stat-icon-wrapper {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    color: var(--clr-primary);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 600;
    color: var(--clr-text-light);
    font-size: 1.1rem;
}

/* =======================================
   Grid Systems
   ======================================= */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.align-center {
    align-items: center;
}

/* =======================================
   Problem Section
   ======================================= */
.problem-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-blob {
    position: absolute;
    background: #FCE8E8;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.problem-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-lg);
    position: absolute;
}

.main-glass {
    padding: 2rem;
    width: 80%;
    text-align: center;
    z-index: 2;
}

.chart-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.chart-down i { font-size: 4rem; }
.chart-down span { font-weight: 700; font-size: 1.2rem; }

.sub-glass-1, .sub-glass-2 {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.sub-glass-1 {
    top: 10%;
    left: 0;
    transform: rotate(-10deg);
}
.sub-glass-2 {
    bottom: 10%;
    right: 0;
    transform: rotate(5deg);
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.pain-points li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pain-points i {
    font-size: 1.8rem;
    margin-top: 0.2rem;
}
.pain-points strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--clr-dark);
}
.pain-points p {
    color: var(--clr-text-light);
}

/* =======================================
   Workflow Section
   ======================================= */
.workflow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.step-card {
    background: var(--clr-white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    width: 18%;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card.highlight {
    border-bottom: 4px solid var(--clr-secondary);
}
.step-card.success {
    border-bottom: 4px solid var(--clr-primary);
    background: #EAF5EE;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--clr-primary);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.step-connector {
    height: 2px;
    background: rgba(42, 131, 93, 0.2);
    flex-grow: 1;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* =======================================
   Course Timeline / Services Roadmap
   ======================================= */
.course-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.course-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--clr-bg) 0%, var(--clr-primary) 50%, var(--clr-primary-dark) 100%);
    border-radius: 4px;
    z-index: 0;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item.right {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-marker {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--clr-white);
    border: 4px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(20, 89, 81, 0.2);
    transition: all 0.3s ease;
}

.timeline-item.right .timeline-marker {
    left: -25px;
    right: auto;
}

.timeline-item:hover .timeline-marker {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-50%) scale(1.1);
}

.timeline-content {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 90%;
    position: relative;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--clr-accent);
}

.timeline-item.right .timeline-content {
    border-top: 4px solid var(--clr-primary);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--clr-dark);
}

.timeline-content p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Responsive Breakpoints */
@media screen and (max-width: 900px) {
    .course-timeline::before {
        left: 30px;
    }
    .timeline-item, .timeline-item.right {
        width: 100%;
        margin-left: 0;
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-marker, .timeline-item.right .timeline-marker {
        left: 5px;
        right: auto;
    }
    .timeline-content {
        width: 100%;
    }
}

/* =======================================
   D2C Marquee Slider
   ======================================= */
.marquee-section {
    background: var(--clr-primary-dark);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-container {
    display: flex;
    align-items: center;
}

.marquee-label {
    flex: 0 0 auto;
    background: var(--clr-primary-dark);
    padding: 0 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-accent);
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
    z-index: 10;
    position: relative;
    box-shadow: 20px 0 30px var(--clr-primary-dark);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: scroll-loop 30s linear infinite;
    padding-left: 2rem;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.marquee-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s var(--transition);
    cursor: default;
    user-select: none;
    letter-spacing: 0.5px;
}

.marquee-brand i {
    font-size: 2.2rem;
    color: var(--clr-accent);
}

.marquee-brand:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

@keyframes scroll-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {
    .marquee-label {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    .marquee-content {
        gap: 3rem;
    }
    .marquee-brand {
        font-size: 1.2rem;
    }
    .marquee-brand i {
        font-size: 1.6rem;
    }
}
.story-carousel {
    display: flex;
    justify-content: center;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 900px;
}

.story-image {
    position: relative;
    height: 100%;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.tag {
    background: rgba(0,0,0,0.7);
    color: var(--clr-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content {
    padding: 3rem;
}
.story-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--clr-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.ba-item {
    display: flex;
    flex-direction: column;
}
.ba-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.ba-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

/* =======================================
   Partner Feature Cards
   ======================================= */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    text-align: left;
}

.partner-feature-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 1;
}

.partner-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pfc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.pfc-logo {
    height: 45px;
    mix-blend-mode: multiply;
}

.pfc-badge {
    background: #e2fbd7;
    color: var(--clr-primary-dark);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pfc-title {
    font-size: 1.6rem;
    color: var(--clr-dark);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.pfc-desc {
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.pfc-arrow-box {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s var(--transition), transform 0.3s var(--transition);
    position: relative;
    z-index: 2;
}

.pfc-arrow-box:hover {
    background: var(--clr-primary-dark);
    transform: translateX(5px);
    color: var(--clr-white);
}

.pfc-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 160px;
    color: rgba(20, 89, 81, 0.04);
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
}

/* =======================================
   Trust & Testimonials
   ======================================= */
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-light);
}

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

.test-card {
    background: var(--clr-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #F6AD55;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.test-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.author h4 { margin: 0; font-size: 1.1rem; }
.author span { font-size: 0.9rem; color: var(--clr-text-light); }

/* =======================================
   CTA Section
   ======================================= */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
    color: var(--clr-white);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    color: var(--clr-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-microcopy {
    font-size: 0.85rem !important;
    opacity: 0.7 !important;
    margin: 0 !important;
}

.cta-visual {
    position: relative;
}

/* Lead Form Styles */
.lead-form-container {
    background: var(--clr-white);
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.form-title {
    color: var(--clr-primary-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.form-group input {
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8E4;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: #F7F9F8;
    color: var(--clr-dark);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: var(--clr-white);
    box-shadow: 0 0 0 3px rgba(20, 89, 81, 0.1);
}

.btn-submit {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1.1rem;
}

.rounded-img {
    border-radius: var(--radius-xl);
}

.urgency-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--clr-white);
    color: var(--clr-primary-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--clr-error);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* =======================================
   Footer
   ======================================= */
.footer {
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: 5rem 0 2rem;
}

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

.footer-brand p {
    color: #8C9F96;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #8C9F96;
}
.footer-links a:hover {
    color: var(--clr-white);
}

.footer-contact p {
    color: #8C9F96;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-white);
}
.social-icons a:hover {
    background: var(--clr-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8C9F96;
    font-size: 0.9rem;
}

/* =======================================
   Animations
   ======================================= */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-3d {
    0% { transform: translateY(0) rotate(5deg); }
    100% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

/* Scroll Revel Classes (triggered via JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--transition);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--transition);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================
   Responsive / Mobile First Overrides
   (Technically Desktop First Media Queries as written, but styled responsively)
   ======================================= */
@media screen and (max-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 1.5rem;
        align-items: center;
    }
    .nav-links.active {
        max-height: 400px;
        padding: 2rem 0;
    }
    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--clr-dark);
    }
    .nav-cta { display: none; }
    .menu-toggle { display: block; font-size: 2rem; color: var(--clr-primary); background: transparent; border: none; cursor: pointer; }
    .navbar.active { background: var(--clr-white); }
    
    .stats-grid {
        gap: 1rem;
        padding: 2rem 1rem;
    }
    .stat-card h2 { font-size: 2.5rem; }
    
    .workflow-diagram {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .step-card { width: 80%; }
    .step-connector { 
        height: 30px; 
        width: 2px; 
        margin: 0;
    }
    
    .story-card {
        grid-template-columns: 1fr;
    }
    .story-image { height: 300px; }
}

@media screen and (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .floating-card { display: none; }
    
    .grid-2-col, .cta-container, .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-visual { height: auto; margin-bottom: 80px; }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stat-card:not(:last-child)::after {
        right: auto;
        bottom: -1rem;
        top: auto;
        left: 20%;
        width: 60%;
        height: 1px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Responsive tweaks for overlapping/cluttered items */
    .parallax-wrapper, .parallax-el {
        display: none !important;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-visual > div:last-child {
        right: 5% !important;
        left: 5% !important;
        bottom: -60px !important;
        width: 90% !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
}
