/* ============================================================
   OctoX Website – Main Stylesheet
   ============================================================
   TABLE OF CONTENTS
   ----------------------------------------------------------
   1.  CSS Variables
   2.  Reset & Base Styles
   3.  Accessibility
   4.  Navigation
   5.  Hero Section
   6.  Stats Section
   7.  Features Section (3D Icons)
   8.  Why Choose OctoX (3D Icons)
   9.  Values Section (3D Icons)
   10. Contact Page
   11. About Page
   12. Footer
   13. Cookie Consent
   14. Privacy Policy Page
   15. Responsive – Tablet  (max 1024px)
   16. Responsive – Mobile  (max 768px)
   17. Responsive – Small   (max 480px)
   18. Responsive – Tiny    (max 360px)
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --primary-gradient:   linear-gradient(135deg, #3F59DA 0%, #51C9DB 100%);
    --secondary-gradient: linear-gradient(135deg, #51C9DB 0%, #3F59DA 100%);
    --accent-color:       #51C9DB;
    --primary-color:      #35C2DB;
    --dark-bg:            #ffffff;
    --card-bg:            rgba(255, 255, 255, 0.95);
    --text-primary:       #1a1a1a;
    --text-secondary:     #6b7280;
    --glow-color:         rgba(107, 95, 255, 0.3);
    --border-color:       #51C9DB;
    --bg-light:           #f9fafb;
    --success-color:      #10b981;
    --error-color:        #ef4444;
    --warning-color:      #f59e0b;
}


/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
    height: auto;
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* iOS Safari scroll fix */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
        min-height: -webkit-fill-available;
    }
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}


/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */

/* Skip to main content – appears on keyboard focus */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}
.skip-link:focus {
    top: 0;
}

/* Scroll progress bar at top of viewport */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--secondary-gradient);
    z-index: 9999;
    transition: width 0.1s ease;
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.30s ease;
}
.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* FIX: added missing semicolon after font-family */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    margin-right: 2.5rem;
    font-family: 'Orbitron', sans-serif;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--secondary-gradient);
    transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a:focus {
    color: var(--accent-color);
    outline: none;
}
.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--primary-color);
}

.cta-button {
    padding: 0.6rem 1rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--glow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow-color);
}

/* Hamburger – hidden on desktop, shown on mobile via media query */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 5% 4rem;
    background: linear-gradient(135deg, #4169E1 0%, #00CED1 100%);
    overflow: hidden;
}

.ai-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero glass-morphism content box */
.hero-content-redesign {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content-redesign h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* FIX: was #8c5aef4 (invalid 7-digit hex) — corrected to #8c5aef */
.gradient-accent {
    background: linear-gradient(135deg, #8c5aef 0%, #8c5aef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: none;
}

.hero-content-redesign p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons-redesign {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FIX: original used display:grid which broke the buttons – corrected to inline-flex */
.btn-get-started,
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3rem;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #00334e;
    opacity: 0.9;
}
.btn-get-started:hover,
.btn-learn-more:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    background: white;
    color: #00334e;
    box-shadow: 0 20px 50px rgba(65, 105, 225, 0.6),
                0 0 40px rgba(0, 206, 209, 0.5);
}
.btn-get-started:active,
.btn-learn-more:active {
    transform: translateY(-2px) scale(1.02);
}

/* Shine sweep on GET STARTED */
.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.btn-get-started:hover::before { left: 100%; }

/* Subtle pulse on load */
@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4), 0 0 20px rgba(0, 206, 209, 0.2); }
    50%       { box-shadow: 0 10px 40px rgba(65, 105, 225, 0.6), 0 0 30px rgba(0, 206, 209, 0.4); }
}
.btn-get-started {
    animation: buttonPulse 3s ease-in-out infinite;
}
.btn-get-started:hover {
    animation: none;
}

.btn-get-started span,
.btn-learn-more span {
    position: relative;
    z-index: 1;
}


/* ============================================================
   6. STATS SECTION
   ============================================================ */
.stats {
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 4px solid transparent;
}
.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.2);
    border-color: var(--accent-color);
}
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ============================================================
   7. FEATURES SECTION  (3D animated icons)
   ============================================================ */

/* Shared section wrapper */
.section {
    position: relative;
    padding: 4rem 5%;
    z-index: 2;
}

/* Shared heading styles used across all pages */
.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    padding: 5rem 5%;
    background: white;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.03), rgba(90, 239, 209, 0.03));
    border-radius: 30px;
    border: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #4FBEFF;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
}
.feature-card:hover::before { opacity: 0.3; }

.feature-icon-3d {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.08), rgba(90, 239, 209, 0.08));
    border-radius: 25px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(63, 89, 218, 0.15);
    animation: floatIcon 4s ease-in-out infinite;
}
.feature-icon-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    background: linear-gradient(45deg, #6B5FFF, #4FBEFF, #5AEFD1, #6B5FFF);
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    animation: gradientRotate 4s ease infinite;
    transition: opacity 0.3s ease;
}
@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
.feature-card:hover .feature-icon-3d::before { opacity: 1; }

