﻿:root { --navy: #0A1628; --navy-mid: #0F2240; --navy-light: #1A3358; --gold: #C8972A; --gold-light: #E5B84A; --gold-pale: #FDF3DF; --white: #FFFFFF; --off-white: #F8F6F2; --text-primary: #0A1628; --text-secondary: #4A5568; --text-muted: #8896A7; --border: rgba(10,22,40,0.10); --border-gold: rgba(200,151,42,0.25); --radius: 8px; --radius-lg: 14px; --sans-en: 'DM Sans', system-ui, sans-serif; --serif-en: 'DM Serif Display', Georgia, serif; --sans-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif; --sans: 'DM Sans', system-ui, sans-serif; --serif: 'DM Serif Display', Georgia, serif; --transition: 0.22s ease; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: var(--sans-en); color: var(--text-primary); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; } /* ══════════════════════════════════════════
   BILINGUAL SYSTEM
   Every element with content has two children:
   .en  — shown in English mode (hidden by default)
   .ar  — shown in Arabic mode (default)
   
   body.arabic  → .en hidden, .ar shown, dir=rtl, Cairo font
   body.english → .ar hidden, .en shown (default)
══════════════════════════════════════════ */.ar { display: none; } .en { display: block; } /* Inline elements (spans, a, button text spans) */span.ar, a.ar, button.ar { display: none; } span.en, a.en, button.en { display: inline; } body.arabic { direction: rtl; font-family: var(--sans-ar); } body.arabic .ar { display: block; } body.arabic .en { display: none; } body.arabic span.ar, body.arabic a.ar, body.arabic button.ar { display: inline; } body.arabic span.en, body.arabic a.en, body.arabic button.en { display: none; } /* Arabic-specific typography tweaks */body.arabic .hero h1 { font-family: var(--sans-ar); font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; line-height: 1.3; } body.arabic .section-title { font-family: var(--sans-ar); font-weight: 700; } body.arabic .cta-banner h2 { font-family: var(--sans-ar); font-weight: 700; } body.arabic .service-title { font-family: var(--sans-ar); font-weight: 600; } body.arabic .feature-title { font-family: var(--sans-ar); font-weight: 600; } body.arabic .strategy-title { font-family: var(--sans-ar); font-weight: 600; } body.arabic .nav-links a { font-family: var(--sans-ar); font-size: 14px; } body.arabic .btn-primary, body.arabic .btn-secondary, body.arabic .nav-cta { font-family: var(--sans-ar); } body.arabic .service-cta { font-family: var(--sans-ar); } body.arabic .footer-col a { font-family: var(--sans-ar); } body.arabic .footer-col h4 { font-family: var(--sans-ar); } body.arabic .footer-brand p { font-family: var(--sans-ar); line-height: 1.9; } body.arabic .about-text p { font-family: var(--sans-ar); line-height: 1.9; } body.arabic .feature-desc, body.arabic .strategy-text, body.arabic .service-text, body.arabic .value-desc, body.arabic .section-desc, body.arabic .hero p { font-family: var(--sans-ar); line-height: 1.85; } body.arabic .chat-msg { font-family: var(--sans-ar); line-height: 1.8; } body.arabic .contact-value { font-family: var(--sans-ar); } body.arabic .form-input, body.arabic .form-select, body.arabic .form-textarea { font-family: var(--sans-ar); text-align: right; } body.arabic .form-label { font-family: var(--sans-ar); } body.arabic .impact-chip { font-family: var(--sans-ar); } body.arabic .value-chip { font-family: var(--sans-ar); } body.arabic .kpi-label, body.arabic .kpi-value, body.arabic .kpi-change { font-family: var(--sans-ar); } body.arabic .insight-text, body.arabic .insight-badge { font-family: var(--sans-ar); } body.arabic .dash-sidebar-item { font-family: var(--sans-ar); } body.arabic .stat-label { font-family: var(--sans-ar); } body.arabic .trust-item { font-family: var(--sans-ar); } body.arabic .hero-badge { font-family: var(--sans-ar); letter-spacing: 0; } body.arabic .section-label { font-family: var(--sans-ar); letter-spacing: 0; } body.arabic .service-problem { font-family: var(--sans-ar); letter-spacing: 0; } body.arabic .service-tag { font-family: var(--sans-ar); letter-spacing: 0; } body.arabic .chat-input { font-family: var(--sans-ar); text-align: right; direction: rtl; } body.arabic .chat-name, body.arabic .chat-status { font-family: var(--sans-ar); } body.arabic .dss-link-label, body.arabic .dss-link-sub { font-family: var(--sans-ar); } body.arabic .contact-label { font-family: var(--sans-ar); } body.arabic .footer-bottom p { font-family: var(--sans-ar); } /* RTL flip for directional icons inside buttons/links */body.arabic .arrow-icon { display: inline-block; transform: scaleX(-1); } /* ── NAV ── */nav { position: sticky; top: 0; z-index: 100; background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,151,42,0.18); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; } .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; } .nav-logo-mark { width: 36px; height: 36px; border-radius: 7px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; flex-shrink: 0; } .nav-logo-text { font-size: 15px; font-weight: 500; color: var(--white); } .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; } .nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 13px; padding: 6px 12px; border-radius: 5px; transition: var(--transition); } .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); } .nav-links a.active { color: var(--gold-light); } .nav-actions { display: flex; align-items: center; gap: 10px; } .lang-btn { font-size: 12px; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); background: transparent; padding: 5px 10px; border-radius: 5px; cursor: pointer; transition: var(--transition); font-family: var(--sans-en); } .lang-btn:hover { border-color: var(--gold); color: var(--gold-light); } .nav-cta { font-size: 12px; font-weight: 500; background: var(--gold); color: var(--navy); border: none; padding: 8px 16px; border-radius: 5px; cursor: pointer; transition: var(--transition); font-family: var(--sans-en); text-decoration: none; white-space: nowrap; } .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); } /* ── HERO ── */.hero { background: var(--navy); padding: 96px 40px 80px; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,151,42,0.08) 0%, transparent 65%); pointer-events: none; } body.arabic .hero::before { right: auto; left: -200px; } .hero-inner { max-width: 1100px; margin: 0 auto; } .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,151,42,0.12); border: 1px solid rgba(200,151,42,0.28); color: var(--gold-light); font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 20px; margin-bottom: 28px; letter-spacing: 0.04em; } .hero h1 { font-family: var(--serif-en); font-size: clamp(36px, 5.5vw, 58px); font-weight: 400; color: var(--white); line-height: 1.14; max-width: 680px; margin-bottom: 22px; } .hero h1 em { color: var(--gold-light); font-style: italic; } .hero p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 520px; margin-bottom: 36px; } .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; } .btn-primary { font-family: var(--sans-en); font-size: 13px; font-weight: 500; background: var(--gold); color: var(--navy); border: none; padding: 12px 24px; border-radius: 6px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; } .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); } .btn-secondary { font-family: var(--sans-en); font-size: 13px; font-weight: 400; background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px; border-radius: 6px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; } .btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); } .trust-bar { display: flex; flex-wrap: wrap; gap: 24px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; } .trust-item { font-size: 12px; color: rgba(255,255,255,0.4); } .trust-item strong { color: rgba(255,255,255,0.65); font-weight: 500; } /* ── VALUE STRIP ── */.value-strip { background: var(--off-white); border-bottom: 1px solid var(--border); } .value-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); } .value-item { padding: 28px 32px; border-right: 1px solid var(--border); } body.arabic .value-item { border-right: none; border-left: 1px solid var(--border); } .value-item:last-child { border-right: none; } body.arabic .value-item:first-child { border-left: none; } body.arabic .value-item:last-child { border-left: 1px solid var(--border); } .value-icon { font-size: 20px; margin-bottom: 10px; } .value-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; } .value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; } /* ── STATS ── */.stats { background: var(--white); padding: 60px 40px; border-bottom: 1px solid var(--border); } .stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; } .stat-item { text-align: center; } .stat-number { font-family: var(--serif-en); font-size: 46px; font-weight: 400; color: var(--navy); line-height: 1; margin-bottom: 6px; } body.arabic .stat-number { font-family: var(--sans-ar); font-weight: 700; } .stat-label { font-size: 13px; color: var(--text-secondary); } /* ── SECTIONS ── */.section { padding: 80px 40px; } .section-inner { max-width: 1100px; margin: 0 auto; } .section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; } .section-title { font-family: var(--serif-en); font-size: clamp(26px, 3.5vw, 38px); font-weight: 400; line-height: 1.2; margin-bottom: 16px; color: var(--navy); } .section-title em { color: var(--gold); font-style: italic; } body.arabic .section-title em { font-style: normal; } .section-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; max-width: 560px; } /* ── SERVICES ── */.services-bg { background: var(--off-white); } .services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; } .service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); cursor: pointer; } .service-card:hover { border-color: var(--border-gold); box-shadow: 0 8px 32px rgba(200,151,42,0.08); transform: translateY(-2px); } .service-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 3px; margin-bottom: 16px; } .tag-platform { background: rgba(10,22,40,0.06); color: var(--navy); } .tag-consulting { background: rgba(34,139,34,0.08); color: #1a7a1a; } .tag-marketing { background: rgba(200,151,42,0.1); color: #8a6010; } .tag-executive { background: rgba(120,40,200,0.08); color: #5a1f9a; } .service-title { font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--navy); } .service-problem { font-size: 11px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; margin-top: 16px; } body.arabic .service-problem { letter-spacing: 0; text-transform: none; font-size: 12px; } .service-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; } .service-impacts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; } .impact-chip { font-size: 11px; background: var(--off-white); color: var(--text-secondary); border: 1px solid var(--border); padding: 3px 9px; border-radius: 20px; } .service-cta { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 500; color: var(--gold); margin-top: 20px; text-decoration: none; border-bottom: 1px solid transparent; transition: var(--transition); background: none; border-left: none; border-right: none; border-top: none; cursor: pointer; font-family: var(--sans-en); padding: 0; } .service-cta:hover { border-bottom-color: var(--gold); } /* ── PLATFORM FEATURES ── */.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; } .feature-card { background: var(--navy); border: 1px solid rgba(200,151,42,0.12); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); } .feature-card:hover { border-color: rgba(200,151,42,0.35); transform: translateY(-2px); } .feature-num { font-family: var(--serif-en); font-size: 28px; color: rgba(200,151,42,0.3); margin-bottom: 12px; line-height: 1; } body.arabic .feature-num { font-family: var(--sans-ar); font-weight: 300; } .feature-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 6px; } .feature-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; } /* ── DASHBOARD PREVIEW ── */.dashboard-preview { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; box-shadow: 0 16px 56px rgba(10,22,40,0.08); } .dash-bar { background: var(--navy); padding: 10px 16px; display: flex; align-items: center; gap: 6px; } .dash-dot { width: 10px; height: 10px; border-radius: 50%; } .dash-body { padding: 20px; display: grid; grid-template-columns: 160px 1fr; gap: 16px; min-height: 300px; } body.arabic .dash-body { grid-template-columns: 1fr 160px; } .dash-sidebar { background: var(--white); border-radius: 8px; padding: 12px; border: 1px solid var(--border); } .dash-sidebar-item { font-size: 11px; padding: 6px 8px; border-radius: 4px; color: var(--text-secondary); cursor: pointer; margin-bottom: 2px; } .dash-sidebar-item.active { background: rgba(10,22,40,0.06); font-weight: 500; color: var(--navy); } .dash-main { display: flex; flex-direction: column; gap: 12px; } .kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; } .kpi-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 12px; } .kpi-label { font-size: 10px; color: var(--text-muted); margin-bottom: 4px; } .kpi-value { font-size: 18px; font-weight: 500; color: var(--navy); } .kpi-change { font-size: 10px; margin-top: 2px; } .kpi-up { color: #1a7a1a; } .kpi-warn { color: #8a6010; } .charts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; } .chart-box { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 12px; } .chart-title { font-size: 11px; font-weight: 500; margin-bottom: 10px; color: var(--navy); } .bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 70px; } .bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(10,22,40,0.12); transition: var(--transition); } .bar:hover { background: var(--gold); } .bar.active { background: var(--gold); } .insight-list { display: flex; flex-direction: column; gap: 7px; } .insight-item { display: flex; gap: 8px; align-items: flex-start; } .insight-badge { font-size: 9px; font-weight: 500; padding: 2px 6px; border-radius: 3px; white-space: nowrap; margin-top: 2px; } .badge-opp { background: rgba(34,139,34,0.1); color: #1a7a1a; } .badge-alert { background: rgba(200,151,42,0.12); color: #8a6010; } .insight-text { font-size: 11px; color: var(--text-secondary); line-height: 1.4; } /* ── CHATBOT ── */.chatbot-preview { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; } .chat-header { background: var(--navy); padding: 14px 18px; display: flex; align-items: center; gap: 10px; } .chat-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--navy); } .chat-header-info { flex: 1; } .chat-name { font-size: 13px; font-weight: 500; color: var(--white); } .chat-status { font-size: 10px; color: rgba(255,255,255,0.5); } .chat-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; max-height: 260px; overflow-y: auto; } .chat-msg { max-width: 85%; padding: 10px 13px; border-radius: 10px; font-size: 12px; line-height: 1.55; } .chat-msg.ai { background: var(--off-white); color: var(--text-primary); border-radius: 3px 10px 10px 10px; border: 1px solid var(--border); align-self: flex-start; } .chat-msg.user { background: var(--navy); color: rgba(255,255,255,0.9); border-radius: 10px 3px 10px 10px; align-self: flex-end; } body.arabic .chat-msg.ai { border-radius: 10px 3px 10px 10px; align-self: flex-end; } body.arabic .chat-msg.user { border-radius: 3px 10px 10px 10px; align-self: flex-start; } .chat-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); } .chat-input { flex: 1; font-family: var(--sans-en); font-size: 12px; border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; background: var(--off-white); color: var(--text-primary); outline: none; } .chat-input:focus { border-color: var(--gold); background: var(--white); } .chat-send { font-family: var(--sans-en); font-size: 12px; font-weight: 500; background: var(--gold); color: var(--navy); border: none; padding: 8px 14px; border-radius: 6px; cursor: pointer; transition: var(--transition); } .chat-send:hover { background: var(--gold-light); } /* ── ABOUT ── */.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; } .about-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; } .strategy-cards { display: flex; flex-direction: column; gap: 14px; } .strategy-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; } .strategy-icon { font-size: 16px; margin-bottom: 8px; } .strategy-title { font-size: 13px; font-weight: 500; margin-bottom: 4px; } .strategy-text { font-size: 12px; color: var(--text-secondary); line-height: 1.55; } .values-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; } .value-chip { font-size: 12px; border: 1px solid var(--border-gold); color: var(--text-secondary); padding: 5px 12px; border-radius: 20px; } /* ── CTA BANNER ── */.cta-banner { background: var(--navy); padding: 72px 40px; text-align: center; position: relative; overflow: hidden; } .cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(200,151,42,0.1) 0%, transparent 70%); pointer-events: none; } .cta-banner h2 { font-family: var(--serif-en); font-size: clamp(26px, 3.5vw, 38px); color: var(--white); font-weight: 400; margin-bottom: 12px; position: relative; } .cta-banner p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; position: relative; } .cta-banner .btn-primary { position: relative; font-size: 14px; padding: 14px 28px; } /* ── CONTACT ── */.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; } .contact-form { display: flex; flex-direction: column; gap: 14px; } .form-group { display: flex; flex-direction: column; gap: 5px; } .form-label { font-size: 12px; font-weight: 500; color: var(--text-secondary); } .form-input, .form-select, .form-textarea { font-family: var(--sans-en); font-size: 13px; color: var(--text-primary); background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; outline: none; transition: var(--transition); width: 100%; } .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,42,0.08); } .form-textarea { resize: vertical; min-height: 100px; } .contact-info { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; } .contact-info-item { display: flex; gap: 14px; } .contact-icon { width: 36px; height: 36px; background: var(--off-white); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; } .contact-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; } .contact-value { font-size: 13px; font-weight: 500; } .dsss-links { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; } .dss-link { display: flex; align-items: center; justify-content: space-between; background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; text-decoration: none; transition: var(--transition); color: var(--text-primary); } .dss-link:hover { border-color: var(--border-gold); background: var(--gold-pale); } .dss-link-label { font-size: 13px; font-weight: 500; } .dss-link-sub { font-size: 11px; color: var(--text-muted); } .dss-arrow { color: var(--gold); font-size: 14px; } /* ── FOOTER ── */footer { background: var(--navy); padding: 48px 40px 24px; border-top: 1px solid rgba(200,151,42,0.12); } .footer-inner { max-width: 1100px; margin: 0 auto; } .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); } .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-top: 10px; } .footer-col h4 { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 12px; letter-spacing: 0.04em; } .footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 7px; transition: var(--transition); } .footer-col a:hover { color: var(--gold-light); } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; } .footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); } .footer-bottom-links { display: flex; gap: 16px; } .footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; } /* ── SCROLL REVEAL ── */.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; } .reveal.visible { opacity: 1; transform: none; } /* ── RESPONSIVE ── */@media (max-width: 900px) { nav {  padding: 0 20px; }  .nav-links {  display: none; }  .hero {  padding: 64px 20px 56px; }  .section {  padding: 56px 20px; }  .value-strip-inner, .stats-inner {  grid-template-columns: repeat(2,1fr); }  .services-grid, .platform-grid, .about-grid, .contact-grid {  grid-template-columns: 1fr; }  .footer-top {  grid-template-columns: 1fr 1fr; }  .kpi-row {  grid-template-columns: repeat(2,1fr); }  .dash-body {  grid-template-columns: 1fr; } } @media (max-width: 560px) { .hero h1 {  font-size: 28px; }  .value-strip-inner, .stats-inner {  grid-template-columns: 1fr; }  .footer-top {  grid-template-columns: 1fr; }  .footer-bottom {  flex-direction: column;  gap: 8px;  text-align: center; } }