:root {
  --navy: #071a43;
  --navy-2: #0b2d6e;
  --yellow: #ffe500;
  --yellow-2: #fff25c;
  --ink: #0b0d12;
  --paper: #f4f2ec;
  --white: #ffffff;
  --muted: #686c75;
  --line: rgba(11, 13, 18, .15);
  --radius: 26px;
  --shadow: 0 24px 70px rgba(7, 26, 67, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.container { width: min(1240px, calc(100% - 44px)); margin-inline: auto; }
.section { padding: 118px 0; }
.skip-link { position: fixed; top: -100px; right: 20px; z-index: 1000; padding: 10px 16px; background: var(--yellow); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 20px; }

.top-marquee { overflow: hidden; height: 38px; background: var(--yellow); border-bottom: 1px solid var(--ink); color: var(--ink); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 26px; height: 100%; white-space: nowrap; animation: marquee 27s linear infinite; font-size: 12px; font-weight: 900; }
.marquee-track i { font-style: normal; }
@keyframes marquee { to { transform: translateX(50%); } }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(244,242,236,.94); border-bottom: 1px solid var(--ink); backdrop-filter: blur(16px); transition: .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 36px rgba(7,26,67,.08); }
.nav-wrap { position: relative; display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: 146px; height: 58px; align-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 800; }
.main-nav a { padding: 10px 12px; border-radius: 999px; transition: .2s ease; }
.main-nav a:hover { background: var(--yellow); }
.pill-cta { display: inline-flex; align-items: center; gap: 18px; min-height: 48px; padding: 6px 8px 6px 18px; border: 1px solid var(--ink); border-radius: 999px; background: var(--white); font-size: 13px; font-weight: 900; transition: .2s ease; }
.pill-cta b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 17px; }
.pill-cta:hover { transform: translateY(-2px); background: var(--yellow); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 10px; border: 1px solid var(--ink); border-radius: 50%; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; min-height: calc(100vh - 122px); padding: 86px 0 96px; background: var(--navy); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 10%, rgba(255,229,0,.19), transparent 25%), radial-gradient(circle at 84% 90%, rgba(255,255,255,.11), transparent 25%); pointer-events: none; }
.hero-grid-lines { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 95%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(430px,.92fr); gap: clamp(52px,7vw,100px); align-items: center; }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--yellow); font-size: 13px; font-weight: 900; }
.kicker span { width: 32px; height: 2px; background: currentColor; }
.kicker.dark { color: var(--navy); }
.hero h1, .section-title-row h2, .testimonial-heading h2, .faq-copy h2, .final-copy h2, .manifesto-copy h2 { margin: 0; font-weight: 900; letter-spacing: -.045em; text-wrap: balance; }
.hero h1 { max-width: 780px; font-size: clamp(52px,6.2vw,94px); line-height: 1.04; }
.hero h1 em, .testimonial-heading h2 em, .faq-copy h2 em, .final-copy h2 em { color: var(--yellow); font-style: normal; }
.hero-text { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 26px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 900; transition: .2s ease; }
.btn b { font-size: 20px; }
.btn:hover { transform: translateY(-3px); }
.btn-yellow { border-color: var(--yellow); background: var(--yellow); color: var(--ink); box-shadow: 0 14px 38px rgba(255,229,0,.17); }
.btn-yellow:hover { background: var(--yellow-2); }
.btn-ghost { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.hero-proof { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; max-width: 670px; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.19); }
.hero-proof div { min-width: 0; }
.hero-proof strong { display: block; color: var(--yellow); font-size: 28px; line-height: 1.1; }
.hero-proof span { display: block; margin-top: 5px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 700; }