.feature-icon-3d svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 8px 20px rgba(63, 89, 218, 0.3));
    transition: all 0.5s ease;
}
.feature-card:hover .feature-icon-3d {
    transform: translateY(-15px) rotateY(15deg) scale(1.1);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.15), rgba(90, 239, 209, 0.15));
    box-shadow: 0 25px 60px rgba(63, 89, 218, 0.3);
    animation: pulseIconGlow 2s ease-in-out infinite;
}
.feature-card:hover .feature-icon-3d svg {
    filter: drop-shadow(0 15px 35px rgba(63, 89, 218, 0.5));
    transform: rotateZ(-5deg) scale(1.05);
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0)     rotate(0deg); }
    33%       { transform: translateY(-10px) rotate(2deg); }
    66%       { transform: translateY(-5px)  rotate(-2deg); }
}
@keyframes pulseIconGlow {
    0%, 100% { box-shadow: 0 25px 60px rgba(63, 89, 218, 0.3); }
    50%       { box-shadow: 0 25px 70px rgba(90, 239, 209, 0.5), 0 0 40px rgba(90, 239, 209, 0.3); }
}

/* Staggered animation delays – up to 3 cards on this page */
.feature-card:nth-child(1) .feature-icon-3d { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon-3d { animation-delay: 0.3s; }
.feature-card:nth-child(3) .feature-icon-3d { animation-delay: 0.6s; }

.feature-content { position: relative; z-index: 2; }
.feature-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}
.feature-card:hover .feature-content h3 { color: #51C9DB; }
.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   8. WHY CHOOSE OCTOX  (3D icons – about / services pages)
   ============================================================ */

.why-choose-alt {
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.03), rgba(90, 239, 209, 0.03));
}
.why-choose-container { max-width: 1400px; margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.why-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.15);
    border: 4px solid #4FBEFF;
}
.why-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.why-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #51C9DB;
}
.why-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* About-features grid (horizontal icon+text rows) */
.why-choose-features-section { padding: 5rem 5%; }
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}
.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(63, 89, 218, 0.2);
}

.about-icon-3d {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.08), rgba(90, 239, 209, 0.08));
    border-radius: 15px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    animation: floatFeature 3s ease-in-out infinite;
}
.about-icon-3d::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    background: linear-gradient(135deg, #6B5FFF, #4FBEFF, #5AEFD1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.about-feature:hover .about-icon-3d::before { opacity: 1; }
.about-icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(63, 89, 218, 0.3));
    transition: all 0.4s ease;
}
.about-feature:hover .about-icon-3d {
    transform: translateY(-5px) rotateY(10deg) scale(1.05);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.15), rgba(90, 239, 209, 0.15));
    animation-play-state: paused;
}
.about-feature:hover .about-icon-3d svg {
    filter: drop-shadow(0 8px 20px rgba(63, 89, 218, 0.5));
    transform: rotateZ(-3deg);
}

@keyframes floatFeature {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}
.about-feature:nth-child(1) .about-icon-3d { animation-delay: 0s; }
.about-feature:nth-child(2) .about-icon-3d { animation-delay: 0.2s; }
.about-feature:nth-child(3) .about-icon-3d { animation-delay: 0.4s; }
.about-feature:nth-child(4) .about-icon-3d { animation-delay: 0.6s; }
.about-feature:nth-child(5) .about-icon-3d { animation-delay: 0.8s; }
.about-feature:nth-child(6) .about-icon-3d { animation-delay: 1s; }

.about-feature-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}
.about-feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Emoji icon variant used on some pages */
.about-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.1), rgba(90, 239, 209, 0.1));
    border-radius: 12px;
}

/* 3D why-icon (index page / about page feature items) */
.why-icon-3d {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.08), rgba(90, 239, 209, 0.08));
    border-radius: 25px;
    padding: 0.5rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 8px 25px rgba(63, 89, 218, 0.15);
    animation: floatWhy 4s ease-in-out infinite;
}
.why-icon-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    background: linear-gradient(45deg, #6B5FFF, #4FBEFF, #5AEFD1, #6B5FFF);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: borderGradient 4s ease infinite;
}
@keyframes borderGradient {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
.why-item:hover .why-icon-3d::before { opacity: 1; }
.why-icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(63, 89, 218, 0.3));
    transition: all 0.5s ease;
}
.why-item:hover .why-icon-3d {
    transform: translateY(-15px) rotateY(15deg) scale(1.1);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.15), rgba(90, 239, 209, 0.15));
    box-shadow: 0 20px 50px rgba(63, 89, 218, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}
