/* Modern CSS for Tecno Anca - Redesigned */
:root {
    /* Color Palette - Maintaining original colors */
    --primary: #009cea;
    --primary-light: #1eb4ff;
    --primary-dark: #008bd1;
    --secondary: #364146;
    --accent: #f0b811;
    --accent-2: #22abbd;
    --accent-3: #FF5722;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --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;
    --space-32: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 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);
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Navigation - Complete Redesign */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--space-4) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 156, 234, 0.2);
    padding: var(--space-3) 0;
}

/* Logo styling - White initially (blue background), Blue on scroll (white background) */
.navbar .nav-logo-left img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3)) 
            drop-shadow(0 8px 24px rgba(255, 255, 255, 0.2))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo-left img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(200deg) brightness(104%) contrast(97%) 
            drop-shadow(0 4px 12px rgba(0, 156, 234, 0.3)) 
            drop-shadow(0 8px 24px rgba(0, 156, 234, 0.2))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: var(--space-6);
}

/* Logo Left - Static with Enhanced Shadow */
.nav-logo-left {
    position: relative;
    flex-shrink: 0;
}

.nav-logo-left img {
    height: 45px;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3)) 
            drop-shadow(0 8px 24px rgba(255, 255, 255, 0.2))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.nav-logo-left:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(255, 255, 255, 0.4)) 
            drop-shadow(0 12px 32px rgba(255, 255, 255, 0.3))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: scale(1.02);
}

/* Hover effect when scrolled (blue logo) */
.navbar.scrolled .nav-logo-left:hover img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(200deg) brightness(104%) contrast(97%) 
            drop-shadow(0 6px 16px rgba(0, 156, 234, 0.4)) 
            drop-shadow(0 12px 32px rgba(0, 156, 234, 0.3))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: scale(1.02);
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-tagline {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: var(--font-size-sm);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
}

.nav-link-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 1px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 156, 234, 0.25);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover .nav-link-indicator {
    width: 100%;
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 156, 234, 0.3);
    transform: translateY(-1px);
}

.nav-link.active .nav-link-indicator {
    width: 100%;
}

.nav-link.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 156, 234, 0.4);
}

.nav-link-text {
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    flex-shrink: 0;
}

.nav-cta {
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 156, 234, 0.25);
}

.nav-cta.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.nav-cta::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 0.5s ease;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-cta.primary:hover {
    box-shadow: 0 6px 20px rgba(0, 156, 234, 0.35);
}

.nav-cta.secondary:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 156, 234, 0.25);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--gray-100);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--gray-600);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding-top: 80px;
    padding-bottom: var(--space-8);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 156, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 180, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 156, 234, 0.05) 0%, transparent 50%);
    animation: particles 20s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(0, 156, 234, 0.1);
    border: 1px solid rgba(0, 156, 234, 0.3);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}

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

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.btn {
    display: inline-flex;
    justify-content: center !important; 
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    width: 250px;
    height: 45px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: var(--space-5) var(--space-8);
    font-size: var(--font-size-lg);
}

.hero-trust {
    margin-top: var(--space-8);
}

.hero-trust p {
    font-size: var(--font-size-sm);
    opacity: 0.7;
    margin-bottom: var(--space-4);
}

.trust-logos {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-logo {
    font-size: var(--font-size-sm);
    font-weight: 600;
    opacity: 0.8;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-1 {
    animation: slideInLeft 0.8s ease-out;
}

.card-2 {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.card-3 {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xl);
    color: var(--white);
}

.hero-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.hero-card p {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
    opacity: 0.8;
}

.scroll-arrow {
    font-size: var(--font-size-lg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Title Module */
.section-title-module {
    padding: var(--space-12) 0 var(--space-8);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.section-title-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 156, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 180, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-main-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
    position: relative;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-main-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.decoration-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 1px;
    position: relative;
}

.decoration-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 1px;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

.decoration-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* Services Module */
.services-module {
    padding: var(--space-20) 0;
    background: var(--white);
    position: relative;
}

.services-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 156, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 180, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 156, 234, 0.3);
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* About Section - Redesigned */
.about {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 156, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 180, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(0, 156, 234, 0.1);
    border: 1px solid rgba(0, 156, 234, 0.2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.about-badge i {
    color: var(--primary);
}

.about-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.about-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-values {
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    font-size: var(--font-size-xl);
    color: var(--white);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 156, 234, 0.3);
}

.value-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

.value-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Products Section */
.products {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 156, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 156, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-hero {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

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

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(0, 156, 234, 0.1) 0%, rgba(0, 156, 234, 0.05) 100%);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(0, 156, 234, 0.2);
}

.products-badge i {
    font-size: 1rem;
}

.products-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

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

.products-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.products-showcase {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #007bb5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 64px rgba(0, 156, 234, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 156, 234, 0.3);
}

.product-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 100 !important;
}

.product-title-section {
    flex: 1;
}

.product-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(0, 156, 234, 0.1) 0%, rgba(0, 156, 234, 0.05) 100%);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 156, 234, 0.2);
    transition: all 0.3s ease;
}

