/* ============================================================
   MVMNT STUDIO — Slim Site
   Design tokens extracted from live https://mvmnt.at/
   See doc/design-tokens.md
   ============================================================ */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Anton-Regular.woff2') format('woff2');
}

:root {
  /* Colors — exact Elementor kit values */
  --c-primary:    #116DFE;
  --c-secondary:  #000A19;
  --c-accent:     #A1C7FF;
  --c-text:       #7A7A7A;
  --c-bg:         #F2F6F9;
  --c-white:      #FFFFFF;

  --c-header-bg:  rgba(0, 10, 25, 0.48);
  --c-header-border: rgba(255, 255, 255, 0.25);

  /* Typography */
  --f-display:    "Anton", "Impact", "Arial Narrow", sans-serif;
  --f-body:       "articulat-cf", "Articulat CF", "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-system:     -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Layout */
  --header-h:     80px;
  --container-max: 1200px;

  /* Radii */
  --r-tight:      2px;
  --r-tag:        3px;
  --r-card-sm:    16px;
  --r-card:       24px;
  --r-card-lg:    32px;
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-secondary);
  background: var(--c-bg);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: normal;
  /* NO text-transform — versals come from markup */
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  padding: 8px 16px; background: #000; color: #fff;
}
.skip-link:focus { left: 0; z-index: 9999; }

/* ============= HEADER ============= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-header-bg);
  backdrop-filter: blur(6px) saturate(1.6);
  -webkit-backdrop-filter: blur(6px) saturate(1.6);
  border-bottom: 0.75px solid var(--c-header-border);
  height: var(--header-h);
}
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 100%;
  padding: 0 100px;
  max-width: 1920px;
  margin: 0 auto;
}
.hdr-logo { display: block; }
.hdr-logo img { width: 77px; height: 31px; }
.hdr-tag {
  width: 225px; height: 19px;
  justify-self: center;
}

.hdr-nav {
  display: flex;
  gap: 24px;
  justify-self: end;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 6px;
  color: var(--c-bg);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--c-accent); }

.hdr-burger {
  display: none;
  border: 0; background: transparent; padding: 4px;
  cursor: pointer;
  justify-self: end;
}
.hdr-burger img {
  width: 28px; height: 28px;
  filter: brightness(0) invert(1); /* burger is white in dark header */
}

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 10, 25, .5);
  display: none;
  opacity: 0; transition: opacity .3s;
}
.mobile-menu[aria-hidden="false"] { display: block; opacity: 1; }
.mm-inner {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--c-white);
  padding: 32px 32px 48px;
  display: flex; flex-direction: column; gap: 32px;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.mobile-menu[aria-hidden="false"] .mm-inner { transform: translateX(0); }
.mm-top { display: flex; justify-content: space-between; align-items: center; }
.mm-close {
  border: 0; background: transparent; cursor: pointer;
  padding: 8px; color: var(--c-secondary);
}
.mm-nav { display: flex; flex-direction: column; }
.mm-nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--f-display);
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(0, 10, 25, .1);
}
.mm-addr {
  margin-top: auto;
  font-size: .9rem;
  color: var(--c-text);
}

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  padding: 100px;
  background: var(--c-secondary);
  color: var(--c-bg);
  overflow: hidden;
  margin-top: var(--header-h); /* push below fixed header */
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(98deg, var(--c-secondary) 47%, rgba(242, 41, 91, 0) 88%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero h1 {
  font-family: var(--f-display);
  font-size: 55px;
  font-weight: 400;
  line-height: 66px;
  margin: 0 0 24px;
  color: var(--c-bg);
}
.hero p {
  font-family: var(--f-body);
  font-size: 19.2px;
  font-weight: 600;
  line-height: 28.8px;
  margin: 0 0 32px;
  max-width: 580px;
  color: var(--c-bg);
}
.hero-text-m { display: none; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 39px;
  font-family: var(--f-system);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  border: 0;
  border-radius: var(--r-tight);
  cursor: pointer;
  transition: background-color .2s, color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-bg);
}
.btn-primary:hover {
  background: var(--c-secondary);
  color: var(--c-bg);
}
.btn-light {
  background: var(--c-bg);
  color: var(--c-secondary);
}
.btn-light:hover {
  background: var(--c-primary);
  color: var(--c-bg);
}
.btn-submit {
  background: var(--c-primary);
  color: var(--c-bg);
  padding: 10px 24px;
  height: 40px;
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--c-secondary);
}