.hero-art { position: relative; min-height: 550px; }
.art-backdrop { position: absolute; inset: 8% 4% 6% 4%; border: 1px solid rgba(255,255,255,.16); border-radius: 46% 54% 38% 62% / 45% 35% 65% 55%; background: var(--yellow); transform: rotate(-7deg); }
.art-backdrop::before { content: ""; position: absolute; inset: 34px; border: 2px dashed rgba(7,26,67,.25); border-radius: inherit; }
.device-card { position: absolute; top: 74px; right: 40px; width: min(470px,76%); overflow: hidden; border: 10px solid #10131a; border-radius: 28px; background: var(--paper); box-shadow: 0 30px 70px rgba(0,0,0,.35); transform: rotate(4deg); }
.device-bar { display: flex; height: 34px; align-items: center; gap: 6px; padding: 0 12px; background: #11141a; }
.device-bar span { width: 8px; height: 8px; border-radius: 50%; background: #9da2ad; }
.device-screen { min-height: 330px; padding: 30px; background: linear-gradient(140deg,#fff,#e8ebf1); }
.device-nav { width: 62%; height: 12px; border-radius: 99px; background: #cbd0db; }
.device-title { width: 84%; height: 28px; margin-top: 44px; border-radius: 8px; background: var(--navy); }
.device-subtitle { width: 58%; height: 12px; margin-top: 14px; border-radius: 99px; background: #c7ccd7; }
.device-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 36px; }
.device-grid b { aspect-ratio: 1; border: 1px solid #d4d8e0; border-radius: 16px; background: #fff; box-shadow: 0 9px 20px rgba(7,26,67,.08); }
.art-card { position: absolute; z-index: 3; width: 230px; padding: 20px; border: 2px solid var(--ink); border-radius: 20px; box-shadow: 10px 10px 0 rgba(0,0,0,.2); }
.art-card small, .art-card span { display: block; }
.art-card small { font-size: 10px; font-weight: 900; text-transform: uppercase; }
.art-card strong { display: block; margin: 5px 0 3px; font-size: 21px; line-height: 1.35; }
.art-card span { font-size: 11px; font-weight: 700; opacity: .68; }
.art-card-one { top: 12px; left: 0; background: var(--white); color: var(--ink); transform: rotate(-5deg); }
.art-card-two { right: 0; bottom: 28px; background: var(--navy-2); color: var(--white); transform: rotate(5deg); }
.spin-badge { position: absolute; z-index: 4; left: 26px; bottom: 60px; display: grid; width: 120px; height: 120px; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); color: var(--ink); box-shadow: 8px 8px 0 rgba(0,0,0,.2); animation: float 3.5s ease-in-out infinite; }
.spin-badge span { max-width: 70px; text-align: center; font-size: 13px; font-weight: 900; line-height: 1.45; }
.spin-badge b { position: absolute; top: 10px; right: 17px; font-size: 18px; }
@keyframes float { 50% { transform: translateY(-10px) rotate(3deg); } }

.manifesto { padding: 68px 0; border-bottom: 1px solid var(--ink); background: var(--yellow); }
.manifesto-grid { display: grid; grid-template-columns: minmax(200px,.35fr) minmax(0,1.65fr); gap: clamp(30px,7vw,110px); align-items: start; }
.manifesto-tag { padding-top: 13px; border-top: 2px solid var(--ink); font-size: 28px; font-weight: 900; line-height: 1.35; }
.manifesto-tag span { display: block; margin-top: 8px; font-size: 12px; font-weight: 700; }
.manifesto-copy p { margin: 0 0 10px; font-weight: 800; }
.manifesto-copy h2 { max-width: 900px; font-size: clamp(40px,5vw,72px); line-height: 1.15; }

.section-title-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.54fr); gap: clamp(36px,7vw,100px); align-items: end; margin-bottom: 54px; }
.section-title-row h2 { color: var(--navy); font-size: clamp(48px,5.3vw,78px); line-height: 1.08; }
.section-title-row > p { margin: 0 0 9px; color: var(--muted); font-size: 15px; line-height: 2; }
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.service-card { position: relative; display: flex; min-height: 430px; flex-direction: column; overflow: hidden; padding: 28px; border: 1px solid var(--ink); border-radius: var(--radius); transition: .25s ease; }
.service-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow); }
.service-top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 900; }
.service-top b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 19px; }
.service-icon { display: grid; width: 72px; height: 72px; place-items: center; margin: 48px 0 24px; border: 1px solid currentColor; border-radius: 20px; font-size: 31px; font-weight: 900; }
.service-card h3 { margin: 0; font-size: 29px; line-height: 1.35; }
.service-card p { margin: 14px 0 0; opacity: .73; font-size: 14px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding: 24px 0 0; list-style: none; }
.service-card li { padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 10px; font-weight: 800; opacity: .75; }
.service-dark { background: var(--ink); color: var(--white); }
.service-yellow { background: var(--yellow); color: var(--ink); }
.service-light { background: var(--white); color: var(--ink); }
.service-blue { background: var(--navy); color: var(--white); }

