@font-face {
  font-family: Poppins; font-style: normal; font-weight: 300; font-display: swap;
  src: url(../fonts/Poppins-Light.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026;
}
@font-face {
  font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/poppins-400.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026;
}
@font-face {
  font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/poppins-600.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026;
}
@font-face {
  font-family: Poppins; font-style: normal; font-weight: 800; font-display: swap;
  src: url(../fonts/poppins-800.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026;
}
@media (max-width: 767px) {
	.desktop {display: none !important;}
}
@media (min-width: 767px) {
	.mobile {display: none !important;}
}
:root {
  --main: #117aba; --main-dark: #f84008; --dark: #030914; --text: #101010; --intro: #e1f9f5; --eyebrow: #888888; --highlight: #1da9f5;
  --bg-alt: #f8f9fa; --line: #eaedf1;
  --shadow: 0 12px 32px rgba(31, 39, 59, 0.14);
  --radius: 5px; --header-h: 74px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body { margin: 0; font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--main); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--main-dark); }
h1, h2, h3, h4, h5 { margin: 0 0 0.75em; color: var(--dark); font-weight: 800; line-height: 1.18; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.wrap { width: min(100% - 2.5rem, 1280px); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.section { padding-block: 4.5rem; }
@media (min-width: 992px) { .section { padding-block: 5.5rem; } }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin-bottom: 0.4em; }
.section-head p { margin: 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
#header { position: fixed; inset: 0 0 auto 0; z-index: 50; background: transparent; transition: background 0.3s ease, box-shadow 0.3s ease; }
#header.scrolled, #header.header-solid { background: #fff; box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(31,39,59,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 44px; width: auto; padding-top: 3px; }
.menu-btn { display: none; position: relative; z-index: 70; inline-size: 44px; aspect-ratio: 1; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { position: absolute; inset-inline: 10px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.menu-btn span { inset-block-start: 50%; translate: 0 -1px; color: #fff; }
#header.scrolled .menu-btn span, #header.header-solid .menu-btn span { color: var(--dark); }
.menu-btn span::before, .menu-btn span::after { content: ""; }
.menu-btn span::before { translate: 0 -7px; }
.menu-btn span::after { translate: 0 7px; }
.nav-open .menu-btn span { background: transparent !important; }
.nav-open .menu-btn span::before { translate: 0 0; rotate: 45deg; color: #fff; }
.nav-open .menu-btn span::after { translate: 0 0; rotate: -45deg; color: #fff; }
.main-nav ul { display: flex; gap: 2.25rem; margin: 0; padding: 0; list-style: none; }
.main-nav a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
#header.scrolled .main-nav a, #header.header-solid .main-nav a { color: var(--dark); }
#header.scrolled .main-nav a:hover, #header.header-solid .main-nav a:hover, .main-nav a:hover { color: var(--main); }
@media (max-width: 991px) {
  .menu-btn { display: block; height: 380px; }
  .main-nav { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; background: var(--dark); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
  .nav-open .main-nav { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 1rem; font-size: 1.4rem; }
  .main-nav a, .nav-open #header.scrolled .main-nav a { color: #fff; font-size: 1.15rem; }
  .main-nav .small-links a { font-size: 12px !important; text-transform: none; font-weight: normal !important; }
}
.hero { position: relative; min-height: 580px; background: var(--dark); overflow: hidden; @media (max-width: 768px) { min-height: 280px !important; }}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-poistion { position: absolute; bottom: 0;}
.hero::after { content: ""; position: absolute; inset: 0;}
.scroll-down { position: absolute; z-index: 2; inset-inline-start: 50%; translate: -50% 0; bottom: 2rem; inline-size: 46px; aspect-ratio: 1; border: 2px solid rgba(255,255,255,0.85); border-radius: 50%; display: grid; place-items: center; color: #fff; animation: bob 2.2s ease-in-out infinite; }
.scroll-down:hover { background: rgba(255,255,255,0.15); color: #fff; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.intro { padding-top: 4rem; background-color: var(--intro); }
.intro-grid { display: grid; gap: 0rem; }
@media (min-width: 992px) { .intro-grid { grid-template-columns: 5fr 7fr; align-items: start; } }
@media (max-width: 640px) { .intro { padding-top: 2rem;} }
.intro h1 { font-size: clamp(2.4rem, 4.4vw, 6.2rem); line-height: 1.14; margin-bottom: 0; }
.typed-wrap { color: var(--main); }
.typed-wrap::after { content: "|"; margin-left: 2px; font-weight: 400; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.lede { font-size: 1.1em; font-weight: 200; }
.cta-line a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.icons-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); margin-top: 3.75rem; }
.icon-item img { width: 66px; height: auto; margin-bottom: 0; }
.icon-item b { display: block; color: var(--dark); font-size: 1.05rem; }
.icon-item small { font-size: 0.86rem; line-height: 1.65; display: block; margin-top: 0.3rem; }
.carousel { position: relative; }
.car-track { display: flex; column-gap: 0; margin: 0; padding: 0; list-style: none; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.car-track::-webkit-scrollbar { display: none; }
.car-item { flex: 0 0 95%; scroll-snap-align: start; }
@media (min-width: 768px) { .car-item { flex-basis: calc((100% - 1.5rem) / 2); } }
@media (min-width: 1100px) { .showcase .car-item { flex-basis: calc((100% - 3rem) / 3); } .testi .car-item { flex-basis: 100%; } }
.car-media { aspect-ratio: 584 / 643; overflow: hidden; }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.carousel:hover .car-media img:hover { transform: scale(1.04); }
.car-btn { position: absolute; z-index: 2; inset-block-start: 50%; translate: 0 -50%; inline-size: 46px; aspect-ratio: 1; border: 0; border-radius: 50%; background: #fff; color: var(--dark); box-shadow: 0 4px 16px rgba(31,39,59,0.18); cursor: pointer; display: grid; place-items: center; transition: color 0.2s ease, transform 0.2s ease; }
.car-btn:hover { color: var(--main); transform: translateY(-50%) scale(1.06); }
.car-btn[data-dir="-1"] { left: -10px; }
.car-btn[data-dir="1"] { right: -10px; }
.car-btn svg { width: 20px; height: 20px; }
.cards { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 3 / 2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { display: flex; flex-direction: column; flex: 1; gap: 0.55rem; padding: 1.4rem 1.4rem 1.5rem; }
.card-tag { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; color: var(--eyebrow); }
.card-title { margin: 0; font-size: 1.12rem; line-height: 1.35; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--main-dark); }
.card-desc { margin: 0; font-size: 0.92rem; }
.card-cats { display: flex; flex-wrap: wrap; gap: 0.35rem 0.6rem; margin: 0.2rem 0 0; padding: 0; list-style: none; font-size: 0.78rem; color: #8a93a3; }
.card-cats li:not(:last-child)::after { content: "●"; margin-left: 0.6rem; color: #c3cad6; }
.card-more { margin-top: auto; padding-top: 0.9rem; font-size: 0.88rem; font-weight: 600; }
.card-more span { display: inline-block; transition: translate 0.2s ease; }
.card-more:hover span { translate: 4px 0; }
@media (max-width: 640px) { .case-studies { columns: 2; } }
.testi { --quote: #d4dae4; }
.testi blockquote { max-width: 880px; margin: 0 auto; padding: 1rem 1.5rem; text-align: center; font-size: 1.02rem; }
.testi blockquote p { margin: 0; }
@media (max-width: 640px) { .testi blockquote p {font-size: 14px; }}
.testi cite { display: block; margin-top: 1.4rem; font-style: normal; font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.gallery { columns: 1; column-gap: 1.25rem; }
@media (max-width: 640px) { .gallery { columns: 2; } }
@media (min-width: 1024px) { .gallery { columns: 3; } }
.g-item { break-inside: avoid; margin: 0 0 1.25rem; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.g-item a { display: block; cursor: zoom-in; }
.g-item img { width: 100%; transition: transform 0.45s ease; }
.g-item a:hover img { transform: scale(1.03); }
dialog#lightbox { width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; border: 0; padding: 2rem; background: rgba(16,21,33,0.96); display: grid; place-items: center; }
dialog#lightbox:not([open]) { display: none; }
dialog#lightbox::backdrop { background: rgba(16,21,33,0.96); }
#lightbox img { max-width: min(94vw, 1400px); max-height: 84vh; width: auto; height: auto; border-radius: 6px; }
#lightbox figcaption { margin: 0; position: fixed; inset-inline: 0; bottom: 1.4rem; text-align: center; color: #cfd6e2; font-size: 0.88rem; padding-inline: 1rem; }
.lb-close { position: fixed; top: 1.1rem; right: 1.1rem; inline-size: 46px; aspect-ratio: 1; border: 0; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.lb-close:hover { background: rgba(255,255,255,0.25); }
#footer { background: var(--dark); color: #a7b0c0; font-size: 0.94rem; margin-top: 40px; }
.footer-grid { display: grid; gap: 3rem; padding-block: 4rem; }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 1.6fr 1fr; gap: 5rem; } }
#footer h3 { color: #fff; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
#footer ul { margin: 0; padding: 0; list-style: none; }
#footer li { padding: 0.22rem 0; }
#footer a { color: #d4dae4; }
#footer a:hover { color: var(--main); }
.footer-block + .footer-block { margin-top: 2.75rem; }
.footer-contact p { margin: 0 0 0.35rem; }
.footer-contact strong { color: #fff; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-block: 1.4rem; font-size: 0.82rem; color: #7f8aa0; }
.to-top { position: fixed; z-index: 40; right: 1.4rem; bottom: 1.4rem; inline-size: 46px; aspect-ratio: 1; border: 0; border-radius: 50%; background: var(--dark); color: #fff; display: grid; place-items: center; cursor: pointer; opacity: 0; translate: 0 10px; pointer-events: none; transition: opacity 0.25s ease, translate 0.25s ease; }
.to-top.show { opacity: 1; translate: 0 0; pointer-events: auto; }
.to-top:hover { background: var(--main-dark); }
.case-hero { position: relative; height: min(56svh, 460px); min-height: 340px; background: var(--dark); overflow: hidden; }
.case-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .case-hero { min-height: 240px !important; height: 240px !important; } }
.case-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,27,42,0.55), rgba(20,27,42,0.15) 55%, rgba(20,27,42,0.55)); }
.case-title-section { padding-block: 3rem 2.5rem; }
@media (max-width: 640px) { .case-title-section { padding-top: 1rem; } }
.pi-list-inline { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 0 0 2.5rem; padding: 0; list-style: none; }
.pi-list-inline li { display: flex; flex-direction: column; border-right: 1px solid var(--line); padding: 0 25px 0 0; }
.pi-list-inline li:last-child { padding: 0; margin: 0; border-right:none; }
.pi-list-inline .pi-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: #9fb4cf; margin-bottom: 0.2rem; }
.pi-list-inline .pi-value { color: var(--eyebrow); font-weight: 400; font-size: 0.92rem; }
.case-content { display: grid; gap: 2.5rem; }
@media (min-width: 992px) { .case-content { grid-template-columns: 1fr 2fr; gap: 3.5rem; } }
.case-title h1 { font-size: 52px; margin: 0; text-wrap: balance; }
@media (max-width: 640px) { .case-title h1 { font-size: 32px;} }
.case-body { padding-block: 3.5rem 0 0; }
.case-body h5 { font-size: 1.15rem; font-weight: 700; color: var(--highlight); margin: 2.2rem 0 0.7rem; }
.case-body h5:first-child { margin-top: 0; }
.case-body p { margin: 0 0 1rem; font-weight: 300; color: #292929; }
.case-body p strong { font-weight: 600; }
.case-body ul { margin: 0 0 1.2rem; padding-left: 1.25rem; }
.case-body li { margin-bottom: 0.5rem; font-weight: 300; }
.case-body li strong { font-weight: 600; }
.case-body li::marker { color: var(--text); }
.case-body li ul { margin-top: 0.5rem; margin-bottom: 0; }
.case-kpis ul { list-style: none; padding-left: 0; }
.case-kpis > ul > li { margin-bottom: 0.3rem; }
.case-kpis > ul > li > ul { margin-top: 0.4rem; margin-bottom: 1rem; padding-left: 1.25rem; list-style-type: circle; }
.case-kpis > ul > li > ul li { margin-bottom: 0.3rem; }
.case-standalone { margin-bottom: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.case-standalone a { display: block; cursor: zoom-in; }
.case-standalone img { width: 100%; }
.case-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
@media (min-width: 640px) { .case-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.case-gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.case-gallery-grid a { display: block; cursor: zoom-in; box-shadow: 0 6px 24px rgba(31,39,59,0.1); }
.case-gallery-grid a:hover { box-shadow: 0 10px 32px rgba(31,39,59,0.18); }
.case-gallery-grid img { width: 100%; transition: transform 0.45s ease; }
.case-gallery-grid a:hover img { transform: scale(1.03); }
.pager { display: flex; gap: 1.25rem; padding-block: 0 4.5rem; align-items: stretch; margin-top: 60px; }
.pager a { flex: 1; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.pager a:hover { border-color: var(--text); background-color: var(--line); box-shadow: var(--shadow); }
.pager small { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: #8a93a3; margin-bottom: 0.2rem; }
.pager strong { color: var(--dark); font-size: 0.98rem; }
.pager-center { flex: 0.35; display: grid; place-items: center; }
.pager-center a { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; text-align: center; display: grid; place-items: center; height: 100%; }
.pager-center svg { width: 24px; height: 24px; color: #8a93a3; }
.pager-center a:hover svg { color: var(--main); }
.pager .next { text-align: right; }
.reveal { opacity: 0; translate: 0 26px; transition: opacity 0.6s ease, translate 0.6s ease; }
.reveal.in-view { opacity: 1; translate: 0 0; }
:focus-visible { outline: 3px solid var(--main); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; translate: 0 0; }
  .typed-wrap::after { animation: none; }
}