/* ===================================
   AWARD-WINNING GREEN DESIGN SYSTEM
   =================================== */

/* CSS Custom Properties - Green Design System */
:root {
    /* Green Color Palette */
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-950: #052e16;
    
    /* Semantic Colors */
    --primary: var(--green-600);
    --primary-hover: var(--green-700);
    --primary-light: var(--green-500);
    --primary-dark: var(--green-800);
    --accent: var(--green-400);
    --accent-hover: var(--green-500);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography Scale */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 0.125rem;
    --radius-base: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    --shadow-green: 0 4px 14px 0 rgb(34 197 94 / 0.39);
    --shadow-green-lg: 0 10px 25px -3px rgb(34 197 94 / 0.4);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-bounce: 250ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family-primary);
    line-height: var(--leading-relaxed);
    color: var(--gray-800);
    background-color: var(--white);
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    position: relative;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    position: relative;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-5);
}

.container-sm {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
    color: var(--gray-900);
    letter-spacing: -0.025em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 800;
    line-height: var(--leading-none);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--primary) 0%, var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    margin-bottom: var(--space-5);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

h5 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

h6 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
    color: var(--gray-700);
    font-size: var(--text-base);
}

.lead {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.text-muted {
    color: var(--gray-500);
}

.text-success {
    color: var(--primary);
}

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

/* Enhanced Link Styles */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    display: inline-block;
}

a:hover {
    color: var(--primary-hover);
    transform: translateY(-1px);
}

a.link-underline {
    position: relative;
}

a.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition-base);
}

a.link-underline:hover::after {
    width: 100%;
}

/* Font Weight Utilities */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Text Size Utilities */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

/* Award-Winning Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-base);
    line-height: var(--leading-none);
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    font-family: var(--font-family-primary);
    letter-spacing: -0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Primary Button - High Contrast White for Green Backgrounds */
.btn-primary {
    background: var(--white);
    color: var(--green-800);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--green-700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(34, 197, 94, 0.4);
    color: var(--green-800);
}

/* Primary Button on Light Backgrounds */
.btn-primary.on-light {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    color: var(--white);
    border-color: var(--green-600);
}

.btn-primary.on-light::before {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
}

.btn-primary.on-light:hover {
    color: var(--white);
    border-color: var(--green-700);
}

/* Secondary Button - High Contrast Outline */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--green-800);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
    color: var(--white);
}

/* Secondary Button on Light Backgrounds */
.btn-secondary.on-light {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-600);
    backdrop-filter: none;
}

.btn-secondary.on-light::before {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
}

.btn-secondary.on-light:hover {
    color: var(--white);
    border-color: var(--green-700);
}

/* Ghost Button */
.btn-ghost {
    background-color: transparent;
    color: var(--gray-700);
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: var(--green-50);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);
    color: var(--white);
    border-color: var(--green-500);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    border-radius: var(--radius-2xl);
    font-weight: 700;
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
    border-radius: var(--radius-3xl);
    font-weight: 700;
}

.btn-full {
    width: 100%;
    display: flex;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.btn-icon-only {
    padding: var(--space-3);
    width: auto;
    height: auto;
    aspect-ratio: 1;
}

/* Loading Button */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: var(--space-2);
}

/* Floating Action Button */
.btn-fab {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
}

.btn-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

/* Button Groups */
.btn-group {
    display: inline-flex;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-base);
}

.btn-group .btn {
    border-radius: 0;
    border-right-width: 1px;
    margin: 0;
}

.btn-group .btn:first-child {
    border-top-left-radius: var(--radius-xl);
    border-bottom-left-radius: var(--radius-xl);
}

.btn-group .btn:last-child {
    border-top-right-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
    border-right-width: 2px;
}

/* Pulse Animation for Important CTAs */
.btn-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Modern Header with Glass Effect */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    transition: padding var(--transition-base);
}

.header.scrolled .nav {
    padding: var(--space-3) var(--space-5);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: all var(--transition-base);
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    transition: all var(--transition-base);
}

.header.scrolled .nav-brand .logo {
    height: 32px;
}

.nav-brand-text {
    font-size: var(--text-xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left var(--transition-base);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: var(--green-50);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    color: var(--primary-dark);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #4b5563;
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f3f4f6;
    color: var(--green-600);
}

/* Modern Hero Section with Enhanced Gradients */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    color: var(--gray-900);
    padding: var(--space-20) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--green-100) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 40%);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content.text-center {
    text-align: center;
}

