/* ==========================================================================
   INCLUSIVE MARKETING CREATIVE AGENCY - MASTER STYLESHEET
   DESIGN BY RM Projects SYSTEM
   ========================================================================== */

/* --- BRAND DESIGN VARIABLES --- */
:root {
    /* Verified Brand Tones */
    --brand-navy: #0B1F2A;       /* Deep corporate base anchor */
    --brand-cyan: #1ED4C6;       /* Vibrating digital accent highlight */
    
    /* Layout Interface Tones */
    --bg-dark: #0A1922;          /* Matte dark mode backdrop canvas */
    --text-light: #F4F7F6;       /* Crisp high-readability text */
    --text-muted: #8A9A9F;       /* Low-contrast descriptive copy */
    
    /* Glassmorphic Layer Specifications */
    --glass-bg: rgba(11, 31, 42, 0.65);
    --glass-border: rgba(30, 212, 198, 0.15);
    
    /* Typography Manifest */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- ROOT SYSTEM RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- CORE GLASS NAVIGATION FRAMEWORK --- */
.glass-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0 28px;
    height: 76px; 
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(5, 12, 17, 0.5),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ==========================================================================
   ALR DIGITAL SYSTEM - BRAND LOGO CONTROLLER
   ========================================================================== */

/* Core Brand Anchor Wrapper */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 100%;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Asset Container Optimization */
.logo-img {
    width: auto;
    height: 160px; /* Locked height matching navbar layout grid */
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 0px rgba(30, 212, 198, 0));
    transition: filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Typography lockup mirroring image text layout weight */
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-light);
    letter-spacing: -0.5px;
    line-height: 1;
    user-select: none;
}

/* --- BRAND INTERACTION ENGINES --- */
.logo:hover {
    transform: translateY(-1px);
}

/* Activates a soft glow around the logo's cyan ring on navbar hover */
.logo:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(30, 212, 198, 0.35));
}
/* --- LINK STRUCTURE & LAYOUT FIXED --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px; 
}

.nav-links .nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links .nav-item:hover,
.nav-links .active-nav {
    color: var(--text-light);
}

/* Subtle accent tracking dot mirroring logo aesthetic */
.active-nav::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--brand-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-cyan);
}

/* --- SERVICE SUITES DROPDOWN ENGINE --- */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 22px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(16px) scale(0.96);
    width: 760px; /* Widened to host 3 distinct structural columns layout comfortably */
    background: rgba(11, 25, 34, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1010;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(10px) scale(1);
}

.dropdown:hover .dropdown-trigger {
    color: var(--brand-cyan);
}

.dropdown-chevron {
    transition: transform 0.25s ease, color 0.25s ease;
    color: var(--text-muted);
}

.dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
    color: var(--brand-cyan);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
}

.dropdown-column h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-cyan);
    margin-bottom: 16px;
    padding-left: 12px;
    font-weight: 800;
    border-left: 2px solid rgba(30, 212, 198, 0.3); /* Premium structural design accent */
}

.dropdown-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-column a:hover {
    color: var(--text-light);
    background: rgba(30, 212, 198, 0.06);
    transform: translateX(6px);
}

/* --- PREMIUM ACTION BUTTON (NAV CTA) --- */
.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 212, 198, 0.04);
    border: 1px solid rgba(30, 212, 198, 0.3);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-cta-nav .arrow-icon {
    transition: transform 0.25s ease;
    color: var(--brand-cyan);
}

.btn-cta-nav:hover {
    background: rgba(30, 212, 198, 0.08);
    border-color: var(--brand-cyan);
    box-shadow: 0 0 25px rgba(30, 212, 198, 0.2);
}

.btn-cta-nav:hover .arrow-icon {
    transform: translateX(4px);
}
/* ==========================================================================
   DESKTOP GLOBAL STABILIZATION PROPERTIES
   ========================================================================== */
