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

:root {
  --color-bg: #ffffff;
  --color-bg-page: #f9fafb;
  --color-text: #1f2937;
  --color-text-muted: #4b5563;
  --color-text-subtle: #9ca3af;
  --color-primary: #5856d6;
  --color-primary-hover: #4846c4;
  --color-primary-light: #eef2ff;
  --color-primary-rgb: 88, 86, 214;
  --color-accent: #ff8a80;
  --color-accent-light: #fff1f0;
  --color-link: #6366f1;
  --color-dark: #1f2937;
  --color-border: #e5e7eb;
  --color-header-bg: rgba(255, 255, 255, 0.92);
  --gradient-hero: linear-gradient(135deg, #3b41c5 0%, #5856d6 55%, #5a67d8 100%);
  --gradient-cta: linear-gradient(135deg, #3b41c5 0%, #5856d6 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 14px rgba(88, 86, 214, 0.28);
  --shadow-primary-lg: 0 6px 20px rgba(88, 86, 214, 0.35);
  --radius: 8px;
  --radius-lg: 12px;
  --header-height: 86px;
  --header-padding-top: 14px;
  --layout-width: 60%;
  --layout-padding: 0;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: var(--layout-width);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-padding);
  padding-right: var(--layout-padding);
}

/* ── Header & Navigation ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  padding-top: var(--header-padding-top);
  box-sizing: border-box;
  background: var(--color-header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), border-color var(--transition);
}

.header--transparent {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header--transparent .nav__logo,
.header--transparent .nav__link,
.header--transparent .nav__link--dropdown {
  color: #fff;
}

.header--transparent .nav__link:hover,
.header--transparent .nav__link--dropdown[aria-expanded="true"],
.header--transparent .nav__link.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header--transparent .nav__toggle span {
  background: #fff;
}

.header--scrolled {
  background: var(--color-header-bg) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--color-border) !important;
}

.header--scrolled .nav__logo,
.header--scrolled .nav__link,
.header--scrolled .nav__link--dropdown {
  color: var(--color-text);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--dropdown[aria-expanded="true"],
.header--scrolled .nav__link.is-active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.header--scrolled .nav__toggle span {
  background: var(--color-text);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-height) - var(--header-padding-top));
}

.nav__logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav__logo-icon {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.nav__toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
  display: none;
}

.nav__mobile {
  display: none;
}

.nav__menu--desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__menu--mobile {
  display: none;
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--dropdown[aria-expanded="true"],
.nav__link.is-active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.nav__dropdown-link.is-active {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.nav__item--dropdown.is-active-parent > .nav__link--dropdown {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.nav__chevron {
  transition: transform var(--transition);
}

.nav__link--dropdown[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* CTA button */

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: var(--color-primary);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  box-shadow: var(--shadow-primary);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  color: #fff;
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-primary-lg);
  text-decoration: none;
}

.nav__cta:active {
  transform: translateY(1px);
}

.nav__item--cta {
  margin-left: 8px;
}

/* ── Hero / Banner ── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

.hero--fullscreen {
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 40px) 0 clamp(40px, 7vh, 88px);
  background: url('images/hero.png') center center / cover no-repeat;
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.hero--fullscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(59, 65, 197, 0.32) 0%, rgba(0, 0, 0, 0.02) 38%, rgba(59, 65, 197, 0.42) 72%, rgba(30, 27, 75, 0.82) 100%),
    linear-gradient(90deg, rgba(30, 27, 75, 0.48) 0%, transparent 55%);
  z-index: 0;
}

.hero--fullscreen .hero__content {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 72px);
}

.hero__copy {
  flex: 1 1 auto;
  max-width: none;
  min-width: 0;
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero--fullscreen .hero__headline {
  font-size: min(3.75rem, max(0.75rem, calc(60vw / 24)));
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.045em;
  max-width: 100%;
  text-shadow: none;
}

.hero__headline-desktop {
  display: block;
}

.hero__headline-mobile {
  display: none;
}

.hero__headline-line {
  display: block;
  white-space: nowrap;
}

.hero--fullscreen .hero__lead {
  font-size: min(1.125rem, max(0.6875rem, calc(60vw / 54)));
  color: rgba(255, 255, 255, 0.8);
  max-width: none;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

.hero__lead-desktop {
  display: block;
  white-space: nowrap;
}

.hero__lead-mobile {
  display: none;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 10px;
  padding-bottom: 4px;
}

.hero--fullscreen .btn {
  min-width: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero--fullscreen .btn--primary {
  color: var(--color-primary);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 8px 32px rgba(88, 86, 214, 0.22);
}

.hero--fullscreen .btn--primary:hover {
  color: var(--color-primary-hover);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px rgba(88, 86, 214, 0.28);
}

.hero--fullscreen .btn--outline {
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero--fullscreen .btn--outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (subpages) */