.why-item:hover .why-icon-3d svg {
    filter: drop-shadow(0 15px 35px rgba(63, 89, 218, 0.5));
    transform: rotateZ(-5deg) scale(1.05);
}
@keyframes floatWhy {
    0%, 100% { transform: translateY(0)     rotate(0deg); }
    33%       { transform: translateY(-10px) rotate(2deg); }
    66%       { transform: translateY(-5px)  rotate(-2deg); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 20px 50px rgba(63, 89, 218, 0.3); }
    50%       { box-shadow: 0 20px 60px rgba(90, 239, 209, 0.5), 0 0 40px rgba(90, 239, 209, 0.3); }
}
.why-item:nth-child(1) .why-icon-3d { animation-delay: 0s; }
.why-item:nth-child(2) .why-icon-3d { animation-delay: 0.3s; }
.why-item:nth-child(3) .why-icon-3d { animation-delay: 0.6s; }
.why-item:nth-child(4) .why-icon-3d { animation-delay: 0.9s; }
.why-item:nth-child(5) .why-icon-3d { animation-delay: 1.2s; }
.why-item:nth-child(6) .why-icon-3d { animation-delay: 1.5s; }


/* ============================================================
   9. VALUES SECTION  (3D icons – about page)
   ============================================================ */
.values-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}
.values-container { max-width: 1400px; margin: 0 auto; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.15);
    border: 4px solid #4FBEFF;
}
.value-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #51C9DB;
}
.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.value-icon-3d {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    animation: float-icon 3s ease-in-out infinite;
}
.value-icon-3d::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #6B5FFF, #4FBEFF, #5AEFD1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.value-card:hover .value-icon-3d::before { opacity: 1; }
.value-icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(63, 89, 218, 0.3));
    transition: all 0.4s ease;
}
.value-card:hover .value-icon-3d {
    transform: translateY(-10px) rotateY(10deg) scale(1.05);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.1), rgba(90, 239, 209, 0.1));
    animation: pulse-glow-value 2s ease-in-out infinite;
}
.value-card:hover .value-icon-3d svg {
    filter: drop-shadow(0 10px 25px rgba(63, 89, 218, 0.5));
    transform: rotateZ(5deg);
}
@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes pulse-glow-value {
    0%, 100% { box-shadow: 0 0 20px rgba(63, 89, 218, 0.3); }
    50%       { box-shadow: 0 0 40px rgba(90, 239, 209, 0.6); }
}
.value-card:nth-child(1) .value-icon-3d { animation-delay: 0s; }
.value-card:nth-child(2) .value-icon-3d { animation-delay: 0.2s; }
.value-card:nth-child(3) .value-icon-3d { animation-delay: 0.4s; }
.value-card:nth-child(4) .value-icon-3d { animation-delay: 0.6s; }
.value-card:nth-child(5) .value-icon-3d { animation-delay: 0.8s; }
.value-card:nth-child(6) .value-icon-3d { animation-delay: 1s; }


/* ============================================================
   10. CONTACT PAGE
   ============================================================ */

.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3F59DA 0%, #5AEFD1 100%);
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}
.contact-hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.contact-floating-icons {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.contact-hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.contact-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.contact-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
}

.contact-main-section {
    padding: 5rem 5%;
    background: white;
    position: relative;
}
.contact-main-container { max-width: 1400px; margin: 0 auto; }

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}
.contact-info-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
    border-radius: 20px;
    border: 4px solid transparent;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.15);
}
.contact-info-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.1), rgba(90, 239, 209, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-info-icon { transform: scale(1.1) rotate(5deg); }
.contact-info-icon svg { filter: drop-shadow(0 4px 12px rgba(63, 89, 218, 0.3)); }
.contact-info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.contact-info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.contact-info-card a:hover { color: var(--accent-color); }
.contact-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
    font-style: italic;
}

.scroll-to-form-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.scroll-to-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 89, 218, 0.4);
}

.contact-form-section { max-width: 900px; margin: 0 auto 8rem; }
.contact-form-header { text-align: center; margin-bottom: 2rem; }
.contact-form-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-form-header p { color: var(--text-secondary); font-size: 1.1rem; }

.contact-form-styled {
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.03), rgba(90, 239, 209, 0.03));
    padding: 4rem;
    border-radius: 20px;
    border: 2px solid #4FBEFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #4FBEFF;
    border-radius: 30px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(90, 239, 209, 0.1);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234FBEFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.submit-btn-styled {
    width: 100%;
    padding: 1.2rem;
    background: #51C9DB;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(63, 89, 218, 0.3);
}
.submit-btn-styled:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(63, 89, 218, 0.5);
}
.submit-btn-styled:disabled { opacity: 0.7; cursor: not-allowed; }

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}
/* FIX: was "border: 2px solid#4FBEFF" (missing space) */
.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #4FBEFF;
}
.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}


/* ============================================================
   11. ABOUT PAGE
   ============================================================ */

