@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap");

/* =============================================
   MMTEK OY — Design System
   Impeccable | brand register
   Font: Barlow
   Color strategy: Committed — electric blue
   Theme: Dark navy
   ============================================= */

:root {
  --base:          oklch(0.15 0.035 245);
  --surface-deep:  oklch(0.12 0.032 245);
  --surface:       oklch(0.20 0.032 245);
  --surface-hi:    oklch(0.26 0.030 245);
  --border:        oklch(0.34 0.025 245);
  --border-sub:    oklch(0.25 0.025 245);

  --amber:         oklch(0.60 0.22 265);
  --amber-hover:   oklch(0.52 0.23 265);
  --amber-bg:      oklch(0.60 0.22 265 / 0.12);
  --amber-subtle:  oklch(0.60 0.22 265 / 0.22);

  --text-1:        oklch(0.95 0.015 230);
  --text-2:        oklch(0.80 0.018 232);
  --text-3:        oklch(0.58 0.018 235);
  --shadow-elev-1: 0 8px 28px oklch(0.05 0.02 245 / 0.55);

  --font: 'Barlow', sans-serif;
  --nav-h: 68px;
  --radius: 3px;
}

/* ——— Reset ——— */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-2);
  background: radial-gradient(ellipse at top, oklch(0.22 0.048 245), oklch(0.13 0.032 245) 60%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1200;
  background-color: var(--amber);
  color: var(--text-1);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.skip-link:focus-visible { top: 1rem; }

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ol, ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius);
  transition: background-color 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--amber {
  background-color: var(--amber);
  color: var(--text-1);
  border-color: var(--amber);
}
.btn--amber:hover { background-color: var(--amber-hover); border-color: var(--amber-hover); }
.btn--ghost {
  background-color: transparent;
  color: var(--text-1);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--text-2); }
.btn--dark {
  background-color: var(--amber);
  color: var(--text-1);
  border-color: var(--amber);
  flex-shrink: 0;
}
.btn--dark:hover { background-color: var(--amber-hover); border-color: var(--amber-hover); }

/* ——— Navigation ——— */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background-color: var(--surface-deep);
  border-bottom: 1px solid var(--border-sub);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  width: min(1320px, 92%);
  margin: 0 auto;
  gap: 1rem;
}
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo-img {
  height: 80px;
  width: auto;
  opacity: 0.92;
}
.nav__logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.nav__logo-text span { color: var(--amber); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.18s;
}
.nav__link:hover,
.nav__link.active,
.nav__link[aria-current='page'] { color: var(--text-1); }

.nav__cta { margin-left: 1.25rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-1);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    oklch(0.15 0.035 245) 38%,
    oklch(0.15 0.035 245 / 0.50) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
  width: min(1320px, 92%);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}
.hero__logo_ca{
  width: min(1320px, 92%);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}
.hero__logo {
  position: absolute;
  top: 120px;
  align-items: right;
  height: 150px;
  width: auto;
  z-index: 2;
  opacity: .9;
}
@media (max-width: 768px) {
  .hero__logo {
    height: 80px;
    right: 6%;
    top: 80px;
  }
}
.hero__copy { max-width: 580px; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero__copy h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__specs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}
.hero__specs li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}
.hero__specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background-color: var(--amber);
  border-radius: 1px;
}
.hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.hero__media {
  position: relative;
  height: min(580px, 58vh);
  border-radius: 2px;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--amber-subtle);
  border-radius: 2px;
  pointer-events: none;
}
.hero__media-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 120px;
  width: auto;
  z-index: 1;
  opacity: 1;
  justify-content: right;
}

@media (max-width: 1379px) {
  .hero__media-logo {
    display: none;
  }
}

/* ——— Trust bar ——— */
.trustbar {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border-sub);
  padding: 1.25rem 0;
}
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  width: min(1320px, 92%);
  margin: 0 auto;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.trustbar__item i { color: var(--amber); font-size: 0.9rem; }

