@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/montserrat-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/montserrat-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/montserrat-600.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/montserrat-700.ttf") format("truetype");
}

:root {
  --navy-950: #080f20;
  --navy-900: #0f172a;
  --navy-800: #17233b;
  --navy-700: #243451;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --ink: #111827;
  --muted: #5f6b7c;
  --line: #dbe2ea;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --success: #0f766e;
  --shadow-sm: 0 8px 26px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.16);
  --container: 1180px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Montserrat", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: -0.125em;
}

.svg-icon-lucide {
  fill: none;
  stroke: currentColor;
}

.svg-icon-brand {
  fill: currentColor;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--surface);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 15, 32, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 154px;
  height: auto;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  padding: 29px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue-500);
  content: "";
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="true"] {
  color: #ffffff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--blue-500);
  background: var(--blue-600);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: transparent;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-v2 {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-v2::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 32, 0.98) 0%, rgba(8, 15, 32, 0.88) 46%, rgba(8, 15, 32, 0.3) 100%),
    url("./img/card11.webp") center right / cover no-repeat;
  content: "";
}

.hero-v2::after {
  position: absolute;
  right: 7vw;
  bottom: -1px;
  width: min(34vw, 480px);
  height: 6px;
  background: var(--blue-500);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 170px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--blue-500);
  content: "";
}

.hero-v2 h1 {
  color: #ffffff;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1d4ed8;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: #ffffff;
  color: var(--navy-900);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 22px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 1.1rem;
}

.trust-icon .svg-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--blue-600);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-navy {
  background: var(--navy-900);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}

.section-head p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.section-head-light h2 {
  color: #ffffff;
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.65);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.service-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--navy-900);
}

.quote-band {
  padding: 72px 0;
  background: var(--surface-soft);
}

.quote-band blockquote {
  max-width: 900px;
  margin: 0 auto;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 48px;
}

.growth-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius);
}

.growth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(8, 15, 32, 0.7));
  content: "";
}

.growth-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.growth-content > h2 {
  color: #ffffff;
}

.growth-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.growth-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.growth-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.growth-item .svg-icon {
  color: #93c5fd;
  font-size: 1.35rem;
}

.growth-item h3 {
  color: #ffffff;
}

.growth-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.project-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-700);
  background: var(--navy-950);
}

.project-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top;
  transition: transform 300ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.02);
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.project-meta {
  margin-bottom: 12px;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.45rem;
}

.project-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.project-card .text-link {
  margin-top: auto;
  color: #93c5fd;
}

.project-card .text-link:hover,
.project-card .text-link:focus-visible {
  color: #ffffff;
}

.team-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.team-copy p {
  max-width: 600px;
}

.team-values {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.team-values li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--navy-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.team-values .svg-icon {
  margin-top: 5px;
  color: var(--blue-600);
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 18px;
}

.person-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.person-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.person-card-content {
  flex: 1;
  padding: 20px;
}

.person-card-content h3 {
  margin-bottom: 4px;
}

.person-card-content p {
  margin-bottom: 0;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-card-featured {
  border-color: var(--blue-600);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-600);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.35rem;
}

.price-card-featured h3,
.price-card-featured .price {
  color: #ffffff;
}

.price {
  margin: 14px 0 24px;
  color: var(--navy-900);
  font-size: 2.2rem;
  font-weight: 700;
}

.price small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.price-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-list .svg-icon {
  margin-top: 4px;
  color: var(--success);
}

.price-card-featured .price-list li,
.price-card-featured .price small {
  color: rgba(255, 255, 255, 0.68);
}

.price-card-featured .price-list .svg-icon {
  color: #5eead4;
}

.price-card .button {
  margin-top: auto;
}

.responsive-showcase {
  overflow: hidden;
  background: var(--navy-950);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 48px;
  min-height: 500px;
}

.showcase-copy h2 {
  color: #ffffff;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.65);
}

.showcase-image {
  align-self: center;
}

.showcase-image img {
  width: 100%;
  height: auto;
}

.tech-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-700);
  text-align: center;
}

