﻿/* ============================================
   CSS VARIABLES & BASE STYLES
   ============================================ */
/*
Theme Name: AurexCare Premium
Theme URI: http://aurexcare.com
Author: AurexCare
Description: Premium, high-performance pharmaceutical website design for AurexCare.
Version: 1.0
License: Proprietary
*/

:root {
    /* Primary Colors */
    --primary-navy: #051025;
    --primary-navy-light: #0f1f3d;
    --primary-blue: #0d4d8c;
    --royal-blue: #1565c0;
    --bright-blue: #1e88e5;
    --accent-cyan: #00e5ff;
    --accent-teal: #1de9b6;
    --accent-gold: #ffd700;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --error: #ef4444;
    --success: #10b981;
    --gradient-hero: linear-gradient(135deg, var(--primary-navy) 0%, #0a192f 50%, var(--primary-blue) 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 229, 255, 0.1);
    --shadow-glow: 0 0 25px rgba(0, 229, 255, 0.2), 0 0 50px rgba(0, 229, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all .4s cubic-bezier(.4, 0, .2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-navy);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus Visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    padding: 0 20px;
}

.preloader-logo-wrapper {
    width: 180px;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite ease-in-out;
}

.preloader-logo-img {
    width: 100%;
    height: auto;
    display: block;
}



@media (prefers-reduced-motion: no-preference) {
    .preloader-logo {
        animation: pulse 2s infinite ease-in-out;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 15px rgba(0, 229, 255, 0);
        }
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.6rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 220px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
    margin: -38px 0;
    /* Add a subtle cyan glow to merge with the hero aesthetic */
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.3));
}

.navbar.scrolled .logo-img {
    /* Remove the navy color shift and instead keep colors bright with a sharp shadow for legibility */
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(13, 77, 140, 0.3));
    height: 180px;
    margin: -28px 0;
}

.logo-img-footer {
    height: 350px;
    width: auto;
    display: block;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
}

@media (max-width: 768px) {
    .logo-img {
        height: 120px;
        margin: -18px 0;
    }
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-cyan);
}