.cta-band { padding: 26px 0; background: var(--ink); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band-inner span { color: var(--yellow); font-size: 13px; font-weight: 900; }
.cta-band-inner h2 { max-width: 800px; margin: 5px 0 0; font-size: clamp(30px,4vw,54px); line-height: 1.2; }
.round-link { display: grid; flex: 0 0 130px; width: 130px; height: 130px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); text-align: center; transition: .25s ease; }
.round-link span { color: var(--ink); font-size: 15px; }
.round-link b { display: block; font-size: 23px; }
.round-link:hover { transform: rotate(-8deg) scale(1.05); }

.portfolio { background: var(--white); }
.portfolio-title { margin-bottom: 34px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-btn { min-height: 42px; padding: 8px 17px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font-size: 12px; font-weight: 900; transition: .2s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--white); }
.featured-projects { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.project-card { position: relative; min-height: 510px; overflow: hidden; padding: 30px; border: 1px solid var(--ink); border-radius: var(--radius); transition: .25s ease; }
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 900; }
.project-meta span { padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; }
.project-meta b { font-size: 18px; }
.project-card h3 { margin: 48px 0 0; font-size: clamp(36px,4vw,58px); line-height: 1.1; }
.project-card p { max-width: 560px; margin: 13px 0 0; opacity: .72; font-size: 14px; }
.project-card > strong { position: absolute; right: 30px; bottom: 24px; font-size: 12px; }
.project-mock { position: absolute; left: 30px; bottom: 60px; display: grid; width: 43%; min-width: 210px; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 14px; border: 2px solid currentColor; border-radius: 18px; transform: rotate(-4deg); }
.project-mock i { aspect-ratio: 1; border: 1px solid currentColor; border-radius: 10px; background: rgba(255,255,255,.55); }
.project-yellow { background: var(--yellow); color: var(--ink); }
.project-blue { background: var(--navy); color: var(--white); }
.project-light { background: var(--paper); color: var(--ink); }
.project-dark { background: var(--ink); color: var(--white); }
.project-card.hidden, .work-row.hidden { display: none; }
.more-work-head { display: flex; align-items: end; justify-content: space-between; margin: 70px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.more-work-head h3 { margin: 0; color: var(--navy); font-size: 34px; }
.more-work-head span { color: var(--muted); font-size: 11px; }
.work-list { border-top: 1px solid var(--ink); }
.work-row { display: grid; grid-template-columns: 160px minmax(0,1fr) 220px 40px; gap: 20px; align-items: center; min-height: 82px; padding: 12px 8px; border-bottom: 1px solid var(--ink); transition: .2s ease; }
.work-row:hover { padding-inline: 20px; background: var(--yellow); }
.work-row span { font-size: 11px; font-weight: 900; }
.work-row strong { font-size: 20px; }
.work-row small { color: var(--muted); direction: ltr; text-align: left; }
.work-row b { font-size: 21px; }

.testimonials { background: var(--navy); color: var(--white); }
.testimonial-heading { max-width: 920px; margin-bottom: 56px; }
.testimonial-heading h2 { font-size: clamp(54px,6vw,88px); line-height: 1.05; }
.testimonial-heading p:last-child { max-width: 620px; margin: 20px 0 0; color: rgba(255,255,255,.66); }
.testimonials-grid { column-count: 3; column-gap: 16px; }
.testimonial-shot { display: block; width: 100%; break-inside: avoid; overflow: hidden; margin: 0 0 16px; padding: 0; border: 2px solid var(--yellow); border-radius: 18px; background: var(--white); cursor: zoom-in; box-shadow: 10px 10px 0 rgba(255,229,0,.12); transition: .2s ease; }
.testimonial-shot:hover { transform: translateY(-4px) rotate(-.4deg); box-shadow: 14px 14px 0 rgba(255,229,0,.2); }
.testimonial-shot img { width: 100%; height: auto; }
.lightbox { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 40px 20px; background: rgba(3,7,18,.92); opacity: 0; visibility: hidden; transition: .2s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(900px,94vw); max-height: 88vh; border: 3px solid var(--yellow); border-radius: 16px; }
.lightbox-close { position: fixed; top: 18px; left: 20px; width: 48px; height: 48px; border: 1px solid var(--yellow); border-radius: 50%; background: var(--ink); color: var(--yellow); cursor: pointer; font-size: 31px; line-height: 1; }

.process { background: var(--paper); }
.process-list { border-top: 2px solid var(--ink); }
.process-row { display: grid; grid-template-columns: 100px 330px minmax(0,1fr); gap: 26px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--ink); }
.process-row span { color: var(--navy); font-size: 18px; font-weight: 900; }
.process-row h3 { margin: 0; color: var(--navy); font-size: 32px; }
.process-row p { max-width: 620px; margin: 0; color: var(--muted); }

