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

:root {
    --primary: #0bb7bf;
    --primary-dark: #089aa1;
    --secondary: #6366f1;
    --accent: #f59e0b;
    
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border: #2a2a2a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: var(--space-sm) 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 183, 191, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO MAIN ===== */
.hero-main {
    position: relative;
    height: calc(100vh - 100px);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
    transform: translateY(-50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(17, 17, 17, 0.75));
    z-index: 1;
}

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

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(11, 183, 191, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 183, 191, 0.4);
    text-decoration: none;
    color: white;
}

/* ===== PARTNERS CAROUSEL ===== */
.partners-carousel {
    background: white;
    padding: var(--space-lg) 0;
    overflow: hidden;
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, white 100%);
}

.carousel-track {
    display: flex;
    gap: var(--space-2xl);
    animation: scroll 40s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    min-width: 120px;
    padding: 0 var(--space-sm);
    transition: var(--transition);
    opacity: 0.8;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-secondary);
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.stat-box {
    text-align: center;
    padding: var(--space-lg);
    border-left: 2px solid var(--primary);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-number::after {
    content: '+';
    margin-left: 0.25rem;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT MODERN ===== */
.about-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.value-props {
    display: grid;
    gap: var(--space-md);
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.value-prop-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(11, 183, 191, 0.2);
}

.value-prop-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.value-prop-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.about-image {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-badge {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    max-width: 420px;
}

.image-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.badge-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid #f0f0f0;
}

.badge-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.badge-header strong {
    display: block;
    color: var(--bg-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.badge-header span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.quality-link {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-top: 4px;
}

.quality-link:hover {
    color: var(--secondary);
    text-decoration: underline;
    transform: translateY(-1px);
}

.badge-image {
    width: 100%;
}

.iso-certification {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ===== SOLUTIONS MODERN ===== */
.solutions-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.solution-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(11, 183, 191, 0.2);
}

.solution-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(11, 183, 191, 0.05), rgba(99, 102, 241, 0.05));
}

.featured-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.solution-icon i {
    font-size: 2rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.solution-link:hover {
    gap: 1rem;
    text-decoration: none;
}

/* ===== WEEOT SPOTLIGHT ===== */
.weeot-spotlight {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.weeot-spotlight-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.weeot-logo-spotlight {
    max-width: 300px;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 0 20px rgba(11, 183, 191, 0.3));
}

.weeot-spotlight-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.weeot-spotlight-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.weeot-benefits {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.weeot-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    color: var(--text-primary);
    font-size: 1.0625rem;
}

.weeot-benefits i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ===== WEEOT SERVICE LEVELS FULL WIDTH ===== */
.weeot-service-levels-full {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--space-3xl) 0;
    margin-top: var(--space-3xl);
    overflow: hidden;
}

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

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(40%);
}

.service-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.7) 100%);
    z-index: 2;
}

.weeot-service-levels-full .container {
    position: relative;
    z-index: 3;
}

.weeot-service-levels-full h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.weeot-service-levels-full h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.service-levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Legacy service levels - keeping for compatibility */
.weeot-service-levels {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.weeot-service-levels h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
    position: relative;
}

.weeot-service-levels h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.service-level {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-level:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-level:last-child {
    margin-bottom: 0;
}

.level-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(11, 183, 191, 0.3);
}

.level-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.level-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.weeot-cta-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-weeot {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-weeot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 183, 191, 0.4);
}

.btn-weeot-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-weeot-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    text-decoration: none;
}

.weeot-spotlight-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===== WEEOT SLIDESHOW ===== */
.weeot-slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: visible;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 60px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    padding: 0;
    width: 100%;
}

.slide img {
    width: 100% !important;
    height: calc(50% - 8px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: block;
    max-width: none;
}

/* ===== MODERN SLIDESHOW CONTROLS ===== */
.slideshow-controls {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.slide-indicators {
    display: flex;
    gap: 16px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.indicator-bar {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: var(--transition);
    margin-bottom: 6px;
}

.indicator.active .indicator-bar {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(11, 183, 191, 0.5);
}

.indicator-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.indicator.active .indicator-label {
    color: var(--primary);
}

.indicator:hover .indicator-bar {
    background: rgba(255, 255, 255, 0.6);
}

.indicator:hover .indicator-label {
    color: rgba(255, 255, 255, 0.9);
}


/* Legacy video styles - keeping for compatibility */
.weeot-demo-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TEAM MODERN ===== */
.team-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(11, 183, 191, 0.2);
}

/* Avatar styles */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md) auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 25px rgba(11, 183, 191, 0.3);
    transition: var(--transition);
}

