:root {
  --blue-950: #06245d;
  --blue-900: #08347f;
  --blue-800: #0b3e90;
  --blue-700: #1159b4;
  --blue-500: #178ed3;
  --aqua: #12a69a;
  --green: #3aab67;
  --orange: #f6ae2d;
  --ink: #18222e;
  --muted: #667384;
  --soft: #f4f7fb;
  --line: #dfe6ef;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(11, 36, 74, .14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 9999;
  background: #fff; color: var(--blue-900); padding: 10px 14px; border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 12px; }

.topbar { background: var(--blue-950); color: rgba(255,255,255,.86); font-size: .86rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; align-items: center; gap: 10px; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px); border-bottom: 1px solid rgba(11,62,144,.09);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(145deg, var(--blue-900), var(--blue-500));
  font-weight: 900; font-size: 1.45rem; box-shadow: 0 8px 18px rgba(11,62,144,.2);
  position: relative;
}
.brand__mark::after { content: ""; position: absolute; width: 18px; height: 3px; background: var(--orange); top: 7px; border-radius: 3px; }
.brand__text { display: grid; line-height: 1.08; letter-spacing: .03em; }
.brand__text strong { font-size: .99rem; color: var(--blue-950); }
.brand__text small { margin-top: 4px; font-weight: 700; font-size: .66rem; letter-spacing: .22em; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 27px; font-weight: 700; font-size: .92rem; }
.main-nav > a { position: relative; padding: 10px 0; }
.main-nav > a:not(.nav-cta)::after { content:""; position:absolute; left:0; right:100%; bottom:3px; height:2px; background:var(--orange); transition:.25s ease; }
.main-nav > a:not(.nav-cta):hover::after { right:0; }
.nav-cta { background: var(--blue-900); color: #fff; padding: 11px 17px !important; border-radius: 10px; }
.nav-cta:hover { background: var(--blue-700); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 90% 90%, rgba(48,174,107,.7), transparent 35%),
    radial-gradient(circle at 70% 30%, rgba(23,142,211,.55), transparent 30%),
    linear-gradient(135deg, #092f79 0%, #0b4c9a 45%, #078c9c 72%, #39a85c 100%);
  min-height: 700px; display: grid; align-items: center;
}
.hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; padding-block: 82px; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 900; color: #d9f1ff; display: inline-flex; align-items: center; gap: 9px; }
.eyebrow::before { content:""; width: 34px; height: 3px; border-radius: 3px; background: var(--orange); }
.eyebrow--dark { color: var(--blue-800); }
.hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.03; letter-spacing: -.045em; max-width: 760px; margin: 0; }
.hero__lead { max-width: 660px; font-size: 1.12rem; color: rgba(255,255,255,.85); margin: 25px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 21px; border-radius: 11px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--orange); color: #17202a; box-shadow: 0 10px 25px rgba(246,174,45,.25); }
.button--primary:hover { background: #ffc150; }
.button--ghost { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.08); }
.button--ghost:hover { background: rgba(255,255,255,.15); }
.button--outline { border-color: var(--blue-800); color: var(--blue-900); background: #fff; }
.button--outline:hover { background: var(--blue-900); color: #fff; }
.hero__trust { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 13px; margin-top: 42px; max-width: 690px; }
.hero__trust > div { border-top: 1px solid rgba(255,255,255,.25); padding-top: 15px; }
.hero__trust strong { display: block; font-size: 1.55rem; line-height: 1; }
.hero__trust span { display: block; margin-top: 7px; color: rgba(255,255,255,.72); font-size: .79rem; line-height: 1.4; }

.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px; gap: 13px; transform: rotate(1deg); }
.hero-mosaic__item { margin: 0; border: 6px solid rgba(255,255,255,.12); background: rgba(255,255,255,.1); overflow: hidden; border-radius: 22px; box-shadow: 0 20px 50px rgba(4,29,67,.25); }
.hero-mosaic__item--large { grid-row: 1 / 3; }
.hero-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hero-mosaic__item:hover img { transform: scale(1.04); }

.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 42px; }
.section-heading h2, .about h2, .contact h2 { font-size: clamp(2.05rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: -.035em; margin: 0; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.03rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.service-card { min-height: 285px; background: #1f252c; color: #fff; padding: 34px; border-radius: 5px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.service-card::after { content:""; position:absolute; inset:auto -60px -90px auto; width:210px; height:210px; border-radius:50%; background: radial-gradient(circle, rgba(23,142,211,.25), transparent 70%); }
.service-card__num { font-size: .76rem; font-weight: 900; letter-spacing: .16em; color: var(--orange); }
.service-card h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin: 67px 0 13px; line-height: 1.2; max-width: 500px; }
.service-card p { color: rgba(255,255,255,.68); margin: 0; max-width: 520px; }

.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.about__media { position: relative; }
.about__media > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__badge { position: absolute; right: -20px; bottom: 35px; width: 175px; height: 175px; border-radius: 50%; background: var(--blue-900); color: #fff; display: grid; place-content: center; text-align: center; border: 8px solid var(--soft); box-shadow: 0 18px 40px rgba(6,36,93,.25); }
.about__badge strong { font-size: 1.28rem; }
.about__badge span { font-size: .75rem; max-width: 110px; margin: 4px auto 0; opacity: .75; }
.about__copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); }
.feature-list > div > span { width: 34px; height: 34px; display: grid; place-items: center; background: #eaf7f3; color: #0e8d72; border-radius: 50%; font-weight: 900; }
.feature-list p { margin: 0; color: var(--muted); }
.feature-list strong { color: var(--ink); }

.media-strip { padding: 55px 0; background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); color: #fff; }
.media-strip__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.media-stat { border-left: 1px solid rgba(255,255,255,.25); padding-left: 20px; }
.media-stat span { color: var(--orange); font-weight: 900; letter-spacing: .13em; font-size: .72rem; }
.media-stat strong { display: block; font-size: 1.2rem; margin: 6px 0 2px; }
.media-stat small { color: rgba(255,255,255,.65); line-height: 1.5; }

.gallery-grid { columns: 4 220px; column-gap: 12px; }
.gallery-item { width: 100%; display: inline-block; break-inside: avoid; margin: 0 0 12px; padding: 0; border: 0; background: #e9eef4; border-radius: 15px; overflow: hidden; position: relative; cursor: zoom-in; box-shadow: 0 4px 18px rgba(7,35,72,.08); }
.gallery-item img { width: 100%; height: auto; transition: transform .35s ease, filter .35s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-item__zoom { position: absolute; right: 11px; bottom: 11px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(6,36,93,.86); color: #fff; font-size: 1.4rem; opacity: 0; transform: translateY(6px); transition: .22s ease; }
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translateY(0); }
.gallery-item--extra { display: none; }
.gallery-grid.is-expanded .gallery-item--extra { display: inline-block; }
.gallery-actions { text-align: center; margin-top: 24px; }
.video-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 54px; }
.video-card { display: grid; grid-template-columns: 190px 1fr; gap: 22px; align-items: center; background: var(--soft); border: 1px solid var(--line); padding: 16px; border-radius: 18px; }
.video-card__frame { aspect-ratio: 9/13; max-height: 270px; overflow: hidden; border-radius: 12px; background: #000; }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card span { color: var(--blue-800); font-weight: 900; font-size: .79rem; letter-spacing: .12em; text-transform: uppercase; }
.video-card p { margin: 7px 0 0; font-size: 1.04rem; }

.testimonials { color: #fff; background: radial-gradient(circle at 75% 25%, rgba(31,160,225,.7), transparent 35%), linear-gradient(135deg, #0a3887 0%, #0d5fae 55%, #0e91ca 100%); }
.section-heading--light > p { color: rgba(255,255,255,.72); }
.quote-card { margin: 0; padding: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 2px; background: rgba(255,255,255,.055); backdrop-filter: blur(7px); min-height: 345px; display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.quote-card p { margin: 0; font-size: 1.04rem; font-style: italic; color: rgba(255,255,255,.9); }
.quote-card footer { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.quote-card footer span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--blue-900); border: 3px solid var(--orange); font-weight: 900; font-size: .73rem; }

.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; align-items: start; }
.contact__copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; max-width: 700px; }
.contact-cards { display: grid; gap: 11px; margin-top: 30px; }
.contact-cards a { border: 1px solid var(--line); border-radius: 13px; padding: 17px 19px; display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: baseline; transition: .2s ease; }
.contact-cards a:hover { transform: translateX(4px); border-color: #adc9ee; background: #f7faff; }
.contact-cards span { color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-cards strong { color: var(--blue-900); }
.contact-panel { background: linear-gradient(155deg, #1e252c 0%, #11161c 100%); color: #fff; padding: 38px; border-radius: 18px; box-shadow: var(--shadow); position: sticky; top: 110px; }
.contact-panel__top { border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 22px; margin-bottom: 28px; }
.contact-panel__top p { margin: 0; font-weight: 900; font-size: 1.45rem; letter-spacing: .04em; }
.contact-panel__top span { color: var(--orange); font-size: .73rem; letter-spacing: .24em; font-weight: 800; }
.contact-panel h3 { font-size: 1.85rem; line-height: 1.2; margin: 0 0 14px; }
.contact-panel > p { color: rgba(255,255,255,.67); margin-bottom: 27px; }

.footer { background: #1f1f1f; color: rgba(255,255,255,.72); padding-top: 72px; }
.footer__top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; padding-bottom: 58px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: rgba(255,255,255,.55); }
.footer__top > div > p { max-width: 430px; }
.footer h3 { color: #fff; margin: 0 0 18px; font-size: 1rem; }
.footer__top > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer a:hover { color: #fff; }
.footer__bottom { min-height: 70px; border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .86rem; }
.footer__bottom a { color: #fff; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

.lightbox { width: min(980px, calc(100% - 30px)); max-height: calc(100dvh - 30px); border: 0; padding: 0; border-radius: 16px; background: #0e141c; overflow: hidden; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(5px); }
.lightbox img { max-height: calc(100dvh - 50px); width: 100%; object-fit: contain; background: #0e141c; }
.lightbox__close { position: absolute; z-index: 2; top: 10px; right: 10px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: #111; font-size: 1.7rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: center; }
  .hero__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__grid { gap: 45px; }
  .hero-mosaic { max-width: 720px; width: 100%; margin: 0 auto; grid-template-rows: 225px 225px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .media-strip__grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote-card { min-height: auto; }
  .contact-panel { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1/-1; }
  .video-card { grid-template-columns: 145px 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 68px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; left: 14px; right: 14px; top: 70px; display: grid; gap: 4px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a { padding: 12px 13px; }
  .nav-cta { margin-top: 4px; text-align: center; }
  .hero__grid { padding-block: 58px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero__lead { font-size: 1rem; }
  .hero__trust { grid-template-columns: 1fr; gap: 12px; }
  .hero__trust > div { display: grid; grid-template-columns: 65px 1fr; gap: 10px; align-items: center; }
  .hero__trust span { margin: 0; }
  .hero-mosaic { grid-template-rows: 180px 180px; gap: 8px; transform: none; }
  .hero-mosaic__item { border-width: 3px; border-radius: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; padding: 26px; }
  .service-card h3 { margin-top: 47px; }
  .about__grid { gap: 50px; }
  .about__badge { right: 14px; bottom: -25px; width: 145px; height: 145px; }
  .media-strip__grid { grid-template-columns: 1fr; }
  .media-stat { padding-left: 14px; }
  .gallery-grid { columns: 2 145px; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; border-radius: 10px; }
  .gallery-item__zoom { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { grid-template-columns: 110px 1fr; gap: 14px; }
  .video-card__frame { max-height: 185px; }
  .contact-cards a { grid-template-columns: 1fr; gap: 3px; }
  .contact-panel { padding: 27px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__top > div:first-child { grid-column: auto; }
  .footer__bottom { padding-block: 20px; flex-direction: column; justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .brand__text strong { font-size: .86rem; }
  .brand__text small { font-size: .58rem; }
  .brand__mark { width: 36px; height: 36px; }
  .hero__actions .button { width: 100%; }
  .hero-mosaic { grid-template-rows: 150px 150px; }
  .gallery-grid { columns: 2 130px; }
}

@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; }
}

/* Contact detail refinements */
.contact-cards .contact-card-static { border: 1px solid var(--line); border-radius: 13px; padding: 17px 19px; display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: baseline; }
.contact-cards .contact-card-static span { color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-cards .contact-card-static strong { color: var(--blue-900); }
.contact-panel__role { margin: -8px 0 22px !important; color: var(--orange) !important; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 760px) { .contact-cards .contact-card-static { grid-template-columns: 1fr; gap: 3px; } }