/* ============= LOGO STRIP ============= */
.logo-strip {
  display: flex;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-white) 100%);
  padding: 40px 0;
  overflow: hidden;
  gap: 48px;
}
.logo-strip-track {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 48px;
  animation: scroll-x 40s linear infinite;
  padding-right: 48px;
}
.logo-strip-track img {
  flex: 0 0 auto;
  height: 56px; width: auto;
  opacity: .85;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ============= INTRO ============= */
.intro {
  text-align: center;
  padding: 120px 24px;
  max-width: 880px;
  margin: 0 auto;
}
.intro h2 {
  font-family: var(--f-display);
  font-size: 50px;
  font-weight: 400;
  line-height: 64px;
  margin-bottom: 24px;
  color: var(--c-secondary);
}
.intro p {
  font-size: 1.2rem;
  color: var(--c-secondary);
  margin: 0 0 40px;
}

/* ============= CASE STACK ============= */
.case-stack {
  position: relative;
  padding: 80px 24px;
  background: var(--c-white);
}
.case-card {
  position: sticky;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 24px;
  background: var(--c-bg);
  border-radius: var(--r-card-lg);
  padding: 60px;
  box-shadow: 0 12px 40px rgba(0, 10, 25, .08);
}
.case-card:nth-child(1) { z-index: 6; top: calc(var(--header-h) + 0px); }
.case-card:nth-child(2) { z-index: 7; top: calc(var(--header-h) + 24px); }
.case-card:nth-child(3) { z-index: 8; top: calc(var(--header-h) + 48px); }
.case-card:nth-child(4) { z-index: 9; top: calc(var(--header-h) + 72px); }
.case-card:nth-child(5) { z-index: 10; top: calc(var(--header-h) + 96px); }

.case-text h2 {
  font-family: var(--f-display);
  font-size: 50px;
  font-weight: 400;
  color: var(--c-primary);
  margin: 0 0 16px;
}
.case-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 24px;
}
.case-tags li {
  height: 29px;
  padding: 5px 15px;
  background: var(--c-white);
  color: var(--c-accent);
  border: 0.75px solid var(--c-accent);
  border-radius: var(--r-tag);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
}
.case-text p {
  font-size: 1.05rem;
  color: var(--c-text);
  margin: 0;
}
.case-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--c-secondary);
}

/* ============= BANNER ============= */
.banner {
  text-align: center;
  padding: 140px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.banner h2 {
  font-family: var(--f-display);
  font-size: 100px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 32px;
}
.banner .mirror {
  display: inline-block;
  transform: scaleX(-1);
}
.banner p {
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
  color: var(--c-secondary);
}

.gradient-text {
  background: linear-gradient(136deg, #116DFE 28.73%, #F2F6F9 138.58%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============= H-SCROLL (services) ============= */
.h-scroll {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-white) 100%);
  position: relative;
}
.h-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding: 60px 0;
}
.h-intro {
  flex: 0 0 auto;
  padding: 0 80px 24px;
}
.h-intro h2 {
  font-family: var(--f-display);
  font-size: 50px;
  font-weight: 400;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.h-intro p {
  font-size: 1.1rem;
  color: var(--c-text);
  margin: 0;
}
.h-track {
  display: flex; align-items: stretch; gap: 32px;
  padding: 0 80px;
  flex: 1;
  will-change: transform;
}
.svc-card {
  flex: 0 0 380px;
  display: flex; flex-direction: column;
  background: var(--c-white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 10, 25, .06);
}
.svc-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.svc-body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
}
.svc-body h3 {
  font-family: var(--f-display);
  font-size: 25px;
  font-weight: 400;
  color: var(--c-secondary);
  margin: 0;
}
.svc-body p {
  margin: 0;
  font-size: .95rem;
  color: var(--c-text);
  flex: 1;
}
.svc-body .btn {
  align-self: flex-start;
  padding: 6px 15px;
  height: 28px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f-body);
}

