/* ==========================================================================
   1. PREMIUM STUDIO TOKENS & RESET (Cyber-Industrial Layered Theme)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    /* Layered Slate Canvas Engine */
    --bg-obsidian: #070A12;         /* Deep, clean space background */
    --bg-panel: #0F1424;            /* Elevated surface for cards, forms, and modules */
    --border-slate: #1E293B;        /* Tactical crisp section separators */
    --border-glow: rgba(0, 240, 255, 0.2);
    
    /* Typography Palette */
    --text-primary: #F8FAFC;        /* High-contrast crisp silver white */
    --text-muted: #64748B;          /* Industrial secondary text gray */
    
    /* Ignition Accents */
    --neon-cyan: #00F0FF;           /* Core interactive system trigger */
    --neon-volt: #39FF14;           /* Successful state tracking green */
    --cyan-glow: 0px 0px 20px rgba(0, 240, 255, 0.3);
    --panel-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    
    /* Fonts & System Metrics */
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --matrix-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max-width: 1340px;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-obsidian);
    overflow-x: hidden;
}

/* ==========================================================================
   2. REUSABLE INFRASTRUCTURE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 48px;
}
@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

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

.section-indicator {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Stark Premium Interface Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 8px; 
    transition: var(--matrix-transition);
    cursor: pointer;
    border: none;
}

.btn-stark-primary {
    background-color: var(--neon-cyan);
    color: var(--bg-obsidian);
    padding: 16px 36px;
    border: 1px solid var(--neon-cyan);
}
.btn-stark-primary:hover {
    background-color: transparent;
    color: var(--neon-cyan);
    box-shadow: var(--cyan-glow);
    transform: translateY(-2px);
}

.btn-stark-link {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 0;
    font-family: var(--font-mono);
    font-size: 12px;
}
.btn-stark-link:hover {
    color: var(--neon-cyan);
    padding-left: 8px;
}

/* ==========================================================================
   3. STRUCTURAL FIXATION NAVIGATION LAYER
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-slate);
    z-index: 1000;
    height: 84px;
    transition: var(--matrix-transition);
}

/* ⚡ THE FIX: Aggressively eliminate the toggle bars from desktop viewport rendering entirely */
.nav-toggle {
    display: none !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--neon-cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--matrix-transition);
}

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

.btn-nav-stark {
    background: transparent;
    border: 1px solid var(--border-slate);
    color: var(--text-primary);
    padding: 10px 22px;
    font-size: 11px;
    font-family: var(--font-mono);
    border-radius: 6px;
}
.btn-nav-stark:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--cyan-glow);
}

/* ==========================================================================
   4. TECH-AGENCY EDITORIAL HERO
   ========================================================================== */
.hero-section {
    padding: 220px 0 140px 0;
    border-bottom: 1px solid var(--border-slate);
    background-image: linear-gradient(rgba(30, 41, 59, 0.3) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(30, 41, 59, 0.3) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
}

.hero-layout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: center;
}

.hero-ticker {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 6px 14px;
    margin-bottom: 28px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.hero-text-block h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero-lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 44px;
    max-width: 680px;
}

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

/* Metric Display Blocks */
.hero-stats-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stat-box {
    border: 1px solid var(--border-slate);
    background-color: var(--bg-panel);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--panel-shadow);
    transition: var(--matrix-transition);
}
.stat-box:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateX(4px);
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* ==========================================================================
   5. MISSION & CORE OBJECTIVE SECTIONS
   ========================================================================== */
.mission-section {
    padding: 140px 0;
    background-color: #04060C;
    border-bottom: 1px solid var(--border-slate);
}

.mission-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.grid-left-sticky {
    position: sticky;
    top: 140px;
    height: max-content;
}

.grid-left-sticky h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.philosophy-block {
    margin-bottom: 54px;
}
.philosophy-block:last-child { margin-bottom: 0; }

.philosophy-block h4 {
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    color: var(--neon-cyan);
}

.philosophy-block p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ==========================================================================
   6. INTERACTIVE REPOSITORY MATRIX FILTERS (Elite Web-Agency Spec)
   ========================================================================== */
.work-section {
    padding: 140px 0;
    border-bottom: 1px solid var(--border-slate);
}

.work-section-header {
    margin-bottom: 54px;
}

.work-section-header h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 54px;
    border-bottom: 1px solid var(--border-slate);
    padding-bottom: 16px;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 6px;
    transition: var(--matrix-transition);
}

.filter-btn.active, .filter-btn:hover {
    color: var(--neon-cyan);
    background-color: rgba(0, 240, 255, 0.05);
}