/* ——— Section labels / headings ——— */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 58ch;
}

/* ——— Pitch / About ——— */
.pitch {
  padding: 7rem 0;
}
.pitch__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  width: min(1320px, 92%);
  margin: 0 auto;
}
.pitch__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 62ch;
}
.pitch__body p + p { margin-top: 1.25rem; }
.pitch__body strong { color: var(--text-1); font-weight: 600; }

.pitch__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border-sub);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  background-color: var(--surface);
  padding: 1.75rem;
}
.fact__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.fact__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.2;
}

/* ——— Services ——— */
.services {
  padding: 7rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
}
.services__inner {
  width: min(1320px, 92%);
  margin: 0 auto;
}
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 0;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-sub);
}
.service-row:nth-child(odd) { padding-right: 3.5rem; border-right: 1px solid var(--border-sub); }
.service-row:nth-child(even) { padding-left: 3.5rem; }
.service-row:nth-last-child(-n+2) { border-bottom: none; }

.service-row__num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--amber);
  padding-top: 0.15rem;
}
.service-row__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.service-row__desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  max-width: 40ch;
}
.service-row__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  transition: color 0.18s;
}
.service-row__link:hover { color: var(--amber-hover); }

/* ——— Projects / References ——— */
.projects { padding: 7rem 0; }
.projects__inner {
  width: min(1320px, 92%);
  margin: 0 auto;
}
.projects__head { margin-bottom: 3.5rem; }

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  border-top: 1px solid var(--border-sub);
}
.project-item:last-child { border-bottom: 1px solid var(--border-sub); }
.project-item:nth-child(even) .project-item__text { order: 2; }
.project-item:nth-child(even) .project-item__img  { order: 1; }

.project-item__text {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-item__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.project-item__title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.project-item__desc {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 50ch;
  margin-bottom: 1.5rem;
}
.project-item__client {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-item__img {
  overflow: hidden;
  background-color: var(--surface);
}
.project-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ——— Partners carousel ——— */
.partners {
  background-color: var(--surface);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 2rem 0 2.25rem;
}
.partners__header {
  width: min(1320px, 92%);
  margin: 0 auto 1.5rem;
}
.partners__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.partners__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 3.5rem;
  border-right: 1px solid var(--border-sub);
  cursor: default;
  user-select: none;
}
.partner-item__logo {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity 0.25s;
  display: block;
}
.partner-item.hovered .partner-item__logo { opacity: 1; }

/* ——— Partners tooltip ——— */
.partners__tooltip {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s;
  background-color: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  width: 260px;
  box-shadow: var(--shadow-elev-1);
}
.partners__tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.partners__tooltip-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.partners__tooltip-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ——— CTA strip ——— */
.cta-strip {
  background-color: var(--surface);
  border-top: 1px solid var(--border-sub);
  padding: 5rem 0;
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  width: min(1320px, 92%);
  margin: 0 auto;
}
.cta-strip__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  line-height: 1.1;
}
.cta-strip__sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  margin-top: 0.5rem;
}

/* ——— Footer ——— */
footer {
  background-color: var(--surface-deep);
  border-top: 1px solid var(--border-sub);
  padding: 5rem 0 2.5rem;
}
.footer__inner { 
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
  gap: 3rem;
  width: min(1320px, 92%);
  margin: 0 auto;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-sub);
}
.footer__brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 0.75rem;
}
.footer__brand-sub {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 28ch;
  margin-bottom: 1.25rem;
}
.footer__reg {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.03em;
}

.footer__heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.15s;
}
.footer__link:hover { color: var(--text-1); }

.footer__contacts { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.55;
}
.footer__contact strong { display: block; color: var(--text-2); font-weight: 600; }

