/* ============================================================ 
   ACHIC TECH SOLUTIONS | GLOBAL DESIGN SYSTEM V2.0 
   Aero-Luxe Technical Standard
   ============================================================ */

:root {
    --primary-color: #0B0D11;
    --accent-color: #2563EB;
    --accent-hover: #1D4ED8;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--primary-color);
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
    background-size: 120px 120px, 120px 120px, 100% 100%, 100% 100%;
    background-attachment: fixed;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Core Infrastructure */
header nav .container>a {
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 80px 0;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Glass Architecture */
.glass-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--border-radius-xl) !important;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    transform: translateY(-8px) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Pricing Ecosystem */
.tier-price {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #fff;
}

.pricing-toggles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toggle-item-luxe {
    padding: 18px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.toggle-item-luxe:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.toggle-item-luxe:has(.form-check-input:checked) {
    background: rgba(37, 99, 235, 0.05) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
}

.custom-pill-switch .form-check-input {
    width: 3.5rem !important;
    height: 1.8rem !important;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.custom-pill-switch .form-check-input:checked {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* Nebula Variants */
.nebula-card {
    background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        rgba(11, 13, 17, 0.4) !important;
    border: 1px solid rgba(168, 85, 247, 0.15) !important;
}

.nebula-card .toggle-item-luxe:has(.form-check-input:checked) {
    background: rgba(168, 85, 247, 0.05) !important;
    border-color: rgba(168, 85, 247, 0.2) !important;
}

.custom-pill-switch.purple .form-check-input:checked {
    background-color: #A855F7 !important;
    border-color: #A855F7 !important;
}

/* Portfolio Hub */
.portfolio-box-video {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-xl);
    padding: 60px 40px;
    transition: var(--transition);
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border: 12px solid #1e1e1e;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* AI Architect Module */
#in-page-ai-input {
    background: transparent;
    color: #fff;
    border: none;
    resize: none;
    outline: none !important;
    font-size: 1.1rem;
}

#in-page-ai-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Utilities */
.x-small {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle-caps {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fallbacks */
.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Global Accessibility Restoration */
.glass-nav {
    background: rgba(11, 13, 17, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 0 !important;
    transition: var(--transition);
}

.glass-footer {
    background: rgba(11, 13, 17, 0.95) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 80px;
}

.nav-link {
    color: var(--slate-300) !important;
    font-weight: 500 !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.footer-link-v2 {
    color: var(--slate-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link-v2:hover {
    color: #fff;
    padding-left: 5px;
}

/* High-Fidelity Preloader & Architecture Visibility */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0D11;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
}

.logo-draw-container {
    position: relative;
    width: 250px;
    height: 200px;
}

.path-achic-a-simple {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLogo 2.5s ease forwards;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    }
}

/* Explicit Header/Footer Visibility */
header {
    z-index: 999;
    position: relative;
}

footer {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block !important;
}

/* Portfolio Visibility Hub Restoration */
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    transition: var(--transition);
}

.impact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.impact-card:hover img {
    transform: scale(1.05);
    opacity: 0.4;
}

.impact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
}

.impact-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-color);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 15px;
}

.impact-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.impact-action {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.impact-large {
    grid-column: span 1;
    grid-row: span 2;
}

.impact-vertical {
    grid-row: span 2;
}

/* Scroll to Top Discipline */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.scroll-top-btn img {
    height: 25px;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .success-grid {
        grid-template-columns: 1fr;
    }

    .impact-large,
    .impact-vertical {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Engineering Blueprint Manifest Restoration */
.blueprint-section {
    position: relative;
    padding: 120px 0;
    background: rgba(11, 13, 17, 0.4);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
}

.pipeline-container {
    position: relative;
    margin-top: 60px;
}

.blueprint-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.blueprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: var(--transition);
}

.blueprint-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blueprint-card:hover::before {
    height: 100%;
}

.blueprint-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Specific Service Card Enhancement */
.card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
    height: 100%;
}

.card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* High-Fidelity Animation Core */
.animate-fade-up {
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

/* Enhanced Service Cards */
.card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    backdrop-filter: blur(10px);
    transition: var(--transition) !important;
}

.card-premium:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

.card-premium h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    transition: var(--transition);
}

.card-premium:hover h4 {
    color: var(--accent-color);
}

/* High-Fidelity Roadmap Connectivity */
.pipeline-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.05) 80%, transparent);
    z-index: 0;
    display: block;
}

