:root {
    --primary: #0066FF;
    --primary-light: #00D4FF;
    --dark: #0A1A36;
    --text: #0A1A36;
    --text-muted: #4B5563;
    --bg: #FFFFFF;
    --bg-accent: #F1F5F9;
    --border: rgba(10, 26, 54, 0.08);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 30px 60px rgba(0, 102, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor { display: block; }
}

/* --- MINIMALIST EXTRAORDINARY NAVIGATION --- */
.side-dock {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Continuous DNA Line */
.side-dock::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    width: 1px;
    background: rgba(10, 26, 54, 0.1);
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.nav-dot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-decoration: none;
    transition: 0.4s;
    position: relative;
}

.nav-label {
    position: absolute;
    right: 40px;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    white-space: nowrap;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
}

.dot-circle {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(10, 26, 54, 0.2);
    border-radius: 50%;
    background: #fff;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Hover & Active States */
.nav-dot:hover .nav-label, 
.nav-dot.active .nav-label {
    opacity: 1;
    transform: translateX(0);
}

.nav-dot.active .dot-circle {
    border-color: var(--primary);
    background: var(--primary);
    transform: scale(1.6);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.nav-dot:hover .dot-circle {
    border-color: var(--primary);
}

.nav-dot.active .dot-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}



@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 1024px) {
    .side-dock { display: none; }
}

/* --- HERO: SPLIT IMMERSIVE --- */
.hero-extraordinary {
    min-height: 100vh;
    display: flex;
    position: relative;
}

.hero-left {
    flex: 1.2;
    padding: 120px 10% 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 0.8;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 15s linear;
}

.hero-sub {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-size: 1.15rem;
}

.section-desc {
    font-size: 1.6rem;
}

@media (max-width: 1400px) {
    .hero-title { font-size: 4.2rem; }
    .section-title { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
    .hero-extraordinary { flex-direction: column; height: auto; padding-top: 100px; }
    .hero-left { padding: 40px 5%; align-items: center; text-align: center; }
    .hero-right { height: 400px; clip-path: none; width: 100%; }
    .hero-title { font-size: 3.2rem; letter-spacing: -1px; }
    .section-title { font-size: 3rem; }
}

@media (max-height: 800px) and (min-width: 1025px) {
    .hero-title { font-size: 4rem; margin-bottom: 1.5rem; }
    .hero-left { padding-top: 100px; padding-bottom: 40px; }
    .hero-sub { margin-bottom: 1rem; }
}

.hero-cta-group {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* --- SECTION REVEALS --- */
.section-reveal {
    padding: 80px 10%;
    position: relative;
}

.reveal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
}

.form-wrapper {
    background: #fff;
    padding: 60px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.large-label {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    color: var(--bg-accent);
    position: absolute;
    z-index: -1;
    top: 50px;
    left: 10%;
    opacity: 0.5;
}

/* --- CARDS & PANELS --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .card-grid { grid-template-columns: 1fr; }
    .reveal-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-extraordinary { flex-direction: column; height: auto; }
    .hero-right { height: 400px; clip-path: none; }
    .hero-left { padding: 120px 5% 60px; }
}

.glass-card {
    background: #fff;
    padding: 60px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* --- DNA SECTION --- */
/* --- DNA SECTION --- */
.dna-section {
    background: var(--dark);
    color: #fff;
    padding: 150px 10%;
    position: relative;
    overflow: hidden;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.process-card:hover::before {
    transform: translateX(100%);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.process-card:hover .process-num {
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.industry-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.15);
    transition: 0.4s;
}

.industry-card:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    transition: 0.4s;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* --- PREMIUM UI ELEMENTS --- */
.btn-premium {
    padding: 20px 45px;
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.btn-premium::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    z-index: -1;
    transition: 0.3s;
}

.btn-premium:hover::after {
    bottom: 0;
    right: 0;
}

/* --- FOOTER UI --- */
.footer-high-end {
    padding: 150px 10% 50px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

/* --- PRODUCT SECTION --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border: 1px solid rgba(10, 26, 54, 0.05);
    background-color: var(--dark);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

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

.product-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 26, 54, 0.95) 0%, rgba(10, 26, 54, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    transition: 0.5s;
}

.product-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
    transition: 0.4s;
}

.product-card:hover .product-overlay h3 {
    color: var(--primary-light);
    transform: translateY(-5px);
}

.product-tag {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--dark);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.product-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    max-width: 95%;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    line-height: 1.6;
}

.product-card:hover .product-desc {
    opacity: 1;
    transform: translateY(0);
}


/* --- MOBILE NAVIGATION (APP-STYLE) --- */
.mobile-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 26, 54, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    padding: 10px 25px;
    border-radius: 40px;
    z-index: 3000;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- SECURE FORM STYLES --- */
.form-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid var(--bg-accent);
    outline: none;
    transition: 0.3s;
    font-family: inherit;
    font-size: 1.1rem;
    background: transparent;
    color: var(--dark);
}

.form-input:focus {
    border-bottom-color: var(--primary);
}

.mobile-nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: 0.3s;
}

.mobile-nav-item.active {
    opacity: 1;
    color: var(--primary-light);
}

@media (max-width: 1024px) {
    .side-dock { display: none; }
    .mobile-nav { display: flex; }
    
    .hero-extraordinary {
        flex-direction: column;
        height: auto;
    }

    .hero-left {
        padding: 100px 5% 40px;
        flex: none;
        text-align: center;
    }

    .hero-right {
        height: 350px;
        flex: none;
        clip-path: none !important;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-desc, .section-desc, p, .dna-step p, .product-desc {
        font-size: 16px !important; /* Strictly set to 16px as requested */
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .section-reveal {
        padding: 60px 5%; /* Reduced section white space */
    }

    .reveal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .large-label {
        font-size: 4rem;
        top: -20px;
        left: 5%;
    }

    .card-grid, .feature-grid, .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        height: 350px; /* Reduced card height on mobile */
    }

    .product-desc {
        font-size: 1rem; /* Larger text for readability */
        opacity: 1; /* Always show description on mobile since hover is unavailable */
        transform: translateY(0);
    }

    .dna-step {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .dna-step p {
        font-size: 1rem;
    }

    .step-num {
        font-size: 1.8rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .btn-premium {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .glass-card {
        padding: 30px;
    }

    .mobile-nav {
        gap: 20px;
        padding: 10px 20px;
    }
}