.hero-content.text-center .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content.text-center .hero-image {
    margin-top: 3rem;
}

.hero-content.text-center .hero-trust {
    margin-top: 3rem;
}

.hero-content.text-center .trust-badges {
    justify-content: center;
}

.hero-title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
    color: var(--gray-900);
    animation: fadeInUp 1s ease-out;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
    animation: fadeInUp 1s ease-out 0.2s both;
    color: var(--gray-700);
    font-weight: 400;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    color: var(--green-800);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.15);
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: var(--green-600);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: var(--space-8) 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.stat-item i {
    color: var(--green-600);
    font-size: 1.5rem;
}

.stat-item strong {
    display: block;
    font-size: var(--text-2xl);
    color: var(--gray-900);
    line-height: 1;
}

.stat-item span {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-trust {
    margin-top: 2rem;
}

.trust-text {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Trust Badges Section */
.trust-badges-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    border-bottom: 1px solid var(--green-200);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    align-items: center;
    justify-content: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-400);
}

.trust-badge-item i {
    color: var(--green-600);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-badge-item span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
}

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

.hero-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-2xl), 0 0 80px rgba(0, 0, 0, 0.4);
}

/* Software Hero */
.software-hero {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 50%, var(--gray-900) 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: var(--white);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.software-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.trial-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    text-align: center !important;
}

.how-it-works .text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: var(--space-12) 0;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-green);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: var(--text-xl);
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.step-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.process-connector {
    height: 2px;
    background: linear-gradient(90deg, var(--green-400) 0%, var(--green-600) 100%);
    position: relative;
    margin: 0 -1rem;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--green-600);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-connector {
        display: none;
    }
}

/* Course Hero */
.course-hero {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 50%, var(--green-900) 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    color: var(--white);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-price {
    margin: 1.5rem 0;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

.savings {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.urgency-note {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    border-left: 4px solid #fbbf24;
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green-800);
    display: block;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: #000000 !important;
    font-weight: 500;
    line-height: 1.5;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1f2937;
}

/* Value Propositions */
.value-props {
    padding: 4rem 0;
    background-color: white;
}

.unified-props-box {
    background: linear-gradient(145deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.prop-item-unified {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.prop-item-unified .prop-icon {
    background: var(--primary-green-100);
    color: var(--primary-green-600);
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prop-item-unified .prop-icon i {
    width: 24px;
    height: 24px;
}

.prop-item-unified .prop-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.prop-item-unified .prop-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.prop-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
    transform: scale(0);
    transition: transform var(--transition-slow);
    z-index: 1;
}

.prop-item:hover::before {
    transform: scale(1);
}

.prop-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(34, 197, 94, 0.15);
    border-color: var(--green-200);
}

.prop-item > * {
    position: relative;
    z-index: 2;
}

.prop-icon {
    margin-bottom: 1.5rem;
}

.prop-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

.prop-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Be Unique Section */
.be-unique {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--green-50) 100%);
    overflow: hidden;
    position: relative;
}

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

.unique-text {
    padding-right: 2rem;
}

.unique-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--green-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unique-text .section-subtitle {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.unique-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.unique-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.unique-features li i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.unique-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unique-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.3s ease;
}

.unique-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .unique-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .unique-text {
        padding-right: 0;
    }

    .unique-text .section-title,
    .unique-text .section-subtitle {
        text-align: center;
    }

    .unique-features {
        align-items: center;
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .be-unique {
        padding: 4rem 0;
    }

    .unique-text .section-title {
        font-size: 2rem;
    }

    .unique-features li {
        font-size: 1rem;
    }
}

/* Training Options */
.training-options {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px; /* Keep a max-width for overall section alignment */
}

.option-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.option-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
    transition: left var(--transition-slow);
}

.option-card:hover::after {
    left: 100%;
}

.option-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(34, 197, 94, 0.15);
    border-color: var(--green-300);
}

.option-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, var(--green-50) 0%, var(--white) 100%);
    position: relative;
    transform: scale(1.05);
}

.option-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: var(--shadow-green-lg), var(--shadow-2xl);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-600);
}

.price-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: normal;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Forms */
.trial-form-section,
.course-booking-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.form-container,
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-header,
.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title,
.booking-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-subtitle,
.booking-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

.trial-form,
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