.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}
.about-hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.about-floating-icons {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.about-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.about-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.company-overview { padding: 6rem 5%; background: white; }
.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}
.overview-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.stat-box {
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(63, 89, 218, 0.2);
}
.stat-number-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.stat-label-large {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.vision-mission-section-alt { padding: 6rem 5%; background: var(--bg-light); }
.vm-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.vm-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.vm-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: var(--primary-gradient);
}
.vm-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.15);
}
.vm-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.vm-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #51C9DB;
}
.vm-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.our-approach-section { padding: 6rem 5%; background: white; }
.approach-container { max-width: 1400px; margin: 0 auto; }
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}
.approach-card {
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.03), rgba(90, 239, 209, 0.03));
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}
.approach-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
}
.approach-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.approach-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #51C9DB;
}
.approach-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.leadership-section { padding: 6rem 5%; background: white; }
.leadership-container { max-width: 1400px; margin: 0 auto; }
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}
.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.15);
    border: 4px solid #4FBEFF;
}
.leader-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #6B5FFF, #4FBEFF);
}
.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.leader-card:hover .leader-image img { transform: scale(1.1); }
.leader-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
    color: #51C9DB;
}
.leader-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}
.leader-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 0 1.5rem 2rem;
}

/* CTA banner – shared across pages */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #3F59DA 0%, #5AEFD1 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.cta-floating-icons {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Floating icon animation – shared by about / contact / CTA sections */
.float-icon {
    position: absolute;
    animation: float var(--duration, 20s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
    animation-fill-mode: forwards;
}
@keyframes float {
    0%   { transform: translate(0, 0) rotate(0deg);          opacity: 0; }
    10%  { opacity: 0.8; }
    50%  { transform: translate(30px, -40px) rotate(180deg); opacity: 0.6; }
    90%  { opacity: 0.8; }
    100% { transform: translate(0, 0) rotate(360deg);        opacity: 0; }
}
@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); }
    50%       { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)); }
}
.float-icon svg { animation: pulse-glow 3s ease-in-out infinite; }


/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
    background: white;
    color: var(--text-primary);
    padding: 2rem 5% 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-brand {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    text-align: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-logo img { width: 65px; height: 65px; border-radius: 50%; }

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.social-links a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: #3F59DA;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(63, 89, 218, 0.2);
}
.social-links a:hover {
    background: #3F59DA;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(63, 89, 218, 0.4);
}
.social-links svg { width: 22px; height: 22px; }

/* FIX: .footer-social-links previously had color same as background (#0c1b2a on #0c1b2a) – icons were invisible */
.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-social-links a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.footer-social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 95, 255, 0.3);
}
.footer-social-links svg { width: 20px; height: 20px; }

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-contact-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
    border-radius: 20px;
    border: 4px solid transparent;
    transition: all 0.3s ease;
}
.footer-contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(63, 89, 218, 0.15);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.08), rgba(90, 239, 209, 0.08));
}
.footer-contact-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.1), rgba(90, 239, 209, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-contact-card:hover .footer-contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.2), rgba(90, 239, 209, 0.2));
}
.footer-contact-icon svg { filter: drop-shadow(0 4px 12px rgba(63, 89, 218, 0.3)); }
.footer-contact-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #51C9DB;
    font-weight: 700;
}
.footer-contact-card p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.footer-contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-contact-card a:hover { color: var(--accent-color); }
.footer-note { font-size: 0.85rem; color: var(--text-secondary); opacity: 0.9; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-bottom p { font-size: 1rem; color: var(--text-secondary); margin: 0; }
.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--accent-color); }


/* ============================================================
   13. COOKIE CONSENT
   ============================================================ */

.cookie-consent {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}
.cookie-consent.show { transform: translateY(0); }

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cookie-consent-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.cookie-consent-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-consent-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}
.cookie-btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 95, 255, 0.3);
}
.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 95, 255, 0.4);
}
.cookie-btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.cookie-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}
.cookie-btn-text { background: transparent; color: var(--text-secondary); text-decoration: underline; }
.cookie-btn-text:hover { color: var(--primary-color); }

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.cookie-modal.show { display: flex; }
.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 15px 15px 0 0;
}
.cookie-modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 0;
}
.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.cookie-modal-close:hover { background: rgba(255, 255, 255, 0.2); }
.cookie-modal-body { padding: 1.5rem; }
.cookie-category { padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header { display: flex; align-items: flex-start; gap: 1rem; }
.cookie-category-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.cookie-category-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.required { font-size: 0.85rem; color: #666; font-weight: normal; }

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px; height: 26px;
    flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}
.cookie-toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px; width: 20px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background-color: var(--primary-color); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(24px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}


/* ============================================================
   14. PRIVACY POLICY PAGE
   ============================================================ */
.privacy-page { padding-top: 80px; }

.privacy-hero {
    background: linear-gradient(135deg, #3F59DA 0%, #51C9DB 100%);
    padding: 6rem 5% 4rem;
    text-align: center;
    color: white;
}
.privacy-hero-content { max-width: 900px; margin: 0 auto; }
.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.privacy-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}
.privacy-hero p { font-size: 1.2rem; opacity: 0.95; }

.privacy-content { padding: 4rem 5%; background: white; }
.privacy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}
.privacy-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}
.privacy-toc h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.privacy-toc ul { list-style: none; }
.privacy-toc ul li { margin-bottom: 0.75rem; }
.privacy-toc ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}
.privacy-toc ul li a:hover { color: var(--accent-color); padding-left: 0.5rem; }