/* ⚡ FIXED: Mapping directly to your HTML's actual grid container class ⚡ */
.work-matrix-grid {
    display: grid;
    /* Forces desktop cards into a tight, professional 320px maximum width */
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

/* Shrunk, High-End Tech Dashboard Card Element */
.matrix-item {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-slate);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: var(--panel-shadow);
    transition: var(--matrix-transition);
    height: 100%;
}

/* 3D Hover Ignition State */
.matrix-item:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: var(--cyan-glow), var(--panel-shadow);
}

/* Glassmorphic Monitor Viewport Layout Container */
.image-viewport {
    width: 100%;
    height: 160px; /* Kept compact to maintain proper square aspect ratio */
    background: linear-gradient(135deg, #0A0F1D 0%, #1A233D 100%);
    border-bottom: 1px solid var(--border-slate);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Automated Fallback Canvas Pattern when Image is missing or broken */
.image-viewport.fallback-mesh,
.image-viewport:not(:has(img)), 
.image-viewport:has(img[src=""]), 
.image-viewport:has(img:not([src])) {
    background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.15) 0%, transparent 60%),
                linear-gradient(135deg, #070A12 0%, #131A2E 100%) !important;
}

.image-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--matrix-transition);
}

.matrix-item:hover .image-viewport img {
    transform: scale(1.04);
}

.mesh-banner-text {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    position: absolute;
    z-index: 2;
}

/* Inner Text Padding Reductions for Tighter Grid Balance */
.item-data-pane {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.item-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-cyan);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.item-data-pane h3 {
    font-family: var(--font-heading);
    font-size: 18px; 
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.item-data-pane p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Action Area Wrapper Spacing Reduction */
.item-action-pane {
    padding: 0 20px 20px 20px;
}

/* Seamless Card Action Trigger */
.matrix-btn-blueprint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--border-slate);
    color: var(--text-primary) !important;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-radius: 8px;
    transition: var(--matrix-transition);
}

.matrix-btn-blueprint:hover {
    background-color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--bg-obsidian) !important;
    box-shadow: var(--cyan-glow);
}

.matrix-fallback-tag {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    padding: 12px;
    border: 1px dashed var(--border-slate);
    border-radius: 8px;
}

/* ==========================================================================
   7. STARK TECHNICAL DATA INGESTION (Secure Command Form Panel)
   ========================================================================== */
.contact-section {
    padding: 140px 0;
    background-color: #04060C;
    border-top: 1px solid var(--border-slate);
}

.contact-max-width {
    max-width: 650px;
    margin: 0 auto;
}

.agency-intake-form {
    margin-top: 48px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-slate);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--panel-shadow);
}

.stark-input-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 580px) {
    .stark-input-row { flex-direction: column; gap: 24px; }
}

.stark-input-group {
    margin-bottom: 24px;
    width: 100%;
}

.stark-input-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.stark-input-row input, 
.stark-input-group select, 
.stark-input-group textarea {
    width: 100%;
    padding: 16px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    background-color: var(--bg-obsidian);
    border: 1px solid var(--border-slate);
    color: var(--text-primary);
    border-radius: 10px;
    transition: var(--matrix-transition);
}

.stark-input-row input:focus, 
.stark-input-group select:focus, 
.stark-input-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.stark-input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2364748B'><polygon points='0,0 10,0 5,5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.btn-stark-submit {
    width: 100%;
    background-color: var(--neon-cyan);
    color: var(--bg-obsidian);
    padding: 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--matrix-transition);
}
.btn-stark-submit:hover {
    background-color: var(--text-primary);
    color: var(--bg-obsidian);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   8. STUDIO FOOTER SYSTEM & BREAKPOINTS
   ========================================================================== */
.site-footer {
    background-color: var(--bg-obsidian);
    color: var(--text-muted);
    padding: 48px 0;
    font-size: 12px;
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid var(--border-slate);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attribution a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--matrix-transition);
}
.attribution a:hover {
    color: var(--neon-cyan);
}

/* --- Responsive Engineering Optimization Breakpoints --- */
@media (max-width: 992px) {
    .hero-layout-grid, .mission-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }
    .grid-left-sticky { position: static; }
    .hero-stats-block { flex-direction: row; flex-wrap: wrap; }
    .stat-box { flex: 1 1 200px; }
}

