@charset "utf-8";

:root{
    --bg: #060a18;
    --bg-deep: #03050d;
    --panel: #0d1327;
    --panel-2: #121a33;
    --ink: #f4f6fb;
    --ink-soft: #98a3c2;
    --gold: #f5bb2e;
    --gold-light: #ffd966;
    --cyan: #22d9f2;
    --green: #8fe22b;
    --line: rgba(255,255,255,.09);
    --line-strong: rgba(255,255,255,.18);
    --radius: 12px;
    --header-h: 78px;
}

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

html{ scroll-behavior:smooth; scroll-padding-top: var(--header-h); }

html,body{ direction: rtl; text-align: right; }

body{
    background: var(--bg);
    color: var(--ink);
    font-family: 'Tajawal', system-ui, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3{
    font-family: 'Cairo', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
}

a{ color: inherit; text-decoration:none; }

.wrap{ max-width: 1180px; margin: 0 auto; padding: 0 1.75rem; }

/* faint dot-grid texture across the page */
.grid-overlay{
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

header, main, footer{ position: relative; z-index: 1; }

/* ---------- Header ---------- */
header{
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(6,10,24,.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease, background .25s ease;
}
header.scrolled{
    background: rgba(6,10,24,.92);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.header-bar{ height: var(--header-h); display: flex; align-items: center; gap: 1.5rem; }

.brand{ display: flex; align-items: center; gap: .7rem; margin-left: auto; }

.brand-mark{
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px var(--line-strong), 0 4px 16px rgba(245,187,46,.18);
}
.brand-mark img{ display: block; width: 100%; height: 100%; object-fit: cover; }

.brand-text{ display: flex; flex-direction: column; line-height: 1.25; }

.brand-name{ font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1.28rem; }

.brand-tagline{ font-size: .72rem; color: var(--ink-soft); font-weight: 500; }

.nav-links{ display: flex; gap: 2rem; margin-right: auto; }

.nav-links a{
    font-weight: 500;
    color: var(--ink-soft);
    padding: .3rem 0;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a:focus-visible{ color: var(--ink); border-color: var(--gold); }

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.7rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn-primary{ background: var(--gold); color: #14100a; }
.btn-primary:hover, .btn-primary:focus-visible{
    background: var(--gold-light);
    box-shadow: 0 6px 24px rgba(245,187,46,.35);
    transform: translateY(-2px);
}

.btn-outline{ background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover, .btn-outline:focus-visible{
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.btn-small{ padding: .55rem 1.15rem; font-size: .88rem; }

.header-cta{ display: inline-flex; }

.menu-btn{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-btn span{ display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-btn.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2){ opacity: 0; }
.menu-btn.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--line);
    background: var(--panel);
}
.mobile-nav.active{ display: flex; }
.mobile-nav a{ padding: 1rem 1.75rem; border-bottom: 1px solid var(--line); font-weight: 500; }

/* ---------- Hero ---------- */
.hero{ position: relative; padding: 6rem 0 4.5rem; overflow: hidden; }

.hero-glow{
    position: absolute;
    z-index: -1;
    top: -180px;
    left: 50%;
    width: 900px;
    height: 700px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 30% 30%, rgba(245,187,46,.24), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(34,217,242,.18), transparent 55%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 7s ease-in-out infinite;
}

@keyframes glowPulse{
    0%, 100%{ opacity: .8; transform: translateX(-50%) scale(1); }
    50%{ opacity: 1; transform: translateX(-50%) scale(1.06); }
}

.hero-glyphs{ position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.glyph{
    position: absolute;
    font-family: 'Cairo', monospace;
    font-weight: 700;
    color: var(--ink-soft);
    opacity: .2;
    animation: drift 7s ease-in-out infinite;
}
.glyph.gold{ color: var(--gold); opacity: .3; }
.glyph.cyan{ color: var(--cyan); opacity: .26; }
.g1{ top: 8%;  right: 6%;  font-size: 2.4rem; animation-delay: 0s; }
.g2{ top: 60%; right: 2%;  font-size: 1.6rem; animation-delay: 1.2s; }
.g3{ top: 20%; left: 4%;   font-size: 1.8rem; animation-delay: .6s; }
.g4{ top: 72%; left: 10%;  font-size: 2.1rem; animation-delay: 2s; }
.g5{ top: 42%; right: 16%; font-size: 1.3rem; animation-delay: 1.6s; }
.g6{ top: 82%; right: 40%; font-size: 1.5rem; animation-delay: 2.6s; }

@keyframes drift{
    0%, 100%{ transform: translateY(0) rotate(0deg); }
    50%{ transform: translateY(-26px) rotate(6deg); }
}

.eyebrow{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: .85rem;
    color: var(--gold-light);
    background: rgba(245,187,46,.07);
    margin-bottom: 1.5rem;
}

.hero-grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }

.hero-copy h1{ font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 1.3rem; }

.hero-lead{ color: var(--ink-soft); font-size: 1.1rem; max-width: 46ch; margin-bottom: 2rem; }

.hero-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-art{ position: relative; display: flex; justify-content: center; }

.hero-logo-frame{
    position: relative;
    width: min(320px, 80%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--line-strong), 0 30px 60px -20px rgba(0,0,0,.6), 0 0 60px -10px rgba(245,187,46,.25);
    animation: bob 6s ease-in-out infinite;
}
.hero-logo-frame img{ display: block; width: 100%; height: 100%; object-fit: cover; }

@keyframes bob{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-14px); }
}

.hero-stats{
    margin-top: 3.5rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.stat{ display: flex; flex-direction: column; gap: .3rem; }
.stat-num{ font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--gold); display: flex; align-items: center; gap: .5rem; }
.stat-label{ color: var(--ink-soft); font-size: .88rem; max-width: 22ch; }

.live-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 0 rgba(34,217,242,.6);
    animation: ping 1.8s ease-out infinite;
}

@keyframes ping{
    0%{ box-shadow: 0 0 0 0 rgba(34,217,242,.55); }
    70%{ box-shadow: 0 0 0 10px rgba(34,217,242,0); }
    100%{ box-shadow: 0 0 0 0 rgba(34,217,242,0); }
}

/* ---------- Sections shared ---------- */
section{ padding: 5.5rem 0; }
h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-lead{ color: var(--ink-soft); margin-top: .6rem; max-width: 55ch; }

/* ---------- Services ---------- */
.service-grid{ margin-top: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }

.service-card{
    padding: 2rem 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover{
    transform: translateY(-5px);
    border-color: rgba(245,187,46,.4);
    box-shadow: 0 16px 32px -18px rgba(245,187,46,.25);
}
.service-icon{ color: var(--gold); margin-bottom: 1rem; }
.service-card h3{ font-size: 1.05rem; margin-bottom: .5rem; }
.service-card p{ color: var(--ink-soft); font-size: .93rem; }

/* ---------- Architecture / flow diagram ---------- */
.flow-diagram-wrap{
    margin-top: 2.75rem;
    max-width: 720px;
    margin-inline: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.flow-diagram{ display: block; width: 100%; min-width: 620px; height: auto; overflow: visible; }

.flow-label{
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 600;
    fill: var(--ink);
}

.flow-dot.gold{ fill: var(--gold); filter: drop-shadow(0 0 5px rgba(245,187,46,.75)); }
.flow-dot.cyan{ fill: var(--cyan); filter: drop-shadow(0 0 5px rgba(34,217,242,.75)); }

.flow-node rect{ transition: stroke .2s ease, filter .2s ease; }
.flow-node:hover rect{ stroke: var(--gold); filter: drop-shadow(0 0 10px rgba(245,187,46,.35)); }

.flow-legend{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.legend-item{ display: inline-flex; align-items: center; gap: .5rem; color: var(--ink-soft); font-size: .9rem; }

.legend-dot{ width: 9px; height: 9px; border-radius: 50%; }
.legend-dot.gold{ background: var(--gold); box-shadow: 0 0 6px rgba(245,187,46,.7); }
.legend-dot.cyan{ background: var(--cyan); box-shadow: 0 0 6px rgba(34,217,242,.7); }

/* ---------- Industries ---------- */
.industries{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.industry-grid{ margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.industry-card{
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    transition: transform .2s ease, border-color .2s ease;
}
.industry-card:hover{ transform: translateY(-4px); border-color: rgba(34,217,242,.4); }
.industry-card h3{ font-size: 1rem; margin-bottom: .5rem; }
.industry-card p{ color: var(--ink-soft); font-size: .92rem; }

/* ---------- Projects (portfolio) ---------- */
.project-grid{ margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.project-card{
    display: block;
    padding: 1.8rem 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.project-card:hover, a.project-card:focus-visible{
    transform: translateY(-5px);
    border-color: rgba(245,187,46,.4);
    box-shadow: 0 16px 32px -18px rgba(245,187,46,.25);
}

.project-icon{ color: var(--gold); margin-bottom: 1rem; }

.project-card h3{ font-size: 1.05rem; margin-bottom: .4rem; }
.project-card p{ color: var(--ink-soft); font-size: .92rem; margin-bottom: 1.2rem; }

.project-visit{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--gold-light);
}
.project-visit svg{ transition: transform .2s ease; }
a.project-card:hover .project-visit svg{ transform: translateX(-3px); }

.project-card.coming-soon{ border-style: dashed; opacity: .72; }
.badge-soon{
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink-soft);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: .3rem .8rem;
}

/* ---------- Process ---------- */
.process-grid{ margin-top: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.process-step{ position: relative; padding-top: 2.6rem; }
.step-num{
    position: absolute;
    top: 0; right: 0;
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    border-top: 2px solid var(--gold);
    padding-top: .4rem;
    width: 2.6rem;
}
.process-step h3{ font-size: 1.02rem; margin-bottom: .5rem; }
.process-step p{ color: var(--ink-soft); font-size: .92rem; }

/* ---------- Tech marquee ---------- */
.tech{ padding: 3.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tech-heading{ font-size: 1.05rem; margin-bottom: 1.75rem; }

.marquee{
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
    display: flex;
    gap: .8rem;
    width: max-content;
    animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }

@keyframes marquee{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}

.tech-tag{
    flex: 0 0 auto;
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink-soft);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: .5rem 1.2rem;
    background: var(--panel);
    white-space: nowrap;
}

/* ---------- Why ---------- */
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.why-item h3{ font-size: 1.05rem; margin-bottom: .5rem; padding-right: 1rem; border-right: 3px solid var(--gold); }
.why-item p{ color: var(--ink-soft); padding-right: 1rem; }

/* ---------- Contact ---------- */
.contact{ background: var(--panel); border-top: 1px solid var(--line); }
.contact-grid{ display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; }
.contact-info p{ color: var(--ink-soft); margin-top: .6rem; max-width: 40ch; }
.contact-list{ list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li{ display: flex; flex-direction: column; gap: .15rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.contact-label{ font-size: .8rem; color: var(--ink-soft); }
.contact-list a{ font-weight: 700; font-size: 1.05rem; transition: color .15s ease; }
.contact-list a:hover{ color: var(--gold); }

.contact-form{
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.field{ display: flex; flex-direction: column; gap: .4rem; }
.field label{ font-size: .88rem; color: var(--ink-soft); }
.field input, .field textarea, .field select{
    font-family: inherit;
    font-size: .98rem;
    padding: .75rem .9rem;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--panel);
    color: var(--ink);
    resize: vertical;
}
.field select{
    appearance: none;
    -webkit-appearance: none;
    color-scheme: dark;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2398a3c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.4rem;
}
.field select:disabled{ opacity: .55; }

.field input:focus, .field textarea:focus, .field select:focus{ outline: 2px solid var(--gold); outline-offset: 1px; }
.contact-form .btn{ align-self: flex-start; }

.estimate-box{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 1.6rem 1.8rem;
}

.estimate-row{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.estimate-label{ color: var(--ink-soft); font-size: .9rem; }

.estimate-price{
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
}
.estimate-price .currency {
    font-size: 0.55em;
    font-weight: 700;
}

.estimate-price span:not(.currency){ font-size: 1rem; font-weight: 600; color: var(--ink-soft); }

.estimate-note{ color: var(--ink-soft); font-size: .82rem; margin-top: .3rem; }

.plan-features{
    list-style: none;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.plan-features li{
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--ink-soft);
    font-size: .9rem;
}
.plan-features li svg{ flex-shrink: 0; margin-top: .2rem; color: var(--gold); }

/* ---------- Footer ---------- */
footer{ border-top: 1px solid var(--line); }
.footer-bar{ min-height: 100px; padding: 1.75rem 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem 2rem; }
.brand-footer{ margin-left: 0; }
.footer-links{ display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a{ color: var(--ink-soft); font-size: .88rem; transition: color .15s ease; }
.footer-links a:hover{ color: var(--gold); }
.footer-copy{ color: var(--ink-soft); font-size: .9rem; }

/* ---------- Simple page hero (subpages) ---------- */
.page-hero{ padding: 4.5rem 0 .5rem; }
.page-hero h1{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: .8rem; }
.page-hero p{ color: var(--ink-soft); max-width: 60ch; }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-content{ max-width: 760px; }
.legal-content h2{ font-size: 1.2rem; margin: 2.2rem 0 .8rem; }
.legal-content h2:first-child{ margin-top: 0; }
.legal-content p{ color: var(--ink-soft); margin-bottom: 1rem; }
.legal-content ul{ color: var(--ink-soft); margin: 0 0 1rem; padding-right: 1.3rem; display: flex; flex-direction: column; gap: .45rem; }
.legal-content strong{ color: var(--ink); }
.legal-content a{ color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover{ color: var(--gold); }

.legal-fields{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 1.6rem 1.8rem;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.legal-field{ display: flex; flex-direction: column; gap: .2rem; }
.legal-field-label{ font-size: .8rem; color: var(--ink-soft); }
.legal-field-value{ font-size: 1rem; }
.placeholder{ color: var(--gold-light); font-style: italic; }

.legal-notice{
    margin-top: 2.75rem;
    padding: 1.1rem 1.4rem;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background: rgba(245,187,46,.05);
    color: var(--ink-soft);
    font-size: .88rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible{ opacity: 1; transform: none; }

.service-grid .reveal:nth-child(1), .industry-grid .reveal:nth-child(1), .process-grid .reveal:nth-child(1), .why-grid .reveal:nth-child(1){ transition-delay: 0s; }
.service-grid .reveal:nth-child(2), .industry-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2){ transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .industry-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3){ transition-delay: .16s; }
.service-grid .reveal:nth-child(4), .industry-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4){ transition-delay: .24s; }
.industry-grid .reveal:nth-child(5){ transition-delay: .32s; }

@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .reveal{ opacity: 1; transform: none; transition: none; }
    .glyph, .hero-logo-frame, .marquee-track, .hero-glow{ animation: none !important; }
    .flow-dot{ display: none; }
    .live-dot{ animation: none; box-shadow: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
    .hero-grid{ grid-template-columns: 1fr; }
    .hero-art{ order: -1; }
    .hero-stats{ grid-template-columns: repeat(3, 1fr); }
    .service-grid{ grid-template-columns: repeat(2, 1fr); }
    .industry-grid{ grid-template-columns: repeat(2, 1fr); }
    .project-grid{ grid-template-columns: repeat(2, 1fr); }
    .process-grid{ grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
    .why-grid{ grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
    .nav-links, .header-cta{ display: none; }
    .menu-btn{ display: flex; }
    .brand-tagline{ display: none; }
    .hero-stats{ grid-template-columns: 1fr; gap: 1.4rem; text-align: center; }
    .stat-label{ max-width: none; margin: 0 auto; }
    .service-grid{ grid-template-columns: 1fr; }
    .industry-grid{ grid-template-columns: 1fr; }
    .project-grid{ grid-template-columns: 1fr; }
    .process-grid{ grid-template-columns: 1fr; }
    .footer-bar{ flex-direction: column; gap: 1rem; padding: 1.75rem 0; text-align: center; }
    .footer-links{ justify-content: center; }
}