/* ============= TICKER ============= */
.ticker {
  overflow: hidden;
  padding: 24px 0;
}
.ticker-light { background: var(--c-bg); color: var(--c-secondary); }
.ticker-dark  { background: var(--c-secondary); color: var(--c-bg); }
.ticker-track {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
}
.ticker-text {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: .02em;
}
.ticker-icon {
  width: clamp(20px, 3vw, 33px);
  height: clamp(24px, 3.5vw, 40px);
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 33'><path d='M26.29 24.8c-.14.01-.27.02-.4.02-.18.02-.36.02-.54.01-.6-.04-1.08-.54-1.08-1.15l-.7-14.15-.07-1.64c-.03-.6.4-1.13.99-1.21.3-.04.6-.04.9-.05.17-.01.21-.06.21-.23l-.03-.48c0-.18-.05-.23-.22-.22l-5.78.28c-.5 2.04-1 4.08-1.51 6.15l-.07-.13L13.18.88c-.05-.13-.16-.23-.3-.26-.22-.04-.43.1-.47.32-.16.63-.32 1.25-.48 1.88-.74 2.95-1.47 5.88-2.21 8.83-.01.06-.01.11.01.16.13.33.27.7.42 1.04l.31.73c.49-1.95.96-3.87 1.45-5.81l3.74 8.7 4.79 11.21c.01.05.07.09.14.08l2.4-.12 4.08-.2c.14-.01.21-.07.2-.22l-.02-.51c0-.15-.07-.2-.22-.2zM20.24 17.19l-.01.01-.05-.07-1.24-2.91c-.01-.04-.01-.09 0-.13.29-1.21.6-2.42.89-3.62.02-.08.04-.14.06-.22l.01.42z'/><path d='M16.29 19.48l-.05-.1c-.47 1.86-.94 3.72-1.4 5.55l-.02-.07-1.5-3.83-3.69-7.86C8.05 9.72 6.03 5.46 3.96 1.21c-.03-.06-.05-.09-.12-.09l-2.6.12-1.81.09c-.13 0-.18.07-.18.2l.02.5c.01.18.06.23.24.22.31-.02.6-.04.91-.04.59.04 1.06.51 1.09 1.1l.78 15.85c.02.65-.47 1.18-1.11 1.22l-.8.04c-.14.01-.21.07-.2.22l.02.48c.01.2.05.24.25.23l5.96-.29c.13-.01.13-.01.16-.14.43-2.11.86-4.22 1.31-6.33l.04.08 4.07 9.47 4.85 11.25c.04.08.08.16.15.22.06.05.13.08.2.1.24.05.48-.1.53-.34.15-.58.28-1.16.43-1.74l2.16-9.93c.01-.05.01-.11-.02-.16-.22-.56-.47-1.1-.69-1.65zm-7.86-1.25c-.32 1.47-.65 2.93-.97 4.41l-.38-7.74c.01.02.02.05.03.07.44 1.02.87 2.03 1.31 3.05.01.03.01.08.01.21z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 33'><path d='M26.29 24.8c-.14.01-.27.02-.4.02-.18.02-.36.02-.54.01-.6-.04-1.08-.54-1.08-1.15l-.7-14.15-.07-1.64c-.03-.6.4-1.13.99-1.21.3-.04.6-.04.9-.05.17-.01.21-.06.21-.23l-.03-.48c0-.18-.05-.23-.22-.22l-5.78.28c-.5 2.04-1 4.08-1.51 6.15l-.07-.13L13.18.88c-.05-.13-.16-.23-.3-.26-.22-.04-.43.1-.47.32-.16.63-.32 1.25-.48 1.88-.74 2.95-1.47 5.88-2.21 8.83-.01.06-.01.11.01.16.13.33.27.7.42 1.04l.31.73c.49-1.95.96-3.87 1.45-5.81l3.74 8.7 4.79 11.21c.01.05.07.09.14.08l2.4-.12 4.08-.2c.14-.01.21-.07.2-.22l-.02-.51c0-.15-.07-.2-.22-.2zM20.24 17.19l-.01.01-.05-.07-1.24-2.91c-.01-.04-.01-.09 0-.13.29-1.21.6-2.42.89-3.62.02-.08.04-.14.06-.22l.01.42z'/><path d='M16.29 19.48l-.05-.1c-.47 1.86-.94 3.72-1.4 5.55l-.02-.07-1.5-3.83-3.69-7.86C8.05 9.72 6.03 5.46 3.96 1.21c-.03-.06-.05-.09-.12-.09l-2.6.12-1.81.09c-.13 0-.18.07-.18.2l.02.5c.01.18.06.23.24.22.31-.02.6-.04.91-.04.59.04 1.06.51 1.09 1.1l.78 15.85c.02.65-.47 1.18-1.11 1.22l-.8.04c-.14.01-.21.07-.2.22l.02.48c.01.2.05.24.25.23l5.96-.29c.13-.01.13-.01.16-.14.43-2.11.86-4.22 1.31-6.33l.04.08 4.07 9.47 4.85 11.25c.04.08.08.16.15.22.06.05.13.08.2.1.24.05.48-.1.53-.34.15-.58.28-1.16.43-1.74l2.16-9.93c.01-.05.01-.11-.02-.16-.22-.56-.47-1.1-.69-1.65zm-7.86-1.25c-.32 1.47-.65 2.93-.97 4.41l-.38-7.74c.01.02.02.05.03.07.44 1.02.87 2.03 1.31 3.05.01.03.01.08.01.21z'/></svg>") center / contain no-repeat;
}