.nav-cta {
    display: none;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

.mobile-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.mobile-toggle:active {
    transform: scale(0.9);
}

.navbar.scrolled .mobile-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-navy);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: rgba(5, 16, 37, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-brand {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.mobile-menu.active .mobile-menu-brand {
    opacity: 1;
    transform: translateY(0);
}

.mobile-logo-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
    background: var(--accent-cyan);
    color: #000;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: auto;
}

.mobile-nav-menu li {
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
    /* Staggered delay using the CSS variable set in HTML */
    transition-delay: calc(var(--i) * 0.1s);
}

.mobile-menu.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover {
    color: var(--accent-cyan);
}

.mobile-nav-cta {
    display: inline-flex;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.7s;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.mobile-menu.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.8s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 229, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-visual {
    display: none;
}

/* Hero rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.15);
    pointer-events: none;
}

.ring-1 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
}

.ring-2 {
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
}

@media (prefers-reduced-motion: no-preference) {
    .ring-1 {
        animation: ringPulse 4s ease-in-out infinite;
    }

    .ring-2 {
        animation: ringPulse 6s ease-in-out infinite 1s;
    }

    @keyframes ringPulse {

        0%,
        100% {
            opacity: 0.3;
            transform: scale(1);
        }

        50% {
            opacity: 0.6;
            transform: scale(1.05);
        }
    }
}

.hero-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    width: fit-content;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-badge {
        animation: fadeInUp 0.8s ease forwards;
    }

    .hero-title {
        animation: fadeInUp 0.8s ease 0.1s forwards;
        opacity: 0;
    }

    .hero-subtitle {
        animation: fadeInUp 0.8s ease 0.2s forwards;
        opacity: 0;
    }

    .hero-actions {
        animation: fadeInUp 0.8s ease 0.3s forwards;
        opacity: 0;
    }

    .hero-stats {
        animation: fadeInUp 0.8s ease 0.4s forwards;
        opacity: 0;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4);
}

.btn-small {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    width: auto;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}



.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
}

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

.stat-box .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-number span {
    color: var(--accent-cyan);
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.stat-divider {
    display: none;
}

/* Hero visuals handled in media queries */

/* ============================================
   SECTIONS GENERAL
   ============================================ */
section {
    padding: 4rem 1.5rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.reveal.active .section-eyebrow::before,
.reveal.active .section-eyebrow::after {
    width: 40px;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-content .about-text {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.about-feature:hover {
    transform: translateX(5px);
}

.af-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #e0f7fa, #e0f2f1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.af-text h4 {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.af-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

.lab-to-life-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lab-to-life-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

/* Shimmer Sweep Effect */
.lab-to-life-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(0, 229, 255, 0.05) 50%,
            transparent 55%);
    animation: shimmerSweep 10s infinite linear;
    z-index: 10;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.ltl-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #f8fafc 48%,
            #051025 52%,
            #051025 100%);
    z-index: 1;
}

.ltl-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ltl-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.ltl-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-top: 1rem;
    display: block;
}

.ltl-science .ltl-label {
    color: var(--primary-navy);
    opacity: 0.5;
}

.ltl-result .ltl-label {
    color: var(--accent-cyan);
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* Left Side: The Science */
.ltl-icon-main {
    font-size: 5rem;
    color: var(--primary-blue);
    filter: drop-shadow(0 0 20px rgba(13, 77, 140, 0.15));
    animation: scienceFloat 5s infinite ease-in-out;
}

@keyframes scienceFloat {

    0%,
    100% {
        transform: translateY(0) scale(1.0);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.scientific-particle {
    position: absolute;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

@media (prefers-reduced-motion: no-preference) {
    .p1 {
        width: 10px;
        height: 10px;
        top: -10%;
        left: -20%;
        animation: orbit 8s infinite linear;
    }

    .p2 {
        width: 15px;
        height: 15px;
        bottom: 20%;
        right: -30%;
        animation: orbit 12s infinite linear reverse;
    }

    .p3 {
        width: 8px;
        height: 8px;
        top: 30%;
        right: 40%;
        animation: orbit 10s infinite linear 1s;
    }

    @keyframes orbit {
        from {
            transform: rotate(0deg) translateX(50px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(50px) rotate(-360deg);
        }
    }
}

/* Center: Innovation Stream */
.ltl-stream {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 80px;
    height: 80px;
}

.molecule-structure {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 2rem;
    box-shadow:
        0 0 20px #fff,
        0 0 40px var(--accent-cyan),
        0 0 60px var(--accent-cyan);
    border: 3px solid var(--accent-cyan);
    animation: rotateMolecule 8s infinite linear;
}

@keyframes rotateMolecule {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stream-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: rippleEffect 3s infinite linear;
}

.stream-pulse:nth-child(2) {
    animation-delay: 1s;
}

.stream-pulse:nth-child(3) {
    animation-delay: 2s;
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(5);
        opacity: 0;
    }
}

/* Right Side: The Result */
.ltl-product-box {
    width: 140px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: productPulse 4s infinite alternate ease-in-out;
}

@keyframes productPulse {
    from {
        transform: scale(0.95) translateY(0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    to {
        transform: scale(1.0) translateY(-10px);
        box-shadow: 0 40px 80px rgba(0, 229, 255, 0.2);
    }
}

.ltl-product-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.25), transparent 70%);
    z-index: -1;
    filter: blur(15px);
}

.ltl-tagline {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(15, 23, 37, 0.85);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.exp-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
    margin-top: 5px;
}

/* ============================================
   SEGMENTS
   ============================================ */
.segments {
    background: var(--off-white);
}

.segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.segment-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-align: left;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.segment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1rem;
    transition: gap 0.3s, color 0.3s;
}

.segment-card:hover .segment-link {
    gap: 0.75rem;
    color: var(--accent-cyan);
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 229, 255, 0.3);
}

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

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

.segment-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-gray), #fff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.segment-card:hover .segment-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.segment-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.segment-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.products-header .section-header {
    text-align: center;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(0, 229, 255, 0.4);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-visual {
    transform: scale(1.15) rotate(-5deg);
}

.product-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(20px);
}

/* Product color themes */
.pi-red {
    background: linear-gradient(135deg, #fce4ec, #ffcdd2);
    color: #c62828;
}

.pi-pink {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #ad1457;
}

.pi-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.pi-gold {
    background: linear-gradient(135deg, #fff8e1, #ffe082);
    color: #f57f17;
}

.pi-green {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.pi-teal {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    color: #00695c;
}

.pi-purple {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-navy);
    color: var(--accent-cyan);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-badge {
    background: var(--primary-navy);
    color: var(--accent-gold);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-new {
    background: var(--primary-navy);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.product-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.product-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.product-link:hover {
    gap: 0.75rem;
    color: var(--accent-cyan);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    background: var(--primary-navy);
    color: white;
}

.why-us .section-title {
    color: white;
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.why-icon-large {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   TRUST
   ============================================ */
.trust {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

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

.trust-item i {
    font-size: 1.25rem;
    color: var(--accent-teal);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.contact-info {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: white;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper {
    padding: 2rem;
}

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

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-navy);
}

.form-group label span {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s;
    background: #f0f9ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--error);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--success);
}

.error-message {
    display: none;
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group input:invalid:not(:placeholder-shown)~.error-message,
.form-group select:invalid:not(:placeholder-shown)~.error-message,
.form-group textarea:invalid:not(:placeholder-shown)~.error-message {
    display: block;
}

.help-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.char-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    position: relative;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 77, 140, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn.loading .btn-text,
.submit-btn.loading i {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: block;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.6);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-navy);
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-cyan);
    color: #000;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-cyan);
    margin-top: 4px;
    font-size: 0.9rem;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   TABLET
   ============================================ */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }

    .hero-container {
        text-align: left;
        padding: 0 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 500px;
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

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

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

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

    .trust-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }

    .contact-info {
        padding: 3rem;
    }

    .contact-form-wrapper {
        padding: 3rem;
    }

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

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

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

/* ============================================
   DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        text-align: left;
    }

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

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 600px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        margin-top: 4rem;
        gap: 3rem;
    }

    .stat-box {
        text-align: left;
    }

    .stat-box .stat-number {
        font-size: 2.5rem;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
    }

    .hero-visual {
        display: flex;
        position: relative;
        height: 500px;
        align-items: center;
        justify-content: center;
        perspective: 1000px;
    }

    .hero-image-main {
        width: 300px;
        height: 300px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 6rem;
        color: rgba(0, 229, 255, 0.2);
        position: relative;
        backdrop-filter: blur(5px);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
        transition: transform 0.1s ease-out;
        animation: auraPulse 4s infinite ease-in-out;
    }

    .hero-image-main i {
        background: linear-gradient(160deg, #b8f8ff 0%, #5fefff 35%, #00e5ff 60%, #8df9ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
        animation: heartShine 3.8s ease-in-out infinite;
    }

    @keyframes auraPulse {

        0%,
        100% {
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.2), 0 0 0 rgba(0, 229, 255, 0);
        }

        50% {
            box-shadow: 0 0 70px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 229, 255, 0.1);
        }
    }

    @keyframes heartShine {

        0%,
        100% {
            filter: brightness(1) saturate(1);
        }

        50% {
            filter: brightness(1.18) saturate(1.25);
        }
    }

    .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: transform 0.1s ease-out;
    }

    .fe-icon {
        width: 40px;
        height: 40px;
        background: var(--accent-cyan);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 1.1rem;
    }

    .fe-text {
        font-weight: 600;
        font-size: 0.9rem;
        display: block;
    }

    .fe-subtext {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .floating-element-1 {
        top: 10%;
        left: -5%;
        animation: orbit1 20s infinite linear;
    }

    .floating-element-2 {
        bottom: 15%;
        right: -5%;
        animation: orbit2 25s infinite linear;
    }

    .floating-element-3 {
        top: 60%;
        left: -15%;
        animation: orbit3 22s infinite linear;
    }
}

/* Orbit Animations (Outside media query for better compatibility) */
@keyframes orbit1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -20px) rotate(2deg);
    }

    50% {
        transform: translate(10px, 30px) rotate(-2deg);
    }

    75% {
        transform: translate(-30px, 10px) rotate(1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-40px, 20px) rotate(-3deg);
    }

    66% {
        transform: translate(20px, -40px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, 40px) rotate(4deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    height: 450px;
}

.lab-microscope {
    font-size: 6rem;
}

.lab-flask {
    font-size: 3rem;
}

.lab-dna {
    font-size: 2.5rem;
}

.lab-atom {
    font-size: 2.8rem;
}

.lab-vial {
    font-size: 2.2rem;
}

.experience-badge {
    left: -30px;
    right: auto;
    bottom: -30px;
    padding: 1.5rem;
    min-width: 150px;
}

.exp-number {
    font-size: 2.5rem;
}

.exp-text {
    font-size: 0.8rem;
}

.segments-grid {
    grid-template-columns: repeat(4, 1fr);
}

.segment-card {
    padding: 2rem;
    text-align: center;
}

.segment-icon {
    margin: 0 auto 1.5rem;
}

.products-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.products-header .section-header {
    text-align: left;
}

.products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-image {
    height: 220px;
}

.product-visual {
    font-size: 4rem;
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
}

.why-card {
    padding: 2rem;
}

.why-icon-large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.trust-container {
    justify-content: space-around;
}

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

@media (min-width: 1440px) {
    .hero-image-main {
        width: 350px;
        height: 350px;
        font-size: 8rem;
    }
}

/* Print */
@media print {

    .navbar,
    .mobile-toggle,
    .hero-visual,
    .preloader,
    .mobile-menu,
    .mobile-menu-overlay,
    .back-to-top {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}

/* ============================================
   DETAIL PAGES
   ============================================ */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 800;
}

.page-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.page-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: var(--accent-cyan);
}

.detail-content {
    background: white;
    padding: 5rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.detail-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.detail-text h2 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    font-weight: 700;
}

.detail-text h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.detail-text p {
    margin-bottom: 1.5rem;
}

.detail-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.detail-text ul li {
    margin-bottom: 0.75rem;
    position: relative;
    list-style: none;
}

.detail-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: -1.5rem;
    top: 2px;
}

.sidebar-widget {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-nav a .coming-soon-badge {
    margin-left: auto;
    padding: 1px 7px;
    font-size: 0.52rem;
    line-height: 1;
    letter-spacing: 0.35px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--primary-navy);
    color: white;
    transform: translateX(5px);
    border-color: var(--primary-navy);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: white;
    text-align: center;
}

/* ============================================
   ODD SLIDES BLUE THEME 
   ============================================ */
#segments,
#why-us {
    background: var(--gradient-hero) !important;
    background-size: cover;
    color: white !important;
    position: relative;
}

/* Ensure background pattern consistency if needed */
#segments::before,
#why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    pointer-events: none;
}

/* Header Text Colors */
#segments .section-eyebrow,
#why-us .section-eyebrow,
#contact .section-eyebrow {
    color: var(--accent-cyan) !important;
}

#segments .section-title,
#why-us .section-title {
    color: white !important;
}