.nav-toggle {
    display: none; /* Hidden on standard widescreen desktop viewports */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 3000;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-pure, #ffffff);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

/* --- PREMIUM ACTION BUTTON (NAV CTA STANDARD DESKTOP VIEW) --- */
.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 212, 198, 0.04);
    border: 1px solid rgba(30, 212, 198, 0.3);
    color: var(--text-light, #f8fafc);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-cta-nav .arrow-icon {
    transition: transform 0.25s ease;
    color: var(--brand-cyan, #1ED4C6);
}

.btn-cta-nav:hover {
    background: rgba(30, 212, 198, 0.08);
    border-color: var(--brand-cyan, #1ED4C6);
    box-shadow: 0 0 25px rgba(30, 212, 198, 0.2);
}

.btn-cta-nav:hover .arrow-icon {
    transform: translateX(4px);
}

.dropdown-column a {
    display: block;
    color: var(--text-muted, #94a3b8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-column a:hover {
    color: var(--text-light, #f8fafc);
    background: rgba(30, 212, 198, 0.06);
    transform: translateX(6px);
}
/* Add this global rule OUTSIDE your media queries to keep it safe */
.is-mobile-drawer-cta {
    display: none !important;
}

/* ==========================================================================
   MOBILE & TABLET VIEWPORT ENGINE BREAKPOINT
   ========================================================================== */
@media (max-width: 992px) {
    /* Stabilize container bounds */
    .nav-container {
        position: relative;
        justify-content: space-between;
        height: 80px;
    }

    /* Reveal Interactive Burger Control Element */
    .nav-toggle {
        display: flex;
    }

    /* Transform Burger Lines on Menu Activation */
    .nav-toggle.is-active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translateY(-2px);
        background-color: var(--brand-cyan, #1ED4C6);
    }
    .nav-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }
    .nav-toggle.is-active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(2px);
        background-color: var(--brand-cyan, #1ED4C6);
    }

    /* Remap desktop links wrapper into full view slide-down drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Keeps hidden offscreen cleanly */
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(11, 31, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.05));
        padding: 120px 40px 40px 40px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2500;
    }

    /* Active state when drawer slides into full view */
    .nav-links.is-active {
        right: 0;
        box-shadow: -20px 0 60px rgba(4, 12, 18, 0.5);
    }

    .nav-item {
        font-size: 1.25rem;
        font-weight: 600;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }

    /* --- MOBILE MULTI-LEVEL ACCORDION DROPDOWNS --- */
    .dropdown {
        width: 100%;
    }

    .dropdown-trigger .dropdown-chevron {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }

    /* Spin chevron smoothly on toggle */
    .dropdown.is-open .dropdown-trigger .dropdown-chevron {
        transform: rotate(180deg);
        color: var(--brand-cyan, #1ED4C6);
    }

    /* Switch desktop mega grid into structural vertical row accordions */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        max-height: 0; /* Managed cleanly via script styles */
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .dropdown.is-open .dropdown-menu {
        max-height: 1000px; /* Generous maximum ceiling bound */
    }

    .dropdown-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 16px 0 16px 16px;
        border-left: 1px solid rgba(30, 212, 198, 0.15);
        margin-top: 4px;
    }

    .dropdown-column {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dropdown-column h4 {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--brand-cyan, #1ED4C6);
        margin-bottom: 4px;
    }

    .dropdown-column a {
        font-size: 0.95rem;
        color: var(--text-muted, #94a3b8);
        padding: 4px 0;
        transition: color 0.2s ease;
    }

    .dropdown-column a:hover, 
    .dropdown-column a:active {
        color: var(--text-pure, #ffffff);
    }

    /* CRITICAL SPECIFICITY REFACTOR: Hides original desktop wrapper header button */
    .nav-container > .btn-cta-nav {
        display: none !important;
    }

    /* Restores display grid values exclusively inside active slide canvas */
    .nav-links .btn-cta-nav {
        display: inline-flex !important;
        margin-top: auto; /* Anchors launch container to the layout base */
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
    /* Hide the primary layout button on mobile screens */
    #navCtaBtn {
        display: none !important;
    }

    /* Display the custom drawer selector button */
    .nav-links .is-mobile-drawer-cta {
        display: inline-flex !important;
        margin-top: auto; /* Aligns the item neatly at the bottom */
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

/* Super compact phone viewport override */
@media (max-width: 480px) {
    .nav-links {
        max-width: 100%;
        padding: 100px 24px 32px 24px;
    }
}/* ==========================================================================
   HERO DISPLAY GRAPHICS ENGINE
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 6% 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* --- BACKGROUND SPATIAL 3D PARALLAX CANVAS --- */
.parallax-space-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.layer-matrix {
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(30, 212, 198, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 212, 198, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    opacity: 0.85;
}

.layer-ambient-cyan {
    top: 15%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(30, 212, 198, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
}

.layer-ambient-navy {
    bottom: -5%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 31, 42, 0.9) 0%, transparent 80%);
    filter: blur(80px);
    border-radius: 50%;
}

/* --- FOREGROUND INTERACTIVE CONTENT GRID --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(30, 212, 198, 0.06);
    border: 1px solid rgba(30, 212, 198, 0.2);
    color: var(--brand-cyan);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Hero Dark-Mode Text Illumination */
.hero-content .text-glow {
    background: linear-gradient(135deg, #FFFFFF 30%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(30, 212, 198, 0.2));
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 44px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--brand-cyan);
    color: var(--brand-navy);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 12px 35px rgba(30, 212, 198, 0.25);
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(30, 212, 198, 0.4);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-light);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- RIGHT INTERACTIVE 3D TILT CARD --- */
.hero-visual-wrapper {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tilt-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(30, 212, 198, 0.03) 0%, rgba(11, 31, 42, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    box-shadow: 0 40px 80px rgba(5, 12, 17, 0.6);
}

.card-depth-layer {
    position: absolute;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.1s ease-out;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.digital-layer {
    background: rgba(11, 31, 42, 0.8);
    border: 1px solid rgba(30, 212, 198, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    top: 40px;
    left: -20px;
    width: 260px;
    height: 190px;
    transform: translateZ(60px);
}

.traditional-layer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    bottom: 40px;
    right: -20px;
    width: 260px;
    height: 190px;
    transform: translateZ(90px);
}

.layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.engine-pill, .engine-pill-dark {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
}

.engine-pill {
    background: rgba(30, 212, 198, 0.1);
    color: var(--brand-cyan);
    border: 1px solid rgba(30, 212, 198, 0.2);
}

.engine-pill-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   ALR DIGITAL SYSTEM - DYNAMIC SPATIAL HERO LAYOUT ENGINE
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 6% 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Prevents background blurred blobs from causing page overflow */
}

/* --- BACKGROUND SPATIAL 3D PARALLAX CANVAS --- */
.parallax-space-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.layer-matrix {
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(30, 212, 198, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 212, 198, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    opacity: 0.85;
}

.layer-ambient-cyan {
    top: 15%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(30, 212, 198, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
}

.layer-ambient-navy {
    bottom: -5%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 31, 42, 0.9) 0%, transparent 80%);
    filter: blur(80px);
    border-radius: 50%;
}

/* --- FOREGROUND INTERACTIVE CONTENT GRID --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(30, 212, 198, 0.06);
    border: 1px solid rgba(30, 212, 198, 0.2);
    color: var(--brand-cyan);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.5rem); /* Added responsive typography handling */
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Hero Dark-Mode Text Illumination */
.hero-content .text-glow {
    background: linear-gradient(135deg, #FFFFFF 30%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(30, 212, 198, 0.2));
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 44px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; /* Safeguard for narrow displays */
}

.btn-primary {
    background: var(--brand-cyan);
    color: var(--brand-navy);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 12px 35px rgba(30, 212, 198, 0.25);
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(30, 212, 198, 0.4);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-light);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   HIGH-FIDELITY 3D INTERACTIVE TILT-CARD SYSTEM
   ========================================================================== */

.hero-visual-wrapper {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tilt-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(30, 212, 198, 0.03) 0%, rgba(11, 31, 42, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    box-shadow: 0 40px 80px rgba(5, 12, 17, 0.6);
}

.card-depth-layer {
    position: absolute;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.1s ease-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Digital Floating Layer (Forefront Asset: Projected Highest) */
.digital-layer {
    background: rgba(11, 31, 42, 0.85);
    border: 1px solid rgba(30, 212, 198, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    top: 35px;
    left: -25px;
    width: 270px;
    height: 195px;
    transform: translateZ(90px); /* Pushed furthest forward */
    z-index: 3;
}

/* Traditional Base Layer (Mid-Plane Depth Asset) */
.traditional-layer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    bottom: 35px;
    right: -25px;
    width: 270px;
    height: 195px;
    transform: translateZ(45px); /* Positioned cleanly behind the digital layer */
    z-index: 2;
}

.layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.engine-pill, .engine-pill-dark {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.engine-pill {
    background: rgba(30, 212, 198, 0.1);
    color: var(--brand-cyan);
    border: 1px solid rgba(30, 212, 198, 0.2);
}

.engine-pill-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background: var(--brand-cyan);
    border-radius: 50%;
    position: relative;
}

/* Optimized Performance Pulse Engine */
.pulse-indicator::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--brand-cyan);
    animation: indicatorPulse 2s infinite ease-in-out;
}

.metric-block {
    margin-bottom: auto;
    text-align: left;
}

.mock-metric {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -1px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.mock-chart-container {
    width: 100%;
    margin-top: 10px;
}

.vector-trendline {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.distribution-profile {
    text-align: left;
    margin-bottom: auto;
    width: 100%;
}

.profile-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.mock-tag-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mock-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    font-size: 0.65rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--brand-cyan);
    letter-spacing: 0.5px;
}

.mock-grid-wireframe {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
}

.wireframe-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}
.wireframe-bar.long { width: 45%; }
.wireframe-bar.short { width: 25%; }

/* Spatial Intersection Core Token */
.center-core-token {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Structured to insulate translation layers from dynamic inline styles */
    transform: translate3d(-50%, -50%, 65px); 
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.core-ring {
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-cyan);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 40px rgba(30, 212, 198, 0.4);
    position: relative;
}

.core-ring::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background: var(--brand-cyan);
    filter: blur(25px);
    opacity: 0.6;
}

/* --- HARDWARE OPTIMIZED ACCELERATION KEYFRAMES --- */
@keyframes indicatorPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* --- ADAPTIVE DISPLAYS AND VIEWPORTS --- */
@media (max-width: 1024px) {
    .hero-section {
        padding: 120px 4% 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        letter-spacing: -1px;
    }
    /* Gently scales cards down on compact mobile viewports to prevent layout breaks */
    .tilt-card {
        transform: scale(0.9);
    }
}
/* ==========================================================================
   TRUST ANCHOR STRIP STYLES
   ========================================================================== */
.trust-anchor-strip {
    width: 100%;
    background-color: #0B1F2A; /* Deep Midnight Blue from profile documentation */
    border-top: 1px solid rgba(30, 212, 198, 0.15);
    border-bottom: 1px solid rgba(30, 212, 198, 0.15);
    padding: 1.25rem 1rem;
}

.trust-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.trust-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(30, 212, 198, 0.08); /* Transparent Electric Teal backdrop */
    color: #1ED4C6; /* Solid Electric Teal */
    flex-shrink: 0;
}

.trust-text-block {
    display: flex;
    flex-direction: column;
}

.trust-label {
    color: #FFFFFF;
    font-size: 0.925rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

.trust-sub {
    color: #A3B3BC; /* Clean slate grey for secondary contextual tracking elements */
    font-size: 0.775rem;
    font-weight: 400;
    margin-top: 0.15rem;
}

/* Responsive Adaptive Viewports for Mobile Engines */
@media (max-width: 768px) {
    .trust-strip-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .trust-metric-item {
        justify-content: flex-start;
        padding-left: 1rem;
    }
}
/* ==========================================================================
   SERVICES UNIFIED STRATEGY SUITE STYLING INTERFACE
   ========================================================================== */
.capabilities-section {
    position: relative;
    width: 100%;
    background-color: var(--brand-bg, #030712);
    padding: 100px 5%;
    overflow: hidden;
}

.section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Core Component Section Typography Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted, #9ca3af);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Core Interface Suites Dynamic Layout Matrix Grid */
.suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

/* Glassmorphic Suite Cards Architecture Engine */
.suite-card {
    position: relative;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

/* Middle Emphasis High-Velocity Conversion Accent Engine Card */
.suite-card.accent-card {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, rgba(15, 23, 42, 0.4) 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

.suite-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.suite-card.accent-card:hover {
    border-color: var(--brand-cyan, #06b6d4);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.card-inner {
    position: relative;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Media Graphic & Glowing Orb Vectors */
.capability-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.capability-icon-wrap.navy-glow {
    background: rgba(30, 58, 138, 0.3);
    color: #3b82f6;
}

.capability-icon-wrap.cyan-glow {
    background: rgba(6, 182, 212, 0.2);
    color: var(--brand-cyan, #06b6d4);
}

.icon-asset {
    width: 28px;
    height: 28px;
}

.suite-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.suite-desc {
    font-size: 0.95rem;
    color: var(--text-muted, #9ca3af);
    line-height: 1.5;
    margin-bottom: 32px;
}

/* Interactive Capability Specs List Map */
.capability-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto; /* Pushes list downward to align card components */
}

.capability-specs li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    color: var(--text-light, #f9fafb);
    line-height: 1.4;
}

/* Bullet Vector Node System Replacement */
.capability-specs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.suite-card.accent-card .capability-specs li::before {
    background: var(--brand-cyan, #06b6d4);
    box-shadow: 0 0 8px var(--brand-cyan, #06b6d4);
}

/* Anchor Hyperlink Clean-wrapping normalization */
.capability-specs li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.capability-specs li a:hover {
    color: var(--brand-cyan, #06b6d4);
}

/* Holistic USP Cross-over Banner Component Block */
.usp-banner-block {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.usp-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--brand-cyan, #06b6d4);
    margin-bottom: 14px;
}

.usp-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light, #f9fafb);
    max-width: 820px;
    margin: 0 auto;
}

/* Responsive Adaptive Layout Breakpoints Engine overrides */
@media (max-width: 1024px) {
    .suites-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .suite-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .capabilities-section {
        padding: 80px 4%;
    }
}
/* ==========================================================================
   SERVICES UNIFIED STRATEGY SUITE STYLING INTERFACE (LIGHT MODE REFIT)
   ========================================================================== */
.capabilities-section {
    position: relative;
    width: 100%;
    background-color: #ffffff; /* Rebuilt on a solid white plane */
    padding: 100px 5%;
    overflow: hidden;
    color: #0f172a; /* High-contrast deep slate for maximum legibility */
}

.section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Core Component Section Typography Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f1f5f9; /* Subtle light neutral badge pill */
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #64748b; /* Soft slate accent text */
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    color: #0f172a;
}

/* Clean UI Light Accent Highlight */
.text-glow {
    color: #0891b2; 
    text-shadow: none; 
}

.section-subtitle {
    font-size: 1.1rem;
    color: #475569; /* Balanced slate description layer */
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Core Interface Suites Dynamic Layout Matrix Grid */
.suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

/* Premium Light Plane Card Architecture Engine */
.suite-card {
    position: relative;
    border-radius: 20px;
    background: #f8fafc; /* Porcelain card surface */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02);
}

/* Middle Emphasis High-Velocity Conversion Accent Engine Card */
.suite-card.accent-card {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%); /* Clean, soft mint-cyan depth gradient */
    border-color: #ccfbf1;
}

.suite-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08); /* Clean, soft organic shadows */
}

.suite-card.accent-card:hover {
    border-color: #06b6d4; /* Focused SaaS cyan hit */
    box-shadow: 0 20px 40px -12px rgba(6, 182, 212, 0.12);
}

.card-inner {
    position: relative;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Media Graphic & Fluid Icon Containers */
.capability-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.capability-icon-wrap.navy-glow {
    background: #eff6ff; /* High-contrast clean blue baseline */
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.capability-icon-wrap.cyan-glow {
    background: #ecfeff; /* High-contrast clean cyan baseline */
    color: #0891b2;
    border: 1px solid #cffafe;
}

.icon-asset {
    width: 28px;
    height: 28px;
}

.suite-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.suite-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 32px;
}

/* Interactive Capability Specs List Map */
.capability-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.capability-specs li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    color: #334155;
    line-height: 1.4;
}

/* Bullet Vector Node System Replacement */
.capability-specs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8; /* Balanced bullet vectors */
}

.suite-card.accent-card .capability-specs li::before {
    background: #06b6d4;
    box-shadow: none; /* Removed neon dark artifacts */
}

/* Anchor Hyperlink Clean-wrapping normalization */
.capability-specs li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.capability-specs li a:hover {
    color: #0891b2;
    transform: translateX(2px);
}

/* Holistic USP Cross-over Banner Component Block */
.usp-banner-block {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%); /* Elegant light-gray gradient split */
    border: 1px solid #e2e8f0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.usp-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #0891b2;
    margin-bottom: 14px;
}

.usp-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
    max-width: 820px;
    margin: 0 auto;
    font-weight: 500;
}

/* Responsive Adaptive Layout Breakpoints Engine overrides */
@media (max-width: 1024px) {
    .suites-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .suite-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .capabilities-section {
        padding: 80px 4%;
    }
}
/* ==========================================================================
   ALR DIGITAL SYSTEM - STRATEGIC TIMELINE STYLING INTERFACE
   ========================================================================== */

.vision-section {
    position: relative;
    width: 100%;
    background-color: var(--brand-bg, #0A1922);
    padding: 120px 5%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.vision-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Master Layout Grid Configuration */
.vision-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: flex-start; /* Required context to activate internal sticky pinning loops */
}

/* --- LEFT SIDE STICKY CONTAINER CORE --- */
.vision-sticky-content {
    position: sticky;
    top: 130px; /* Aligns perfectly below your 76px sticky glass navigation system */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mini-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(30, 212, 198, 0.06);
    border: 1px solid rgba(30, 212, 198, 0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--brand-cyan, #1ED4C6);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.vision-sticky-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-light, #F4F7F6);
    margin-bottom: 28px;
}

.cyan-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 20%, var(--brand-cyan, #1ED4C6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light, #F4F7F6);
    margin-bottom: 20px;
    font-weight: 400;
}

.vision-body-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted, #8A9A9F);
    margin-bottom: 44px;
}

/* Core Values Stat Row Layout */
.values-metric-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 36px;
    width: 100%;
}

.value-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-cyan, #1ED4C6);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light, #F4F7F6);
    letter-spacing: 0.5px;
}

/* --- RIGHT SIDE SCROLLABLE TIMELINE TRACK ENGINE --- */
.timeline-engine-track {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-left: 20px;
}

.timeline-node {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    position: relative;
    opacity: 0.4; /* Inactive stages are cleanly dimmed */
    transition: opacity 0.4s ease;
}

/* High-velocity emphasis focus point indicator for active milestone phases */
.timeline-node.active-node {
    opacity: 1;
}

/* Node Tracking Architecture Coordinates */
.node-indicator-rig {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.node-pulse-core {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted, #8A9A9F);
    border: 2px solid var(--bg-dark, #0A1922);
    z-index: 2;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.timeline-node.active-node .node-pulse-core {
    background: var(--brand-cyan, #1ED4C6);
    box-shadow: 0 0 0 4px rgba(30, 212, 198, 0.15),
                0 0 16px var(--brand-cyan, #1ED4C6);
}

.node-line-connector {
    position: absolute;
    top: 24px;
    bottom: -56px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.timeline-node.active-node .node-line-connector {
    background: linear-gradient(180deg, rgba(30, 212, 198, 0.3), rgba(255, 255, 255, 0.05));
}

/* Content Panel Core Components */
.node-content-block {
    background: rgba(11, 31, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.timeline-node.active-node .node-content-block {
    background: rgba(11, 31, 42, 0.4);
    border-color: rgba(30, 212, 198, 0.15);
}

.timeline-node:hover .node-content-block {
    border-color: rgba(255, 255, 255, 0.1);
}

.node-timeline-phase {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted, #8A9A9F);
    display: block;
    margin-bottom: 12px;
}

.timeline-node.active-node .node-timeline-phase {
    color: var(--brand-cyan, #1ED4C6);
}

.node-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light, #F4F7F6);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.node-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted, #8A9A9F);
    margin-bottom: 24px;
}

.node-location-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light, #F4F7F6);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-node.active-node .node-location-tag {
    border-color: rgba(30, 212, 198, 0.2);
    background: rgba(30, 212, 198, 0.04);
    color: var(--brand-cyan, #1ED4C6);
}

/* --- ADAPTIVE ARCHITECTURE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .vision-split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vision-sticky-content {
        position: relative;
        top: 0;
    }
    
    .timeline-engine-track {
        padding-left: 0;
    }
    
    .node-content-block {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .values-metric-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .node-line-connector {
        bottom: -72px;
    }
}/* ==========================================================================
   ALR DIGITAL CORE - UNIFIED CONVERSION GATEWAY (LIGHT MODE REFIT)
   ========================================================================== */
.connect-section {
    position: relative;
    width: 100%;
    background-color: #ffffff; /* Solid premium white canvas break */
    padding: 100px 5%;
    overflow: hidden;
    color: var(--brand-navy, #0B1F2A); /* Using deep anchor text */
}

.connect-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Unified Layout Interface Box */
.connect-interface-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: #f8fafc; /* Crisp, clean porcelain surface */
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 64px;
    box-shadow: 0 10px 30px -10px rgba(11, 31, 42, 0.03);
}

/* Left Message Typography Engine */
.connect-message-block .connect-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #eddfe0; /* Soft tint baseline contrast */
    background: rgba(30, 212, 198, 0.1); 
    border: 1px solid rgba(30, 212, 198, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #129d92; /* High contrast variant of the brand cyan */
    margin-bottom: 24px;
}

.connect-message-block h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-navy, #0B1F2A);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.connect-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted, #8A9A9F);
}

/* Right Interactive Action Rig */
.connect-actions-rig {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* High-Velocity Conversion Button (Redirecting to contact.html) */
.prime-connect-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brand-navy, #0B1F2A);
    color: #ffffff;
    text-decoration: none;
    padding: 22px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s ease, 
                box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 31, 42, 0.15);
}

.prime-connect-btn .btn-arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Interactive Hover States */
.prime-connect-btn:hover {
    background: #122f3f; /* Deepened rich hover shade */
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(11, 31, 42, 0.25);
}

.prime-connect-btn:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* Direct Channels Matrix Row Grid */
.direct-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff; /* pure white inside card */
    border: 1px solid #e2e8f0;
    padding: 18px 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--brand-navy, #0B1F2A);
    transition: background 0.3s ease, color 0.3s ease;
}

.channel-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.channel-details {
    display: flex;
    flex-direction: column;
}

.channel-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted, #8A9A9F);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.channel-data {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-navy, #0B1F2A);
    margin-top: 2px;
}

/* Dynamic State Channel Interactivity */
.channel-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

/* Cyan Infusion highlights specifically built onto brand parameters */
.channel-card.whatsapp-node:hover .channel-icon-wrap {
    background: rgba(30, 212, 198, 0.1); /* 10% opacity tint of brand Electric Teal */
    color: #1ED4C6; /* Solid brand Electric Teal */
}
.channel-card.email-node:hover .channel-icon-wrap {
    background: rgba(11, 31, 42, 0.06); /* Clean tint of brand Midnight Navy */
    color: #0B1F2A; /* Solid brand Midnight Navy */
}
/* Focused Accessibility Outlines for Keyboards */
.prime-connect-btn:focus,
.channel-card:focus {
    outline: 3px solid #1ED4C6;
    outline-offset: 4px;
}


/* Responsive Fluid Formulations Grid Overrides */
@media (max-width: 992px) {
    .connect-interface-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .direct-channels-grid {
        grid-template-columns: 1fr;
    }
    .connect-section {
        padding: 64px 4%;
    }
}
/* ==========================================================================
   INCLUSIVE MARKETING CORE - HIGH-LEVEL AGENCY FOOTER ENGINE
   ========================================================================== */
.agency-footer {
    width: 100%;
    background-color: var(--brand-navy, #0B1F2A);
    padding: 80px 5% 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-matrix-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-block;
    max-width: 180px;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: rgba(30, 212, 198, 0.06);
    border: 1px solid rgba(30, 212, 198, 0.15);
    padding: 6px 12px;
    border-radius: 100px;
}

.footer-status-pill span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-cyan, #1ED4C6);
    letter-spacing: 0.03em;
}

.status-indicator-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-cyan, #1ED4C6);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-cyan, #1ED4C6);
    animation: statusPulse 2s infinite ease-in-out;
}

.footer-links-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f8fafc;
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-links-list a:hover,
.footer-links-list a:focus {
    color: var(--brand-cyan, #1ED4C6);
    transform: translateX(4px);
    outline: none;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    margin-bottom: 32px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.8rem;
    color: #64748b;
}

.partnership-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
}

.partner-link {
    font-weight: 700;
    color: #cbd5e1;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.partner-link:hover,
.partner-link:focus {
    color: var(--brand-cyan, #1ED4C6);
    outline: none;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 992px) {
    .footer-matrix-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-matrix-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .agency-footer {
        padding: 60px 4% 32px 4%;
    }
}
/* ==========================================================================
   PLAYFUL INTERACTIVE WHATSAPP WIDGET STYLES
   ========================================================================== */
.wa-widget-wrapper {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

/* Main Floating Action Trigger */
.wa-floating-trigger {
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Authentic vibrant WhatsApp Green */
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-brand-icon {
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease;
}

/* Gentle attention-grabbing breathing animation ring */
.wa-pulse-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: wa-ripple-pulse 2.5s infinite;
}

/* --- EXPANDED MODAL CHAT BOX --- */
.wa-chat-window {
    width: 340px;
    background-color: var(--bg-deep, #0B1F2A);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(4, 12, 18, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active State Trigger Rule via Class Injection */
.wa-chat-window.is-active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Header Panel Design */
.wa-chat-header {
    background: linear-gradient(135deg, rgba(30, 212, 198, 0.08) 0%, rgba(11, 31, 42, 0) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.wa-avatar-rig {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--brand-cyan, #1ED4C6);
}

.wa-operator-icon {
    width: 20px;
    height: 20px;
}

.wa-avatar-dot {
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border: 2px solid #0B1F2A;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.wa-header-text {
    display: flex;
    flex-direction: column;
}

.wa-header-text strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
}

.wa-header-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #94a3b8;
}

.wa-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.wa-close-btn:hover {
    color: #ffffff;
}

/* Chat Background Canvas Area */
.wa-chat-body {
    padding: 24px 20px;
    background: rgba(6, 19, 26, 0.4);
    min-height: 100px;
}

.wa-bubble-msg {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0 14px 14px 14px;
    padding: 14px;
    max-width: 90%;
    position: relative;
}

.wa-bubble-msg p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #cbd5e1;
    margin: 0;
}

.wa-time-stamp {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 6px;
}

/* Action Execution Strip Footer */
.wa-chat-footer {
    padding: 16px 20px 20px;
    background: var(--bg-deep, #0B1F2A);
}

.wa-send-link {
    width: 100%;
    background-color: #25D366;
    border: none;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-send-link span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.wa-arrow-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    transition: transform 0.2s ease;
}

/* --- INTERACTIVE ANIMATION HOVER UTILITIES --- */
.wa-floating-trigger:hover {
    transform: scale(1.08);
}

.wa-floating-trigger:has(+ .wa-chat-window.is-active),
.wa-floating-trigger:focus-within {
    transform: scale(0.9) rotate(-15deg);
    background-color: #128C7E; /* Deep WhatsApp forest dark hue fallback */
}

.wa-send-link:hover {
    background-color: #20ba59;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.wa-send-link:hover .wa-arrow-icon {
    transform: translateX(3px);
}

@keyframes wa-ripple-pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* Responsive adjustment for extra compact layout blocks */
@media (max-width: 480px) {
    .wa-widget-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .wa-chat-window {
        width: calc(100vw - 40px);
        bottom: 76px;
    }
}
/* --- FOOTER SOCIAL ICON LINKS WRAPPER --- */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px; /* Aligns neatly right beneath the brand description */
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(30, 212, 198, 0.04);
    border: 1px solid rgba(30, 212, 198, 0.15);
    border-radius: 10px;
    color: var(--text-muted, #94a3b8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-svg {
    transition: transform 0.25s ease;
}

/* Premium micro-interactions matching the nav system */
.social-icon-link:hover {
    color: var(--brand-cyan, #1ED4C6);
    background: rgba(30, 212, 198, 0.08);
    border-color: rgba(30, 212, 198, 0.5);
    box-shadow: 0 0 20px rgba(30, 212, 198, 0.15);
}

.social-icon-link:hover .social-svg {
    transform: scale(1.08);
}