.page-hero {
  padding: calc(var(--header-height) + 64px) 0 72px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.page-hero--brand { background: var(--gradient-hero); }
.page-hero--indigo { background: var(--gradient-hero); }
.page-hero--violet { background: linear-gradient(135deg, #4f46e5, #5856d6); }
.page-hero--rose   { background: linear-gradient(135deg, #5856d6, #ff8a80); }
.page-hero--teal   { background: linear-gradient(135deg, #3b41c5, #5a67d8); }
.page-hero--amber  { background: linear-gradient(135deg, #5856d6, #818cf8); }
.page-hero--slate  { background: linear-gradient(135deg, #1f2937, #4b5563); }
.page-hero--emerald { background: linear-gradient(135deg, #3b41c5, #6366f1); }
.page-hero--blue   { background: linear-gradient(135deg, #3b41c5, #5a67d8); }

/* ── Sections ── */

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-bg);
}

.section--cta {
  text-align: center;
  background: var(--color-primary-light);
}

.section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 560px;
}

.section--cta p {
  margin: 0 auto 28px;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section__eyebrow--light {
  color: var(--color-accent);
}

.section__header--left {
  text-align: left;
  max-width: 600px;
  margin-bottom: 48px;
}

.section__header.section__header--left {
  text-align: left;
}

.section__header.section__header--left p {
  margin: 0;
}

.services-intro {
  text-align: left;
  margin-bottom: 0;
}

.services-intro .section__header {
  display: block;
  max-width: none;
  text-align: left;
  margin-bottom: 0;
}

.services-intro .section__header h2 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.services-intro .section__header p {
  margin: 0;
  max-width: none;
  line-height: 1.6;
}

.section__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section__row h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

/* Service grid */

.section--services {
  padding: 100px 0;
  background: var(--color-bg);
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 18px 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: block;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.service-card__icon img {
  width: 44px;
  height: 44px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  width: 100%;
}

.service-card p {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  flex: 1;
  line-height: 1.5;
  max-width: none;
  width: 100%;
}

.service-card__link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Case grid */

.section--cases {
  padding: 100px 0;
  background: var(--color-bg-page);
}

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

.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(88, 86, 214, 0.28);
}

.case-card__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.case-card__image--netsolutions img {
  object-position: center 32%;
}

.case-card__image span {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.case-card__body {
  padding: 20px;
}

.case-card__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-card__body p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
  margin-bottom: 12px;
}

.case-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.case-card__link:hover {
  text-decoration: underline;
}

/* Process timeline */

.section--process {
  padding: 100px 0;
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  color: #fff;
}

.section--process .section__header h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section--process .section__header p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.process-timeline {
  --process-gap: 16px;
  --process-icon-size: 72px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--process-gap);
  margin-top: 64px;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  padding: 16px 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-step__num {
  display: block;
  flex-shrink: 0;
  height: 1.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.process-step__icon {
  width: var(--process-icon-size);
  height: var(--process-icon-size);
  flex-shrink: 0;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.process-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(88, 86, 214, 0.45));
}

.process-step h3 {
  flex-shrink: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1.3;
  min-height: 2.5rem;
}

.process-step > p {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: none;
  margin-bottom: 12px;
  min-height: 6.5rem;
}

.process-step__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-step__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.process-step__list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(88, 86, 214, 0.35);
  color: #c7d2fe;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Process values bar */

.process-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 72px;
  padding: 36px 32px;
  background: rgba(88, 86, 214, 0.16);
  border: 1px solid rgba(165, 180, 252, 0.25);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(199, 210, 254, 0.35),
    0 8px 32px rgba(30, 27, 75, 0.25);
}

.process-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.process-value__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 86, 214, 0.35);
  border-radius: 10px;
  color: #c7d2fe;
}

.process-value h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-value p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: none;
}

/* About section */

.section--about {
  padding: 100px 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-grid--reverse .about-grid__image {
  order: -1;
}

.about-grid__text h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-grid__text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  max-width: none;
  line-height: 1.7;
}

.about-grid__text .btn {
  margin-top: 12px;
}

.about-grid__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-intro {
  margin-bottom: 0;
}

.why-intro__features {
  margin-top: 0;
}

/* CTA Banner */

.cta-banner {
  background: var(--gradient-cta);
  padding: 72px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section__header p {
  margin: 0 auto;
}

/* Service cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9375rem;
  flex: 1;
}

.card__link {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Feature list */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features--cards .feature {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.features--cards .feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 86, 214, 0.22);
}

.feature h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Case grid (subpage alias) */

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

/* Team */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.team--solo {
  grid-template-columns: minmax(0, 240px);
}

.team-member {
  text-align: center;
}

.team-member__avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.team-member h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.875rem;
  margin: 0 auto;
}

/* Contact form */

.form {
  max-width: 560px;
  margin: 0 auto;
}

.form__group--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__feedback {
  display: none;
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  animation: formFeedbackIn 0.45s ease;
}

.form__feedback:not([hidden]) {
  display: block;
}

.form__feedback-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__feedback-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.form__feedback-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 36ch;
}

.form__feedback--success {
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #86efac;
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.12);
}

.form__feedback--success .form__feedback-icon {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.28);
}

.form__feedback--success .form__feedback-title {
  color: #14532d;
}

.form__feedback--success .form__feedback-text {
  color: #166534;
}

.form__feedback--error {
  background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%);
  border: 2px solid #fca5a5;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
  text-align: left;
  padding: 24px 20px;
}

.form__feedback--error .form__feedback-icon {
  display: none;
}

.form__feedback--error .form__feedback-title {
  font-size: 1.125rem;
  color: #991b1b;
  margin-bottom: 8px;
}

.form__feedback--error .form__feedback-text {
  font-size: 0.9375rem;
  color: #b91c1c;
  max-width: none;
}

.form--success {
  border-color: #86efac;
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.14);
}

.form--success .form__fields {
  display: none;
}

@keyframes formFeedbackIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form__group {
  margin-bottom: 20px;
}

.form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.15);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col__intro h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.two-col__intro > p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: none;
}

.page-form-section {
  background: var(--color-bg-page);
}

.page-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-content__lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-content__body {
  max-width: 720px;
}

.page-content__body p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: none;
}

