/* --- Base Variables & Settings --- */
:root {
    --bg-base: #0a0b10;
    --bg-secondary: #13151f;
    --gold-main: #d4af37;
    --gold-light: #f3d46a;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-glow-intense: rgba(212, 175, 55, 0.6);
    --text-primary: #f8f9fc;
    --text-muted: #8b8e99;
    --glass-bg: rgba(19, 21, 31, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-base);
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; margin-top: 0; }
.gold-text { color: var(--gold-main); }
.gold-glow { color: var(--gold-light); text-shadow: 0 0 15px var(--gold-glow); }
.uppercase-label { text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.lede { font-size: 1.15rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.text-sm { font-size: 0.85rem; }

/* Utilities */
.dark-bg { background-color: var(--bg-secondary); }
.border-gold { border: 1px solid var(--gold-glow); }

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Layout & Structure --- */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.section { padding: 6rem 0; position: relative; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 0; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo { font-size: 1.5rem; font-weight: 800; margin: 0; letter-spacing: -0.5px; }
.nav-links { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.nav-links a { color: var(--text-primary); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--gold-main); }

/* Hero Section */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; animation: scaleBg 30s infinite alternate; }
@keyframes scaleBg { from { transform: scale(1); } to { transform: scale(1.05); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 11, 16, 0.75) 0%, rgba(10, 11, 16, 0.95) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 0 2rem; }
.badge { background: rgba(212, 175, 55, 0.1); color: var(--gold-main); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; display: inline-block; margin-bottom: 1.5rem; border: 1px solid var(--gold-glow); text-transform: uppercase; letter-spacing: 1px; }
.hero-title { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; line-height: 1.7; margin-bottom: 2rem; }
.tech-specs { margin-top: 2rem; font-size: 0.9rem; color: var(--gold-main); display: flex; justify-content: center; gap: 1rem; opacity: 0.8; }
.tech-specs .dot { color: var(--text-muted); }

/* Buttons */
.btn { display: inline-block; padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-family: 'Outfit', sans-serif; cursor: pointer; }
.primary-btn { background: var(--gold-main); color: #000; box-shadow: 0 0 25px var(--gold-glow); }
.primary-btn:hover { background: var(--gold-light); box-shadow: 0 0 35px var(--gold-glow-intense); transform: translateY(-2px); }

/* Sections */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.75rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; line-height: 1.6; }

/* Grids */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card { padding: 2.5rem 2rem; border-radius: 16px; transition: transform 0.4s ease, box-shadow 0.4s ease; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-main), transparent); opacity: 0; transition: opacity 0.4s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.1); }
.card:hover::before { opacity: 1; }
.icon-box { font-size: 2.2rem; margin-bottom: 1rem; display: inline-block; font-family: 'Outfit'; font-weight: 800; }
.card h4 { font-size: 1.3rem; margin-bottom: 1rem; }
.card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; margin: 0; }

/* Split Layouts */
.layout-split { display: flex; align-items: start; gap: 4rem; }
.reverse-split { flex-direction: row-reverse; }
.text-content, .image-content { flex: 1; width: 100%; }
.text-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }

/* Image Wrappers & Presentation Frame */
.image-wrapper { border-radius: 20px; overflow: hidden; position: relative; }
.image-glow::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 50px rgba(0,0,0,0.8); pointer-events: none; }
.feature-img { width: 100%; height: auto; display: block; transition: transform 0.8s ease; }
.image-wrapper:hover .feature-img { transform: scale(1.02); }
.placeholder-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.6); color: var(--gold-main); font-weight: 600; font-size: 1.2rem; z-index: 10; pointer-events: none; }