.privacy-main { max-width: 900px; }
.privacy-section { margin-bottom: 4rem; scroll-margin-top: 100px; }
.privacy-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}
.privacy-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #51C9DB;
    margin: 2rem 0 1rem;
}
.privacy-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}
.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.privacy-section ul { margin: 1rem 0 1rem 2rem; line-height: 1.8; }
.privacy-section ul li { color: var(--text-secondary); margin-bottom: 0.5rem; }
.privacy-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.privacy-section a:hover { color: var(--primary-color); text-decoration: underline; }
.emphasis { color: var(--primary-color); font-weight: 700; }

.info-box,
.highlight-box,
.contact-box {
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.08), rgba(90, 239, 209, 0.08));
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 1.5rem 0;
}
.highlight-box {
    background: linear-gradient(135deg, rgba(81, 201, 219, 0.1), rgba(90, 239, 209, 0.1));
    border-left-color: #51C9DB;
}
.contact-box {
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
}

.lawful-basis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.lawful-basis-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(81, 201, 219, 0.2);
    transition: all 0.3s ease;
}
.lawful-basis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(63, 89, 218, 0.15);
    border-color: var(--accent-color);
}
.lawful-basis-card h4 { color: var(--accent-color); margin: 0 0 0.75rem; }

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.security-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.05), rgba(90, 239, 209, 0.05));
    border-radius: 12px;
    transition: all 0.3s ease;
}
.security-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(63, 89, 218, 0.1), rgba(90, 239, 209, 0.1));
}
.security-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.security-item p { font-size: 0.9rem; margin: 0; }

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.right-card {
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(81, 201, 219, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}
.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(63, 89, 218, 0.15);
    border-color: var(--accent-color);
}
.right-card h4 { color: var(--accent-color); font-size: 1rem; margin: 0 0 0.5rem; }
.right-card p { font-size: 0.85rem; margin: 0; }


/* ============================================================
   15. RESPONSIVE – TABLET  (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .overview-container    { grid-template-columns: 1fr; gap: 3rem; }
    .overview-stats        { grid-template-columns: repeat(2, 1fr); }
    .vm-container          { grid-template-columns: 1fr; gap: 2rem; }
    .privacy-container     { grid-template-columns: 1fr; gap: 2rem; }
    .privacy-toc           { position: static; order: -1; }
    .about-features,
    .why-choose-grid       { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
}


/* ============================================================
   16. RESPONSIVE – MOBILE  (max 768px)
   ============================================================
   All 768px rules live here – no duplicate blocks anywhere.
   ============================================================ */