/* Enhanced Form Controls */
.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-4) var(--space-4);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    font-family: var(--font-family-primary);
    transition: all var(--transition-base);
    background-color: var(--white);
    position: relative;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1), var(--shadow-md);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--green-400);
    box-shadow: var(--shadow-sm);
}

/* Floating Label Effect */
.form-floating {
    position: relative;
}

.form-floating input,
.form-floating textarea {
    padding: var(--space-5) var(--space-4) var(--space-3) var(--space-4);
}

.form-floating label {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    font-size: var(--text-base);
    color: var(--gray-500);
    transition: all var(--transition-base);
    pointer-events: none;
    background: var(--white);
    padding: 0 var(--space-1);
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: var(--space-3);
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
}

/* Input with Icons */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group .input-icon {
    position: absolute;
    left: var(--space-4);
    color: var(--gray-400);
    transition: color var(--transition-base);
    z-index: 1;
}

.input-group input {
    padding-left: calc(var(--space-4) + 24px + var(--space-2));
}

.input-group input:focus + .input-icon {
    color: var(--primary);
}

/* Custom Checkbox and Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-base);
    background-color: var(--white);
    transition: all var(--transition-base);
    position: relative;
    cursor: pointer;
}

.form-check input[type="radio"] {
    border-radius: 50%;
}

.form-check input[type="checkbox"]:checked,
.form-check input[type="radio"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.form-check input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
}

.form-check label {
    cursor: pointer;
    user-select: none;
    margin: 0;
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: var(--text-sm);
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.success-message {
    color: var(--primary);
    font-size: var(--text-sm);
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Course Locations */
.course-locations {
    padding: 4rem 0;
    background-color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.location-name {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.location-venue {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.course-dates {
    margin-bottom: 1.5rem;
}

.date-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.date-option:last-child {
    border-bottom: none;
}

.date {
    font-weight: 500;
    color: #374151;
}

.status {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.status.available {
    background-color: #d1fae5;
    color: #065f46;
}

.status.limited {
    background-color: #fef3c7;
    color: #92400e;
}

.locations-note {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    background: linear-gradient(145deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(34, 197, 94, 0.1);
    border-color: var(--green-200);
    background: linear-gradient(145deg, var(--white) 0%, var(--green-50) 100%);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--green-600);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-600);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-600);
}

.period {
    font-size: 1.125rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* ROI Calculator */
.roi-calculator {
    padding: 4rem 0;
    background-color: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.result-item {
    background-color: var(--green-600);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.result-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted minmax for better responsiveness */
    gap: 2rem;
    max-width: 1200px; /* Align with other sections */
    margin: 0 auto; /* Center the grid */
}

.testimonial-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Use flexbox for content alignment */
    flex-direction: column;
    justify-content: space-between; /* Push author to bottom */
    height: 100%; /* Ensure equal height cards */
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: left;
    margin-bottom: 1.5rem; /* Add space before author */
}

.rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto; /* Push to the bottom of the card */
}

.author-image {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background-color: white;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-benefits h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.demo-benefits ul {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-benefits li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.demo-benefits li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--green-600);
}

/* CTA Sections - Updated to Green Theme with High Contrast */
.cta-section,
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.cta-stat .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Course Details */
.course-details {
    padding: 4rem 0;
    background-color: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Footer */
/* Premium Footer Styles */
.premium-footer {
    background: var(--white);
    position: relative;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    padding: 2rem 0;
    border-top: 1px solid var(--green-200);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green-700);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    width: 20px;
    height: 20px;
    color: var(--green-600);
}

/* Main Footer */
.footer-main {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600) 0%, var(--green-400) 50%, var(--green-600) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-green-300);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.contact-info a {
    color: var(--gray-300);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--white);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal p {
    margin: 0;
    color: var(--gray-400);
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 1rem;
    }

    .footer-links li,
    .contact-info p {
        justify-content: center;
    }
}

/* Footer */
/* Premium Footer Styles */
.premium-footer {
    background: var(--white);
    position: relative;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    padding: 2rem 0;
    border-top: 1px solid var(--green-200);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green-700);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    width: 20px;
    height: 20px;
    color: var(--green-600);
}

/* Main Footer */
.footer-main {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600) 0%, var(--green-400) 50%, var(--green-600) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-green-300);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.contact-info a {
    color: var(--gray-300);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--white);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal p {
    margin: 0;
    color: var(--gray-400);
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 1rem;
    }

    .footer-links li,
    .contact-info p {
        justify-content: center;
    }
}