/* Consolidated Global Variables */
:root {
    /* Background Colors */
    --bg-dark: #111315;      /* Restored to dark industrial theme */
    --nav-gray: #17191b;     /* Navbar and Card background */
    
    /* Brand Colors */
    --gold-accent: #4b59ad;  /* Signature Gold from "SHEET" text */
    --accent-color: #4b59ad; /* Secondary Bronze/Gold accent */
    --orange-accent: #f47822;
    
    /* Text Colors */
    --text-muted: #8d9297;   /* Technical gray for descriptions */
    --white: #ffffff;
    
    /* Button Colors */
    --steel-blue: #707b88;   /* Grayish-blue for Primary buttons */
    --dark-btn: #2d3035;     /* Dark gray for Secondary buttons */
    --button-gray: #717c89; 
    --button-dark: #2c2f34;
}

/* Base Body Styling */
body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;      /* Prevents horizontal scroll issues on mobile */
}

/* --- Navigation & Header --- */
.top-nav {
    background-color: #232527;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    background-color: var(--nav-gray);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center; /* Vertically centers hero content */
    background: linear-gradient(to right, rgba(17, 19, 21, 0.95) 20%, rgba(17, 19, 21, 0.2) 100%), 
                url('hero-section-image.jpg') no-repeat center center/cover;
}

.accent-label {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 25px;
    
    /* Typography: Switch to White for maximum legibility */
    font-size: 0.85rem;
    color: #ffffff; 
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    
    /* Glass Effect with Brand Tint */
    background: rgba(75, 89, 173, 0.2); /* Tinted brand-blue background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Borders */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--brand-blue); /* Thicker brand anchor */
    
    /* Add a subtle glow to the anchor bar */
    box-shadow: -5px 0 15px rgba(75, 89, 173, 0.4);
    
    transition: all 0.4s ease;
}

.accent-label:hover {
    background: var(--brand-blue);
    color: #ffffff;
    transform: translateX(5px); /* Interactive slide effect */
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-desc {
    max-width: 520px;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- Consolidated Buttons --- */
.btn-primary-steel, 
.btn-secondary-steel, 
.btn-quote {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

/* Specific Button Styles */
.btn-quote {
    background: linear-gradient(to right, #7a8693, #5a6571);
    color: #000 !important;
    font-size: 0.85rem;
    padding: 10px 25px;
}

.btn-primary-steel {
    background-color: var(--steel-blue);
    color: #000;
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-primary-steel:hover {
    background-color: #5869c8;
}

.btn-secondary-steel {
    background-color: var(--dark-btn);
    color: #fff;
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-secondary-steel:hover {
    background-color: rgba(255, 255, 255, 0.1);
}



/* Container Box Styling */
.counter-box {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1); /* The rectangle border */
    padding: 40px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    height: 100%;
}

.counter-box:hover {
    border-color: var(--gold-accent); /* Glow effect on hover */
    background-color: rgba(147, 115, 65, 0.05);
}

/* Icon Styling */
.icon-wrapper {
    font-size: 2.5rem;
    color: var(--gold-accent);
    flex-shrink: 0;
}

/* Typography inside the Box */
.counter-val {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #ffffff;
}

.counter-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.3;
}

.gold-text {
    color: var(--gold-accent);
}

.orange-text {
    color: var(--orange-accent)
}

/* Responsive Fix */
@media (max-width: 991px) {
    .counter-box {
        padding: 30px 20px;
    }
    .counter-val {
        font-size: 2.5rem;
    }
}








/* Card Base */
.product-card {
    background-color: #16181b; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.p-img-box {
    height: 240px;
    overflow: hidden;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-content {
    padding: 25px;
}

.p-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.p-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 65px; /* Ensures boxes stay aligned */
}

/* THE SPEC BOX - Exact Styling */
.spec-container {
    background-color: #0d0f11; /* Darker than the card bg */
    border: 1px solid rgba(196, 166, 118, 0.15); /* Faint gold border */
    padding: 18px 0;
}

.spec-list-wrapper {
    padding: 0 20px;
}

.spec-border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.08); /* Vertical divider */
}

.spec-list-wrapper h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.spec-list-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list-wrapper ul li {
    font-size: 0.82rem;
    color: #cbd5e1; /* Off-white for readability */
    margin-bottom: 4px;
    position: relative;
    padding-left: 12px;
}

/* Technical Bullet Dash */
.spec-list-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background-color: var(--gold-accent);
}

/* Hover State */
.product-card:hover {
    border-color: var(--gold-accent);
    transition: 0.4s ease;
}




/* Product Section Heading Styling */
.sub-heading-accent {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-accent);
    letter-spacing: 5px; /* Wide spacing for industrial look */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem; /* Large and bold */
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.heading-line {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin: 0 auto; /* Centers the line */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .main-product-title {
        font-size: 2.5rem;
    }
    .sub-heading-accent {
        letter-spacing: 3px;
        font-size: 0.75rem;
    }
}




/* Container heights to ensure alignment */
.gallery-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    background: #000;
    width: 100%;
}