.faq { background: var(--ink); color: var(--white); }
.faq-layout { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(44px,8vw,120px); align-items: start; }
.faq-copy { position: sticky; top: 130px; }
.faq-copy h2 { font-size: clamp(50px,5.5vw,80px); line-height: 1.08; }
.faq-copy p:last-child { max-width: 500px; color: rgba(255,255,255,.62); }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.04); }
.faq-item.active { border-color: var(--yellow); background: rgba(255,229,0,.08); }
.faq-item button { position: relative; width: 100%; padding: 22px 24px 22px 70px; border: 0; background: transparent; color: var(--white); cursor: pointer; text-align: right; font-weight: 900; }
.faq-item button::after { content: "+"; position: absolute; top: 50%; left: 20px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--yellow); transform: translateY(-50%); }
.faq-item.active button::after { content: "−"; border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.faq-item p { display: none; margin: 0; padding: 0 24px 24px; color: rgba(255,255,255,.65); font-size: 14px; }
.faq-item.active p { display: block; }

.final-cta { padding: 100px 0; background: var(--yellow); color: var(--ink); }
.final-cta-inner { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(360px,.75fr); gap: 70px; align-items: center; }
.final-copy p { margin: 0 0 10px; font-weight: 900; }
.final-copy h2 { font-size: clamp(52px,6vw,88px); line-height: 1.04; }
.final-copy h2 em { color: var(--navy); }
.contact-card { padding: 30px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: 12px 12px 0 var(--navy); }
.contact-card small, .contact-card span { display: block; }
.contact-card small { color: var(--navy); font-weight: 900; }
.contact-card strong { display: block; margin: 8px 0; font-size: 30px; }
.contact-card span { color: var(--muted); font-size: 13px; }
.contact-card .btn { width: 100%; margin-top: 24px; border-color: var(--ink); background: var(--navy); color: var(--white); box-shadow: none; }

.site-footer { padding: 70px 0 26px; background: var(--navy); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.5fr) repeat(2,minmax(160px,.5fr)); gap: 50px; padding-bottom: 50px; }
.footer-brand img { width: 190px; height: 92px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.62); }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.footer-grid strong { color: var(--yellow); margin-bottom: 8px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.48); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--yellow); }