.product-badge .badge-icon {
    width: 16px !important;
    height: 16px !important;
    color: var(--primary) !important;
    display: inline-block !important;
    margin-right: var(--space-1);
    flex-shrink: 0;
}

.product-badge:hover {
    background: linear-gradient(135deg, rgba(0, 156, 234, 0.15) 0%, rgba(0, 156, 234, 0.1) 100%);
    border-color: rgba(0, 156, 234, 0.3);
    transform: translateY(-1px);
}

.badge-icon {
    font-size: 0.9rem;
    color: var(--primary);
    margin-right: var(--space-1);
}

.product-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: 1rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(0, 156, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 156, 234, 0.1);
}

.feature-item:hover {
    background: rgba(0, 156, 234, 0.1);
    transform: translateX(5px);
    border-color: rgba(0, 156, 234, 0.2);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white !important;
    font-size: 0.9rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.product-footer {
    display: flex;
    justify-content: center;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 156, 234, 0.3);
}

.product-btn.secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(108, 117, 125, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 156, 234, 0.4);
}

.product-btn.primary:hover {
    box-shadow: 0 8px 24px rgba(0, 156, 234, 0.4);
}

.product-btn.secondary:hover {
    box-shadow: 0 8px 24px rgba(108, 117, 125, 0.4);
}

/* Trust Section */
.trust-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 156, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 180, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

.trust-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

.trust-logo {
    position: relative;
    transition: all 0.3s ease;
}

.trust-logo-bg {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.trust-logo-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-logo-bg span {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-800);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.trust-logo:hover .trust-logo-bg {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.trust-logo:hover .trust-logo-bg::before {
    opacity: 1;
}

.trust-logo:hover .trust-logo-bg span {
    color: var(--white);
}

/* FAQ Section */
.faq {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
}

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

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: var(--space-20) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-info h2 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

.contact-info p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.contact-details {
    margin-bottom: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
}

.contact-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-1);
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 156, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: var(--space-4);
}

.footer-logo p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links h4,
.footer-products h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

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

.footer-links li,
.footer-products li {
    margin-bottom: var(--space-2);
}

.footer-links a,
.footer-products a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-6);
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .service-card {
        padding: var(--space-6);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: var(--font-size-xl);
    }
    
    .service-card h3 {
        font-size: var(--font-size-lg);
    }
    
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .trust-logo-bg {
        padding: var(--space-6);
    }
    
    .trust-logo-bg span {
        font-size: var(--font-size-base);
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--space-6);
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .about-title {
        font-size: var(--font-size-4xl);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .value-card {
        padding: var(--space-6);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-description {
        font-size: 1.1rem;
    }
    
    .product-card {
        padding: var(--space-6);
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .trust-title {
        font-size: 2.5rem;
    }
    
    .trust-description {
        font-size: 1.1rem;
    }
    
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-description {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .nav-brand-text {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(0, 156, 234, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: var(--space-2);
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: var(--space-4);
        border-radius: var(--radius-lg);
        background: var(--gray-50);
        text-align: center;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-logo-left img {
        height: 40px;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        filter: drop-shadow(0 3px 8px rgba(0, 156, 234, 0.4)) 
                drop-shadow(0 6px 16px rgba(0, 156, 234, 0.2))
                drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Updated Trust Section Styles */
.trust-hero {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(0, 156, 234, 0.1) 0%, rgba(0, 156, 234, 0.05) 100%);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(0, 156, 234, 0.2);
}

.trust-badge i {
    font-size: 1rem;
}

.trust-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

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

.trust-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.trust-showcase {
    position: relative;
    z-index: 1;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 156, 234, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-logo {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: var(--space-4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #007bb5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 156, 234, 0.15);
}

.trust-logo:hover::before {
    opacity: 1;
}

.trust-logo-container {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trust-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.trust-logo:hover .trust-logo-img {
    transform: scale(1.05);
}

/* Distributors Info Section */
.distributors-info {
    text-align: center;
    margin: var(--space-12) 0;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.distributors-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

.distributors-info p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.distributors-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.distributor-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.distributor-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 156, 234, 0.1);
}

.distributor-feature .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
}

.distributor-feature .feature-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-2);
}

.distributor-feature .feature-content p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin: 0;
    text-align: left;
}

/* Enhanced trust logo overlay */
.trust-logo-overlay small {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin-top: var(--space-1);
    font-weight: 500;
}

/* Distributors Stats */
.distributors-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-4);
    margin: var(--space-8) 0;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.distributor-stat {
    text-align: center;
    padding: var(--space-3);
}

.distributor-stat .stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-1);
    line-height: 1;
}

.distributor-stat .stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Distributors Benefits */
.distributors-benefits {
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.distributors-benefits h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-6);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 156, 234, 0.1);
}