@media (max-width: 991px) {
    .pipeline-container::after {
        display: none;
    }
}

.blueprint-card {
    z-index: 1;
    background: rgba(11, 13, 17, 0.6) !important;
}

.blueprint-title {
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

.impact-badge {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
}

/* High-Fidelity Portfolio Filters */
.filter-nav {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px !important;
}

.filter-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--slate-400);
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Glassmorphic Form Optimization */
.form-control,
.form-select {
    transition: var(--transition) !important;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.1) !important;
}

select option {
    background: #0B0D11 !important;
    color: #fff !important;
}

/* Aero-Luxe Zoom Regularization */
:root {
    --navbar-height: 100px;
}

body {
    font-size: 15px;
    /* Regularizing base font size */
    overflow-x: hidden;
}

.glass-nav {
    height: var(--navbar-height);
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem !important;
    letter-spacing: -0.2px;
}

.navbar-brand img {
    height: 160px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Global Section Padding Calibration */
.section-padding {
    padding: 100px 0 60px !important;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem !important;
    max-width: 800px !important;
}

/* Futuristic Techish Card Manifest */
.card-premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.card-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card-premium:hover::after {
    opacity: 1;
}

.blueprint-card {
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    background: rgba(11, 13, 17, 0.3) !important;
}

.impact-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

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

/* Glassmorphic Secondary Accents */
.badge {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    color: var(--accent-color) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Pulse Hub */
.bg-luminous-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* High-Fidelity Video Mockup Regularization */
.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensuring edge-to-edge mobile experience */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-mockup {
    margin: 0 auto;
    border: 10px solid #111 !important;
    background: #000;
    z-index: 10;
}

/* Specific Portfolio Showcase Fix */
.portfolio-box-video {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px 40px;
    transition: var(--transition);
}

/* Cinematic Mobile Containment Fix */
.phone-mockup video {
    object-fit: contain !important;
    background: #000;
}

/* High-Fidelity Futuristic Kinetic Manifest */
@keyframes neonPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.6));
    }
}

@keyframes scanningLaser {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.bg-luminous-dark::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    z-index: 100;
    pointer-events: none;
    animation: scanningLaser 8s linear infinite;
}

.text-gradient {
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* 3D Tilt Structural Tokens */
.card-premium,
.blueprint-card,
.impact-card {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-premium:hover,
.blueprint-card:hover {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.1);
}

/* Glitch Accent Reveal */
.glitch-reveal {
    position: relative;
    display: inline-block;
}

.glitch-reveal::before,
.glitch-reveal::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0D11;
}

.glitch-reveal::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-reveal::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    20% {
        clip: rect(62px, 9999px, 42px, 0);
    }

    /* ... shortened for brevity, but I'll implement full later if needed ... */
    100% {
        clip: rect(13px, 9999px, 66px, 0);
    }
}

/* High-Fidelity Pipeline Manifest */
.blueprint-section {
    position: relative;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, transparent 50%) !important;
}

.pipeline-node {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.pipeline-node:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.sector-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent-color);
    opacity: 0.6;
    margin-bottom: 15px;
    display: block;
}

.blueprint-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Data Flow Connectors */
.pipeline-connector {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.pipeline-connector::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: flowData 2s linear infinite;
}

@keyframes flowData {
    0% {
        left: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .pipeline-connector {
        display: none;
    }
}

/* High-Fidelity Laptop Mockup Manifest */
.laptop-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 2000px;
}

.laptop-frame {
    background: #1a1a1a;
    border-radius: 20px 20px 2px 2px;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    position: relative;
}