#segments .section-subtitle,
#why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix Card Text Color (Segments are white cards, need dark text) */
#segments .segment-card {
    color: var(--text-secondary) !important;
}

#segments .segment-title {
    color: var(--primary-navy) !important;
}

/* Why Us (Glass cards - text should be white) */
#why-us .why-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#why-us .why-card h3 {
    color: white !important;
}

#why-us .why-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}


.cta-widget h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* User Request: Light Blue Background Only for Segments */
#segments .segment-card {
    background: #e0f7fa !important;
    /* Light cyan/blue */
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ============================================
   MOBILE ACCESSIBILITY (Larger Text)
   ============================================ */
@media (max-width: 768px) {

    /* Keep text readable on small screens without oversized jumps */
    html {
        font-size: 16px !important;
    }

    /* Comfortable body text rhythm */
    p,
    .detail-text p,
    .about-text,
    .product-desc,
    .segment-desc,
    .why-card p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    /* Preserve hierarchy without overflowing */
    h1,
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem) !important;
    }

    h2,
    .section-title,
    .detail-text h2 {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }

    h3,
    .segment-card h3,
    .product-name,
    .detail-text h3 {
        font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
    }

    /* Subtitles and navigation */
    .hero-subtitle,
    .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    .mobile-nav-menu a {
        font-size: 1.35rem !important;
        padding: 0.75rem 0 !important;
    }

    .mobile-nav-cta {
        font-size: 1rem !important;
        padding: 0.95rem 1.25rem !important;
    }

    .hero {
        min-height: auto;
        padding: 88px 0 48px;
    }

    .mobile-menu {
        backdrop-filter: blur(14px) saturate(160%);
        -webkit-backdrop-filter: blur(14px) saturate(160%);
    }

    /* Stack grid columns cleanly on mobile */
    .about-grid,
    .segments-grid,
    .products-grid,
    .why-grid,
    .footer-grid,
    .detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .about-image {
        height: 300px !important;
    }

    .product-image {
        height: 250px !important;
    }


}