.page-content__body p:last-child {
  margin-bottom: 0;
}

.page-content__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.page-content__list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.page-content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.section--process .process-outro {
  color: #fff;
}

.process-outro {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-content__list {
    grid-template-columns: 1fr;
  }
}

.page-content--wide {
  max-width: 800px;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-split h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-split p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: none;
}

@media (max-width: 768px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.form--card {
  max-width: none;
  margin: 0;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ── Buttons ── */

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  color: #fff;
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-primary-lg);
}

.btn--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.btn--white {
  color: var(--color-primary);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  color: var(--color-primary-hover);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.btn--dark {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(88, 86, 214, 0.25);
}

.btn--dark:hover {
  color: #fff;
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 8px;
}

/* ── Footer ── */

.footer.footer--dark {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: none;
}

.footer > .container {
  padding-left: var(--layout-padding);
  padding-right: var(--layout-padding);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer__cols {
  display: contents;
}

.footer--dark .footer__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer__col--brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: #fff;
}

.footer__contact li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer--dark .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer--dark .footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  border-top: 1px solid var(--color-border);
}

.footer:not(.footer--dark) {
  background: var(--color-bg-page);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding: 48px 24px;
}

.footer__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.footer__brand p {
  margin-top: 12px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 280px;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer__links h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--color-text);
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Mobile ── */

@media (max-width: 1100px) {
  .hero__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
  }

  .hero--fullscreen .btn {
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  .service-grid {
    gap: 8px;
  }

  .service-card {
    padding: 16px 10px;
  }

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

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

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }

  .process-step {
    padding: 20px 16px;
  }

  .process-step > p {
    min-height: 6.5rem;
  }

  .process-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

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