.tech-row .svg-icon {
  font-size: 2rem;
}

.legal-hero {
  padding: 168px 0 76px;
  background: var(--navy-950);
}

.legal-hero-inner {
  max-width: var(--container);
}

.legal-hero .eyebrow {
  color: #93c5fd;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.legal-section {
  padding: 88px 0 104px;
  background: var(--surface);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: 72px;
}

.legal-sidebar {
  position: sticky;
  top: 116px;
  align-self: start;
  max-height: calc(100vh - 148px);
  overflow-y: auto;
  padding-right: 24px;
}

.legal-sidebar .eyebrow {
  margin-bottom: 18px;
}

.legal-nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--blue-600);
}

.legal-content {
  min-width: 0;
}

.legal-intro {
  margin-bottom: 6px;
  color: var(--navy-700);
  font-size: 1.08rem;
  font-weight: 500;
}

.legal-content section {
  padding: 34px 0;
  scroll-margin-top: 104px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 0.94rem;
  line-height: 1.82;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content strong {
  color: var(--navy-900);
}

.legal-content a {
  color: var(--blue-600);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.legal-facts div {
  padding: 18px;
  background: var(--surface-soft);
}

.legal-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.legal-facts dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--blue-600);
}

.contact-band::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  opacity: 0.18;
  background: url("./img/background.webp") center / cover;
  content: "";
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 78px 0;
}

.contact-copy h2 {
  margin-bottom: 14px;
  color: #ffffff;
}

.contact-copy p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
}

.contact-details a,
.contact-details span {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-details .svg-icon {
  margin-right: 8px;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  padding: 58px 0 42px;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 0.85rem;
}

.footer-column ul {
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-column li {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}

:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    transform: translateY(-130%);
    visibility: hidden;
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-v2 {
    min-height: 700px;
  }

  .hero-v2::before {
    background:
      linear-gradient(90deg, rgba(8, 15, 32, 0.98), rgba(8, 15, 32, 0.78)),
      url("./img/card11.webp") center / cover no-repeat;
  }

  .trust-grid,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  }

  .service-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .growth-layout,
  .team-layout,
  .showcase-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    gap: 48px;
  }

  .legal-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .legal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .growth-image {
    min-height: 430px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-layout {
    padding-top: 80px;
  }

  .showcase-image {
    max-width: 780px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-shell {
    min-height: 74px;
    gap: 14px;
  }

  .brand img {
    width: 128px;
  }

  .nav-menu {
    top: 74px;
  }

  .language-switcher {
    gap: 8px;
  }

  .hero-v2 {
    min-height: 700px;
  }

  .hero-content {
    padding: 132px 0 72px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-item {
    min-height: 96px;
    padding: 18px;
  }

  .section {
    padding: 76px 0;
  }

  .legal-hero {
    padding: 132px 0 58px;
  }

  .legal-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .legal-section {
    padding: 58px 0 72px;
  }

  .legal-layout {
    gap: 38px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    padding: 28px 0;
  }

  .legal-facts {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 34px;
  }

  .service-card {
    display: flex;
  }

  .service-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .growth-layout {
    gap: 32px;
  }

  .growth-image {
    min-height: 340px;
  }

  .growth-item {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-card-body {
    padding: 22px;
  }

  .team-layout {
    gap: 40px;
  }

  .team-cards {
    gap: 12px;
  }

  .person-card-content {
    padding: 16px;
  }

  .person-card-content h3 {
    font-size: 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 28px 24px;
  }

  .showcase-layout {
    min-height: auto;
    gap: 20px;
    padding-top: 70px;
  }

  .tech-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 64px 0;
  }

  .contact-layout .button {
    width: auto;
  }

  .contact-band::after {
    width: 100%;
    opacity: 0.08;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