/* ============= ABOUT ============= */
.about {
  text-align: center;
  padding: 140px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.about h2 {
  font-family: var(--f-display);
  font-size: 100px;
  font-weight: 400;
  margin-bottom: 32px;
}
.about p {
  font-size: 1.05rem;
  max-width: 780px;
  margin: 0 auto 1em;
  text-align: left;
  color: var(--c-secondary);
}

/* ============= TEAM ============= */
.team {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.team > h2 {
  font-family: var(--f-display);
  font-size: 100px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  padding: 32px;
  background: var(--c-white);
  border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 10, 25, .04);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 10, 25, .1);
}
.team-card h3 {
  font-family: var(--f-display);
  font-size: 25px;
  font-weight: 400;
  margin: 0;
  color: var(--c-secondary);
}
.team-card .role {
  margin: 0;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
}
.team-contact {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 12px;
  font-size: .9rem;
  color: var(--c-text);
}
.team-contact a:hover { color: var(--c-primary); }

/* ============= FAQ ============= */
.faq {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq > h2 {
  grid-column: 1 / -1;
  font-family: var(--f-display);
  font-size: 80px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}
.accordion {
  display: flex; flex-direction: column; gap: 12px;
}
.accordion details {
  background: var(--c-white);
  border-radius: var(--r-card-sm);
  box-shadow: 0 4px 16px rgba(0, 10, 25, .04);
  overflow: hidden;
  transition: box-shadow .3s;
}
.accordion details[open] {
  box-shadow: 0 8px 24px rgba(0, 10, 25, .08);
}
.accordion summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-secondary);
  transition: color .2s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--c-secondary);
  border-radius: 50%;
  font-family: var(--f-body);
  font-size: 1rem; font-weight: 600;
  transition: transform .3s, background .3s, color .3s;
}
.accordion details[open] summary::after {
  content: "−";
  background: var(--c-primary);
  color: var(--c-bg);
  border-color: var(--c-primary);
}
.accordion summary:hover { color: var(--c-primary); }
.accordion details > p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--c-text);
  font-size: .95rem;
}
.accordion details > p + p { padding-top: 12px; }

.faq-cta {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  align-self: start;
}
.faq-cta h3 {
  font-family: var(--f-display);
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 24px;
}
.faq-cta p {
  font-size: 1.05rem;
  color: var(--c-text);
}