/* ==========================================================================
   📦 HIGH-FIDELITY MOBILE MOBILE RESPONSIVE ENGINE (Breakpoints)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-text-block h1 { font-size: 46px; }
    .footer-grid { flex-direction: column; gap: 20px; text-align: center; }
    .agency-intake-form { padding: 28px; border-radius: 16px; }

    /* 1. FORCE THE NAVIGATION WRAPPER TO PRESERVE VISUAL LAYOUT */
    .navbar {
        height: 70px; /* Marginally tighter navbar for compact mobile viewport views */
    }

    /* 2. ENFORCE STRUCTURAL FLEX RE-ALIGNMENT FOR RESPONSIVE MENU NODES */
    .nav-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* 3. SHOW THE HAMBURGER BUTTON WRAPPER AT MOBILE SCALE */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100; /* Positions the switch cleanly above the sliding panel canvas */
    }

    /* Create the technical horizontal wire lines inside the toggle element */
    .nav-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: var(--matrix-transition);
        transform-origin: left center;
    }

    /* 4. TRANSFORM STICKY ROW LIST ITEMS INTO AN INTERACTIVE DROP-DOWN TERMINAL MODULE */
    .nav-menu {
        display: flex !important; /* Overrides the previous hiding rule */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        
        /* Fixed overlay orientation framing rules */
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0; /* Keeps the overlay completely shut by default */
        background-color: rgba(15, 20, 36, 0.98); /* Blends securely with your deep panel slate hex style */
        border-bottom: 1px solid var(--border-slate);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 0 24px;
        overflow: hidden;
        z-index: 1050;
        
        /* Smooth mechanical panel sliding effect framework */
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* 5. ACTIVE UTILITY STATES (Fires cleanly when javascript adds the .active selector) */
    .nav-menu.active {
        height: calc(100vh - 70px); /* Opens container viewport wide */
        padding: 48px 24px; /* Soft structural padding deployment */
    }

    .nav-menu a {
        font-size: 16px; /* Scaled up text targets to improve mobile touch targets */
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .btn-nav-stark {
        width: 80% !important;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        margin-top: 16px;
        border-color: var(--neon-cyan);
        color: var(--neon-cyan);
    }

    /* 6. ANIMATED HAMBURGER-TO-CROSS SELECTION SHAPE TRANSFORMATIONS */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translateY(-2px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        transform: rotate(-45deg) translateY(2px);
    }

     .work-matrix-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        justify-content: center !important;
        gap: 20px !important;
    }
}


/* ==========================================================================
   ADDED STYLING: OWNER PORTAL & WORKFLOW PIPELINE
   ========================================================================== */

/* Owner Portal Feature Section */
.portal-feature-section {
    padding: 120px 0;
    background-color: var(--bg-obsidian);
    border-bottom: 1px solid var(--border-slate);
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portal-text-block h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.portal-lead {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.portal-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portal-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.portal-benefits-list i {
    color: var(--neon-cyan);
    font-size: 18px;
}

/* Mock Dashboard Preview Card */
.portal-preview-card {
    background: var(--bg-panel);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    box-shadow: var(--cyan-glow), var(--panel-shadow);
    overflow: hidden;
}

.portal-card-header {
    background: #0A0D18;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-slate);
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.console-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
    letter-spacing: 1px;
}

.portal-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-input-group label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.mock-badge {
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-volt);
    border: 1px solid rgba(0, 255, 102, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
}

.mock-upload-zone {
    border: 1px dashed var(--border-slate);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.mock-upload-zone i {
    font-size: 24px;
    color: var(--neon-cyan);
}

.mock-input-row {
    display: flex;
    gap: 12px;
}

.mock-input-row input {
    width: 100%;
    background: var(--bg-obsidian);
    border: 1px solid var(--border-slate);
    padding: 10px;
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 13px;
}

.mock-btn-publish {
    background: var(--neon-cyan);
    color: var(--bg-obsidian);
    border: none;
    padding: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section & Pipeline */
.process-section {
    padding: 120px 0;
    background-color: #04060C;
    border-bottom: 1px solid var(--border-slate);
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.pipeline-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-slate);
    padding: 28px 24px;
    border-radius: 12px;
    position: relative;
}

.step-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 800;
    color: var(--neon-cyan);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

.pipeline-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.time-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pipeline-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Warranty Badge */
.warranty-badge-container {
    max-width: 700px;
    margin: 0 auto;
}

.warranty-badge {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(15, 20, 36, 0.8) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.warranty-icon {
    font-size: 36px;
    color: var(--neon-cyan);
}

.warranty-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.warranty-text p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .portal-grid { grid-template-columns: 1fr; gap: 40px; }
    .warranty-badge { flex-direction: column; text-align: center; }
}