@media (max-width: 768px) {
  :root {
    --layout-width: 100%;
    --layout-padding: 24px;
    --header-height: calc(72px + env(safe-area-inset-top, 0px));
    --header-padding-top: calc(10px + env(safe-area-inset-top, 0px));
  }

  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  body.menu-open .header {
    z-index: 1100;
    background: var(--color-header-bg) !important;
    border-bottom: 1px solid var(--color-border) !important;
  }

  .nav__logo {
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav__toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: 12px;
    background: var(--color-bg-page);
    border: 1px solid var(--color-border);
  }

  .section {
    padding: 56px 0;
  }

  .section--services,
  .section--cases,
  .section--about,
  .section--process {
    padding: 56px 0;
  }

  .section-stack {
    gap: 40px;
  }

  .section h2,
  .section__header h2 {
    font-size: 1.5rem;
  }

  .services-intro .section__header h2,
  .about-grid__text h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .section__header--left,
  .section__row,
  .services-intro {
    margin-bottom: 32px;
  }

  .page-hero {
    padding: calc(var(--header-height) + 32px) 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(1.625rem, 7vw, 2.125rem);
    margin-bottom: 12px;
  }

  .page-hero p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 4px;
  }

  .page-content h2 {
    font-size: 1.5rem;
  }

  .page-content__lead {
    font-size: 1rem;
  }

  .hero--fullscreen {
    background-image: url('images/hero-mobile.jpg');
  }

  .section__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section__row .btn {
    width: 100%;
    justify-content: center;
  }

  .service-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-left: calc(-1 * var(--layout-padding));
    margin-right: calc(-1 * var(--layout-padding));
    padding: 0 var(--layout-padding) 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
    padding: 18px 14px;
  }

  .service-card h3 {
    font-size: 0.875rem;
  }

  .service-card p {
    font-size: 0.75rem;
  }

  .service-card__icon,
  .service-card__icon img {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .services-intro .section__header p {
    white-space: normal;
  }

  .hero--fullscreen .hero__content {
    padding-bottom: 4px;
  }

  .hero__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
  }

  .hero__copy {
    flex: 1 1 auto;
    max-width: 100%;
    min-width: 0;
  }

  .hero--fullscreen .hero__headline {
    font-size: min(1.375rem, max(0.75rem, calc((100vw - 3rem) / 23)));
    line-height: 1.22;
    letter-spacing: -0.024em;
    margin-bottom: 14px;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .hero__headline-desktop {
    display: none;
  }

  .hero__headline-mobile {
    display: block;
    max-width: 100%;
  }

  .hero__headline-mobile .hero__headline-line {
    display: block;
    white-space: nowrap;
    max-width: 100%;
  }

  .hero__headline-mobile .hero__headline-line + .hero__headline-line {
    margin-top: 0.2em;
  }

  .hero--fullscreen .hero__lead {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 100%;
    margin: 0 0 24px;
  }

  .hero__lead-desktop {
    display: none;
  }

  .hero__lead-mobile {
    display: block;
  }

  .hero--fullscreen {
    min-height: 100vh;
    min-height: 100svh;
    min-height: -webkit-fill-available;
    padding: calc(var(--header-height) + 40px) 0 max(6vh, env(safe-area-inset-bottom, 0px));
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-bottom: 0;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
    min-width: 0;
    padding: 14px 16px;
    font-size: 0.875rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-grid__image {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .why-intro .about-grid__image {
    order: -1;
  }

  .about-grid__text p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-grid__text .btn {
    width: 100%;
    justify-content: center;
  }

  .two-col {
    gap: 32px;
  }

  .two-col__intro h2 {
    font-size: 1.5rem;
  }

  .form--card {
    padding: 24px 20px;
  }

  .team--solo {
    justify-content: center;
  }

  .case-card__image {
    height: 200px;
  }

  .case-card__body {
    padding: 18px;
  }

  .features--cards .feature {
    padding: 20px 18px;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-banner__text h2 {
    font-size: 1.5rem;
  }

  .cta-banner__text p {
    font-size: 1rem;
    max-width: none;
  }

  .cta-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .form__feedback {
    padding: 36px 20px;
  }

  .form__feedback-title {
    font-size: 1.3125rem;
  }

  .form__feedback-text {
    font-size: 1rem;
  }

  .case-grid,
  .cases {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    text-align: center;
    padding: 18px 14px;
  }

  .process-step__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .process-step h3,
  .process-step > p {
    min-height: 0;
  }

  .process-step > p {
    font-size: 0.9375rem;
  }

  .process-step__list li {
    font-size: 0.875rem;
  }

  .process-values {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 28px;
  }

  .process-value p {
    font-size: 0.9375rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .footer > .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer__cols .footer__col:last-child {
    grid-column: 1 / -1;
  }

  .footer__col--brand {
    padding-bottom: 4px;
  }

  .footer__col--brand p {
    max-width: none;
  }

  .footer__col--contact {
    padding-top: 28px;
  }

  .footer__col h4 {
    margin-bottom: 14px;
  }

  .footer__col li {
    margin-bottom: 8px;
  }

  .footer--dark .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .nav__menu--desktop {
    display: none;
  }

  .header--transparent .nav__toggle {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
  }

  body.menu-open .header--transparent .nav__logo {
    color: var(--color-text);
  }

  body.menu-open .header--transparent .nav__toggle {
    background: var(--color-primary-light);
    border-color: transparent;
  }

  body.menu-open .header--transparent .nav__toggle span,
  body.menu-open .nav__toggle span {
    background: var(--color-primary);
  }

  body.menu-open .nav__toggle {
    position: relative;
    z-index: 2;
  }

  /* Mobil menu – cross-browser */
  .nav__mobile {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    z-index: 1040;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .nav__mobile.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .nav__mobile .nav__overlay {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(15, 23, 42, 0.65);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
  }

  @supports (backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px)) {
    .nav__mobile .nav__overlay {
      background: rgba(15, 23, 42, 0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
  }

  .nav__mobile.is-open .nav__overlay {
    opacity: 1;
  }

  .nav__drawer {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    background: var(--color-bg);
    box-sizing: border-box;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  @media (prefers-reduced-motion: reduce) {
    .nav__drawer {
      transition: none;
    }

    .nav__mobile .nav__overlay {
      transition: none;
    }
  }

  .nav__mobile.is-open .nav__drawer {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .nav__menu--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 20px max(24px, env(safe-area-inset-right, 0px)) calc(24px + env(safe-area-inset-bottom, 0px)) max(24px, env(safe-area-inset-left, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    box-sizing: border-box;
  }

  .nav__menu--mobile .nav__link {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    justify-content: space-between;
    white-space: normal;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav__menu--mobile .nav__item--dropdown.is-open > .nav__link--dropdown {
    background: var(--color-primary-light);
    color: var(--color-primary);
  }

  .nav__menu--mobile .nav__dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 8px 12px;
    margin: 0 0 4px;
    background: var(--color-bg-page);
    border-radius: var(--radius-lg);
    min-width: 0;
  }

  .nav__menu--mobile .nav__item--dropdown.is-open .nav__dropdown {
    display: block;
  }

  .nav__menu--mobile .nav__dropdown-link {
    padding: 12px 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
  }

  .nav__menu--mobile .nav__dropdown-link.is-active {
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav__menu--mobile .nav__item--cta {
    margin-top: auto;
    margin-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
  }

  .nav__menu--mobile .nav__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: var(--shadow-primary);
  }
}

@media (max-width: 480px) {
  :root {
    --layout-padding: 20px;
  }

  .hero--fullscreen .hero__headline {
    font-size: min(1.25rem, max(0.6875rem, calc((100vw - 2.5rem) / 24)));
  }

  .hero--fullscreen .hero__lead {
    font-size: 0.9375rem;
  }

  .footer > .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .section--services,
  .section--cases,
  .section--about,
  .section--process {
    padding: 48px 0;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    --process-icon-size: 56px;
  }

  .process-step {
    padding: 14px 10px 16px;
  }

  .process-step h3 {
    font-size: 0.9375rem;
    min-height: 0;
  }

  .process-step > p {
    font-size: 0.8125rem;
    min-height: 0;
  }

  .process-step__list li {
    font-size: 0.75rem;
    gap: 8px;
  }

  .process-step__list li::before {
    width: 18px;
    height: 18px;
    font-size: 0.625rem;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__cols .footer__col:last-child {
    grid-column: auto;
  }
}
