:root {
  --navy-950: #03162d;
  --navy-900: #06264a;
  --navy-850: #07315f;
  --blue-700: #0b55ad;
  --blue-600: #1268d7;
  --blue-500: #2b82ee;
  --ice-100: #eaf4ff;
  --ice-50: #f6faff;
  --red-600: #e81729;
  --red-500: #f52237;
  --ink-950: #081426;
  --ink-800: #1a2a40;
  --ink-600: #53657b;
  --line: #dfe8f2;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --shadow-sm: 0 10px 30px rgba(4, 31, 64, .08);
  --shadow-md: 0 24px 70px rgba(3, 24, 49, .14);
  --shadow-lg: 0 35px 100px rgba(2, 18, 39, .24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1280px;
  --header-height: 92px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.site-main { min-height: 55vh; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link:focus { top: 10px; left: 10px; width: auto; height: auto; clip: auto; padding: 10px 14px; z-index: 99999; background: #fff; color: #000; }
:focus-visible { outline: 3px solid rgba(43, 130, 238, .45); outline-offset: 4px; }

/* Header */
.site-header { position: relative; z-index: 1000; background: var(--navy-900); box-shadow: 0 12px 35px rgba(3, 22, 45, .2); }
.site-header.is-sticky { position: sticky; top: 0; }
.admin-bar .site-header.is-sticky { top: 32px; }
.site-header__top { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: .78rem; }
.site-header__top-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-contact-list, .header-quick-links { display: flex; align-items: center; gap: 20px; }
.header-contact-list a, .header-quick-links a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s ease; }
.header-contact-list a:hover, .header-quick-links a:hover { color: #fff; }
.site-header__main { background: linear-gradient(115deg, #0a4c9a 0%, #176fda 52%, #2e8df2 100%); position: relative; }
.site-header__main::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% -40%, rgba(255,255,255,.28), transparent 38%); }
.site-header__main-inner { position: relative; z-index: 2; min-height: var(--header-height); display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 28px; }
.site-branding { align-self: stretch; display: flex; align-items: center; }
.custom-logo-link { display: inline-flex; align-items: center; max-width: 230px; }
.default-logo-link, .site-header .custom-logo-link { background: rgba(255,255,255,.96); border-radius: 0 0 18px 18px; padding: 14px 18px 13px; box-shadow: 0 12px 30px rgba(1, 25, 55, .18); }
.custom-logo { width: 100%; max-height: 64px; object-fit: contain; }
.primary-navigation { min-width: 0; }
.primary-menu, .primary-menu ul, .footer-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.primary-menu > li { position: relative; }
.primary-menu > li > a { min-height: var(--header-height); display: flex; align-items: center; gap: 6px; padding: 0 13px; color: #fff; font-size: .85rem; font-weight: 750; letter-spacing: .015em; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.primary-menu > li > a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px; border-radius: 6px 6px 0 0; background: var(--red-500); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-menu > li:hover > a::after, .primary-menu > li.current-menu-item > a::after, .primary-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.primary-menu .menu-item-has-children > a::before { content: ""; order: 2; width: 6px; height: 6px; border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .75; }
.sub-menu { position: absolute; top: calc(100% - 7px); left: 50%; min-width: 250px; padding: 12px !important; background: rgba(255,255,255,.98); color: var(--ink-950); border: 1px solid rgba(10, 50, 96, .08); border-radius: 16px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .25s var(--ease), visibility .2s; }
.sub-menu::before { content: ""; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; background: #fff; transform: translateX(-50%) rotate(45deg); }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu, .primary-menu li.submenu-open > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sub-menu .menu-item a { position: relative; z-index: 1; display: flex; align-items: center; padding: 10px 12px; border-radius: 10px; color: var(--ink-800); font-size: .88rem; font-weight: 650; transition: color .2s, background .2s, transform .2s; }
.sub-menu .menu-item a:hover { background: var(--ice-100); color: var(--blue-700); transform: translateX(3px); }
.sub-menu .sub-menu { left: calc(100% + 8px); top: 0; transform: translate(8px, 0); }
.primary-menu li:hover > .sub-menu .menu-item-has-children:hover > .sub-menu { transform: translate(0, 0); }
.submenu-toggle { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.header-search-toggle, .menu-toggle { border: 0; background: transparent; cursor: pointer; }
.header-search-toggle { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: background .2s, transform .2s; }
.header-search-toggle:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.header-cta { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 0 20px; color: #fff; background: linear-gradient(135deg, var(--red-500), #d90c20); border-radius: 11px; box-shadow: 0 12px 26px rgba(214, 10, 32, .25); font-size: .9rem; font-weight: 800; transition: transform .2s, box-shadow .2s; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(214, 10, 32, .35); }
.header-cta svg { width: 18px; }
.menu-toggle { display: none; width: 48px; height: 48px; color: #fff; }
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: inline-flex; }
.header-search { position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow-sm); }
.header-search__inner { padding-block: 20px; }
.search-form { position: relative; display: flex; width: 100%; }
.search-field { width: 100%; height: 54px; padding: 0 58px 0 18px; color: var(--ink-950); background: var(--ice-50); border: 1px solid var(--line); border-radius: 13px; outline: 0; }
.search-field:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(43,130,238,.12); }
.search-submit { position: absolute; right: 5px; top: 5px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 10px; color: #fff; background: var(--blue-700); cursor: pointer; }

/* Hero */
.hero-slider { position: relative; min-height: 715px; background: var(--navy-950); overflow: hidden; }
.hero-slider__track { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; background-image: var(--hero-image); background-size: cover; background-position: center; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,22,45,.94) 0%, rgba(4,36,70,.78) 36%, rgba(2,23,49,.22) 68%, rgba(2,14,30,.18) 100%); }
.hero-slide::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, rgba(3,20,43,.5)); }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__veil { position: absolute; left: -12%; top: -25%; width: 65%; height: 150%; background: linear-gradient(120deg, rgba(4,37,72,.75), rgba(6,63,120,.3)); transform: skewX(-10deg); border-right: 1px solid rgba(255,255,255,.08); }
.hero-slide__inner { position: relative; z-index: 4; height: 715px; display: flex; align-items: center; padding-bottom: 72px; }
.hero-slide__content { max-width: 650px; color: #fff; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-600); font-size: .76rem; line-height: 1.2; font-weight: 850; letter-spacing: .12em; }
.hero-slide .eyebrow { color: #fff; margin-bottom: 20px; }
.eyebrow i { display: block; width: 36px; height: 3px; border-radius: 10px; background: var(--red-500); }
.hero-slide h1 { margin: 0; max-width: 650px; color: #fff; font-size: clamp(3rem, 5vw, 5.4rem); line-height: .98; letter-spacing: -.048em; text-wrap: balance; }
.hero-slide h1 strong { display: block; margin-top: 12px; color: #ff2a3f; font-weight: 850; }
.hero-slide p { max-width: 600px; margin: 24px 0 30px; color: rgba(255,255,255,.87); font-size: 1.08rem; }
.hero-slide__buttons { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 11px; font-size: .84rem; font-weight: 850; letter-spacing: .02em; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-3px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--red-500), #d80c20); box-shadow: 0 14px 30px rgba(225,17,43,.25); }
.button--primary:hover { box-shadow: 0 19px 36px rgba(225,17,43,.35); }
.button--outline { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(5,29,56,.25); backdrop-filter: blur(8px); }
.button--outline:hover { background: #fff; color: var(--navy-950); }
.button--dark { color: #fff; background: var(--navy-900); box-shadow: var(--shadow-sm); }
.button--outline-dark { color: var(--navy-900); border-color: rgba(6,38,74,.25); background: transparent; }
.button--outline-dark:hover { color: #fff; background: var(--navy-900); }
.slider-arrow { position: absolute; z-index: 7; top: 50%; width: 54px; height: 58px; display: grid; place-items: center; color: #fff; background: rgba(3,22,45,.55); border: 1px solid rgba(255,255,255,.28); border-radius: 12px; backdrop-filter: blur(10px); cursor: pointer; transition: background .2s, transform .2s; }
.slider-arrow:hover { background: var(--red-500); }
.slider-arrow--prev { left: 24px; transform: translateY(-50%) rotate(180deg); }
.slider-arrow--prev:hover { transform: translateY(-50%) rotate(180deg) scale(1.05); }
.slider-arrow--next { right: 24px; transform: translateY(-50%); }
.slider-arrow--next:hover { transform: translateY(-50%) scale(1.05); }
.slider-dots { position: absolute; z-index: 7; bottom: 112px; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); }
.slider-dot { width: 28px; height: 4px; padding: 0; border: 0; border-radius: 10px; background: rgba(255,255,255,.55); cursor: pointer; transition: width .25s, background .25s; }
.slider-dot.is-active { width: 48px; background: var(--red-500); }

/* Trust strip */
.trust-strip { position: relative; z-index: 20; margin-top: -63px; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(5, 1fr); color: var(--ink-950); background: #fff; border: 1px solid rgba(7,55,105,.08); border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.trust-item { min-height: 128px; display: flex; align-items: center; gap: 14px; padding: 24px 21px; position: relative; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 24px; bottom: 24px; width: 1px; background: var(--line); }
.trust-item__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue-700); background: var(--ice-100); border-radius: 14px; }
.trust-item__icon svg { width: 26px; height: 26px; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { margin-bottom: 5px; font-size: .88rem; }
.trust-item span { color: var(--ink-600); font-size: .77rem; line-height: 1.55; }

/* Sections & headings */
.section { padding: 100px 0; position: relative; }
.section--products { padding-top: 114px; background: linear-gradient(180deg, #fff, var(--ice-50)); }
.section--about { background: #fff; overflow: hidden; }
.section--services { background: var(--surface-alt); }
.section--projects { color: #fff; background: radial-gradient(circle at 8% 0%, rgba(17,105,216,.25), transparent 28%), linear-gradient(135deg, #031831, #061f3d 65%, #052b54); }
.section--blog { background: #fff; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading--center { justify-content: center; text-align: center; }
.section-heading--center > div { max-width: 760px; }
.section-heading h2 { margin: 8px 0 0; color: var(--ink-950); font-size: clamp(2rem, 3vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p { max-width: 650px; margin: 15px auto 0; color: var(--ink-600); }
.section-heading--light h2, .section-heading--light p { color: #fff; }
.section-heading--light .section-kicker { color: #68aefe; }
.section-heading__link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-size: .86rem; font-weight: 800; white-space: nowrap; }
.section-heading__link:hover { color: var(--red-500); }
.section-heading--light .section-heading__link { color: #fff; }
.section-heading__link svg, .text-link svg { transition: transform .2s; }
.section-heading__link:hover svg, .text-link:hover svg { transform: translateX(5px); }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.product-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.product-card { position: relative; min-width: 0; background: #fff; border: 1px solid rgba(5,47,94,.1); border-radius: 18px; overflow: hidden; box-shadow: 0 13px 32px rgba(2,31,64,.07); transition: transform .35s var(--ease), box-shadow .35s; }
.product-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); }
.product-card__media { position: relative; display: block; aspect-ratio: 1.36; overflow: hidden; background: var(--ice-100); }
.product-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 58%, rgba(2,24,49,.32)); opacity: .35; transition: opacity .3s; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.055); }
.product-card__arrow { position: absolute; z-index: 2; right: 13px; bottom: 13px; width: 36px; height: 36px; display: grid; place-items: center; color: var(--blue-700); background: #fff; border-radius: 50%; box-shadow: 0 8px 18px rgba(4,33,68,.16); transition: color .2s, background .2s; }
.product-card:hover .product-card__arrow { color: #fff; background: var(--red-500); }
.product-card__body { position: relative; padding: 22px 20px 23px; }
.product-card__small-icon { position: absolute; top: -23px; left: 20px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--blue-700); background: #fff; border-radius: 13px; box-shadow: var(--shadow-sm); }
.product-card__small-icon + h3 { margin-top: 10px; }
.card-kicker { color: var(--blue-700); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3, .service-card h3, .blog-card h3, .content-card h2 { margin: 0 0 9px; font-size: 1.04rem; line-height: 1.3; }
.product-card h3 a:hover, .service-card h3 a:hover, .blog-card h3 a:hover { color: var(--blue-700); }
.product-card p, .service-card p, .blog-card p { margin: 0 0 15px; color: var(--ink-600); font-size: .86rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-size: .8rem; font-weight: 800; }

/* About */
.about-layout { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 76px; }
.about-media { position: relative; min-height: 560px; }
.about-media__image { position: absolute; inset: 0 42px 35px 0; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow-lg); }
.about-media__image img { width: 100%; height: 100%; object-fit: cover; }
.about-media__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(3,24,49,.35)); }
.about-media__badge { position: absolute; right: 0; bottom: 0; width: 184px; height: 184px; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; background: linear-gradient(135deg, var(--red-500), #c9091c); border: 10px solid #fff; border-radius: 26px; box-shadow: var(--shadow-md); }
.about-media__badge strong { font-size: 3rem; line-height: 1; }
.about-media__badge span { margin-top: 8px; font-size: .78rem; font-weight: 750; }
.about-media__lines { position: absolute; z-index: -1; left: -50px; top: 32px; width: 160px; height: 160px; opacity: .22; background-image: radial-gradient(var(--blue-600) 1.7px, transparent 1.7px); background-size: 14px 14px; }
.about-content h2 { margin: 12px 0 22px; font-size: clamp(2.2rem, 3.5vw, 3.75rem); line-height: 1.06; letter-spacing: -.045em; }
.about-content .lead { margin: 0 0 26px; color: var(--ink-600); font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--ink-800); font-weight: 650; }
.check-list li svg { width: 25px; height: 25px; padding: 5px; color: #fff; background: var(--blue-700); border-radius: 50%; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.service-card { display: flex; gap: 18px; padding: 27px; background: #fff; border: 1px solid rgba(4,43,88,.09); border-radius: 18px; box-shadow: 0 10px 28px rgba(5,38,76,.055); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(18,104,215,.3); box-shadow: var(--shadow-sm); }
.service-card__icon { width: 58px; height: 58px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-700); background: linear-gradient(135deg, var(--ice-100), #fff); border: 1px solid #dcecff; border-radius: 16px; }
.service-card__icon svg { width: 30px; height: 30px; }
.service-card--large { min-height: 225px; padding: 38px; align-items: flex-start; }
.service-card--large h2 { margin: 0 0 12px; font-size: 1.55rem; }
.service-detail-icon { width: 80px; height: 80px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--navy-900)); border-radius: 22px; box-shadow: var(--shadow-sm); }
.service-detail-icon svg { width: 40px; height: 40px; }

/* Projects */
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.project-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.project-card { min-width: 0; }
.project-card__media { position: relative; display: block; aspect-ratio: .9; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: #071a31; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.project-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(2,16,34,.95) 100%); }
.project-card__content { position: absolute; inset: auto 22px 22px; color: #fff; }
.project-card__content > span:first-child { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; color: #b8d9ff; font-size: .74rem; }
.project-card__content h3, .project-card__content h2 { margin: 0 0 11px; font-size: 1.1rem; line-height: 1.28; }
.project-card__link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .78rem; font-weight: 800; opacity: .78; }
.project-card:hover img { transform: scale(1.075); }
.project-card:hover .project-card__link { color: #ff5c6b; opacity: 1; }
.project-card:hover .project-card__link svg { transform: translateX(4px); }
.project-card__link svg { transition: transform .2s; }

/* Stats */
.stats-band { padding: 0; color: #fff; background: linear-gradient(100deg, #0a4c99, #082f60 55%, #061e3d); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { min-height: 145px; display: flex; align-items: center; justify-content: center; gap: 18px; position: relative; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 32px; bottom: 32px; width: 1px; background: rgba(255,255,255,.16); }
.stat-item > svg { width: 44px; height: 44px; color: #6bb1ff; }
.stat-item strong, .stat-item span { display: block; }
.stat-item strong { font-size: 2.25rem; line-height: 1; }
.stat-item span { margin-top: 8px; color: rgba(255,255,255,.72); font-size: .8rem; }

/* Blog */
.blog-grid, .blog-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.blog-card { overflow: hidden; background: #fff; border: 1px solid rgba(6,47,94,.1); border-radius: 20px; box-shadow: 0 12px 34px rgba(4,35,70,.07); transition: transform .3s var(--ease), box-shadow .3s; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.blog-card__media { display: block; aspect-ratio: 1.6; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 24px; }
.blog-card__meta, .entry-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; color: var(--ink-600); font-size: .72rem; }
.blog-card h2 { font-size: 1.15rem; line-height: 1.35; }

/* CTA */
.contact-cta { position: relative; color: #fff; background: linear-gradient(110deg, #061e3c 0%, #0a4d97 70%, #0d67c9 100%); overflow: hidden; }
.contact-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 0%, rgba(68,151,247,.36), transparent 30%); }
.contact-cta__image { position: absolute; right: 0; top: 0; bottom: 0; width: 36%; background: linear-gradient(90deg, #0a4d97 0%, transparent 30%), url('../images/project-facility.jpg') center/cover; opacity: .58; clip-path: polygon(24% 0,100% 0,100% 100%,0 100%); }
.contact-cta__inner { position: relative; z-index: 2; min-height: 270px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; padding-block: 54px; }
.contact-cta .section-kicker { color: #8ac2ff; }
.contact-cta h2 { max-width: 730px; margin: 10px 0 14px; color: #fff; font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1.05; letter-spacing: -.04em; }
.contact-cta p { max-width: 670px; margin: 0; color: rgba(255,255,255,.77); }
.contact-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.contact-phone { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.contact-phone > svg { width: 38px; height: 38px; padding: 9px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.contact-phone span, .contact-phone small { display: block; }
.contact-phone small { color: rgba(255,255,255,.66); font-size: .7rem; }

/* Inner page hero */
.page-hero { position: relative; padding: 105px 0 90px; color: #fff; background: linear-gradient(120deg, #041a35, #083a72 55%, #0d65c5); overflow: hidden; }
.page-hero::before { content: "AKSA"; position: absolute; right: 3%; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.045); font-size: clamp(8rem, 18vw, 18rem); line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.page-hero__glow { position: absolute; border-radius: 50%; filter: blur(1px); }
.page-hero__glow--one { width: 380px; height: 380px; right: 5%; top: -200px; background: rgba(63,153,255,.17); }
.page-hero__glow--two { width: 220px; height: 220px; left: -90px; bottom: -150px; background: rgba(232,23,41,.2); }
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 17px; color: rgba(255,255,255,.68); font-size: .78rem; }
.breadcrumbs a:hover { color: #fff; }
.page-hero h1 { max-width: 950px; margin: 0; font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: 1; letter-spacing: -.05em; }
.page-hero p { max-width: 760px; margin: 20px 0 0; color: rgba(255,255,255,.75); font-size: 1.08rem; }

/* Generic content */
.page-content-layout, .content-grid, .detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: 54px; }
.detail-hero-grid { grid-template-columns: minmax(0, 1fr) 390px; }
.entry-featured, .detail-featured { margin-bottom: 34px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-md); }
.entry-featured img, .detail-featured img { width: 100%; max-height: 690px; object-fit: cover; }
.prose { color: var(--ink-800); font-size: 1.02rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3, .prose h4 { color: var(--ink-950); line-height: 1.2; letter-spacing: -.025em; }
.prose h2 { margin: 2em 0 .75em; font-size: 2rem; }
.prose h3 { margin: 1.7em 0 .6em; font-size: 1.45rem; }
.prose p { margin: 0 0 1.35em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose blockquote { margin: 2em 0; padding: 24px 28px; background: var(--ice-50); border-left: 4px solid var(--red-500); border-radius: 0 16px 16px 0; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; }
.detail-sidebar { display: grid; gap: 22px; position: sticky; top: 145px; }
.sidebar-widget, .sidebar-cta, .spec-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.sidebar-widget h2, .sidebar-cta h2, .spec-card h2 { margin: 0 0 17px; font-size: 1.35rem; line-height: 1.25; }
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget li + li { border-top: 1px solid var(--line); }
.sidebar-widget li a { display: flex; padding: 10px 0; color: var(--ink-600); font-weight: 650; }
.sidebar-widget li a:hover { color: var(--blue-700); }
.sidebar-cta { color: #fff; background: linear-gradient(135deg, #05264a, #0c58aa); border: 0; }
.sidebar-cta .section-kicker { color: #82c0ff; }
.sidebar-cta h2 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,.75); }
.sidebar-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 850; }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.spec-row span, .spec-copy span { color: var(--ink-600); font-size: .78rem; }
.spec-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.spec-list li { display: flex; gap: 10px; }
.spec-list svg { margin-top: 3px; color: var(--blue-700); }
.spec-copy { margin-top: 20px; }
.spec-copy p { color: var(--ink-800); }
.spec-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.service-detail-process { margin-top: 55px; padding-top: 40px; border-top: 1px solid var(--line); }

/* Archive & process */
.archive-toolbar { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; margin-bottom: 42px; }
.archive-toolbar h2 { margin: 8px 0 0; font-size: 2.7rem; line-height: 1.1; }
.archive-toolbar p { margin: 0; color: var(--ink-600); }
.process-section, .values-section { padding: 90px 0; color: #fff; background: linear-gradient(135deg, #031830, #073665); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-grid--compact { grid-template-columns: repeat(4,1fr); }
.process-step { min-height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.process-step span { color: #67adfa; font-size: 2rem; font-weight: 900; }
.process-step strong { color: #fff; }

/* Corporate */
.about-layout--corporate .about-media__image { inset: 0 0 35px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value-card { padding: 30px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; }
.value-card > div { width: 56px; height: 56px; display: grid; place-items: center; color: #fff; background: var(--red-500); border-radius: 16px; }
.value-card > div svg { width: 29px; height: 29px; }
.value-card h3 { margin: 20px 0 9px; color: #fff; }
.value-card p { margin: 0; color: rgba(255,255,255,.7); }
.corporate-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.corporate-link-card { position: relative; min-height: 260px; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), background .3s, color .3s; }
.corporate-link-card > span { color: var(--red-500); font-size: .78rem; font-weight: 900; }
.corporate-link-card h3 { margin: 56px 0 9px; font-size: 1.5rem; }
.corporate-link-card p { color: var(--ink-600); }
.corporate-link-card > svg { position: absolute; right: 28px; bottom: 28px; color: var(--blue-700); }
.corporate-link-card:hover { transform: translateY(-8px); color: #fff; background: var(--navy-900); }
.corporate-link-card:hover p, .corporate-link-card:hover > svg { color: rgba(255,255,255,.75); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 235px; gap: 16px; }
.gallery-content { grid-column: 1/-1; }
.gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: 18px; }
.gallery-item--1, .gallery-item--5 { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; padding: 11px 14px; color: #fff; background: rgba(3,22,45,.68); border: 1px solid rgba(255,255,255,.16); border-radius: 11px; backdrop-filter: blur(8px); font-size: .82rem; }
.gallery-item:hover img { transform: scale(1.06); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-info h2, .contact-form-card h2 { margin: 10px 0 17px; font-size: 2.5rem; line-height: 1.1; }
.contact-info > p { color: var(--ink-600); }
.contact-info__items { display: grid; gap: 13px; margin: 32px 0; }
.contact-info__items > a, .contact-info__items > div { display: flex; align-items: center; gap: 15px; padding: 15px; background: var(--ice-50); border: 1px solid var(--line); border-radius: 15px; }
.contact-info__items > * > span:first-child { width: 46px; height: 46px; display: grid; place-items: center; color: var(--blue-700); background: #fff; border-radius: 13px; box-shadow: 0 8px 20px rgba(4,34,68,.07); }
.contact-info__items small, .contact-info__items strong { display: block; }
.contact-info__items small { color: var(--ink-600); }
.contact-hours { padding: 24px; color: #fff; background: var(--navy-900); border-radius: 18px; }
.contact-hours p { margin: 6px 0 0; color: rgba(255,255,255,.72); }
.contact-form-card { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-md); }
.contact-form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink-800); font-size: .8rem; font-weight: 750; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 13px 14px; color: var(--ink-950); background: var(--ice-50); border: 1px solid var(--line); border-radius: 11px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(43,130,238,.1); }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; }
.consent input { width: 18px; height: 18px; padding: 0; }
.form-honeypot { position: absolute; left: -9999px; }
.form-message { padding: 13px 15px; margin-bottom: 18px; border-radius: 10px; font-size: .86rem; }
.form-message--success { color: #075c36; background: #e8f8ef; }
.form-message--error { color: #8a1020; background: #fff0f2; }
.map-placeholder { padding: 0 0 90px; }
.map-placeholder__inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 40px; background: linear-gradient(135deg, #eaf4ff, #f8fbff); border: 1px solid #d6e8fc; border-radius: 24px; }
.map-placeholder__inner > div > svg { width: 40px; height: 40px; color: var(--red-500); }
.map-placeholder h2 { margin: 12px 0 5px; }
.map-placeholder p { margin: 0; color: var(--ink-600); }

/* Lists & empty states */
.posts-list, .search-results-list { display: grid; gap: 22px; }
.content-card { display: grid; grid-template-columns: 260px 1fr; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.content-card__media img { width: 100%; height: 100%; object-fit: cover; }
.content-card__body { padding: 28px; }
.search-result { padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.search-result h2 { margin: 8px 0 10px; }
.search-result p { color: var(--ink-600); }
.empty-state, .error-page__inner { text-align: center; }
.error-page { min-height: 620px; display: grid; place-items: center; background: radial-gradient(circle at 50% 20%, #edf6ff, #fff 65%); }
.error-page__inner > span { display: block; color: var(--blue-700); font-size: clamp(7rem, 20vw, 16rem); line-height: .8; font-weight: 950; letter-spacing: -.08em; opacity: .12; }
.error-page h1 { margin: -20px 0 10px; font-size: 2.8rem; }
.error-page p { color: var(--ink-600); }
.error-page__inner > div { display: flex; justify-content: center; gap: 12px; margin-top: 25px; }
.navigation.pagination { margin-top: 40px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--blue-700); border-color: var(--blue-700); }

/* Footer */
.site-footer { position: relative; padding-top: 74px; color: #fff; background: #03162d; overflow: hidden; }
.site-footer__shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.site-footer__shape--one { width: 420px; height: 420px; right: -210px; top: -210px; background: rgba(18,104,215,.14); }
.site-footer__shape--two { width: 260px; height: 260px; left: -150px; bottom: -140px; background: rgba(232,23,41,.09); }
.site-footer__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .8fr .9fr 1.1fr; gap: 55px; }
.site-footer .custom-logo-link { max-width: 210px; background: #fff; border-radius: 14px; padding: 12px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.65); font-size: .86rem; }
.social-links { display: flex; gap: 9px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transition: background .2s, transform .2s; }
.social-links a:hover { background: var(--blue-600); transform: translateY(-3px); }
.footer-column h2 { margin: 0 0 20px; color: #fff; font-size: 1rem; }
.footer-column ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-column li a { color: rgba(255,255,255,.65); font-size: .83rem; }
.footer-column li a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact > a, .footer-contact > div { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,.72); font-size: .83rem; }
.footer-contact > * svg { margin-top: 2px; color: #69afff; }
.footer-catalog { margin-top: 10px; padding: 10px 14px; color: #fff !important; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; }
.site-footer__bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; padding-block: 24px; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: .75rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 18px; }
.floating-whatsapp { position: fixed; z-index: 900; right: 20px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; color: #fff; background: #25d366; border-radius: 50%; box-shadow: 0 15px 35px rgba(0,0,0,.23); transition: transform .2s; }
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 29px; height: 29px; }
.back-to-top { position: fixed; z-index: 890; right: 27px; bottom: 94px; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--navy-900); border: 0; border-radius: 50%; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px) rotate(-90deg); cursor: pointer; transition: .25s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) rotate(-90deg); }

/* Reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --header-height: 82px; }
  .site-header__main-inner { grid-template-columns: 210px 1fr auto; gap: 15px; }
  .primary-menu > li > a { padding-inline: 9px; font-size: .78rem; }
  .header-cta span { display: none; }
  .header-cta { width: 48px; padding: 0; justify-content: center; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(3,1fr); }
  .trust-item:nth-child(3)::after { display: none; }
  .trust-item:nth-child(n+4) { border-top: 1px solid var(--line); }
  .about-layout { gap: 48px; }
}

@media (max-width: 980px) {
  .admin-bar .site-header.is-sticky { top: 46px; }
  .site-header__top { display: none; }
  .site-header__main-inner { grid-template-columns: 1fr auto auto; min-height: 78px; }
  .site-branding { align-self: center; }
  .default-logo-link, .site-header .custom-logo-link { max-width: 205px; border-radius: 14px; padding: 10px 13px; }
  .menu-toggle { display: grid; place-items: center; order: 3; }
  .header-actions { order: 2; }
  .primary-navigation { position: fixed; z-index: 1001; top: 78px; right: 0; bottom: 0; width: min(430px, 92vw); padding: 22px; overflow-y: auto; color: var(--ink-950); background: #fff; box-shadow: -20px 0 60px rgba(2,22,46,.22); transform: translateX(105%); transition: transform .35s var(--ease); }
  .admin-bar .primary-navigation { top: 124px; }
  .menu-open .primary-navigation { transform: translateX(0); }
  .primary-menu { display: block; }
  .primary-menu > li { border-bottom: 1px solid var(--line); }
  .primary-menu > li > a { min-height: 55px; color: var(--ink-950); padding: 0 45px 0 7px; font-size: .92rem; }
  .primary-menu > li > a::after, .primary-menu .menu-item-has-children > a::before { display: none; }
  .submenu-toggle { position: absolute; right: 0; top: 7px; width: 42px; height: 42px; display: grid; place-items: center; border: 0; background: var(--ice-100); border-radius: 10px; cursor: pointer; }
  .submenu-toggle svg { transition: transform .2s; }
  .submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .sub-menu, .sub-menu .sub-menu { position: static; min-width: 0; padding: 0 0 12px 15px !important; background: transparent; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .sub-menu::before { display: none; }
  .submenu-open > .sub-menu { display: block; }
  .sub-menu .menu-item a { padding: 9px; color: var(--ink-600); }
  .hero-slider, .hero-slide__inner { min-height: 650px; height: 650px; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(3,22,45,.94), rgba(3,30,59,.65) 70%, rgba(3,22,45,.35)); }
  .hero-slide__content { padding-inline: 55px; }
  .slider-arrow { width: 44px; height: 50px; }
  .slider-arrow--prev { left: 8px; }
  .slider-arrow--next { right: 8px; }
  .trust-strip { margin-top: -48px; }
  .about-layout, .contact-cta__inner, .contact-layout, .archive-toolbar, .page-content-layout, .content-grid, .detail-hero-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .service-grid, .project-grid--archive { grid-template-columns: repeat(2,1fr); }
  .project-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.13); }
  .contact-cta__image { width: 55%; opacity: .28; }
  .contact-cta__actions { align-items: flex-start; }
  .site-footer__grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .corporate-links-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-actions .header-search-toggle { display: none; }
  .site-header__main-inner { grid-template-columns: 1fr auto; }
  .header-actions { display: none; }
  .menu-toggle { order: initial; }
  .custom-logo-link { max-width: 185px !important; }
  .hero-slider, .hero-slide__inner { min-height: 650px; height: 650px; }
  .hero-slide { background-position: 61% center; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(2,18,37,.96), rgba(3,28,54,.78)); }
  .hero-slide__veil { width: 110%; }
  .hero-slide__inner { padding-bottom: 58px; }
  .hero-slide__content { padding-inline: 30px; }
  .hero-slide h1 { font-size: 3.15rem; }
  .hero-slide p { font-size: .95rem; }
  .hero-slide__buttons { flex-direction: column; align-items: stretch; }
  .slider-arrow { display: none; }
  .slider-dots { bottom: 88px; }
  .trust-strip { margin-top: -38px; }
  .trust-strip__inner { grid-template-columns: 1fr; border-radius: 18px; }
  .trust-item { min-height: 106px; }
  .trust-item::after { display: none !important; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .product-grid, .product-grid--archive, .service-grid, .service-grid--archive, .project-grid, .project-grid--archive, .blog-grid, .blog-archive-grid, .values-grid { grid-template-columns: 1fr; }
  .about-layout { gap: 38px; }
  .about-media { min-height: 420px; }
  .about-media__image { inset: 0 20px 26px 0; }
  .about-media__badge { width: 140px; height: 140px; border-width: 7px; }
  .about-media__badge strong { font-size: 2.3rem; }
  .about-content h2, .contact-info h2, .contact-form-card h2 { font-size: 2.15rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { min-height: 115px; justify-content: flex-start; padding-inline: 30px; border-top: 1px solid rgba(255,255,255,.13); }
  .stat-item::after { display: none !important; }
  .contact-cta__inner { gap: 30px; }
  .contact-cta__image { width: 100%; opacity: .15; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__bottom { flex-direction: column; }
  .page-hero { padding: 75px 0 65px; }
  .page-hero h1 { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 25px; }
  .process-grid, .process-grid--compact { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-item--1, .gallery-item--5 { grid-column: auto; grid-row: auto; }
  .content-card { grid-template-columns: 1fr; }
  .map-placeholder__inner { align-items: flex-start; flex-direction: column; }
  .error-page__inner > div { flex-direction: column; }
}

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