/* ============= LOCATION ============= */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1400px; margin: 0 auto;
  align-items: center;
}
.location-map,
.map-consent {
  width: 100%; height: 500px;
  border: 0; border-radius: var(--r-card);
  background: var(--c-secondary);
  position: relative;
  overflow: hidden;
}
.location-map { filter: grayscale(.3); }
.map-consent {
  display: grid; place-items: center;
  background:
    linear-gradient(rgba(0,10,25,.65), rgba(0,10,25,.65)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><rect fill='%23F2F6F9' width='200' height='200'/><path fill='%23A1C7FF' d='M0 50h200v2H0zm0 50h200v2H0zm0 50h200v2H0zm50-150v200h-2V0zm50 0v200h-2V0zm50 0v200h-2V0z'/></svg>");
  background-size: cover, 80px 80px;
  color: var(--c-bg);
  text-align: center;
}
.map-consent-overlay {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 24px;
  max-width: 420px;
}
.map-consent-overlay p { margin: 0; font-size: 1rem; line-height: 1.5; }
.map-consent-note { font-size: .85rem; opacity: .8; }
.map-consent-note a { color: var(--c-accent); text-decoration: underline; }
.map-consent.is-loaded { background: none; padding: 0; }
.map-consent.is-loaded .map-consent-overlay { display: none; }
.map-consent iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.3);
}
.location-text h2 {
  font-family: var(--f-display);
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 24px;
}
.location-text p {
  font-size: 1.1rem;
  color: var(--c-secondary);
}

/* ============= CONTACT ============= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 40px;
  max-width: 1400px; margin: 0 auto;
  background: var(--c-white);
  align-items: start;
}
.contact-form {
  display: flex; flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 10, 25, .15);
  border-radius: var(--r-tight);
  background: var(--c-bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-secondary);
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: var(--c-primary);
  background: var(--c-white);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .85rem;
  color: var(--c-text);
  cursor: pointer;
}
.check input {
  width: auto !important;
  flex: 0 0 auto;
  margin-top: 4px;
}
.check a { color: var(--c-primary); text-decoration: underline; }
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--r-tight);
  font-size: .9rem;
  display: none;
}
.form-status.is-error { display: block; background: #fde7eb; color: #9b1c2e; }
.form-status.is-success { display: block; background: #e3f6e8; color: #1b5e2a; }
.form-status.is-pending { display: block; background: var(--c-bg); color: var(--c-text); }
.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid {
  border-color: #cf2e2e;
  background: #fdf3f4;
}

.contact-info h2 {
  font-family: var(--f-display);
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.contact-grid > div {
  border-top: 1px solid rgba(0, 10, 25, .15);
  padding-top: 16px;
}
.contact-grid h3 {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-secondary);
}
.contact-grid p {
  margin: 0 0 8px;
  font-size: .95rem;
  color: var(--c-text);
}
.contact-grid a:hover { color: var(--c-primary); }

/* ============= COOKIE BANNER ============= */
.footer-link {
  background: transparent; border: 0; padding: 0;
  font: inherit; color: inherit; cursor: pointer;
  text-decoration: none;
}
.footer-link:hover { color: var(--c-accent); }

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 300;
  padding: 24px;
  display: none;
  pointer-events: none;
}
.cookie-banner[aria-hidden="false"] { display: block; pointer-events: auto; }
.cookie-banner::before {
  content: "";
  position: fixed; inset: 0;
  background: rgba(0, 10, 25, .4);
  z-index: -1;
  opacity: 0;
  transition: opacity .25s;
}
.cookie-banner[aria-hidden="false"]::before { opacity: 1; }
.cookie-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--c-white);
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 10, 25, .25);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s;
}
.cookie-banner[aria-hidden="false"] .cookie-card {
  transform: translateY(0);
  opacity: 1;
}
.cookie-card h2 {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--c-secondary);
}
.cookie-card > p {
  margin: 0 0 20px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--c-text);
}
.cookie-list {
  display: flex; flex-direction: column; gap: 8px;
  margin: 0 0 20px;
}
.cookie-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--c-bg);
  border-radius: var(--r-card-sm);
  cursor: pointer;
  transition: background .2s;
}
.cookie-row:has(input:disabled) { cursor: default; }
.cookie-row:hover:not(:has(input:disabled)) { background: rgba(17, 109, 254, .08); }
.cookie-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin: 2px 0 0 0;
  accent-color: var(--c-primary);
}
.cookie-row-text {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.cookie-row-text strong {
  font-size: .95rem;
  color: var(--c-secondary);
}
.cookie-row-text small {
  font-size: .8rem;
  color: var(--c-text);
  line-height: 1.4;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cookie-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
  height: 42px;
  font-size: .85rem;
}
.cookie-note {
  margin: 0;
  font-size: .8rem;
  color: var(--c-text);
  text-align: center;
}
.cookie-note a {
  color: var(--c-primary);
  text-decoration: underline;
}

/* ============= LEGAL SUBPAGES ============= */
.site-header--solid {
  background: var(--c-secondary);
  border-bottom: 0.75px solid rgba(255, 255, 255, 0.15);
}
.legal { padding-top: var(--header-h); }
.legal-hero {
  background: var(--c-secondary);
  color: var(--c-bg);
  padding: 80px 24px 64px;
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  margin: 0;
  color: var(--c-bg);
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-secondary);
}
.legal-body h2 {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 48px 0 16px;
  color: var(--c-secondary);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { margin: 0 0 1em; }
.legal-body ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
  list-style: disc;
}
.legal-body ul li { margin-bottom: .25em; }
.legal-body a { color: var(--c-primary); text-decoration: underline; }
.legal-body a:hover { color: var(--c-secondary); }
.legal-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 24px;
  margin: 24px 0 32px;
  padding: 24px;
  background: var(--c-white);
  border-radius: var(--r-card-sm);
  box-shadow: 0 4px 16px rgba(0, 10, 25, .04);
}
.legal-list dt { font-weight: 700; color: var(--c-secondary); }
.legal-list dd { margin: 0; color: var(--c-text); }
.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 10, 25, .1);
  font-size: .9rem;
}