.footer__rating {
  width: min(100%, 280px);
}
.footer__rating img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin-top: 1.5rem;
  opacity: 0.92;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  width: min(1320px, 92%);
  margin: 0 auto;
}
.footer__copy { font-size: 0.78rem; color: var(--text-3); }

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-sub);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.15 0.035 245 / 0) 0%, var(--base) 85%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 92%);
  margin: 0 auto;
  max-width: 740px;
}
.page-hero__inner h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.page-hero__inner .lead {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 58ch;
  margin-bottom: 2rem;
}
.page-hero__list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.page-hero__list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}
.page-hero__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background-color: var(--amber);
  border-radius: 1px;
}
.page-hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ——— Content split ——— */
.content-split {
  padding: 6rem 0;
}
.content-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  width: min(1320px, 92%);
  margin: 0 auto;
}
.content-split__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 62ch;
}
.content-split__body p + p { margin-top: 1.25rem; }
.content-split__body strong { color: var(--text-1); font-weight: 600; }

/* ——— Subpage image showcase ——— */
.subpage-showcase {
  padding: 0 0 5.5rem;
}
.subpage-showcase__inner {
  width: min(1320px, 92%);
  margin: 0 auto;
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--surface);
}
.subpage-showcase__inner img {
  width: 100%;
  height: clamp(240px, 40vw, 460px);
  object-fit: cover;
}

/* ——— Service detail list (inner pages) ——— */
.service-details {
  padding: 6rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border-sub);
}
.service-details__inner {
  width: min(1320px, 92%);
  margin: 0 auto;
}
.service-details__head { margin-bottom: 3.5rem; }
.service-details__list { display: flex; flex-direction: column; }
.sd-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border-sub);
}
.sd-item:last-child { border-bottom: 1px solid var(--border-sub); }
.sd-item__num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber);
  padding-top: 0.2rem;
}
.sd-item__title {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.4rem;
}
.sd-item__desc {
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 56ch;
}

/* ——— Contact page ——— */
.contact-page {
  padding: 6rem 0;
}
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  width: min(1320px, 92%);
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info__item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.contact-info__value { font-size: 0.975rem; color: var(--text-2); line-height: 1.65; }
.contact-info__value strong { color: var(--text-1); font-weight: 600; }

.contact-form-card {
  background-color: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  padding: 2.75rem;
}
.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-input {
  background-color: var(--surface-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.925rem;
  color: var(--text-1);
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
  resize: vertical;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus { border-color: var(--amber); }
.form-input:focus-visible { box-shadow: 0 0 0 3px var(--amber-bg); }
.form-submit { margin-top: 0.5rem; }

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; padding: 4rem 0 3rem; }
  .hero__media { display: none; }
  .hero__copy { max-width: none; }
  .pitch__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .services__head { grid-template-columns: 1fr; gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .content-split__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 860px) {
  .services__list { grid-template-columns: 1fr; }
  .service-row:nth-child(odd) { padding-right: 0; border-right: none; }
  .service-row:nth-child(even) { padding-left: 0; }
  .service-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-sub); }
  .service-row:last-child { border-bottom: none; }

  .project-item { grid-template-columns: 1fr; min-height: auto; }
  .project-item__img { min-height: 240px; order: -1 !important; }
  .project-item__text { order: 0 !important; }

  .cta-strip__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-page__inner { grid-template-columns: 1fr; }
  .pitch__facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__logo-img { height: 50px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--surface-deep);
    border-bottom: 1px solid var(--border-sub);
    padding: 1.5rem 4%;
    gap: 0;
    display: none;
    z-index: 800;
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: 0.85rem 0; width: 100%; font-size: 1rem; border-bottom: 1px solid var(--border-sub); }
  .nav__link:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .trustbar__inner { gap: 1.25rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .sd-item { grid-template-columns: 2.5rem 1fr; }
  .sd-item:nth-child(3) { display: none; }
}

@media (max-width: 500px) {
  .hero__copy h1 { letter-spacing: -0.02em; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn, .page-hero__actions .btn { width: 100%; justify-content: center; }
  .pitch__facts { grid-template-columns: 1fr; }
  .project-item__text { padding: 2rem; }
}