.presentation-frame { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15); border: 1px solid var(--glass-border); }
.presentation-frame .image-wrapper { border-radius: 0; }
.frame-header { background: rgba(10, 11, 16, 0.85); padding: 12px 16px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.frame-dots { display: flex; gap: 8px; margin-right: 15px; }
.frame-dots span { width: 12px; height: 12px; border-radius: 50%; background: #444; }
.frame-dots span:nth-child(1) { background: #ff5f56; }
.frame-dots span:nth-child(2) { background: #ffbd2e; }
.frame-dots span:nth-child(3) { background: #27c93f; }
.frame-title { color: var(--text-muted); font-size: 0.85rem; font-family: 'Inter', sans-serif; letter-spacing: 0.5px; flex-grow: 1; text-align: center; margin-right: 55px; }

/* Report Dashboard Native Elements */
.report-dashboard { padding: 2.5rem; background: linear-gradient(180deg, rgba(19, 21, 31, 0.4) 0%, rgba(10, 11, 16, 0.8) 100%); }
.report-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.stat-card { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border-bottom: 2px solid transparent; }
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1); border-bottom-color: var(--gold-main); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-weight: 600; }
.stat-value { font-size: 2.2rem; font-weight: 700; font-family: 'Outfit', sans-serif; line-height: 1.1; }
.stat-sub { font-size: 0.8rem; color: rgba(255, 255, 255, 0.3); margin-top: 0.3rem; }

.report-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 8px; overflow: hidden; }
.detail-row { background: rgba(19, 21, 31, 0.8); padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.detail-row span { color: var(--text-muted); }
.detail-row strong { color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 1.05rem; letter-spacing: 0.5px; }
.text-green { color: #2ecc71 !important; text-shadow: 0 0 10px rgba(46, 204, 113, 0.3); }
.text-red { color: #e74c3c !important; text-shadow: 0 0 10px rgba(231, 76, 60, 0.3); }

/* Feature Lists */
.feature-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.glow-bullet { width: 10px; height: 10px; background: var(--gold-main); border-radius: 50%; box-shadow: 0 0 10px var(--gold-main); margin-top: 8px; flex-shrink: 0; }
.feature-item h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature-item p { color: var(--text-muted); line-height: 1.6; margin: 0; font-size: 0.95rem; }

/* Accordion */
.accordion { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { border-radius: 12px; border-left: 3px solid var(--gold-main); overflow: hidden; }
.acc-header { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.acc-header h4 { margin: 0; font-size: 1.1rem; }
.acc-header .icon { color: var(--gold-main); font-weight: bold; font-size: 1.2rem; transition: transform 0.3s ease; }
.acc-content { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: rgba(0,0,0,0.2); }
.acc-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 1rem 0; }
.accordion-item.active .acc-content { max-height: 300px; padding: 0 1.5rem 1.5rem; }
.accordion-item.active .acc-header .icon { transform: rotate(45deg); }

/* Tables & Lists */
.data-panel { padding: 2rem; border-radius: 16px; }
.data-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.data-list li { margin-bottom: 0.8rem; color: var(--text-muted); font-size: 0.95rem; }
.data-list li strong { color: var(--text-primary); }
hr { border: 0; height: 1px; background: rgba(255,255,255,0.1); margin: 1.5rem 0; }
.glass-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.glass-table th, .glass-table td { padding: 0.8rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.glass-table th { color: var(--gold-main); font-weight: 500; }
.glass-table td { color: var(--text-muted); }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { padding: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.95rem; }
.clean-list li:last-child { border: none; }
.clean-list strong { color: var(--text-primary); }
.signal-score { padding: 1.5rem; border-radius: 12px; }

/* Compliance Grid */
.compliance-box { padding: 3rem; border-radius: 16px; margin-top: 3rem; background: linear-gradient(135deg, rgba(19,21,31,0.8), rgba(10,11,16,0.9)); border: 1px solid rgba(212,175,55,0.2); }
.compliance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.comp-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: rgba(0,0,0,0.3); border-radius: 8px; font-size: 0.95rem; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.02); }
.badge.pass { background: rgba(39, 174, 96, 0.2); color: #2ecc71; border: 1px solid #27ae60; margin: 0; font-size: 0.75rem; padding: 0.3rem 0.6rem; }

/* Footer */
.footer { padding: 4rem 0 2rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-note { color: var(--text-muted); margin: 1rem auto 2rem; max-width: 600px; font-size: 0.95rem; line-height: 1.6; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* 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); }

/* Image Modal */
.image-zoom-container {
    cursor: pointer;
    position: relative;
    display: block;
}

.image-zoom-container .placeholder-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(10, 11, 16, 0.7);
}

.image-zoom-container:hover .placeholder-overlay {
    opacity: 1;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--gold-main);
    transform: scale(1.1);
}

/* --- Orphaned Class Fixes --- */
.line-border-left { border-left: 3px solid var(--gold-main); padding-left: 2rem; }
.hover-lift { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.1); }
.text-muted { color: var(--text-muted); }

/* --- Hamburger Menu --- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1100; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 6px 0; transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(10, 11, 16, 0.97); backdrop-filter: blur(20px); z-index: 1050; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; transition: opacity 0.3s ease; }
.mobile-nav.show { display: flex; opacity: 1; }
.mobile-nav a { color: var(--text-primary); text-decoration: none; font-size: 1.3rem; font-weight: 500; font-family: 'Outfit', sans-serif; transition: color 0.3s ease; }
.mobile-nav a:hover { color: var(--gold-main); }

/* --- Landing Page Stats Bar --- */
.stats-bar { display: flex; justify-content: center; gap: 3rem; position: relative; z-index: 10; margin-top: 2.5rem; flex-wrap: wrap; }
.stats-bar .stat-pill { display: flex; align-items: center; gap: 0.7rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 50px; padding: 0.6rem 1.5rem; }
.stats-bar .stat-pill .stat-number { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--gold-main); }
.stats-bar .stat-pill .stat-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* --- Landing Page Comparison Section --- */
.comparison-section { position: relative; z-index: 10; max-width: 1300px; width: 100%; margin-top: 4rem; }
.comparison-section h3 { text-align: center; font-size: 1.6rem; margin-bottom: 2rem; }
.comparison-grid { display: grid; grid-template-columns: 200px 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.comparison-grid .cg-header { background: rgba(10, 11, 16, 0.9); padding: 1rem 1.5rem; font-weight: 600; font-family: 'Outfit', sans-serif; font-size: 0.95rem; }
.comparison-grid .cg-header.gold { color: var(--gold-main); }
.comparison-grid .cg-label { background: rgba(19, 21, 31, 0.8); padding: 0.8rem 1.5rem; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; }
.comparison-grid .cg-cell { background: rgba(19, 21, 31, 0.6); padding: 0.8rem 1.5rem; font-size: 0.9rem; color: var(--text-primary); display: flex; align-items: center; }
.comparison-grid .cg-cell.highlight { color: var(--gold-light); font-weight: 600; }
.cg-check { color: #2ecc71; margin-right: 0.5rem; font-weight: bold; }
.cg-dash { color: var(--text-muted); margin-right: 0.5rem; }

/* --- Landing Page Footer --- */
.gateway-footer { position: relative; z-index: 10; text-align: center; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); width: 100%; max-width: 1300px; }
.gateway-footer p { color: rgba(255,255,255,0.25); font-size: 0.8rem; line-height: 1.6; max-width: 700px; margin: 0 auto; }
.gateway-footer .footer-copy { margin-top: 1rem; color: rgba(255,255,255,0.15); font-size: 0.75rem; }

/* --- Smart Features Table --- */
.features-summary-table { width: 100%; border-collapse: collapse; }
.features-summary-table th { text-align: left; padding: 1rem 1.5rem; color: var(--gold-main); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid rgba(212,175,55,0.3); }
.features-summary-table td { padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.95rem; }
.features-summary-table td:first-child { color: var(--text-primary); font-weight: 500; }
.features-summary-table td:last-child { color: var(--text-muted); }
.features-summary-table tr:hover { background: rgba(212,175,55,0.03); }
.features-summary-table tr:last-child td { border-bottom: none; }

/* Responsive */
@media (max-width: 992px) {
    .layout-split, .reverse-split { flex-direction: column; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
    .comparison-grid { grid-template-columns: 1fr 1fr 1fr; }
    .stats-bar { gap: 1.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .card.hover-lift { grid-column: span 1 !important; }
    .hero-title { font-size: 2.2rem; }
    .compliance-box { padding: 1.5rem; }
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-grid .cg-header:first-child { display: none; }
    .comparison-grid .cg-label { font-weight: 600; color: var(--gold-main); }
    .stats-bar { flex-direction: column; align-items: center; gap: 0.8rem; }
    .version-tabs { display: none; }
    .gateway-container { flex-direction: column; }
    .line-border-left { border-left: none; padding-left: 0; border-top: 3px solid var(--gold-main); padding-top: 2rem; }
}

/* --- Version Tabs --- */
.version-tabs { display: flex; background: rgba(0,0,0,0.4); border-radius: 50px; padding: 4px; border: 1px solid rgba(255,255,255,0.05); }
.tab-btn { padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: all 0.3s ease; }
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { background: var(--gold-main); color: #000; box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }

/* --- Landing Page Gateway --- */
.gateway-hero { min-height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; flex-direction: column; }
.gateway-container { width: 100%; max-width: 1300px; display: flex; gap: 3rem; position: relative; z-index: 10; margin-top: 2rem; }
.ea-card { flex: 1; border-radius: 24px; padding: 4rem 3rem; display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(19, 21, 31, 0.4); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.05); transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); cursor: pointer; text-decoration: none; position: relative; overflow: hidden; }
.ea-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(212,175,55,0.1), transparent 50%); opacity: 0; transition: opacity 0.5s ease; }
.ea-card:hover { transform: translateY(-10px); background: rgba(19, 21, 31, 0.7); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.3); }
.ea-card:hover::before { opacity: 1; }
.ea-card .ea-version { font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--gold-main); text-transform: uppercase; letter-spacing: 3px; font-weight: 800; margin-bottom: 1rem; }
.ea-card h2 { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.ea-card p { color: var(--text-muted); line-height: 1.7; margin-bottom: 3rem; font-size: 1.1rem; }

@media (max-width: 992px) {
    .gateway-container { flex-direction: column; }
}
