/* ============================================
   CSS VARIABLES - Brand Colors
   ============================================ */
:root {
    /* Green - Primary */
    --green-dark: #065F46;
    --green-primary: #0E9F6E;
    --green-cta: #10B981;
    --green-light: #34D389;
    --green-bg: #D1FAE5;
    
    /* Yellow - Accent */
    --yellow-dark: #92400E;
    --yellow-primary: #F59E08;
    --yellow-accent: #F8BF24;
    --yellow-light: #FDE68A;
    --yellow-bg: #FFFBE8;
    
    /* Blue - Secondary */
    --blue-dark: #09388C;
    --blue-primary: #2563EB;
    --blue-cta: #3882F6;
    --blue-light: #93C5FD;
    --blue-bg: #E0F2FE;
    
    /* Neutrals */
    --charcoal: #0D1321;
    --slate: #334155;
    --ice: #F8FAFC;
    --white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--ice);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 600px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s var(--transition-slow) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 19, 33, 0.06);
    transition: var(--transition-medium);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-desktop a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate);
    transition: var(--transition-fast);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-cta);
    transition: var(--transition-medium);
}

.nav-desktop a:hover {
    color: var(--green-dark);
}

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

.header-cta {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-cta);
    color: var(--white);
    border-color: var(--green-cta);
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.btn-secondary:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--yellow-accent);
    color: var(--charcoal);
    border-color: var(--yellow-accent);
}

.btn-accent:hover {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 191, 36, 0.35);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-medium);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ice);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: var(--transition-medium);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.mobile-menu li {
    border-bottom: 1px solid rgba(13, 19, 33, 0.08);
}

.mobile-menu a {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--ice) 0%, var(--green-bg) 50%, var(--blue-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(56, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative ice cubes */
.hero-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.ice-cube {
    position: absolute;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.3) 0%, rgba(224, 242, 254, 0.5) 100%);
    border: 1px solid rgba(147, 197, 253, 0.4);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.ice-cube-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.ice-cube-2 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.ice-cube-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.ice-cube-4 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 5%;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green-cta);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.hero-title span {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    margin-bottom: var(--space-lg);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

/* Event Category Pills */
.event-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.event-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.625rem 1rem;
    background: var(--white);
    border: 1px solid rgba(13, 19, 33, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    cursor: pointer;
    transition: var(--transition-medium);
}

.event-pill:hover {
    background: var(--green-bg);
    border-color: var(--green-light);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.event-pill svg {
    width: 16px;
    height: 16px;
}

/* Social Proof Strip */
.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(13, 19, 33, 0.08);
}

.proof-stat {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.proof-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-bg);
    border-radius: 10px;
}

.proof-stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--yellow-primary);
}

.proof-stat-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.proof-stat-text span {
    font-size: 0.75rem;
    color: var(--slate);
}

.client-logos {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-left: var(--space-md);
    border-left: 1px solid rgba(13, 19, 33, 0.1);
}

.client-logo {
    height: 28px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition-medium);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(13, 19, 33, 0.15);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 19, 33, 0.4) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
		
		.hero-slider {
			position: relative;
			width: 100%;
			aspect-ratio: 4/3;
		}

		.slide {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			opacity: 0;
			transition: opacity 1s ease;
		}

		.slide.active {
			opacity: 1;
		}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background: var(--white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(13, 19, 33, 0.06);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bg);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green-primary);
}

.trust-text h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.8125rem;
    color: var(--slate);
}

/* ============================================
   VIDEO EXPLAINER SECTION
   ============================================ */
.explainer {
    padding: var(--space-2xl) 0;
    background: var(--ice);
}

.explainer-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    margin-top: var(--space-lg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 19, 33, 0.12);
    background: var(--charcoal);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-medium);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--slate) 0%, var(--charcoal) 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-cta);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    transition: var(--transition-medium);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0.2);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    margin-left: 4px;
}

.video-caption {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-lg);
    background: var(--ice);
    border-radius: 20px;
    border: 1px solid rgba(13, 19, 33, 0.06);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(13, 19, 33, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: var(--space-md);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--green-bg);
    color: var(--green-primary);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--blue-bg);
    color: var(--blue-primary);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--yellow-bg);
    color: var(--yellow-primary);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--blue-bg) 100%);
    color: var(--green-dark);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
}

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%);
    overflow: hidden;
}

.services-strip-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.services-strip-header .section-label {
    color: var(--green-light);
}

.services-strip-header .section-title {
    color: var(--white);
}

.services-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: 0 var(--space-md) var(--space-md);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.services-scroll::-webkit-scrollbar {
    height: 6px;
}

.services-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.services-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.service-card {
    flex: 0 0 260px;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    scroll-snap-align: start;
    transition: var(--transition-medium);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.service-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--ice);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonials-header .rating {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--yellow-bg);
    border-radius: 50px;
    margin-bottom: var(--space-md);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
    color: var(--yellow-primary);
    fill: var(--yellow-primary);
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yellow-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.testimonial-card {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(13, 19, 33, 0.06);
}

.testimonial-quote {
    font-size: 1.0625rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0;
    color: var(--green-light);
    display: block;
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--blue-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--green-dark);
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--slate);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.why-us-content {
    order: 2;
}

.why-list {
    margin-top: var(--space-lg);
}

.why-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(13, 19, 33, 0.06);
}

.why-item:last-child {
    border-bottom: none;
}

.why-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bg);
    border-radius: 50%;
    flex-shrink: 0;
}

.why-check svg {
    width: 14px;
    height: 14px;
    color: var(--green-primary);
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.875rem;
    color: var(--slate);
}

.why-us-visual {
    order: 1;
    position: relative;
}

.why-us-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 19, 33, 0.12);
}

.why-us-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--blue-bg) 100%);
}

/* Floating stats card */
.stats-float {
    position: absolute;
    bottom: -20px;
    right: -10px;
    padding: var(--space-md);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(13, 19, 33, 0.15);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stats-float-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-cta);
    border-radius: 12px;
}

.stats-float-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.stats-float-text strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stats-float-text span {
    font-size: 0.75rem;
    color: var(--slate);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(248, 191, 36, 0.2) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto var(--space-lg);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--yellow-accent);
    border-color: var(--yellow-accent);
    color: var(--charcoal);
}

.cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* WhatsApp CTA */
.whatsapp-cta {
    margin-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.whatsapp-cta svg {
    width: 20px;
    height: 20px;
}

.whatsapp-cta a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding:  var(--space-md) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--space-md) 0;
    max-width: 300px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition-medium);
}

.social-link:hover {
    background: var(--green-cta);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--green-light);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-medium);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .header-cta {
        display: block;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        display: block;
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-content {
        order: 1;
    }

    .why-us-visual {
        order: 2;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-scroll {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
}