.team-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(11, 183, 191, 0.4);
}

.avatar-initials {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legacy image styles - keeping for compatibility */
.team-member img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: var(--space-sm);
}

.team-member h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.team-member p {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    padding: var(--space-3xl) 0;
    margin-top: var(--space-3xl);
    background: var(--bg-primary);
}

.contact-cta-content {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.contact-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.contact-cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-modern {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-row:has(input[name="name"]) {
    grid-template-columns: 1fr 1fr;
}

.form-row:has(input[name="email"]) {
    grid-template-columns: 1fr 1fr;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 183, 191, 0.1);
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 183, 191, 0.4);
}

/* ===== FOOTER MODERN ===== */
.footer-modern {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: var(--space-md);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

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

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

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact li {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
    position: fixed;
    bottom: calc(var(--space-lg) + 60px);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-widget:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25d366;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
}

/* ===== WEEOT MODAL ===== */
.weeot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.weeot-modal.show {
    display: flex;
}

.weeot-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.weeot-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--bg-card);
    border-radius: 20px;
    padding: var(--space-3xl);
    z-index: 10000;
    overflow-y: auto;
}

.weeot-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.weeot-modal-close:hover {
    transform: scale(1.1);
}

.weeot-modal-text {
    margin-bottom: var(--space-xl);
}

.weeot-modal-text p {
    color: var(--text-primary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.weeot-modal-cta {
    margin-bottom: var(--space-xl);
}

.weeot-modal-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.weeot-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 183, 191, 0.4);
    text-decoration: none;
    color: white;
}

.weeot-modal-video {
    border-radius: 12px;
    overflow: hidden;
}

.weeot-modal-video video {
    width: 100%;
    height: auto;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .weeot-spotlight-content {
        grid-template-columns: 1fr;
    }
    
    .weeot-slideshow {
        height: 400px;
        margin-bottom: 50px;
    }
    
    .slide-images {
        gap: 12px;
        padding: 0;
    }
    
    .slide img {
        height: calc(50% - 6px);
        border-radius: 8px;
    }
    
    .slideshow-controls {
        bottom: -40px;
    }
    
    .slideshow-controls {
        padding: 0 15px;
    }
    
    .indicator-bar {
        width: 30px;
    }
    
    .service-levels-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .weeot-service-levels-full h3 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: var(--space-md);
        border-top: 1px solid var(--border);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-main {
        height: calc(100vh - 90px);
        min-height: 350px;
    }
    
    .partners-carousel {
        height: 90px;
        padding: var(--space-sm) 0;
    }
    
    .partner-logo {
        height: 35px;
        min-width: 100px;
    }
    
    .whatsapp-widget {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: calc(var(--space-md) + 50px);
        right: var(--space-md);
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .avatar-initials {
        font-size: 1.5rem;
    }
    
    .form-row:has(input[name="name"]),
    .form-row:has(input[name="email"]) {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .weeot-cta-group {
        flex-direction: column;
    }
    
    .btn-hero,
    .btn-weeot,
    .btn-weeot-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 3rem;
    }
    
    .team-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .team-avatar {
        width: 70px;
        height: 70px;
    }
    
    .avatar-initials {
        font-size: 1.25rem;
    }
    
    .weeot-slideshow {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .slide-images {
        gap: 10px;
        padding: 0;
    }
    
    .slide img {
        height: calc(50% - 5px);
        border-radius: 6px;
    }
    
    .slideshow-controls {
        bottom: -35px;
    }
    
    .slideshow-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .weeot-service-levels {
        padding: var(--space-sm);
        margin-top: var(--space-lg);
    }
    
    .weeot-service-levels h3 {
        font-size: 1.125rem;
        margin-bottom: var(--space-md);
    }
    
    .service-level {
        padding: var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .level-content h4 {
        font-size: 1rem;
    }
    
    .level-content p {
        font-size: 0.85rem;
    }
    
    .slide-images {
        gap: 6px;
        padding: 0;
    }
    
    .slide img {
        height: calc(33.333% - 4px);
    }
    
    .slideshow-controls {
        padding: 0 10px;
    }
    
    .indicator-bar {
        width: 25px;
        height: 2px;
    }
    
    .weeot-service-levels-full {
        padding: var(--space-2xl) 0;
    }
    
    .weeot-service-levels-full h3 {
        font-size: 1.75rem;
    }
    
    .contact-cta {
        margin-top: var(--space-2xl);
    }
}