@media (max-width: 768px) {

    /* ── Navigation ── */
    nav { padding: 1rem 4%; }
    .logo span { font-size: 1.4rem; }
    .logo img  { width: 40px; height: 40px; }

    /* Show hamburger; slide-in nav menu */
    .mobile-menu-btn { display: block; }
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .cta-button { padding: 0.5rem 0.8rem; font-size: 0.8rem; }

    /* ── Hero ── */
    .hero { padding: 80px 4% 2rem; min-height: 100vh; overflow: hidden; }
    .hero-content-redesign { max-width: 100%; padding: 1.5rem; }
    .hero-content-redesign h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 1.5rem; }
    .hero-content-redesign p  { font-size: 1rem; margin-bottom: 2rem; }
    .hero-buttons-redesign { flex-direction: column; gap: 1rem; width: 100%; }
    /* FIX: was 9.9rem – corrected to 0.9rem */
    .btn-get-started,
    .btn-learn-more { width: 100%; padding: 1.1rem 2rem; font-size: 0.9rem; }

    /* ── Stats ── */
    .stats { padding: 3rem 4%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2.5rem; }
    .stat-label  { font-size: 0.8rem; letter-spacing: 1px; }

    /* ── Features ── */
    .features-section { padding: 3rem 4%; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
    .feature-card  { padding: 1.5rem; max-width: 100%; }
    .feature-icon-3d { width: 80px; height: 80px; animation: none; }
    .feature-icon-3d svg { width: 55px; height: 55px; }
    .feature-card:hover .feature-icon-3d { transform: translateY(-10px) scale(1.05); }
    .feature-content h3 { font-size: 1.2rem; }
    .feature-content p  { font-size: 0.9rem; }

    /* ── Section headings ── */
    .section-title    { font-size: clamp(1.5rem, 5vw, 2.5rem); }
    .section-subtitle { font-size: 0.95rem; }

    /* ── Why / Values icons – disable float on mobile for performance ── */
    .why-icon-3d    { width: 80px; height: 80px; padding: 0.4rem; animation: none; }
    .value-icon-3d  { width: 70px; height: 70px; padding: 0.8rem; animation: none; }
    .about-icon-3d  { width: 60px; height: 60px; min-width: 60px; animation: none; }
    .why-item:hover   .why-icon-3d  { transform: translateY(-5px) scale(1.05); }
    .value-card:hover .value-icon-3d { transform: scale(1.05); }
    .about-feature:hover .about-icon-3d { transform: scale(1.05); }

    /* ── Contact page ── */
    .contact-hero { padding: 5rem 5% 3rem; }
    .contact-main-section { padding: 3rem 4%; }
    .contact-form-styled { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-info-grid { grid-template-columns: 1fr; }

    /* ── About page ── */
    .about-hero { padding: 6rem 5% 3rem; }
    .company-overview,
    .vision-mission-section-alt,
    .our-approach-section,
    .values-section,
    .leadership-section,
    .why-choose-alt,
    .cta-section { padding: 4rem 5%; }
    .overview-stats  { grid-template-columns: 1fr; gap: 1.5rem; }
    .approach-grid,
    .values-grid,
    .leadership-grid,
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .approach-card:hover { transform: translateY(-5px); }
    .stat-number-large { font-size: 2.5rem; }
    .vm-box           { padding: 2rem; }
    .approach-number  { font-size: 2.5rem; }
    .about-features   { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-feature    { padding: 1.5rem; }

    /* Reduce floating icons to prevent overflow */
    .about-floating-icons .float-icon:nth-child(n+4),
    .cta-floating-icons   .float-icon:nth-child(n+3) { display: none; }

    /* ── Footer ── */
    .site-footer { padding: 3rem 5% 1rem; }
    .footer-brand { margin-bottom: 2.5rem; }
    .footer-logo img { width: 50px; height: 50px; }
    .footer-contact-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    .footer-contact-card { padding: 1.5rem; }
    .footer-contact-icon { width: 60px; height: 60px; }

    /* ── Cookie banner ── */
    .cookie-consent { padding: 1rem; }
    .cookie-consent-container { flex-direction: column; align-items: stretch; gap: 1rem; }
    .cookie-consent-buttons { flex-direction: column; gap: 0.5rem; }
    .cookie-btn { width: 100%; padding: 0.75rem; text-align: center; }
    .cookie-modal-content { max-height: 90vh; }

    /* ── Privacy page ── */
    .privacy-hero   { padding: 4rem 5% 3rem; }
    .privacy-content { padding: 3rem 5%; }
    .lawful-basis-grid,
    .security-grid,
    .rights-grid { grid-template-columns: 1fr; }
    .privacy-section { margin-bottom: 3rem; }
}


/* ============================================================
   17. RESPONSIVE – SMALL MOBILE  (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    nav { padding: 0.8rem 4%; }
    .logo span { font-size: 1.2rem; }
    .logo img  { width: 35px; height: 35px; }
    .cta-button { display: none; } /* Hide nav CTA on very small screens */

    .hero { padding: 70px 3% 2rem; }
    .hero-content-redesign h1 { font-size: 1.6rem; }
    .hero-content-redesign p  { font-size: 0.9rem; line-height: 1.6; }
    .btn-get-started,
    .btn-learn-more { padding: 1rem 1.5rem; font-size: 0.85rem; letter-spacing: 1px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .stat-item  { padding: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-label  { font-size: 0.7rem; }

    .feature-card   { padding: 1.75rem 1.25rem; }
    .feature-icon-3d { width: 75px; height: 75px; }
    .feature-icon-3d svg { width: 50px; height: 50px; }
    .feature-content h3 { font-size: 1.15rem; }
    .feature-content p  { font-size: 0.875rem; }

    .section-title    { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.9rem; }

    .about-feature { flex-direction: column; align-items: center; text-align: center; }
    .about-icon-3d { margin-bottom: 1rem; }
    .stat-box       { padding: 1.5rem; }
    .stat-number-large { font-size: 2rem; }
    .value-icon,
    .why-icon-large { font-size: 3rem; }

    .contact-form-styled { padding: 1.5rem 1rem; }
    .form-group input,
    .form-group textarea,
    .form-group select { padding: 0.8rem 1rem; font-size: 0.9rem; }

    .footer-logo img { width: 45px; height: 45px; }
    .footer-bottom p { font-size: 0.8rem; }
}


/* ============================================================
   18. RESPONSIVE – TINY  (max 360px)
   ============================================================ */
@media (max-width: 360px) {
    .hero-content-redesign h1 { font-size: 1.2rem; }
    .hero-content-redesign p  { font-size: 0.8rem; }
    .stat-number { font-size: 1.8rem; }
    .stats-grid  { grid-template-columns: 1fr; }
}


/* ============================================================
   SERVICES PAGE — 9-card capabilities grid
   ============================================================ */
.services-capabilities {
    padding-top: 5rem;   /* clear fixed nav (nav ≈ 72px) — no excess whitespace */
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}
.services-grid .feature-card {
    max-width: none;
    padding: 2.5rem 2rem;
    min-height: 130px;
    justify-content: center;
}
.services-grid .feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.services-grid .feature-card:hover h3 { color: #51C9DB; }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-grid .feature-card { min-height: auto; padding: 1.5rem; }
}


/* ============================================================
   TECHNOLOGY PAGE — nav clearance
   ============================================================ */
.why-choose-features-section {
    padding-top: 5rem;   /* same tight clearance */
}


/* ============================================================
   ROADMAP SECTION  –  Build → Operate → Transfer → GCC
   ============================================================ */
.roadmap-section {
    padding: 7rem 5% 6rem;
    background: #0a0f1e;
    position: relative;
    overflow: hidden;
}
.roadmap-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63,89,218,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63,89,218,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
    pointer-events: none;
}
@keyframes gridDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}
.roadmap-section::after {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(63,89,218,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: blobDrift 12s ease-in-out infinite alternate;
}
@keyframes blobDrift {
    0%   { transform: translate(0,0); }
    100% { transform: translate(300px,200px); }
}
.glow-tr {
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(81,201,219,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: blobDrift 16s ease-in-out infinite alternate-reverse;
}
.roadmap-container { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.roadmap-heading   { text-align: center; margin-bottom: 5rem; }

.roadmap-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: #51C9DB;
    border: 1px solid rgba(81,201,219,0.35);
    padding: 0.4rem 1.2rem;
    border-radius: 50px; margin-bottom: 1.5rem;
    background: rgba(81,201,219,0.06);
}
.roadmap-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem,5vw,3.5rem); font-weight: 900;
    background: linear-gradient(135deg,#ffffff 0%,#51C9DB 60%,#5AEFD1 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem; line-height: 1.15; display: block;
}
.roadmap-subtitle {
    color: rgba(255,255,255,0.55); font-size: 1.05rem;
    max-width: 620px; margin: 0 auto; line-height: 1.8;
}

.roadmap-track { position: relative; height: 3px; max-width: calc(100% - 180px); margin: 0 auto -1px; pointer-events: none; }
.roadmap-track-line {
    position: absolute; inset: 0;
    background: linear-gradient(90deg,#3F59DA,#51C9DB,#5AEFD1,#51C9DB,#3F59DA);
    background-size: 200% 100%; border-radius: 2px; opacity: 0.3;
    animation: trackShimmer 4s linear infinite;
}
.roadmap-track-line::after {
    content: ''; position: absolute;
    top: -4px; left: -30%; width: 28%; height: 11px;
    background: linear-gradient(90deg,transparent,rgba(90,239,209,0.9),transparent);
    border-radius: 10px; animation: trackPulse 2.8s ease-in-out infinite;
}
@keyframes trackShimmer { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
@keyframes trackPulse {
    0%   { left:-30%; opacity:0; } 15% { opacity:1; }
    85%  { opacity:1; }            100%{ left:105%; opacity:0; }
}

.roadmap-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

.roadmap-step {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px; padding: 2.5rem 1.6rem 2rem; text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), border-color 0.3s, background 0.3s, box-shadow 0.4s;
    opacity: 0; transform: translateY(28px);
    animation: stepReveal 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}
.roadmap-step:nth-child(1) { animation-delay: 0.1s; }
.roadmap-step:nth-child(2) { animation-delay: 0.25s; }
.roadmap-step:nth-child(3) { animation-delay: 0.4s; }
.roadmap-step:nth-child(4) { animation-delay: 0.55s; }
@keyframes stepReveal { to { opacity:1; transform:translateY(0); } }

.roadmap-step:hover {
    transform: translateY(-12px);
    border-color: rgba(81,201,219,0.45);
    background: rgba(63,89,218,0.1);
    box-shadow: 0 24px 64px rgba(63,89,218,0.28), 0 0 0 1px rgba(81,201,219,0.2);
}
.roadmap-step--final { border-color: rgba(90,239,209,0.18); background: rgba(90,239,209,0.03); }
.roadmap-step--final:hover {
    border-color: rgba(90,239,209,0.55); background: rgba(90,239,209,0.08);
    box-shadow: 0 24px 64px rgba(90,239,209,0.22), 0 0 0 1px rgba(90,239,209,0.3);
}
.roadmap-step:not(:last-child)::after {
    content: '→'; position: absolute; right: -1.1rem; top: 3.6rem;
    font-size: 1.1rem; color: rgba(81,201,219,0.4); z-index: 5;
    pointer-events: none; transition: color 0.3s, transform 0.3s;
}
.roadmap-step:not(:last-child):hover::after { color: #5AEFD1; transform: translateX(5px); }

.roadmap-step-icon {
    width: 70px; height: 70px;
    background: rgba(63,89,218,0.12); border: 1px solid rgba(81,201,219,0.2);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem; padding: 13px;
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    animation: iconFloat 4s ease-in-out infinite;
}
.roadmap-step:nth-child(1) .roadmap-step-icon { animation-delay: 0s; }
.roadmap-step:nth-child(2) .roadmap-step-icon { animation-delay: 0.6s; }
.roadmap-step:nth-child(3) .roadmap-step-icon { animation-delay: 1.1s; }
.roadmap-step:nth-child(4) .roadmap-step-icon { animation-delay: 1.7s; }
@keyframes iconFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }
.roadmap-step:hover .roadmap-step-icon {
    background: rgba(63,89,218,0.28); border-color: rgba(81,201,219,0.55);
    box-shadow: 0 0 28px rgba(81,201,219,0.28);
    transform: scale(1.12) translateY(-4px); animation: none;
}
.roadmap-step-icon svg { width:100%; height:100%; filter: drop-shadow(0 2px 8px rgba(81,201,219,0.3)); transition: filter 0.4s; }
.roadmap-step:hover .roadmap-step-icon svg { filter: drop-shadow(0 4px 16px rgba(81,201,219,0.65)); }

.roadmap-step-badge {
    font-family: 'Orbitron', sans-serif; font-size: 0.6rem; font-weight: 900;
    letter-spacing: 2px; color: rgba(81,201,219,0.45);
    background: rgba(81,201,219,0.06); border: 1px solid rgba(81,201,219,0.16);
    border-radius: 6px; padding: 0.2rem 0.55rem; margin-bottom: 0.9rem;
    transition: all 0.3s;
}
.roadmap-step:hover .roadmap-step-badge { color: #51C9DB; background: rgba(81,201,219,0.15); border-color: rgba(81,201,219,0.4); }

.roadmap-step-content { flex:1; display:flex; flex-direction:column; }
.roadmap-step-content h3 {
    font-family: 'Orbitron', sans-serif; font-size: 1.35rem; font-weight: 900;
    color: white; margin-bottom: 0.25rem; transition: color 0.3s;
}
.roadmap-step:hover .roadmap-step-content h3 { color: #51C9DB; }

.roadmap-step-tagline {
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2.5px; color: rgba(90,239,209,0.6); margin-bottom: 1rem;
}
.roadmap-step-content > p:not(.roadmap-step-tagline) {
    font-size: 0.86rem; line-height: 1.75; color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem; flex: 1; transition: color 0.3s;
}
.roadmap-step:hover .roadmap-step-content > p:not(.roadmap-step-tagline) { color: rgba(255,255,255,0.75); }

.roadmap-step-list { list-style:none; text-align:left; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1rem; margin-top: auto; }
.roadmap-step-list li {
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
    padding: 0.28rem 0 0.28rem 1.1rem; position: relative; line-height: 1.5; transition: color 0.3s;
}
.roadmap-step-list li::before {
    content: ''; position: absolute; left:0; top:50%; transform: translateY(-50%);
    width: 5px; height: 5px; border-radius: 50%;
    background: linear-gradient(135deg,#3F59DA,#51C9DB);
    opacity: 0.55; transition: opacity 0.3s, transform 0.3s;
}
.roadmap-step:hover .roadmap-step-list li { color: rgba(255,255,255,0.72); }
.roadmap-step:hover .roadmap-step-list li::before { opacity:1; transform: translateY(-50%) scale(1.4); }

.roadmap-cta { text-align:center; margin-top: 4.5rem; }
.roadmap-cta-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg,#3F59DA 0%,#51C9DB 100%);
    border: none; border-radius: 50px; color: white;
    font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    cursor: pointer; box-shadow: 0 8px 30px rgba(63,89,218,0.45); transition: all 0.35s;
}
.roadmap-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(63,89,218,0.6), 0 0 60px rgba(81,201,219,0.2); }
.roadmap-cta-btn svg { transition: transform 0.3s; }
.roadmap-cta-btn:hover svg { transform: translateX(5px); }

@media (max-width: 1024px) {
    .roadmap-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .roadmap-step:not(:last-child)::after { display:none; }
    .roadmap-track { display:none; }
}
@media (max-width: 640px) {
    .roadmap-section { padding: 4rem 5% 3.5rem; }
    .roadmap-heading { margin-bottom: 3rem; }
    .roadmap-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .roadmap-step { padding: 2rem 1.5rem 1.75rem; }
    .roadmap-step .roadmap-step-icon { animation: none; }
    .roadmap-step-content h3 { font-size: 1.2rem; }
}
