:root {
    --primary-dark: #0A111F;
    --accent-gold: #b68f54;
    --text-white: #FFFFFF;
    --text-gray: #666666;
    --bg-light: #FDFDFD;
    --bg-off: #F9F9F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html, body {
    background-color: var(--primary-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100% !important;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, rgba(5, 10, 20, 0.9), transparent);
}

.header.solid {
    background: var(--primary-dark) !important;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--accent-gold);
}

.sub-logo {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 400;
    margin-left: 10px;
    color: inherit;
    vertical-align: middle;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    opacity: 0.8;
}

.nav a.active {
    color: var(--accent-gold);
    opacity: 1;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Mobile Menu Trigger */
.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

.menu-trigger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { opacity: 0; }
.menu-trigger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-image: linear-gradient(135deg, rgba(5, 10, 30, 0.9) 0%, rgba(5, 10, 20, 0.95) 100%), url('/img/White-abstract-background-with-squares-Graphics-26660299-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1050;
    padding: 40px 30px 80px;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: none;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
    box-shadow: -15px 0 50px rgba(0,0,0,0.5);
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 10, 20, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    display: block;
}

@media (min-width: 769px) {
    .mobile-drawer, .mobile-drawer-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateX(20px);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.active .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-drawer.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-drawer.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-drawer.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-drawer.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-list a {
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    transition: 0.3s;
}

.mobile-nav-list a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 10, 20, 0.75) 10%, rgba(5, 10, 20, 0.2) 100%);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 0.9em;
    margin: 0 5px;
}

.hero h1 .amp {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.8em;
    vertical-align: middle;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline, .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(196, 164, 124, 0.2);
}

/* Trust Bar */
.trust-bar {
    padding: 35px 0;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    opacity: 0.8;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    opacity: 0.8;
}

.logo-item {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Mission Section */
.mission {
    background-color: var(--text-white);
    color: var(--primary-dark);
    overflow: hidden;
}

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

.mission-text {
    padding: 100px 80px 100px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mission-text .section-label.gold {
    text-align: left;
    margin-bottom: 20px;
}

.mission h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.mission-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 600px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--text-white);
}

.mission-img {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2070'); /* Placeholder Skyscrapers */
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Cards (Insights) */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--primary-dark);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-img {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-tag {
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Numbered Grid (Expertises) */
.numbered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.number-item {
    position: relative;
    padding-top: 30px;
}

.number-item .num {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    opacity: 0.3;
}

/* Forms (Contact) */
.form-container {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group textarea {
    padding: 15px 18px;
    border: 1px solid #E5E7EB;
    background-color: #FDFDFD;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(196, 164, 124, 0.1);
}

.btn-submit {
    grid-column: span 2;
    padding: 18px;
    background: #0A111F;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1a2a4a;
    transform: translateY(-2px);
}

/* Footer Section */
.footer {
    padding: 80px 0 40px;
    background: #fff;
    color: var(--primary-dark);
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

/* Utility Section variants */
.section-white {
    background: #fff;
    color: var(--primary-dark);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--text-white);
}

.icon-list {
    list-style: none;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
    position: relative;
}

.info-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 1px;
    height: 60%;
    background: #eee;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-icon-circle {
    min-width: 120px;
    height: 120px;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-gold);
}

.info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

.check-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: bold;
}

/* Differentiation Section (Expertises) */
.diff-section {
    display: flex;
    gap: 60px;
    align-items: stretch;
    background: #0A111F;
    border-radius: 8px;
    overflow: hidden;
    margin: 60px 0;
}

.diff-image {
    flex: 0.8;
    min-height: 400px;
}

.diff-content {
    flex: 1.2;
    display: flex;
    gap: 40px;
    padding: 60px 40px 60px 0;
}

.diff-main {
    flex: 1;
}

.diff-sep {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
}

.diff-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.diff-item {
    display: flex;
    gap: 20px;
}

