:root {
  --black: #010713;
  --white: #fff;
  --ink: #102033;
  --navy: #010713;
  --navy-soft: #071426;
  --cyan: #53cfff;
  --muted: #71849d;
  --header-height: 96px;
  --content-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--black); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; z-index: 999; left: 1rem; top: -5rem; padding: .8rem 1rem; color: #000; background: #fff; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); transition: color .35s ease, background-color .35s ease, border-color .35s ease, box-shadow .35s ease; }
.site-header--overlay { color: #fff; background: linear-gradient(to bottom, rgba(0,0,0,.54), transparent); border-bottom: 1px solid rgba(255,255,255,.35); }
.site-header--inner-dark { color: #fff; background: #010713; border-bottom: 1px solid rgba(154,199,236,.22); }
.site-header.is-scrolled { color: #161616; background: rgba(255,255,255,.97); border-bottom-color: transparent; box-shadow: 0 7px 30px rgba(0,0,0,.12); backdrop-filter: blur(12px); }
.header-inner { width: min(calc(100% - 48px), var(--content-width)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-brand { position: relative; display: block; width: 240px; height: 64px; flex: 0 0 auto; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .3s ease; }
.brand-logo--color { opacity: 0; }
.site-header.is-scrolled .brand-logo--white { opacity: 0; }
.site-header.is-scrolled .brand-logo--color { top: 8px; opacity: 1; }

.primary-nav { display: flex; align-items: center; gap: clamp(.75rem, 1.25vw, 1.5rem); font-size: .92rem; font-weight: 700; }
.primary-nav a { position: relative; padding: .65rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: .3rem; height: 2px; background: currentColor; transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .primary-nav a.active::after { right: 0; }
.primary-nav > a[href*="/blog/"] { display: none !important; }
.primary-nav .header-contact-link,.site-header.is-scrolled .primary-nav .header-contact-link { color: #53cfff; }
.primary-nav .explore-projects-link { padding: 12px 16px; border: 1px solid rgba(255,255,255,.45); color: #fff; background: rgba(2,9,20,.28); backdrop-filter: blur(12px); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.primary-nav .explore-projects-link::after { display: none; }
.primary-nav .explore-projects-link:hover,.primary-nav .explore-projects-link:focus-visible { color: #06101e; background: #fff; }
.site-header.is-scrolled .primary-nav .explore-projects-link { color: #06101e; border-color: rgba(6,16,30,.42); background: transparent; }
.site-header.is-scrolled .primary-nav .explore-projects-link:hover,.site-header.is-scrolled .primary-nav .explore-projects-link:focus-visible { color: #fff; background: #06101e; }
.header-search { display: flex; align-items: center; }
.header-search input { width: 0; opacity: 0; padding: .55rem 0; border: 0; border-bottom: 1px solid currentColor; color: inherit; background: transparent; transition: width .25s ease, opacity .25s ease, padding .25s ease; }
.header-search:focus-within input, .header-search:hover input { width: 150px; opacity: 1; padding-inline: .6rem; }
.header-search button { border: 0; padding: .4rem; color: inherit; background: transparent; font-size: 1.55rem; cursor: pointer; }
.nav-dropdown { position: relative; }
.nav-dropdown__row { display: flex; align-items: center; }
.submenu-toggle { display: none; }
.submenu-panel { position: absolute; z-index: 20; top: 100%; display: none; color: #f4f8ff; background: rgba(4,12,25,.97); border: 1px solid rgba(83,207,255,.22); box-shadow: 0 22px 60px rgba(0,0,0,.42); backdrop-filter: blur(18px); }
.services-menu { left: 50%; width: min(1080px,94vw); padding: .75rem; grid-template-columns: repeat(3,minmax(0,1fr)); transform: translateX(-50%); }
.products-menu { left: 0; width: 320px; padding: .7rem; grid-template-columns: 1fr; }
.nav-dropdown:hover > .submenu-panel,.nav-dropdown:focus-within > .submenu-panel { display: grid; }
.services-menu section { padding: .85rem 1.2rem; border-bottom: 1px solid rgba(154,199,236,.16); }
.services-menu h2 { margin: 0 0 .35rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.services-menu a,.products-menu a { display: block; padding: .22rem 0; border: 0; font-size: .8rem; font-weight: 600; line-height: 1.3; }
.services-menu a::after,.products-menu a::after { display: none; }
.services-menu section > h2 > a { padding: 0; font-size: inherit; font-weight: inherit; }
.products-menu a { padding: .75rem .8rem; border-bottom: 1px solid rgba(154,199,236,.16); }
.products-menu a:last-child { border-bottom: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .6rem; color: currentColor; }
.menu-toggle span { display: block; width: 27px; height: 2px; margin: 6px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.site-footer { content-visibility: auto; contain-intrinsic-size: 560px; color: #fff; background: #010713; border-top: 1px solid rgba(154,199,236,.18); }
.footer-inner { width: min(calc(100% - 48px), var(--content-width)); margin: auto; padding: 72px 0 58px; display: grid; grid-template-columns: 1.35fr 1fr 1.15fr 1.2fr; gap: clamp(1.5rem,3.5vw,3.5rem); }
.site-footer h2 { margin: 0 0 1.3rem; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a, .site-footer p { color: #91a0b6; font-size: .93rem; line-height: 1.7; }
.site-footer a { display: block; width: fit-content; margin: .35rem 0; transition: color .2s ease; }
.site-footer a:hover, .site-footer a:focus-visible { color: #fff; }
.footer-brand img { width: 230px; height: auto; aspect-ratio: 480 / 112; margin-bottom: 1.2rem; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 280px; }
.site-footer p { margin: .4rem 0; }
.site-footer p a { display: inline; }
.footer-offerings h2 + a { margin-top: 0; }
.footer-offerings h2:not(:first-child) { margin-top: 2rem; }
.footer-socials { display: flex; align-items: center; gap: .9rem; margin-top: 1.2rem; }
.site-footer .footer-socials a { display: grid; width: 24px; height: 24px; margin: 0; place-items: center; color: #fff; background: transparent; opacity: .82; transition: opacity .2s ease, transform .2s ease; }
.site-footer .footer-socials a:hover,.site-footer .footer-socials a:focus-visible { opacity: 1; transform: translateY(-2px); }
.footer-socials svg { width: 21px; height: 21px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(154,199,236,.16); padding: 20px 24px; }
.footer-bottom__inner { width: min(100%,var(--content-width)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-legal { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: .45rem 1rem; color: #91a0b6; font-size: .78rem; text-align: right; }
.footer-policy-links { display: flex; align-items: center; gap: 1rem; }
.site-footer .footer-legal a,.site-footer .footer-legal button { display: inline; width: auto; margin: 0; padding: 0; color: #91a0b6; background: transparent; border: 0; font: inherit; line-height: 1.6; cursor: pointer; }
.site-footer .footer-legal a:hover,.site-footer .footer-legal a:focus-visible,.site-footer .footer-legal button:hover,.site-footer .footer-legal button:focus-visible { color: #fff; }
.footer-platforms { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; color: #8290a5; white-space: nowrap; }
.footer-platforms > span:first-child { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-platform-mark { display: inline-flex; align-items: center; gap: .24rem; color: #95a1b2; line-height: 1; white-space: nowrap; }
.footer-platform-mark--fiverr { font-size: 1rem; font-weight: 900; letter-spacing: -.06em; }
.footer-platform-mark--linkedin { font-size: .8rem; font-weight: 800; letter-spacing: -.035em; }
.footer-platform-mark--linkedin > span { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 2px; color: #020a18; background: #95a1b2; font-size: .72rem; font-weight: 900; letter-spacing: -.05em; }
.footer-platform-mark--upwork { font-size: .9rem; font-weight: 850; letter-spacing: -.06em; }
.footer-platform-mark--hubstaff { font-size: .78rem; font-weight: 750; letter-spacing: -.035em; }
.footer-platform-mark--hubstaff > span { display: inline-grid; place-items: center; width: 18px; height: 18px; border: 2px solid #95a1b2; border-radius: 50%; font-size: .62rem; font-weight: 900; }
.footer-stars { color: #95a1b2; font-size: .82rem; letter-spacing: .08em; }
.cookie-consent[hidden] { display: none; }
.cookie-consent { position: fixed; z-index: 10000; left: 20px; bottom: 20px; width: min(390px,calc(100vw - 40px)); padding: 1.35rem; color: #eef8ff; background: rgba(2,9,20,.96); border: 1px solid rgba(83,207,255,.38); border-radius: 14px; box-shadow: 0 20px 65px rgba(0,0,0,.42); opacity: 0; transform: translateY(16px); transition: opacity .25s ease,transform .25s ease; backdrop-filter: blur(16px); }
.cookie-consent.is-visible { opacity: 1; transform: translateY(0); }
.cookie-consent h2 { margin: 0 0 .65rem; font-size: 1.2rem; }
.cookie-consent p { margin: 0; color: #a9bad0; font-size: .88rem; line-height: 1.6; }
.cookie-consent a { color: #53cfff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem; margin-top: 1rem; }
.cookie-consent button { min-height: 44px; padding: .7rem .85rem; border: 1px solid #53cfff; border-radius: 4px; font: inherit; font-size: .8rem; font-weight: 800; cursor: pointer; }
.cookie-accept { color: #071426; background: #53cfff; }
.cookie-essential { color: #eef8ff; background: transparent; }

.inner-page { background: #f4f8ff; }
.inner-page .site-header { position: fixed; }
.inner-page main { min-height: 62vh; padding-top: var(--header-height); background: #f4f8ff; }
.content-wrap { width: min(calc(100% - 48px), 1120px); margin-inline: auto; }
.page-hero { position: relative; overflow: hidden; padding: clamp(2.2rem,4vw,3.6rem) 0 clamp(2.35rem,4.5vw,3.9rem); color: #f4f8ff; background: linear-gradient(118deg,#010713 0,#031326 58%,#0b3154 100%); border-bottom: 1px solid rgba(83,207,255,.22); }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.35rem,4.35vw,4.25rem); line-height: 1.04; letter-spacing: -.04em; }
.inner-page .page-hero:not(.error-page) .content-wrap > :not(.breadcrumbs):not(h1) { display: none !important; }
.eyebrow { margin: 0 0 1rem !important; font-size: .8rem !important; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.legacy-content, .article-body, .archive-list { padding-block: clamp(3rem, 7vw, 6rem); color: #333; font-size: 1rem; line-height: 1.75; }
.legacy-content h1, .legacy-content h2, .legacy-content h3, .article-body h2, .article-body h3 { color: #111; line-height: 1.2; }
.legacy-content h2, .article-body h2 { margin-top: 2.2rem; font-size: clamp(1.7rem,3vw,2.5rem); }
.legacy-content a, .article-body a, .archive-list a { color: #087cac; text-decoration: underline; text-underline-offset: 3px; }
.legacy-content img, .article-body img { height: auto; border-radius: 2px; }
.legacy-content iframe { max-width: 100%; }
.legacy-content .elementor-container, .legacy-content .elementor-row { display: flex; flex-wrap: wrap; width: 100%; }
.legacy-content .elementor-column { min-width: 0; flex: 1 1 260px; }
.legacy-content .elementor-widget-wrap, .legacy-content .elementor-widget-container { width: 100%; }
.legacy-content ul, .article-body ul { padding-left: 1.25rem; }
.featured-image { width: 100%; max-height: 580px; margin-bottom: 3rem; object-fit: cover; }
.archive-grid { padding-block: clamp(3rem,7vw,6rem); display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2rem; }
.post-card { overflow: hidden; border: 1px solid #d9e5ef; background: #fff; box-shadow: 0 18px 48px rgba(3,19,38,.09); }
.post-card > a img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 1.6rem; }
.post-card time, .archive-list time { color: #707070; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2, .archive-list h2 { margin: .6rem 0; font-size: clamp(1.35rem,2vw,1.8rem); line-height: 1.2; }
.post-card h2 a { color: #111; }
.post-card .read-more { display: inline-block; margin-top: 1rem; font-weight: 700; color: #0774b9; }
.archive-list article { padding: 2rem 0; border-bottom: 1px solid #ddd; }
.services-grid { padding-block: clamp(3rem,7vw,6rem); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; }
.service-card { overflow: hidden; border: 1px solid #d9e5ef; background: #fff; box-shadow: 0 18px 48px rgba(3,19,38,.09); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(0,0,0,.12); }
.service-card > a { display: block; height: 100%; }
.service-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; object-position: center; }
.service-card div { padding: 1.35rem; }
.service-card h2 { margin: 0 0 .7rem; color: #111; font-size: 1.25rem; line-height: 1.25; }
.service-card p { margin: 0 0 1rem; color: #626262; line-height: 1.6; }
.service-card span { color: #0774b9; font-weight: 700; }
.content-search { display: flex; max-width: 680px; margin-bottom: 2rem; }
.content-search input { flex: 1; min-width: 0; padding: .9rem 1rem; border: 1px solid #bbb; font: inherit; }
.content-search button, .button { padding: .9rem 1.4rem; border: 1px solid #111; color: #fff; background: #111; font: inherit; font-weight: 700; }
.error-page { min-height: 62vh; }
.projects-grid { padding-block: clamp(3rem,7vw,6rem); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; }
.project-index-card { display: flex; flex-direction: column; padding: 2rem; color: #102033; background: #fff; border: 1px solid #d9e5ef; box-shadow: 0 18px 48px rgba(3,19,38,.09); }
.project-logo { display: flex; align-items: center; justify-content: center; height: 140px; margin: 0 0 1.5rem !important; padding: 1rem; background: #f4f8ff; border: 1px solid #d9e5ef; }
.project-logo--dark { background: #071426; }
.project-logo img { width: 100%; height: 100%; object-fit: contain; }
.project-index-card>p,.project-index-card>span { color: #087cac; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-index-card h2 { margin: .7rem 0; font-size: 1.55rem; line-height: 1.15; }
.project-index-card .project-summary { flex: 1; margin: 1rem 0; color: #536579; line-height: 1.65; }
.project-index-card .project-summary p { margin: 0 0 .8rem; }
.project-index-card .project-summary__work { padding-top: .8rem; border-top: 1px solid #d9e5ef; font-size: .9rem; }
.project-index-card .read-more,.project-detail .text-link { color: #087cac; font-weight: 750; }
.project-detail { padding-block: clamp(3rem,7vw,6rem); }
.project-detail-grid { display: grid; grid-template-columns: minmax(250px,360px) 1fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.project-detail-logo { display: flex; align-items: center; justify-content: center; min-height: 280px; padding: clamp(1.5rem,4vw,3rem); background: #fff; border: 1px solid #d9e5ef; box-shadow: 0 18px 48px rgba(3,19,38,.09); }
.project-detail-logo.project-logo--dark { background: #071426; }
.project-detail-logo img { width: 100%; max-height: 220px; object-fit: contain; }
.project-business-intro { max-width: 780px; margin-top: 0; font-size: clamp(1.2rem,2vw,1.65rem); line-height: 1.65; }
.project-work-summary { max-width: 780px; margin: 1.4rem 0 0; padding: 1rem 1.2rem; color: #345269; background: #eef8fc; border-left: 3px solid #25bff3; line-height: 1.65; }
.project-detail h2 { margin: 2rem 0 1rem; color: #071426; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; }
.project-services { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.project-services li { padding: .65rem .9rem; color: #075f86; background: #e6f7ff; border: 1px solid #b9e9fb; font-size: .86rem; font-weight: 750; }
.project-detail .button { display: inline-block; margin: 1.5rem 1.5rem 0 0; background: #071426; border-color: #071426; }
.project-detail .text-link { display: inline-block; }
.product-intro { padding-block: clamp(3rem,7vw,6rem); }
.product-intro h2 { margin: 0 0 1rem; font-size: clamp(2rem,4vw,3.5rem); }
.product-intro p { max-width: 720px; margin: 0 0 2rem; color: #536579; font-size: 1.08rem; line-height: 1.7; }
.product-intro .button { display: inline-block; background: #071426; border-color: #071426; }
.product-grid { padding-block: 2.5rem clamp(2rem,4vw,3.5rem); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; }
.product-card { overflow: hidden; background: #fff; border: 1px solid #d9e5ef; border-radius: 18px; box-shadow: 0 18px 48px rgba(3,19,38,.08); transition: transform .25s ease,box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(3,19,38,.13); }
.product-card > a { display: block; height: 100%; }
.product-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; object-position: center; transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-card div { padding: clamp(1.5rem,3vw,2rem); }
.product-card .card-kicker,.subservice-card .card-kicker { margin: 0 0 .65rem; color: #168bb9; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-card h2 { margin: 0 0 .75rem; color: #071426; font-size: clamp(1.45rem,2.5vw,2rem); line-height: 1.18; }
.product-card p:not(.card-kicker) { margin: 0 0 1.2rem; color: #607188; line-height: 1.7; }
.product-card span { color: #087cac; font-weight: 750; }
.payment-options { margin-top: 1.25rem; margin-bottom: clamp(2.5rem,5vw,4rem); padding: clamp(1.05rem,2vw,1.45rem); display: grid; grid-template-columns: minmax(220px,.8fr) minmax(0,1.5fr); align-items: center; gap: clamp(1rem,2.5vw,1.75rem); color: #eef8ff; background: linear-gradient(135deg,#071426,#0a2945); border: 1px solid rgba(83,207,255,.24); border-radius: 16px; box-shadow: 0 14px 38px rgba(3,19,38,.1); }
.payment-options .eyebrow { margin-bottom: .4rem !important; }
.payment-options__intro h2 { margin: .25rem 0 .35rem; font-size: clamp(1.4rem,2.2vw,1.9rem); line-height: 1.08; letter-spacing: -.03em; }
.payment-options__intro > p:last-child { margin: 0; color: #a9bad0; font-size: .9rem; line-height: 1.5; }
.payment-methods { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .65rem; }
.payment-method { min-height: 62px; display: grid; place-items: center; padding: .65rem; background: #fff; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; }
.payment-method img { width: 100%; height: 32px; object-fit: contain; }
.service-layout > .payment-options,.category-layout > .payment-options { margin-bottom: 1.5rem; }
.product-demo-panel { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin: -1.5rem 0 1.5rem; padding: 1.25rem 1.4rem; background: #fff; border: 1px solid #d6e3ef; border-radius: 14px; }
.product-demo-panel .card-kicker { margin: 0 0 .35rem; color: #168bb9; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-demo-panel h2 { margin: 0; color: #071426; font-size: clamp(1.3rem,2.3vw,1.8rem); }

.inner-page main { overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(83,207,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(83,207,255,.18) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to left,#000,transparent 78%); }
.page-hero .content-wrap { position: relative; z-index: 1; }
.breadcrumbs { margin: 0 0 1.25rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; color: #99abc1; font-size: .75rem; font-weight: 750; letter-spacing: .055em; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: .45rem; color: rgba(83,207,255,.55); }
.breadcrumbs a { color: #dce8f5; transition: color .2s ease; }
.breadcrumbs a:hover,.breadcrumbs a:focus-visible { color: var(--cyan); }
.breadcrumbs [aria-current="page"] { color: var(--cyan); }
.section-intro { padding-top: clamp(3.5rem,7vw,6rem); }
.section-intro h2 { max-width: 820px; margin: 0; color: #071426; font-size: clamp(2rem,4vw,3.7rem); line-height: 1.08; letter-spacing: -.04em; }
.section-intro > p:last-child { max-width: 680px; margin: 1.4rem 0 0; color: #607188; font-size: 1.1rem; line-height: 1.7; }

.service-layout { padding-block: clamp(3rem,7vw,6rem); }
.service-feature { position: relative; margin: 0 0 clamp(2rem,5vw,4rem); overflow: hidden; background: #071426; border: 1px solid #d4e2ee; border-radius: 24px; box-shadow: 0 24px 70px rgba(3,19,38,.12); }
.service-feature::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg,transparent 52%,rgba(1,7,19,.72)); }
.service-feature img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.service-feature--theme img { aspect-ratio: 2/1; }
.service-feature figcaption { position: absolute; z-index: 1; right: 1.5rem; bottom: 1.25rem; color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-sections, .editorial-layout { display: grid; gap: 1.5rem; }
.category-layout { padding-block: clamp(3rem,7vw,6rem); }
.category-overview { overflow: hidden; margin-bottom: 1.5rem; display: grid; grid-template-columns: minmax(280px,.9fr) 1.1fr; align-items: stretch; color: #eef8ff; background: #071426; border: 1px solid rgba(83,207,255,.24); border-radius: 22px; box-shadow: 0 22px 58px rgba(3,19,38,.12); }
.category-overview img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.category-overview > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem,5vw,4rem); }
.category-overview h2 { margin: 0 0 1rem; font-size: clamp(2rem,4vw,3.5rem); line-height: 1.08; letter-spacing: -.04em; }
.category-overview p:not(.eyebrow) { max-width: 620px; margin: 0; color: #a9bad0; font-size: 1.04rem; line-height: 1.75; }
.subservice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.subservice-card { padding: clamp(1.6rem,3.5vw,2.7rem); background: #fff; border: 1px solid #d6e3ef; border-radius: 18px; box-shadow: 0 16px 44px rgba(3,19,38,.075); }
.subservice-card h2 { margin: 0 0 .85rem; color: #071426; font-size: clamp(1.4rem,2.5vw,2rem); line-height: 1.18; }
.subservice-card > p:not(.card-kicker) { margin: 0 0 1.25rem; color: #607188; line-height: 1.7; }
.subservice-card .read-more { color: #087cac; font-weight: 750; }
.category-layout .service-cta { margin-top: 1.5rem; }
.editorial-layout { grid-template-columns: repeat(2,minmax(0,1fr)); padding-block: clamp(3rem,7vw,6rem); }
.editorial-panel { display: grid; grid-template-columns: 48px 1fr; gap: clamp(1rem,3vw,2rem); padding: clamp(1.7rem,4vw,3.5rem); color: #102033; background: #fff; border: 1px solid #d6e3ef; border-radius: 22px; box-shadow: 0 18px 48px rgba(3,19,38,.08); }
.editorial-panel--accent { color: #eef8ff; background: linear-gradient(135deg,#071426,#0a2945); border-color: rgba(83,207,255,.28); }
.editorial-panel--wide { grid-column: 1/-1; }
.section-number { margin: .2rem 0 0; color: #18aee9; font-size: .74rem; font-weight: 850; letter-spacing: .16em; }
.contact-panel { grid-template-columns: 1fr; }
.editorial-panel h2 { margin: 0 0 1rem; color: inherit; font-size: clamp(1.7rem,3vw,2.65rem); line-height: 1.12; letter-spacing: -.035em; }
.editorial-panel p:not(.section-number) { max-width: 820px; margin: 0; color: #5d6f85; font-size: 1.03rem; line-height: 1.75; }
.editorial-panel--accent p:not(.section-number) { color: #a9bad0; }
.contact-panel .cta-contact { margin-top: 1.6rem; justify-items: start; }
.contact-panel .cta-actions { justify-content: start; }
.feature-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .65rem; margin: 1.7rem 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: .85rem 1rem .85rem 2.2rem; color: inherit; background: rgba(83,207,255,.075); border: 1px solid rgba(83,207,255,.18); border-radius: 10px; font-size: .93rem; font-weight: 700; }
.feature-list li::before { content: ''; position: absolute; left: .9rem; top: 1.18rem; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 14px rgba(83,207,255,.75); }
.technologies-section { margin-top: 1.5rem; padding: clamp(1.8rem,4vw,3.2rem); display: grid; grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr); align-items: center; gap: clamp(1.5rem,4vw,3.5rem); color: #eef8ff; background: linear-gradient(135deg,#071426,#0a2945); border: 1px solid rgba(83,207,255,.24); border-radius: 22px; box-shadow: 0 22px 58px rgba(3,19,38,.12); }
.technologies-section__intro h2 { margin: .35rem 0 .85rem; color: #fff; font-size: clamp(1.8rem,3.5vw,2.9rem); line-height: 1.08; letter-spacing: -.04em; }
.technologies-section__intro > p:last-child { max-width: 560px; margin: 0; color: #a9bad0; line-height: 1.7; }
.technology-carousel { min-width: 0; display: grid; grid-template-columns: 42px minmax(0,1fr) 42px; align-items: center; gap: .7rem; }
.technology-carousel__viewport { min-width: 0; overflow-x: auto; padding: .35rem .1rem .65rem; scrollbar-width: thin; scrollbar-color: rgba(83,207,255,.6) rgba(255,255,255,.08); scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.technology-carousel__viewport::-webkit-scrollbar { height: 6px; }
.technology-carousel__viewport::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 999px; }
.technology-carousel__viewport::-webkit-scrollbar-thumb { background: rgba(83,207,255,.6); border-radius: 999px; }
.technology-carousel__button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: #eaf8ff; background: rgba(255,255,255,.06); border: 1px solid rgba(83,207,255,.3); border-radius: 50%; font-size: 1rem; cursor: pointer; transition: color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease; }
.technology-carousel__button:hover,.technology-carousel__button:focus-visible { color: #071426; background: var(--cyan); border-color: var(--cyan); transform: scale(1.06); }
.technology-list { display: flex; align-items: stretch; gap: .75rem; width: max-content; margin: 0; padding: 0; list-style: none; }
.technology-list li { width: 126px; min-height: 138px; flex: 0 0 126px; display: grid; grid-template-rows: 72px auto; place-items: center; gap: .65rem; padding: 1rem .75rem; color: #eaf8ff; background: rgba(255,255,255,.055); border: 1px solid rgba(83,207,255,.22); border-radius: 16px; font-size: .78rem; font-weight: 750; line-height: 1.25; text-align: center; scroll-snap-align: start; transition: background .2s ease,border-color .2s ease,transform .2s ease; }
.technology-list li:hover { color: #fff; background: rgba(83,207,255,.12); border-color: rgba(83,207,255,.58); transform: translateY(-3px); }
.technology-list img { width: 72px; height: 72px; box-sizing: border-box; padding: .55rem; object-fit: contain; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.7); border-radius: 14px; filter: drop-shadow(0 7px 14px rgba(0,0,0,.2)); }
.technology-list span { display: block; }
.service-cta { margin-top: 1.5rem; padding: clamp(1.8rem,4vw,3.2rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: #fff; background: #010713; border-radius: 22px; }
.service-cta h2 { margin: 0; font-size: clamp(1.8rem,3vw,2.8rem); letter-spacing: -.035em; }
.service-cta__intro { max-width: 620px; }
.service-cta__intro > p:last-child { margin: 1rem 0 0; color: #a9bad0; line-height: 1.65; }
.careers-cta { grid-column: 1/-1; width: 100%; }
.cta-contact { display: grid; justify-items: end; gap: .7rem; }
.cta-actions { display: grid; grid-template-columns: repeat(2,minmax(240px,1fr)); justify-content: end; gap: .8rem; }
.response-note { margin: 0; color: #a9bad0; font-size: .78rem; font-weight: 650; letter-spacing: .03em; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; border-radius: 4px; text-decoration: none !important; transition: color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease; }
.button:hover,.button:focus-visible { transform: translateY(-2px); }
.cta-button { width: 100%; min-height: 52px; padding: .82rem 1.15rem; text-align: center; white-space: nowrap; }
.button--email { color: #071426; background: #fff; border-color: #fff; }
.button--email:hover,.button--email:focus-visible { color: #fff; background: #087cac; border-color: #087cac; }
.button--light { color: #071426; background: #fff; border-color: #fff; }
.button--messenger { color: #fff; background: #1877f2; border-color: #1877f2; }
.button--messenger:hover,.button--messenger:focus-visible { color: #fff; background: #0d65d9; border-color: #0d65d9; }
.messenger-icon { width: 20px; height: 20px; flex: 0 0 20px; color: #fff; }
.button--demo { color: #071426; background: #53cfff; border-color: #53cfff; }
.button--demo:hover,.button--demo:focus-visible { color: #fff; background: #087cac; border-color: #087cac; }
.editorial-action { grid-column: 1/-1; width: fit-content; margin-top: .5rem; color: #fff; background: #071426; border-color: #071426; }
.editorial-actions { grid-column: 1/-1; margin-top: .5rem; }
.editorial-actions .cta-contact { justify-items: start; }
.editorial-actions .cta-actions { justify-content: start; }
.editorial-actions .button--email { color: #fff; background: #071426; border-color: #071426; }
.editorial-actions .button--email:hover,.editorial-actions .button--email:focus-visible { background: #087cac; border-color: #087cac; }
.editorial-actions .response-note { color: #607188; }
.faq-section { margin-top: 1.5rem; padding: clamp(1.8rem,4vw,3.2rem); color: #102033; background: #eef7fc; border: 1px solid #cfe3ef; border-radius: 22px; }
.faq-section__heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(240px,.65fr); align-items: end; gap: 1.5rem; margin-bottom: 1.8rem; }
.faq-section__heading h2 { margin: 0; color: #071426; font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.1; letter-spacing: -.035em; }
.faq-section__heading p { max-width: 470px; margin: 0; color: #607188; line-height: 1.65; }
.faq-list { display: grid; gap: .8rem; }
.faq-item { overflow: hidden; background: #fff; border: 1px solid #d6e3ef; border-radius: 12px; }
.faq-item summary { position: relative; padding: 1.15rem 3.5rem 1.15rem 1.25rem; color: #102033; font-size: 1rem; font-weight: 800; line-height: 1.45; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; top: 50%; right: 1.25rem; color: #087cac; font-size: 1.6rem; font-weight: 400; line-height: 1; transform: translateY(-50%); }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: #087cac; border-bottom: 1px solid #d6e3ef; }
.faq-item > div { padding: 1rem 1.25rem 1.25rem; }
.faq-item p { max-width: 880px; margin: 0; color: #536579; line-height: 1.7; }
.about-cta { grid-column: 1/-1; margin-top: .5rem; padding: clamp(2rem,5vw,4rem); color: #eef8ff; background: linear-gradient(135deg,#010713,#0a2945); border: 1px solid rgba(83,207,255,.24); border-radius: 22px; box-shadow: 0 22px 58px rgba(3,19,38,.14); }
.about-cta__intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.65fr); align-items: end; gap: 2rem; }
.about-cta__intro h2 { max-width: 700px; margin: 0; font-size: clamp(2rem,4vw,3.6rem); line-height: 1.06; letter-spacing: -.045em; }
.about-cta__intro p { max-width: 520px; margin: 0; color: #a9bad0; font-size: 1.02rem; line-height: 1.7; }
.about-cta__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: clamp(2rem,4vw,3rem); }
.about-cta__grid a { min-height: 210px; display: flex; flex-direction: column; padding: 1.5rem; color: #eef8ff; background: rgba(255,255,255,.055); border: 1px solid rgba(83,207,255,.18); border-radius: 14px; transition: transform .2s ease,background .2s ease,border-color .2s ease; }
.about-cta__grid a:hover,.about-cta__grid a:focus-visible { transform: translateY(-3px); background: rgba(83,207,255,.1); border-color: rgba(83,207,255,.5); }
.about-cta__grid span { margin-bottom: 1.1rem; color: var(--cyan); font-size: .72rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.about-cta__grid strong { font-size: clamp(1.2rem,2vw,1.55rem); line-height: 1.35; }
.about-cta__grid em { margin-top: auto; padding-top: 1.5rem; color: #fff; font-size: .8rem; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.services-grid { padding-top: 2.5rem; }
.service-card { border-radius: 18px; box-shadow: 0 18px 48px rgba(3,19,38,.08); }
.service-card img { transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card div { padding: 1.5rem; }
.service-card .card-kicker { margin: 0 0 .65rem; color: #168bb9; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.service-card span { display: inline-block; padding-bottom: .2rem; border-bottom: 1px solid currentColor; }

.article-body { width: min(calc(100% - 48px),920px); }
.article-body .featured-image { border-radius: 22px; box-shadow: 0 24px 70px rgba(3,19,38,.13); }
.editorial-copy { color: #34465b; font-size: clamp(1rem,1.4vw,1.1rem); line-height: 1.85; }
.editorial-copy > p:first-child { color: #1c334b; font-size: clamp(1.15rem,2vw,1.35rem); line-height: 1.75; }
.editorial-copy h2 { margin: 2.8rem 0 .9rem; color: #071426; font-size: clamp(1.65rem,3vw,2.35rem); line-height: 1.2; letter-spacing: -.025em; }
.editorial-copy p { margin: 0 0 1.35rem; }
.article-share { margin-top: clamp(2.5rem,6vw,4.5rem); padding: clamp(1.4rem,3vw,2rem); color: #eef8ff; background: #071426; border: 1px solid rgba(83,207,255,.25); border-radius: 18px; }
.article-share h2 { margin: 0 0 1rem; color: #fff; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.article-share > div { display: flex; flex-wrap: wrap; gap: .7rem; }
.article-share a { padding: .7rem .95rem; color: #071426; background: #fff; border: 1px solid #fff; border-radius: 4px; font-size: .84rem; font-weight: 750; text-decoration: none; transition: color .2s ease,background .2s ease,border-color .2s ease; }
.article-share a:hover,.article-share a:focus-visible { color: #fff; background: transparent; border-color: var(--cyan); }
.article-navigation { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-top: 1.2rem; }
.article-navigation a { display: flex; min-height: 125px; padding: 1.35rem; flex-direction: column; justify-content: center; color: #071426; background: #fff; border: 1px solid #d6e3ef; border-radius: 14px; text-decoration: none; transition: transform .2s ease,border-color .2s ease; }
.article-navigation a:hover,.article-navigation a:focus-visible { transform: translateY(-2px); border-color: #53cfff; }
.article-navigation span { margin-bottom: .55rem; color: #087cac; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-navigation strong { font-size: 1rem; line-height: 1.4; }
.article-navigation__next { align-items: flex-end; text-align: right; }
.archive-grid { gap: 1.6rem; }
.post-card { border-radius: 18px; box-shadow: 0 18px 48px rgba(3,19,38,.08); }
.post-card > a { display: block; overflow: hidden; }
.post-card > a img { transition: transform .5s ease; }
.post-card:hover > a img { transform: scale(1.035); }
.post-card-body { padding: clamp(1.4rem,3vw,2rem); }

.legal-page .legacy-content { width: min(calc(100% - 48px),900px); }
.legacy-content style,.legacy-content script,.legacy-content h1,.legacy-content .elementor-divider { display: none !important; }
.legal-page .elementor-container,.legal-page .elementor-row,.legal-page .elementor-column { display: block; width: 100%; }
.legal-page .elementor-column { flex: none; }
.legal-page .elementor-section + .elementor-section { margin-top: 1.5rem; }
.legal-page .elementor-widget-text-editor { padding: clamp(1.5rem,4vw,3.2rem); background: #fff; border: 1px solid #d6e3ef; border-radius: 20px; box-shadow: 0 18px 48px rgba(3,19,38,.07); }
.legal-page .elementor-widget-text-editor h2 { padding-top: .7rem; border-top: 1px solid #e0e9f1; }
.legacy-content p:empty { display: none; }
.attachment-image { width: 100%; border-radius: 20px !important; box-shadow: 0 18px 48px rgba(3,19,38,.1); }

.products-page .product-intro { position: relative; margin-block: clamp(3rem,7vw,6rem); padding: clamp(2rem,5vw,4rem); background: #fff; border: 1px solid #d6e3ef; border-radius: 22px; box-shadow: 0 18px 48px rgba(3,19,38,.08); }
.project-index-card,.project-detail-logo { border-radius: 18px; }
.project-logo { border-radius: 12px; }

@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  body.nav-open { overflow: hidden; }
  .header-inner { width: min(calc(100% - 32px), var(--content-width)); }
  .site-brand { width: 190px; height: 52px; }
  .menu-toggle { display: block; z-index: 2; cursor: pointer; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: var(--header-height) 0 0; display: grid; align-content: start; gap: 0; height: calc(100dvh - var(--header-height)); padding: 1rem 24px 2.5rem; overflow-y: auto; color: #171717; background: #fff; box-shadow: 0 16px 28px rgba(0,0,0,.14); transform: translateY(-110%); opacity: 0; visibility: hidden; transition: transform .3s ease, opacity .3s ease, visibility .3s; }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > a,.nav-dropdown__row { min-height: 54px; border-bottom: 1px solid #e5e9ed; }
  .primary-nav a { display: flex; align-items: center; padding: .9rem 0; }
  .primary-nav a::after { display: none; }
  .primary-nav .explore-projects-link,.site-header.is-scrolled .primary-nav .explore-projects-link { min-height: 54px; padding: .9rem 0; color: #171717; border: 0; border-bottom: 1px solid #e5e9ed; background: transparent; backdrop-filter: none; font-size: .92rem; letter-spacing: 0; text-transform: none; }
  .primary-nav .explore-projects-link:hover,.primary-nav .explore-projects-link:focus-visible,.site-header.is-scrolled .primary-nav .explore-projects-link:hover,.site-header.is-scrolled .primary-nav .explore-projects-link:focus-visible { color: #087cac; background: transparent; }
  .nav-dropdown { position: static; width: 100%; }
  .nav-dropdown__row { width: 100%; }
  .nav-dropdown__row > a { flex: 1; min-width: 0; padding-right: 1rem; }
  .submenu-toggle { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; padding: 0; color: #102033; background: #f1f6fa; border: 1px solid #d6e3ef; border-radius: 50%; font-size: 1.35rem; line-height: 1; cursor: pointer; }
  .submenu-toggle:hover,.submenu-toggle:focus-visible { color: #087cac; border-color: #87cfe9; }
  .submenu-panel,.services-menu,.products-menu { position: static; width: 100%; max-height: none; margin: .55rem 0 .8rem; padding: .4rem .9rem; overflow: visible; color: #102033; background: #f7fafc; border: 1px solid #d6e3ef; border-radius: 12px; box-shadow: none; backdrop-filter: none; transform: none; }
  .nav-dropdown:hover > .submenu-panel,.nav-dropdown:focus-within > .submenu-panel { display: none; }
  .nav-dropdown.submenu-open > .submenu-panel { display: grid !important; grid-template-columns: 1fr; }
  .services-menu section { padding: 0; border-bottom: 1px solid #d6e3ef; }
  .services-menu section:last-child { border-bottom: 0; }
  .services-menu h2 { margin: 0; }
  .services-menu section > h2 > a { min-height: 48px; padding: .78rem .25rem; color: #102033; font-size: .84rem; line-height: 1.25; }
  .services-menu .service-child-link { display: none; }
  .products-menu a { min-height: 48px; padding: .78rem .25rem; color: #102033; border-bottom: 1px solid #d6e3ef; font-size: .88rem; }
  .products-menu a:last-child { border-bottom: 0; }
  .header-search { display: grid; grid-template-columns: minmax(0,1fr) 48px; width: 100%; margin: 1rem 0 0; padding: 0; }
  .header-search input,.header-search:focus-within input,.header-search:hover input { width: 100%; min-height: 48px; opacity: 1; padding: .8rem 1rem; color: #171717; background: #fff; border: 1px solid #cfd7df; border-radius: 6px 0 0 6px; }
  .header-search button { min-height: 48px; padding: 0; color: #102033; background: #f1f6fa; border: 1px solid #cfd7df; border-left: 0; border-radius: 0 6px 6px 0; }
  .site-header.menu-open { color: #171717; background: #fff; }
  .site-header.menu-open .brand-logo--white { opacity: 0; }
  .site-header.menu-open .brand-logo--color { opacity: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom__inner { align-items: center; flex-direction: column; text-align: center; }
  .footer-platforms { justify-content: center; }
  .footer-legal { justify-content: center; text-align: center; }
  .service-cta { align-items: flex-start; flex-direction: column; }
  .service-cta .cta-contact,.service-cta .cta-actions { width: 100%; }
  .service-cta .cta-contact { justify-items: start; }
  .archive-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .payment-options { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-overview { grid-template-columns: 1fr; }
  .category-overview img { min-height: 240px; max-height: 380px; }
  .project-detail-grid { grid-template-columns: 1fr; }
  .project-detail-logo { min-height: 220px; }
  .editorial-layout { grid-template-columns: 1fr; }
  .editorial-panel--wide,.editorial-action { grid-column: auto; }
  .about-cta__intro { grid-template-columns: 1fr; }
  .about-cta__grid { grid-template-columns: 1fr; }
  .about-cta__grid a { min-height: 180px; }
  .faq-section__heading,.technologies-section { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-brand { width: 164px; }
  .content-wrap { width: min(calc(100% - 36px),1120px); }
  .footer-inner { width: min(calc(100% - 40px), var(--content-width)); padding: 54px 0 38px; grid-template-columns: 1fr; gap: 2.3rem; }
  .footer-bottom { padding-inline: 20px; }
  .footer-legal { width: 100%; align-items: center; flex-direction: column; gap: .55rem; }
  .footer-policy-links { width: 100%; justify-content: center; gap: .7rem; white-space: nowrap; font-size: .72rem; }
  .footer-platforms { flex-wrap: wrap; justify-content: center; gap: .65rem; }
  .cookie-consent { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .cookie-consent__actions { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .product-grid,.subservice-grid { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .technology-carousel { grid-template-columns: 36px minmax(0,1fr) 36px; gap: .4rem; }
  .technology-carousel__button { width: 36px; height: 36px; }
  .technology-list li { width: 112px; min-height: 128px; flex-basis: 112px; }
  .technology-list img { width: 64px; height: 64px; }
  .editorial-panel { grid-template-columns: 1fr; }
  .service-feature img { aspect-ratio: 4/3; }
  .service-feature--theme img { aspect-ratio: 2/1; }
  .service-feature figcaption { left: 1rem; right: 1rem; }
  .service-cta { align-items: flex-start; flex-direction: column; }
  .product-demo-panel { align-items: flex-start; flex-direction: column; }
  .cta-contact { width: 100%; justify-items: start; }
  .cta-actions { width: 100%; grid-template-columns: 1fr; justify-content: stretch; }
  .article-navigation { grid-template-columns: 1fr; }
  .article-navigation > span:empty { display: none; }
  .article-navigation__next { align-items: flex-start; text-align: left; }
}

/* Cohesive motion system: subtle, performant, and disabled for reduced motion. */
.motion-enabled .motion-reveal { opacity: 0; translate: 0 24px; scale: .985; transition: opacity .7s cubic-bezier(.2,.75,.2,1),translate .7s cubic-bezier(.2,.75,.2,1),scale .7s cubic-bezier(.2,.75,.2,1); transition-delay: var(--reveal-delay,0ms); }
.motion-enabled .motion-reveal.is-visible { opacity: 1; translate: 0 0; scale: 1; }
.page-hero::before { animation: hero-grid-drift 16s ease-in-out infinite alternate; }
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::before { content: ''; position: absolute; inset: -60% auto -60% -40%; width: 28%; pointer-events: none; background: linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent); transform: skewX(-18deg) translateX(-250%); transition: transform .65s cubic-bezier(.2,.75,.2,1); }
.button:hover::before,.button:focus-visible::before { transform: skewX(-18deg) translateX(650%); }
.service-card,.product-card,.project-index-card,.subservice-card,.editorial-panel,.faq-section,.payment-options,.about-cta,.technologies-section { transition: transform .35s cubic-bezier(.2,.75,.2,1),box-shadow .35s ease,border-color .35s ease; }
.service-card:hover,.product-card:hover,.project-index-card:hover,.subservice-card:hover { transform: translateY(-7px); border-color: rgba(83,207,255,.55); box-shadow: 0 26px 62px rgba(3,19,38,.14); }
.payment-method img { transition: transform .35s cubic-bezier(.2,.75,.2,1); }
.payment-method:hover img { transform: scale(1.07); }
.footer-socials a svg { transition: transform .3s cubic-bezier(.2,.75,.2,1); }
.footer-socials a:hover svg,.footer-socials a:focus-visible svg { transform: scale(1.14) rotate(-4deg); }
@keyframes hero-grid-drift { from { transform: translate3d(0,0,0); } to { transform: translate3d(-18px,10px,0); } }

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