/* ============= 404 PAGE ============= */
.page-404 {
  min-height: calc(100vh - var(--header-h) - 80px);
  padding: 120px 24px 80px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at top, rgba(17, 109, 254, .08), transparent 60%),
    var(--c-bg);
}
.page-404__num {
  font-family: var(--f-display);
  font-size: clamp(8rem, 24vw, 20rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 16px;
  background: linear-gradient(136deg, #116DFE 28.73%, #F2F6F9 138.58%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-404 h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--c-secondary);
}
.page-404 > p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--c-text);
}
.page-404__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--c-secondary);
  color: var(--c-bg);
  padding: 32px 40px;
  text-align: center;
}
.site-footer ul {
  display: flex; gap: 32px;
  justify-content: center;
  font-size: .85rem;
}
.site-footer a:hover { color: var(--c-accent); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
  .hdr-inner { padding: 0 32px; }
  .hero { padding: 60px 32px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .case-card { padding: 40px; gap: 32px; }
  .h-intro { padding-left: 32px; padding-right: 32px; }
  .h-track { padding-left: 32px; padding-right: 32px; }
  .svc-card { flex: 0 0 320px; }
  .faq { gap: 40px; }
  .location, .contact { grid-template-columns: 1fr; }
  .location-map { height: 360px; }
  .banner h2, .about h2, .team > h2 { font-size: 70px; }
  .faq > h2, .location-text h2, .contact-info h2 { font-size: 50px; }
}

@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .hdr-inner { padding: 0 16px; gap: 12px; }
  .hdr-tag { display: none; }
  .hdr-nav { display: none; }
  .hdr-burger { display: block; }

  .hero {
    padding: 60px 24px;
    min-height: calc(80vh - var(--header-h));
  }
  .hero h1 { font-size: 40px; line-height: 48px; }
  .hero p { font-size: 1rem; line-height: 1.5; }
  .hero-text-d { display: none; }
  .hero-text-m { display: block; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }

  .intro, .banner, .about, .team, .faq, .contact { padding: 60px 24px; }
  .intro h2 { font-size: 32px; line-height: 1.2; }
  .banner h2, .about h2, .team > h2 { font-size: 40px; }
  .faq > h2 { font-size: 36px; }
  .location-text h2, .contact-info h2 { font-size: 36px; }
  .case-text h2 { font-size: 32px; }
  .h-intro h2 { font-size: 32px; }
  .svc-body h3, .team-card h3 { font-size: 22px; }
  .faq-cta h3 { font-size: 36px; }

  .case-stack { padding: 40px 16px; }
  .case-card {
    grid-template-columns: 1fr;
    padding: 24px;
    position: relative;
    top: auto !important;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 10, 25, .06);
  }
  .case-card:nth-child(n) { top: auto; }

  .h-sticky { position: relative; height: auto; padding: 60px 0; }
  .h-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
  }
  .h-track .svc-card { scroll-snap-align: start; flex: 0 0 80%; }
  .h-intro, .h-track { padding-left: 24px; padding-right: 24px; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq-cta { position: static; margin-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

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