.diff-item span {
    font-size: 2rem;
}

.diff-item h4 {
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.diff-item p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* Responsive */
/* Responsive Refinements */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .hero h1 { font-size: 4rem; }
    .mission-grid { grid-template-columns: 1fr; }
    .mission-text { padding: 80px 40px; }
    
    footer .container > div:first-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    
    /* Header */
    .header { padding: 15px 0; }
    .nav, .header-cta { display: none; }
    .menu-trigger { display: flex; }
    
    /* Global Stability Fixes */
    * { box-sizing: border-box !important; }
    html, body { overflow-x: hidden !important; width: 100% !important; position: relative !important; margin: 0; padding: 0; }
    .container { padding: 0 24px !important; width: 100% !important; max-width: 100vw !important; }
    
    /* Smart Hero Mobile (Internal Pages) */
    .hero:not(#home-hero) { 
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important;
        min-height: 180px !important; 
        height: 180px !important;
        padding: 0 !important; 
        margin-top: 80px;
        position: relative;
    }
    .hero:not(#home-hero) .hero-bg { 
        position: absolute !important; 
        top: 0; left: 0; width: 100%; height: 100%;
        display: block !important; 
        z-index: 1 !important;
    }
    .hero:not(#home-hero) .hero-bg::after { display: block !important; background: rgba(0,0,0,0.2) !important; } 
    .hero:not(#home-hero) .hero-content { 
        position: relative;
        z-index: 2;
        display: flex !important; 
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 24px !important;
    }
    
    /* Center the label as a glass badge */
    .hero:not(#home-hero) .hero-content > div:first-child { 
        display: flex !important; 
        margin: 0 !important;
        padding: 12px 25px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 2px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }
    .hero:not(#home-hero) .section-label { 
        color: white !important; 
        font-size: 0.8rem !important;
        letter-spacing: 3px !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }
    .hero:not(#home-hero) .section-label + div { display: none !important; } /* Hide the gold line in the badge */
    
    /* Hide long titles and descriptions on mobile smart hero, but keep the label */
    .hero:not(#home-hero) h1, 
    .hero:not(#home-hero) p:not(.section-label), 
    .hero:not(#home-hero) .btn-primary { display: none !important; }

    /* Special Home Hero Mobile Adjustments */
    #home-hero { min-height: 450px !important; padding-top: 100px !important; text-align: center; justify-content: center; }
    #home-hero .hero-content { margin: 0 auto; text-align: center; }
    #home-hero h1 { font-size: 2.2rem !important; text-align: center !important; margin-bottom: 25px !important; }
    #home-hero p { font-size: 1rem !important; text-align: center !important; margin: 0 auto 35px auto !important; width: 100%; max-width: 100% !important; }
    #home-hero .btn-primary { width: 100%; justify-content: center; }
    
    .img-placeholder { filter: none !important; }
    section { padding: 60px 0 !important; }
    .section-label { text-align: left !important; margin-bottom: 20px !important; }
    h2 { font-size: 1.85rem !important; line-height: 1.2 !important; text-align: left !important; }
    
    /* Trust Bar */
    .logos-grid { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
        justify-items: center;
        opacity: 0.8;
    }
    .logo-item { width: 100%; display: flex; justify-content: center; align-items: center; }
    .logo-item img { max-height: 25px !important; width: auto !important; object-fit: contain; }
    
    /* Mission & Split Grids */
    div[style*="display: grid; grid-template-columns: 1fr 1fr"],
    div[style*="display: grid; grid-template-columns: 1.2fr 0.8fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .mission { 
        background-image: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1000') !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .mission h2 { font-size: 1.8rem !important; text-align: center !important; line-height: 1.2 !important; }
    .mission-text { padding: 80px 24px !important; text-align: center !important; align-items: center !important; background: transparent !important; }
    .mission-text p { font-size: 0.95rem !important; text-align: center !important; margin: 0 auto 30px auto !important; max-width: 100% !important; }
    .mission-text div { width: 100%; display: flex; justify-content: center; }
    .mission-image-col { display: none !important; }
    .btn-outline-gold { width: 100%; text-align: center; justify-content: center; display: flex !important; background: white !important; }
    
    .insights-header { 
        flex-direction: column !important; 
        align-items: center !important; 
        text-align: center !important; 
        gap: 20px;
    }
    .insights-header h2 { font-size: 2rem !important; margin-bottom: 10px !important; }
    
    /* Nos Convictions (Insights page) */
    div[style*="display: flex; gap: 60px; align-items: center"] {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center;
    }

    /* Expertises Grid */
    .numbered-grid, 
    div[style*="grid-template-columns: repeat(4, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Hide CTA Section on Mobile */
    .cta-smart-section {
        display: none !important;
    }
    
    /* Differentiation Banner */
    div[style*="display: flex; align-items: stretch"] {
        flex-direction: column !important;
    }
    div[style*="flex: 0.8; position: relative"] {
        height: 250px !important;
        min-width: 100% !important;
    }
    div[style*="flex: 2.2; padding: 60px"] {
        padding: 40px 24px !important;
    }
    div[style*="display: flex; gap: 40px; align-items: flex-start"] {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    /* Info Sections (Contact) */
    .info-section { 
        grid-template-columns: 1fr; 
        padding: 40px 0; 
        gap: 40px;
    }
    .info-section::after { display: none; }
    .info-block { flex-direction: column; text-align: left !important; align-items: flex-start !important; gap: 20px; }
    .info-icon-circle { min-width: 80px; height: 80px; font-size: 2rem; margin: 0 !important; }
    .info-list li { justify-content: flex-start !important; text-align: left !important; }

    /* Forms Stability */
    .mission-grid, .form-grid { 
        grid-template-columns: 1fr !important; 
        width: 100% !important;
        gap: 20px !important;
    }
    .form-group, .form-group.full-width, .btn-submit { 
        grid-column: span 1 !important; 
        width: 100% !important;
    }
    .form-container { 
        padding: 30px 20px !important; 
        background: white !important; 
        box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
        border-radius: 4px !important;
        margin-top: 30px;
        width: 100% !important;
    }

    /* Footer */
    .footer-top { flex-direction: column; text-align: left; gap: 40px; }
    footer .container > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: left;
    }
    footer h4 span { left: 0 !important; transform: none !important; }
    footer ul li, footer div[style*="display: flex; gap: 15px"] {
        justify-content: flex-start;
        text-align: left;
    }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; align-items: center; }
    .footer-bottom div { justify-content: center !important; }

    /* Article Pages Mobile Refinements */
    .article-sidebar {
        display: none !important;
    }
    
    div[style*="grid-template-columns: 1fr 350px"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .article-hero {
        padding: 100px 0 40px !important;
    }
    
    .article-hero h1 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
    }
    
    .article-meta {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 10px !important;
        font-size: 0.75rem !important;
    }
    
    .meta-dot {
        display: inline !important;
        opacity: 0.4;
    }
    
    .article-meta div:first-child svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .article-meta div:first-child div {
        width: 24px !important;
        height: 24px !important;
    }
    
    .article-body {
        font-size: 1.05rem !important;
    }
    
    .article-body h2 {
        font-size: 1.8rem !important;
        margin: 40px 0 20px !important;
    }
    
    /* Legal Pages Mobile Refinements */
    .legal-hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-top: 20px !important;
    }
    
    section[style*="padding: 100px 0 40px"] {
        padding: 80px 0 40px !important;
    }
    
    .trust-bar {
        padding: 40px 0 !important;
    }
    
    .logos-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    .logo-item {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .logo-item img {
        max-width: 80px !important;
        height: auto !important;
        max-height: 25px !important;
    }

    .insights-section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .insights-section-header h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
}