.benefit-item i {
    color: var(--primary);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    font-weight: 500;
}

/* WhatsApp Contact Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #25d366;
    color: white;
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: var(--font-size-sm);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: whatsapp-pulse 2s infinite;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.whatsapp-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 24px;
    animation: whatsapp-bounce 1.5s infinite;
}

.whatsapp-text {
    white-space: nowrap;
}

/* WhatsApp animations */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 18px;
        font-size: var(--font-size-xs);
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 16px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        padding: 14px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
}

.trust-logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    color: white;
    padding: var(--space-2);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.trust-logo:hover .trust-logo-overlay {
    transform: translateY(0);
}

/* FAQ Section Styles */
.faq {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 156, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 156, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-hero {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

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

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(0, 156, 234, 0.1) 0%, rgba(0, 156, 234, 0.05) 100%);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(0, 156, 234, 0.2);
}

.faq-badge i {
    font-size: 1rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

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

.faq-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-showcase {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: var(--space-8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 156, 234, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: var(--space-6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    border-radius: 12px;
    margin-right: var(--space-4);
    flex-shrink: 0;
}

.faq-icon i {
    color: white;
    font-size: 1.2rem;
}

.faq-content {
    flex: 1;
}

.faq-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 156, 234, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 var(--space-6) var(--space-8);
}

.faq-answer-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.faq-benefits, .faq-features, .faq-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.benefit-item, .feature-item, .process-step {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(0, 156, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 156, 234, 0.1);
}

.benefit-item i, .feature-item i {
    color: var(--primary);
    font-size: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Contact Section Styles */
.contact {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 156, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 156, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

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

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(0, 156, 234, 0.1) 0%, rgba(0, 156, 234, 0.05) 100%);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(0, 156, 234, 0.2);
}

.contact-badge i {
    font-size: 1rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

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

.contact-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-showcase {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    border-radius: 16px;
    margin: 0 auto var(--space-4);
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.contact-card-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-details {
    margin-bottom: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    background: rgba(0, 156, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 156, 234, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 156, 234, 0.1);
    transform: translateX(5px);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: white;
    font-size: 1rem;
}

.contact-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.contact-item-content p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: var(--space-1);
}

.contact-item-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(0, 156, 234, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 156, 234, 0.1);
}

.social-link:hover {
    background: rgba(0, 156, 234, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--primary);
}

.social-link span {
    font-size: 0.8rem;
    font-weight: 600;
}

.form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.form-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid rgba(0, 156, 234, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 156, 234, 0.1);
}

.form-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 156, 234, 0.3);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 156, 234, 0.4);
}

.form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-messages {
    margin-top: var(--space-4);
    text-align: center;
}

.form-messages .loading,
.form-messages .sent-message,
.form-messages .error-message {
    padding: var(--space-3) var(--space-4);
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.form-messages .loading {
    background: rgba(0, 156, 234, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 156, 234, 0.2);
}

.form-messages .sent-message {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-messages .error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-600: #000000;
        --gray-700: #000000;
        --gray-800: #000000;
    }
}

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