.laptop-screen {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.laptop-frame:hover .laptop-screen img {
    transform: scale(1.05);
}

.laptop-base {
    width: 115%;
    height: 12px;
    background: linear-gradient(to bottom, #2a2a2a, #111);
    margin-left: -7.5%;
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 2;
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 45%;
    width: 10%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 5px 5px;
}

/* Redefining Impact Cards for Laptops */
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

@media (max-width: 991px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
}

.impact-laptop-wrapper {
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-laptop-wrapper:hover {
    transform: translateY(-10px);
}

.impact-laptop-content {
    margin-top: 30px;
    text-align: left;
}

.impact-laptop-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.impact-laptop-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

/* High-Fidelity Custom Mobile Trigger */
.navbar-toggler {
    border: none !important;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: transparent !important;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border-radius: 2px;
}

.navbar-toggler:not(.collapsed) .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .toggler-icon:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggler:not(.collapsed) .toggler-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Footer Manifest Redesign */
.footer-redesign {
    background: #0B0D11;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.footer-brand-desc {
    color: var(--slate-400);
    max-width: 300px;
    line-height: 1.6;
}

.footer-link-group h6 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.footer-link {
    color: var(--slate-400);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 40px;
}

/* High-Fidelity Preloader Text Manifest */
.preloader-text-manifest {
    opacity: 0;
    transform: translateY(10px);
    animation: textAppear 1.5s ease forwards;
    animation-delay: 1.2s;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

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

.logo-draw-container svg {
    max-width: 400px;
    width: 100%;
}

/* High-Fidelity Form Token Manifest */
.lte-input,
.lte-select {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    color: #fff !important;
    padding: 18px 25px !important;
    font-size: 0.95rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.lte-input:focus,
.lte-select:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px);
}

.lte-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 25px center !important;
    background-size: 14px !important;
}

.lte-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.shadow-glow {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25) !important;
}

.shadow-glow:hover {
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45) !important;
    transform: translateY(-3px) scale(1.01);
}

/* High-Fidelity Luminant Activation CTA */
.btn-luminous-white {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
    color: #0B0D11 !important;
    border: none !important;
    padding: 14px 32px !important;
    font-weight: 800 !important;
    border-radius: 14px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15) !important;
}

.btn-luminous-white:hover {
    background: #f8fafc !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3) !important;
    color: #000 !important;
}

/* High-Fidelity Laptop Scroll Engine */
.laptop-screen {
    position: relative;
    overflow: hidden !important;
}

.laptop-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: auto !important;
    transition: transform 5s ease-in-out !important;
    /* Smooth slow scroll */
    object-fit: contain;
}

.laptop-container:hover .laptop-screen img {
    transform: translateY(calc(-100% + 185px));
    /* 185px is roughly screen height */
}

/* Specific adjustment for mobile frames if needed */
.impact-laptop-wrapper {
    margin-bottom: 60px;
}

/* High-Fidelity Iframe Hub Engine */
.laptop-screen iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: #fff;
    pointer-events: all !important;
}

.laptop-container {
    position: relative;
    z-index: 1;
}

/* Ensure overlay doesn't block interaction on hover */
.laptop-container:hover {
    z-index: 100;
}

/* High-precision scaling for iframes */
.laptop-screen {
    background: #000;
}

/* Aero-Luxe Pricing Hardening */
.pricing-grid-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-grid-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.toggle-item-luxe {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.toggle-item-luxe:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-footer-luxe {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -1.5rem -1.5rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-pricing-action {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-pricing-action:hover {
    background: #e2e8f0;
    transform: scale(1.02);
}

.tier-price-luxe {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

@media (max-width: 991.98px) {
    /* Fixed: Mobile Navbar Transparency & Alignment */
    .navbar-collapse {
        background: rgba(11, 13, 17, 0.98) !important;
        backdrop-filter: blur(25px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 1000 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        transform: translateY(-100%) !important;
        padding: 50px 20px !important;
    }

    .navbar-collapse.show {
        transform: translateY(0) !important;
    }

    .navbar-nav {
        width: 100% !important;
        text-align: center !important;
    }

    .navbar-nav .nav-item {
        margin: 15px 0 !important;
    }

    .navbar-nav .nav-link {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        letter-spacing: -1px !important;
    }

    /* Fixed: Content Overlap Manifest */
    .hero-redesign {
        padding-top: 140px !important;
    }

    .section-padding:first-of-type {
        padding-top: 140px !important;
    }

    /* Fixed: AI Preloader Responsiveness */
    #ai-architect-preloader svg {
        width: 80px !important;
        height: auto !important;
    }

    #ai-progress-text {
        font-size: 0.6rem !important;
        letter-spacing: 2px !important;
    }

    #architect-hub .glass-card {
        padding: 25px !important;
    }

    #chat-history-manifest {
        max-height: 200px !important;
    }

    /* Fixed: Footer and filter responsiveness */
    .footer-redesign {
        text-align: center !important;
    }
    .footer-redesign .d-flex {
        justify-content: center !important;
    }
    .footer-link-group {
        margin-bottom: 30px;
    }
    .filter-btn {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
        padding: 12px 10px;
    }
    .success-grid {
        grid-template-columns: 1fr !important;
    }
}