:root {
    /* Light Green Theme - Professional & Fresh */
    --primary-green: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --primary-lighter: #6ee7b7;
    --primary-lightest: #d1fae5;
    --accent-emerald: #047857;
    --accent-teal: #14b8a6;
    --accent-lime: #84cc16;
    
    /* Neutral Colors */
    --dark-900: #111827;
    --dark-800: #1f2937;
    --dark-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(16, 185, 129, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(16, 185, 129, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(16, 185, 129, 0.2);
    --shadow-2xl: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Mobile Touch Target Minimum Size */
    --touch-target-min: 44px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    margin-top: 70px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--dark-900);
    line-height: 1.2;
}

/* Navigation - Mobile First - Fixed Topbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: box-shadow, background-color;
}

.navbar-custom.scrolled {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.97);
}

.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-900) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-base) cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.5rem 0;
    will-change: transform;
}

.navbar-brand:hover {
    transform: translateY(-2px) scale(1.02);
}

.navbar-brand i {
    color: var(--primary-green);
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.brand-highlight {
    color: var(--primary-green);
}

/* Mobile-friendly hamburger menu */
.navbar-toggler {
    border: 2px solid var(--primary-green);
    padding: 0.625rem 0.875rem;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310b981' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.875rem 1rem !important;
    margin: 0;
    transition: all var(--transition-fast) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-height: var(--touch-target-min);
    display: flex;
    align-items: center;
    will-change: color, background-color;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transition: transform var(--transition-base) cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 1px;
    will-change: transform;
}

.nav-link:hover {
    color: var(--primary-green) !important;
    background: rgba(16, 185, 129, 0.04);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-green) !important;
    font-weight: 600;
    background: var(--primary-lightest);
}

/* Buttons - Touch Optimized */
.btn-green {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all var(--transition-base) cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    min-height: var(--touch-target-min);
    min-width: 120px;
    will-change: transform, box-shadow;
}

.btn-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-emerald));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-green:hover,
.btn-green:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
    color: var(--white);
}

.btn-green:hover::before {
    opacity: 1;
}

.btn-green span,
.btn-green i {
    position: relative;
    z-index: 1;
}

.btn-outline-green {
    background: transparent;
    color: var(--primary-green);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-green);
    transition: all var(--transition-base) cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-decoration: none;
    min-height: var(--touch-target-min);
    min-width: 120px;
    will-change: transform, box-shadow, background-color;
}

.btn-outline-green:hover,
.btn-outline-green:active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}

/* Hero Section - Ultra Premium & Mobile Optimized */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--primary-lightest) 0%, rgba(255,255,255,0.5) 30%, var(--white) 60%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Animated Background Shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--dark-900);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Feature Pills - Mobile Optimized */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    min-height: var(--touch-target-min);
}

.hero-feature-item:hover,
.hero-feature-item:active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.hero-feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-lightest), var(--primary-lighter));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon i {
    color: var(--primary-green);
    font-size: 1rem;
}

.hero-feature-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-800);
    line-height: 1.3;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    padding-top: var(--space-md);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Hero Image Animations */
.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-main {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(16, 185, 129, 0.25));
    animation: floatImage 6s ease-in-out infinite;
}

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

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.12;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    75% {
        border-radius: 25% 75% 42% 58% / 24% 54% 46% 76%;
    }
}

.hero-decoration-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-teal));
    top: -40px;
    right: -20px;
}

.hero-decoration-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    bottom: -20px;
    left: -15px;
    animation-delay: -4s;
}

/* Trust Section */
.trust-section {
    padding: var(--space-xl) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-title {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-base);
    padding: 1rem;
}

.trust-item:hover,
.trust-item:active {
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-lightest), var(--white));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.trust-icon i {
    font-size: 1.875rem;
    color: var(--primary-green);
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-800);
    text-align: center;
}

.trust-subtext {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
}

/* Offline Showcase Section */
.offline-showcase {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.offline-showcase::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.offline-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }
}

.offline-icon-large i {
    font-size: 3.5rem;
    color: var(--white);
}

.offline-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: var(--space-xl);
}

.offline-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.offline-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.offline-feature i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.offline-feature h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.offline-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-emerald));
    padding: var(--space-2xl) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-card {
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

.stat-number {
    font-size: clamp(2.25rem, 7vw, 4rem);
    font-weight: 900;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Section Styles */
.section-padding {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-lightest);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.875rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--dark-900);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.9375rem, 2.5vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    height: 100%;
    transition: all var(--transition-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, border-color;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover,
.feature-card:active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
    transition: transform var(--transition-base) cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.feature-card:hover .feature-icon,
.feature-card:active .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--dark-900);
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    height: 100%;
    border: 2px solid var(--gray-200); cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    will-change: transform, box-shadow, border-colorr(--transition-base);
    position: relative;
}

.step-card:hover,
.step-card:active {6px) scale(1.01);
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.18-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.benefit-card {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-card:hover,
.benefit-card:active {
    background: var(--gray-50);
    transform: translateY(-4px);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lightest), var(--primary-lighter));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-md);
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-green);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: var(--space-sm);
}