/* Height calculations: Large = (Tall * 2) + Gap (16px) */
.gallery-box.large-vertical {
    height: 616px; 
}

.gallery-box.tall {
    height: 300px;
}

.gallery-box.medium {
    height: 350px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes them stay square/rectangular without stretching */
    
    transition: all 0.5s ease;
}

.gallery-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Gold Overlay with FontAwesome Plus */
.gallery-box::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgb(89 106 201 / 75%); /* Your accent gold */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-box:hover::after {
    opacity: 1;
}

/* Responsive Fix for Mobile */
@media (max-width: 991px) {
    .gallery-box.large-vertical,
    .gallery-box.tall,
    .gallery-box.medium {
        height: 300px; /* Stacked look on mobile */
    }
}






/* About Us Section Styles */
.about-us-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.about-description p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Feature List with Checkmarks */
.standard-list {
    list-style: none;
    padding: 0;
}

.standard-list li {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.standard-list li i {
    color: var(--gold-accent); /* #c4a676 */
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Vertical Rectangle Counter Cards */
.counter-card-rect {
    background-color: #1a1c1e; /* Subtle card lift from background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
}

.counter-card-rect:hover {
    border-color: var(--gold-accent);
    transform: translateX(10px); /* Slight slide right on hover */
}

.icon-sq {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.counter-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.counter-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .counter-card-rect:hover {
        transform: translateY(-5px);
    }
}










/* Specs Section Styling */
.specs-section {
    background-color: var(--bg-dark);
}

.custom-accordion .accordion-item {
    background-color: #17191b; /* Matches your Nav/Card BG */
    border: none;
    margin-bottom: 20px;
}

.custom-accordion .accordion-button {
    background-color: #17191b;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 25px;
    box-shadow: none;
    border-radius: 0 !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-accent);
    background-color: #1a1c1e;
}

/* Accordion Arrow Color */
.custom-accordion .accordion-button::after {
    filter: invert(1); /* Makes arrow white */
}

.custom-accordion .accordion-body {
    padding: 0 40px 40px 40px;
    background-color: #17191b;
}

/* Spec Row Alignment */
.spec-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    width: 200px; /* Fixed width for labels */
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    flex-shrink: 0;
}

.spec-value {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .spec-row {
        flex-direction: column;
    }
    .spec-label {
        width: 100%;
        margin-bottom: 5px;
    }
    .custom-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}





/* Catalog Download Styling */
.download-catalog-section {
    background-color: var(--bg-dark); /* #111315 */
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-download-catalog {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-accent); /* #c4a676 */
    text-decoration: none;
    border: 1px solid rgba(196, 166, 118, 0.3); /* Faint gold border */
    background-color: rgba(196, 166, 118, 0.05); /* Very subtle gold tint */
    padding: 15px 40px;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s ease;
    border-radius: 0;
}