.site-toast { position: fixed; right: 20px; bottom: 20px; z-index: 500; max-width: min(360px,calc(100% - 40px)); padding: 13px 16px; border: 1px solid var(--yellow); border-radius: 999px; background: var(--ink); color: var(--white); font-size: 12px; font-weight: 800; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.site-toast.show { opacity: 1; visibility: visible; transform: none; }
.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: revealIn .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .main-nav, .nav-wrap > .pill-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav.open { position: absolute; top: calc(100% + 10px); right: 0; left: 0; z-index: 10; display: grid; padding: 8px; border: 1px solid var(--ink); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.open a { padding: 14px; }
  .hero-layout { grid-template-columns: minmax(0,1fr); }
  .hero-copy { max-width: 880px; }
  .hero-art { width: min(700px,100%); min-height: 560px; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .section-title-row { grid-template-columns: minmax(0,1fr); gap: 22px; }
  .section-title-row > p { max-width: 700px; }
  .faq-layout, .final-cta-inner { grid-template-columns: minmax(0,1fr); }
  .faq-copy { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px,650px); }
  .section { padding: 82px 0; }
  .top-marquee { height: 34px; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 122px; height: 50px; }
  .hero { min-height: auto; padding: 64px 0 78px; }
  .hero h1 { font-size: clamp(46px,12.5vw,66px); }
  .hero-text { font-size: 15px; }
  .hero-proof { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .hero-art { min-height: 490px; margin-top: 8px; }
  .device-card { right: 22px; width: 82%; }
  .art-card { width: 190px; padding: 16px; }
  .art-card strong { font-size: 17px; }
  .spin-badge { width: 100px; height: 100px; }
  .manifesto-grid { grid-template-columns: minmax(0,1fr); gap: 30px; }
  .manifesto-copy h2 { font-size: clamp(38px,10vw,54px); }
  .section-title-row h2, .testimonial-heading h2, .faq-copy h2, .final-copy h2 { font-size: clamp(42px,10vw,58px); }
  .services-grid, .featured-projects { grid-template-columns: minmax(0,1fr); }
  .service-card { min-height: 390px; }
  .cta-band-inner { align-items: flex-start; }
  .round-link { flex-basis: 104px; width: 104px; height: 104px; }
  .project-card { min-height: 470px; }
  .project-mock { width: 52%; }
  .work-row { grid-template-columns: 110px minmax(0,1fr) 32px; }
  .work-row small { display: none; }
  .testimonials-grid { column-count: 2; }
  .process-row { grid-template-columns: 66px minmax(0,1fr); gap: 14px; padding: 24px 0; }
  .process-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: minmax(0,1fr) repeat(2,minmax(0,1fr)); }
}

@media (max-width: 520px) {
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proof strong { font-size: 23px; }
  .hero-proof span { font-size: 9px; }
  .hero-art { min-height: 430px; }
  .art-backdrop { inset: 10% 0 8%; }
  .device-card { top: 78px; right: 10px; width: 88%; border-width: 7px; }
  .device-screen { min-height: 260px; padding: 20px; }
  .art-card-one { left: -6px; }
  .art-card-two { right: -8px; bottom: 10px; }
  .spin-badge { left: 4px; bottom: 42px; width: 88px; height: 88px; }
  .spin-badge span { font-size: 11px; }
  .service-card { padding: 22px; }
  .service-card h3 { font-size: 26px; }
  .cta-band-inner { display: grid; }
  .round-link { justify-self: end; }
  .filter-bar { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .filter-btn { width: 100%; }
  .project-card { min-height: 440px; padding: 24px; }
  .project-card h3 { font-size: 38px; }
  .project-mock { left: 24px; bottom: 62px; min-width: 180px; }
  .work-row { grid-template-columns: 90px minmax(0,1fr) 28px; gap: 10px; }
  .work-row strong { font-size: 16px; }
  .testimonials-grid { column-count: 1; }
  .faq-item button { padding-right: 18px; }
  .contact-card { padding: 22px; box-shadow: 8px 8px 0 var(--navy); }
  .footer-grid { grid-template-columns: minmax(0,1fr); }
  .footer-bottom { display: grid; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