.benefit-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    height: 100%;
    transition: all var(--transition-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: var(--space-md);
    will-change: transform, box-shadow, border-color;
}

.product-card:hover,
.product-card:active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-light);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.product-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-lightest), var(--primary-lighter));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon i {
    font-size: 1.75rem;
    color: var(--primary-green);
}

.product-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-900);
    margin: 0;
}

.product-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.product-features li {
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-features i {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    height: 100%;
    transition: all var(--transition-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: var(--space-md);
    text-align: center;
    will-change: transform, box-shadow, border-color;
}

.pricing-card:hover,
.pricing-card:active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(180deg, var(--primary-lightest) 0%, var(--white) 50%);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.pricing-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--dark-900);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.pricing-price {
    margin: var(--space-md) 0;
}

.pricing-amount {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    color: var(--dark-900);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-green);
    flex-shrink: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    height: 100%; cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: var(--space-md);
    will-change: transform, box-shadow, border-color;
}

.testimonial-card:hover,
.testimonial-card:active {
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-6px) scale(1.0100);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark-900);
    margin: 0;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover,
.faq-item:active {
    border-color: var(--primary-light);
}

.faq-question {
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: background var(--transition-fast);
    min-height: var(--touch-target-min);
}

.faq-question:hover,
.faq-question:active {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-900);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-icon i {
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--primary-green);
}

.faq-item.active .faq-icon i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base) cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--transition-base) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    will-change: max-height, opacity;
}

.faq-answer-content {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    padding: var(--space-3xl) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(1.875rem, 6vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: clamp(1rem, 3vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: var(--white);
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.0625rem;
    border: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-height: var(--touch-target-min);
}

.btn-white:hover,
.btn-white:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: var(--primary-green);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.0625rem;
    border: 2px solid var(--white);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    min-height: var(--touch-target-min);
}

.btn-outline-white:hover,
.btn-outline-white:active {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark-900);
    color: var(--gray-400);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer h5 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: var(--touch-target-min);
    padding: 0.25rem 0;
}

.footer a:hover,
.footer a:active {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 0.875rem;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--dark-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-link:hover,
.social-link:active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-800);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 0.875rem;
}

.footer-legal-links,
.footer-sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.footer-legal-links li,
.footer-sitemap-links li {
    display: inline-flex;
    align-items: center;
}

.footer-legal-links a,
.footer-sitemap-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-legal-links a:hover,
.footer-sitemap-links a:hover {
    color: var(--primary-green);
}

.footer-sitemap-links {
    justify-content: flex-end;
}

.footer-sitemap-links a i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-legal-links,
    .footer-sitemap-links {
        justify-content: center;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 0.75rem;
    }
    
    .footer-bottom .col-md-4 {
        text-align: center !important;
    }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px;
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 12px 48px rgba(16, 185, 129, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-actions:hover {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 16px 56px rgba(16, 185, 129, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    will-change: transform, box-shadow;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.fab:hover,
.fab:active {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #2BE077 0%, #1AAE91 100%);
}

.fab-phone {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.fab-phone:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.fab-scroll {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: none;
}

.fab-scroll:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
}

.fab-scroll.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Contact Page Specific */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    padding: var(--space-3xl) 0 var(--space-2xl);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-top: var(--space-md);
    justify-content: center;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: var(--space-3xl) 0;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl); cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    margin-bottom: var(--space-lg);
    will-change: transform, box-shadow, border-color;
}

.contact-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-md);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--dark-900);
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.contact-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.15);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.0625rem;
    border: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    width: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.map-section {
    padding: 0;
    background: var(--gray-50);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding-top: calc(70px + var(--space-xl));
        min-height: auto;
    }
    
    .section-padding {
        padding: var(--space-2xl) 0;
    }

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

@media (max-width: 767px) {
    :root {
        --space-4xl: 3rem;
        --space-3xl: 2.5rem;
        --space-2xl: 2rem;
    }

    .navbar-brand {
        font-size: 1.375rem;
    }

    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }

    .trust-logos {
        gap: 1.5rem;
    }

    .floating-actions {
        bottom: 1rem;
        right: 1rem;
        padding: 10px;
        border-radius: 22px;
    }

    .fab {
        width: 46px;
        height: 46px;
        font-size: 1.125rem;
        border-radius: 14px;
    }

    .offline-icon-large {
        width: 100px;
        height: 100px;
    }

    .offline-icon-large i {
        font-size: 3rem;
    }

    .btn-green,
    .btn-outline-green,
    .btn-white,
    .btn-outline-white {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        width: 100%;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta a {
        width: 100%;
    }

    .map-container {
        height: 300px;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Feature Card Hover Effects */
.feature-card {
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: #10b981;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}

/* Stat Card Hover Effects */
.stat-card {
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

/* Trust Item Hover Effects */
.trust-item:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Button Hover Effects */
.btn-green {
    transition: all var(--transition-base);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-green {
    transition: all var(--transition-base);
    border: 2px solid #10b981;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: transparent;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-green:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 575px) {

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .product-card,
    .pricing-card,
    .testimonial-card,
    .step-card {
        padding: var(--space-md);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