.btn-download-catalog:hover {
    background-color: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Container for alignment */
.catalog-download-container {
    text-align: center;
    padding: 40px 0;
    background-color: #111315; /* Matching dark background */
}

.download-text {
    font-family: 'Roboto', sans-serif;
    color: #8d9297; /* Muted gray text color */
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* THE EXACT BUTTON STYLE */
.btn-industrial-download {
    display: inline-block;
    font-family: 'Oswald', sans-serif; /* Industrial heading font */
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 2px; /* Spaced out typography */
    color: #8495f5; /* The exact gold/bronze accent color */
    text-decoration: none;
    
    /* Box & Border */
    padding: 18px 45px;
    border: 1px solid rgba(235, 235, 235, 0.425); /* Transparent gold border */
    background-color: #595959; /* Very subtle gold tint */
    border-radius: 0; /* Strict square corners */
    
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

/* Hover Interaction */
.btn-industrial-download:hover {
    background-color: #dadada; /* Solid gold background */
    color: #4b59ad; /* Dark text on gold */
    border-color: rgba(109, 109, 108, 0.3);
    transform: translateY(-3px); /* Subtle lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}










/* Chemical Composition Section */
.composition-section {
    background-color: var(--bg-dark); /* #111315 */
}

.composition-intro {
    font-family: 'Roboto', sans-serif;
    color: var(--text-muted); /* #8d9297 */
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Table Styling */
.custom-table-wrapper {
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-composition-table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.custom-composition-table thead th {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #1a1c1e; /* Header slightly lighter */
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    text-transform: uppercase;
}

.custom-composition-table tbody td {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

/* Grade Column Highlight */
.grade-cell {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 600;
    color: var(--gold-accent) !important; /* #c4a676 */
    background-color: rgba(196, 166, 118, 0.02); /* Very faint gold tint */
}

/* Row Hover Effect */
.custom-composition-table tbody tr {
    transition: background-color 0.3s ease;
}

.custom-composition-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.custom-composition-table tbody tr:hover td {
    color: #ffffff;
}





.contact-section {
    background-color: #111315;
    padding: 80px 0;
}

.contact-info-title {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.contact-info-desc {
    font-family: 'Roboto', sans-serif;
    color: #8d9297;
    line-height: 1.6;
}

/* Info List Items */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item h6 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-item p {
    font-family: 'Roboto', sans-serif;
    color: #8d9297;
    margin: 0;
    font-size: 0.9rem;
}

.iframe-form-container {
    background-color: #1a1c1e;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}











/* Footer Base Styles */
.footer-section {
    background-color: #111315; /* Same as your contact section */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-about-text {
    font-family: 'Roboto', sans-serif;
    color: #8d9297; /* Muted gray */
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact-links p {
    font-family: 'Roboto', sans-serif;
    color: #8d9297;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-links i {
    color: var(--gold-accent); /* #c4a676 */
    width: 20px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    text-decoration: none;
    color: #8d9297;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

/* WhatsApp Button Style */
.btn-whatsapp {
    display: inline-block;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Bottom Bar */
.footer-bottom {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.copyright-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #555;
}

.footer-bottom-links li a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: var(--gold-accent);
}
/* Copyright Text Styling */
.copyright-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #555; /* Muted gray */
    margin: 0;
    line-height: 1.5;
}

/* Link Styling within Copyright */
.copyright-text a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Stellure Global Link */
.footer-brand-link {
    color: #8d9297; /* Matches footer text */
}

.footer-brand-link:hover {
    color: var(--gold-accent); /* #c4a676 */
}

/* Mesotek Link */
.designer-link {
    color: var(--gold-accent); /* Highlighted as the designer */
    opacity: 0.8;
}

.designer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .copyright-text {
        font-size: 0.75rem;
        text-align: center;
    }
}



/* Mobile Optimization for Header and Hero */
@media (max-width: 991px) {
    /* Ensure the top-nav info (phone/email) is centered and legible */
    .top-nav .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    /* Fix for sticky navbar overlap */
    .hero-section {
        padding-top: 90px; /* Adjust this value based on your total header height */
        height: auto; /* Allow section to grow with stacked content */
        min-height: 100vh;
        display: flex;
        align-items: flex-start; /* Align to top so padding handles the gap */
        text-align: center;
    }

    /* Adjust main title for smaller screens */
    .main-title {
        font-size: 3.2rem; /* Reduced from 6rem to fit mobile width */
        line-height: 1.1;
        margin-top: 20px;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 1rem;
        margin: 20px auto;
    }

    /* Stack Hero Buttons vertically */
    .hero-section .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }

    .btn-primary-steel, 
    .btn-secondary-steel {
        width: 100%; /* Full width buttons for easier tapping */
        padding: 18px 20px;
    }
}
@media (max-width: 991px) {
    .navbar-brand img {
        height: 50px; /* Slightly smaller logo for mobile */
    }

    /* Keep navbar from jumping when toggled */
    .navbar {
        padding: 10px 0;
    }

    /* Ensure the mobile menu has a solid background so content doesn't bleed through */
    .navbar-collapse {
        background-color: var(--nav-gray);
        margin-top: 10px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}
@media (max-width: 576px) {
    .top-nav {
        text-align: center !important;
    }
    
    .top-nav .me-4 {
        margin-right: 0 !important;
        margin-bottom: 5px;
        display: block;
    }
}








/* Application Cards */
.app-tag-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-left: 3px solid var(--brand-blue);
    height: 100%;
    transition: 0.3s;
}
.app-tag-card i { color: var(--brand-blue); font-size: 2rem; }
.app-tag-card:hover { background: rgba(75, 89, 173, 0.1); transform: translateX(10px); }

/* Feature Items */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-item { 
    color: #fff; font-weight: 600; font-size: 1.1rem; 
    display: flex; align-items: center; gap: 15px; 
}
.feature-item i { color: var(--brand-blue); font-size: 1.3rem; }

/* Mission Boxes */
.mission-box {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Market Badges */
.market-badge {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}
.market-badge i { font-size: 3rem; color: var(--brand-blue); opacity: 0.6; }
.market-badge:hover { border-color: var(--brand-blue); }
.market-badge:hover i { opacity: 1; transform: rotateY(180deg); transition: 0.6s; }