:root {
  --am-red: #c60011;
  --am-red-dark: #a9000e;
  --am-red-soft: #fff1f2;
  --am-ink: #11161d;
  --am-muted: #66707b;
  --am-line: #e7ebef;
  --am-mist: #f4f7f9;
  --am-white: #fff;
  --am-shadow: 0 18px 60px rgba(17, 22, 29, .10);
  --am-shell: min(1440px, calc(100% - 96px));
  --am-radius: 18px;
  --am-header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--am-white);
  color: var(--am-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus,
.am-skip-link:focus {
  clip: auto !important;
  height: auto;
  width: auto;
  overflow: visible;
}

.am-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--am-ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
}
.am-skip-link:focus { transform: translateY(0); }

.am-shell { width: var(--am-shell); margin-inline: auto; }

/* Header */
.am-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--am-header-height);
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(226,231,236,.86);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.am-header.is-scrolled { box-shadow: 0 8px 30px rgba(17,22,29,.08); }
.am-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: 30px;
}
.am-brand__link { display: inline-flex; align-items: center; text-decoration: none; }
.am-brand__image,
.custom-logo { width: 156px; height: auto; display: block; }
.custom-logo-link { display: inline-flex; }

.am-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.am-nav__list > li { margin: 0; }
.am-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #202832;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  text-decoration: none;
}
.am-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--am-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.am-nav__list a:hover::after,
.am-nav__list a:focus-visible::after,
.am-nav__list .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.am-header__actions { display: flex; align-items: center; gap: 12px; }

.am-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.am-button:hover { transform: translateY(-2px); }
.am-button:focus-visible { outline: 3px solid rgba(198,0,17,.22); outline-offset: 3px; }
.am-button--primary {
  background: linear-gradient(135deg, #d10719 0%, var(--am-red-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(198,0,17,.22);
}
.am-button--primary:hover { box-shadow: 0 18px 36px rgba(198,0,17,.28); }
.am-button--secondary {
  background: rgba(255,255,255,.8);
  color: var(--am-ink);
  border-color: rgba(198,0,17,.55);
  box-shadow: 0 10px 28px rgba(17,22,29,.05);
  backdrop-filter: blur(8px);
}
.am-button--small { min-height: 48px; padding-inline: 20px; }

.am-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--am-line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}
.am-menu-toggle__line { width: 20px; height: 2px; border-radius: 99px; background: var(--am-ink); transition: transform .2s ease; }
.am-menu-toggle[aria-expanded="true"] .am-menu-toggle__line:first-of-type { transform: translateY(4.5px) rotate(45deg); }
.am-menu-toggle[aria-expanded="true"] .am-menu-toggle__line:last-of-type { transform: translateY(-4.5px) rotate(-45deg); }
.am-mobile-panel { position: fixed; inset: var(--am-header-height) 0 auto; background: rgba(255,255,255,.98); border-top: 1px solid var(--am-line); box-shadow: 0 22px 50px rgba(17,22,29,.12); }
.am-mobile-panel[hidden] { display: none; }
.am-mobile-panel__inner { padding-block: 26px 32px; }
.am-nav--mobile .am-nav__list { display: grid; justify-content: stretch; gap: 2px; }
.am-nav--mobile .am-nav__list a { min-height: 54px; font-size: 20px; border-bottom: 1px solid #eef1f4; }
.am-nav--mobile .am-nav__list a::after { display: none; }
.am-mobile-panel__cta { width: 100%; margin-top: 22px; }
.am-menu-open { overflow: hidden; }

/* Hero */
.am-main { overflow: hidden; }
.am-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--am-header-height));
  min-height: 690px;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 70% 26%, rgba(203,229,244,.72) 0 10%, rgba(203,229,244,0) 34%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 46%, #f8fbfd 68%, #edf5fa 100%);
}
.am-hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,0) 55%),
    radial-gradient(circle at 96% 12%, rgba(198,0,17,.08), transparent 20%);
  pointer-events: none;
}
.am-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 20px;
  min-height: 690px;
  padding-block: 62px 70px;
}
.am-hero__content { position: relative; z-index: 7; max-width: 690px; padding-left: clamp(0px, 1.2vw, 18px); }
.am-eyebrow {
  margin: 0 0 18px;
  color: var(--am-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
}
.am-hero__title { margin: 0; font-size: clamp(58px, 5.55vw, 92px); line-height: .96; letter-spacing: -.058em; }
.am-hero__title span { display: block; }
.am-hero__title-strong { font-weight: 820; color: #0d1117; }
.am-hero__title-light { margin-top: 9px; font-weight: 350; color: #2d343c; }
.am-hero__lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: #545f6b;
  font-size: clamp(17px, 1.38vw, 21px);
  line-height: 1.55;
  letter-spacing: -.015em;
}
.am-hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.am-hero__proof {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: #5d6772;
  font-size: 14px;
  font-weight: 650;
}
.am-hero__proof li { display: inline-flex; align-items: center; gap: 9px; }
.am-proof-icon {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 21px;
  border-radius: 50%;
  background: var(--am-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.am-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 570px;
  margin-right: min(-3vw, -18px);
  overflow: visible;
}
.am-hero__visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 78%;
  aspect-ratio: 1;
  right: -12%;
  top: 1%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.96) 0 20%, rgba(216,235,246,.66) 44%, rgba(216,235,246,0) 70%);
  filter: blur(4px);
}
.am-cloud { position: absolute; z-index: 0; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.am-cloud--one {
  width: 500px; height: 180px; right: -55px; bottom: 64px;
  background:
    radial-gradient(circle at 17% 62%, rgba(255,255,255,.99) 0 17%, transparent 18%),
    radial-gradient(circle at 33% 40%, rgba(255,255,255,.99) 0 27%, transparent 28%),
    radial-gradient(circle at 55% 55%, rgba(255,255,255,.98) 0 26%, transparent 27%),
    radial-gradient(circle at 78% 44%, rgba(255,255,255,.99) 0 29%, transparent 30%),
    radial-gradient(circle at 92% 66%, rgba(255,255,255,.99) 0 20%, transparent 21%);
  opacity: .96;
}
.am-cloud--two {
  width: 360px; height: 150px; right: 220px; top: 48px;
  background:
    radial-gradient(circle at 22% 60%, rgba(255,255,255,.86) 0 24%, transparent 25%),
    radial-gradient(circle at 48% 42%, rgba(255,255,255,.88) 0 32%, transparent 33%),
    radial-gradient(circle at 75% 58%, rgba(255,255,255,.8) 0 28%, transparent 29%);
  opacity: .72;
}

.am-server-field {
  position: absolute;
  z-index: 1;
  right: -46px;
  bottom: 72px;
  width: 360px;
  height: 390px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  perspective: 900px;
  filter: drop-shadow(0 20px 40px rgba(12,20,28,.18));
}
.am-server-rack {
  position: relative;
  flex: 1;
  border: 1px solid rgba(77,103,124,.34);
  border-radius: 6px 6px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14), transparent 22% 78%, rgba(0,0,0,.16)),
    linear-gradient(180deg, #354654 0%, #1b2833 13%, #18232d 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.025), 0 14px 28px rgba(27,44,56,.18);
  transform: rotateY(-7deg);
  overflow: hidden;
}
.am-server-rack::before {
  content: "";
  position: absolute;
  inset: 10px 8px;
  background: repeating-linear-gradient(180deg, rgba(5,10,14,.88) 0 13px, rgba(72,94,108,.50) 14px 15px, rgba(5,10,14,.84) 16px 26px);
  border-radius: 2px;
}
.am-server-rack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 28% 100%);
  pointer-events: none;
}
.am-server-rack--one { height: 66%; opacity: .77; }
.am-server-rack--two { height: 84%; }
.am-server-rack--three { height: 100%; }
.am-server-rack span {
  position: absolute;
  z-index: 2;
  right: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff2739;
  box-shadow: 0 0 8px #ff0018, 0 0 16px rgba(255,0,24,.65);
}
.am-server-rack span:nth-child(1) { top: 15%; }
.am-server-rack span:nth-child(2) { top: 31%; }
.am-server-rack span:nth-child(3) { top: 49%; }
.am-server-rack span:nth-child(4) { top: 66%; }
.am-server-rack span:nth-child(5) { top: 82%; }

.am-speed-lines { position: absolute; z-index: 2; left: 5%; top: 43%; width: 46%; height: 120px; transform: rotate(-6deg); opacity: .7; }
.am-speed-lines span { position: absolute; left: 0; height: 2px; border-radius: 99px; background: linear-gradient(90deg, transparent, rgba(198,0,17,.52), transparent); }
.am-speed-lines span:nth-child(1) { width: 100%; top: 12px; }
.am-speed-lines span:nth-child(2) { width: 75%; top: 48px; left: 9%; }
.am-speed-lines span:nth-child(3) { width: 58%; top: 82px; left: 18%; }

.am-hero__turtle {
  position: absolute;
  z-index: 4;
  width: min(66%, 620px);
  max-width: none;
  left: 0;
  top: 19%;
  filter: drop-shadow(0 18px 22px rgba(47,49,47,.16));
  transform: rotate(-1.5deg);
  animation: am-float 6s ease-in-out infinite;
}
@keyframes am-float { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-10px) rotate(-.3deg); } }

.am-hero__scribble {
  position: absolute;
  z-index: 5;
  left: 30%;
  bottom: 18%;
  display: grid;
  transform: rotate(-6deg);
  color: #161d24;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.03;
  text-shadow: 0 1px 0 rgba(255,255,255,.9);
}
.am-hero__scribble i { display: block; width: 116px; height: 3px; margin-top: 9px; background: var(--am-red); transform: rotate(-3deg); border-radius: 99px; }
.am-hero__microcopy {
  position: absolute;
  z-index: 5;
  right: -4px;
  bottom: 13%;
  display: grid;
  gap: 3px;
  color: #68727d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
}
.am-hero__microcopy i { width: 40px; height: 2px; background: var(--am-red); margin-top: 8px; }
.am-hero__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,0,17,.18), transparent);
}



/* Services – Iteration 0.2 */
.am-services {
  position: relative;
  background:
    radial-gradient(circle at 82% 8%, rgba(198,0,17,.035), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  padding-block: clamp(76px, 8vw, 118px) clamp(82px, 8vw, 124px);
}
.am-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1320px, 82vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(55,68,80,.12), transparent);
}
.am-services__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.am-section-kicker {
  margin: 0 0 12px;
  color: var(--am-red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.25;
}
.am-section-title {
  margin: 0;
  color: #10151b;
  font-size: clamp(40px, 4.1vw, 66px);
  font-weight: 790;
  letter-spacing: -.055em;
  line-height: .98;
}
.am-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--am-red);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}
.am-text-link span:last-child { transition: transform .2s ease; }
.am-text-link:hover span:last-child { transform: translateX(4px); }

.am-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 22px);
}
.am-service-card {
  position: relative;
  min-width: 0;
  scroll-margin-top: calc(var(--am-header-height) + 26px);
}
.am-service-card__link {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e6ebef;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 38px rgba(20,32,42,.07);
  color: inherit;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.am-service-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(198,0,17,0);
  pointer-events: none;
  transition: box-shadow .3s ease;
}
.am-service-card__link:hover,
.am-service-card__link:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(198,0,17,.28);
  box-shadow: 0 24px 58px rgba(20,32,42,.14);
  outline: none;
}
.am-service-card__link:hover::after,
.am-service-card__link:focus-visible::after { box-shadow: inset 0 0 0 2px rgba(198,0,17,.82); }
.am-service-card__media {
  position: relative;
  aspect-ratio: 1.55 / 1;
  margin: 0;
  overflow: hidden;
  background: #edf3f7;
}
.am-service-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.am-service-card__link:hover .am-service-card__media img { transform: scale(1.055); filter: saturate(1.08) contrast(1.02); }
.am-service-card__shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(9,17,24,.20));
  pointer-events: none;
}
.am-service-card__number {
  position: absolute;
  top: 13px;
  right: 14px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}
.am-service-card__body {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 11px;
  padding: 19px 17px 20px;
  min-height: 142px;
}
.am-service-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 12px;
  background: var(--am-red-soft);
  color: var(--am-red);
}
.am-service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.am-service-card__copy { min-width: 0; align-self: start; }
.am-service-card__copy h3 {
  margin: 0 0 7px;
  color: #111820;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.am-service-card__copy p {
  margin: 0;
  color: #68737e;
  font-size: 13.5px;
  line-height: 1.42;
}
.am-service-card__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  align-self: end;
  border: 1px solid #e4e9ed;
  border-radius: 50%;
  background: #fff;
  color: var(--am-red);
  font-size: 17px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.am-service-card__link:hover .am-service-card__arrow { background: var(--am-red); color: #fff; transform: translateX(2px); }
.am-services__hint { display: none; }
.am-iteration-edge { min-height: 42px; background: #fff; }
.am-iteration-edge span { display: block; height: 1px; background: linear-gradient(90deg, transparent, #edf0f3 20% 80%, transparent); }


/* Trust / benefits – Iteration 0.3 */
.am-trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 82px 76px;
  background:
    radial-gradient(circle at 8% 12%, rgba(198,0,17,.045), transparent 24%),
    linear-gradient(180deg, #fbfcfd 0%, #f5f8fa 100%);
  border-top: 1px solid #edf0f3;
}
.am-trust::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -120px;
  top: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(198,0,17,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(198,0,17,.018), 0 0 0 140px rgba(198,0,17,.012);
}
.am-trust__gridline {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .4;
  background-image:
    linear-gradient(rgba(17,22,29,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,22,29,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}
.am-trust__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
  margin-bottom: 34px;
}
.am-trust__heading .am-section-title { max-width: 820px; }
.am-trust__intro {
  margin: 0 0 5px;
  color: #65707a;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.58;
}
.am-trust__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.am-trust-card {
  position: relative;
  min-height: 300px;
  padding: 22px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(223,228,233,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(17,22,29,.055);
  backdrop-filter: blur(10px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.am-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198,0,17,.22);
  box-shadow: 0 22px 54px rgba(17,22,29,.09);
}
.am-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--am-red), rgba(198,0,17,.06) 72%, transparent);
}
.am-trust-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.am-trust-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--am-red);
  background: linear-gradient(145deg, #fff, #fff2f3);
  border: 1px solid rgba(198,0,17,.12);
  box-shadow: 0 10px 26px rgba(198,0,17,.08);
}
.am-trust-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.am-trust-card--performance .am-trust-card__icon svg { fill: none; }
.am-trust-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-inline: 10px;
  border-radius: 999px;
  color: #8c949c;
  background: #f2f5f7;
  border: 1px solid #e7ebee;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}
.am-trust-card__visual {
  position: relative;
  height: 68px;
  margin: 22px -2px 18px;
  display: flex;
  align-items: end;
  gap: 7px;
  overflow: hidden;
}
.am-trust-card__visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: #e7ebee;
}
.am-trust-card__visual span {
  position: relative;
  z-index: 1;
  width: 9px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #ef4050, var(--am-red));
  box-shadow: 0 5px 16px rgba(198,0,17,.16);
}
.am-trust-card__visual span:nth-child(1) { height: 20px; opacity: .42; }
.am-trust-card__visual span:nth-child(2) { height: 34px; opacity: .62; }
.am-trust-card__visual span:nth-child(3) { height: 25px; opacity: .52; }
.am-trust-card__visual span:nth-child(4) { height: 49px; }
.am-trust-card__visual i {
  position: absolute;
  left: 3px;
  right: -8px;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, rgba(198,0,17,.22), var(--am-red) 60%, rgba(198,0,17,.06));
  transform: rotate(-7deg);
  transform-origin: left center;
  box-shadow: 0 0 16px rgba(198,0,17,.18);
}
.am-trust-card--security .am-trust-card__visual span:nth-child(1) { height: 38px; }
.am-trust-card--security .am-trust-card__visual span:nth-child(2) { height: 48px; }
.am-trust-card--security .am-trust-card__visual span:nth-child(3) { height: 41px; }
.am-trust-card--security .am-trust-card__visual span:nth-child(4) { height: 53px; }
.am-trust-card--security .am-trust-card__visual i { transform: rotate(-2deg); top: 24px; }
.am-trust-card--support .am-trust-card__visual span { border-radius: 50%; width: 13px; height: 13px !important; margin-bottom: 20px; }
.am-trust-card--support .am-trust-card__visual span:nth-child(1) { opacity: .35; }
.am-trust-card--support .am-trust-card__visual span:nth-child(2) { opacity: .55; }
.am-trust-card--support .am-trust-card__visual span:nth-child(3) { opacity: .75; }
.am-trust-card--support .am-trust-card__visual i { top: 34px; transform: rotate(0); }
.am-trust-card__copy { position: relative; z-index: 2; }
.am-trust-card__copy h3 {
  margin: 0 0 9px;
  color: #151b22;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.am-trust-card__copy p {
  margin: 0;
  color: #6b7580;
  font-size: 13.5px;
  line-height: 1.52;
}
.am-trust__signal {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  color: #7c858e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}
.am-trust__signal-line {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, #eceff2, #d6dce1 50%, #eceff2);
}
.am-trust__signal-line i {
  position: absolute;
  left: 58%;
  top: 50%;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--am-red), transparent);
  transform: translate(-50%,-50%);
}
.am-trust__signal-state { color: #38434d; }
.am-trust__signal-state i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #30a46c;
  box-shadow: 0 0 0 4px rgba(48,164,108,.10);
}


/* Infrastructure / SLA showcase – Iteration 0.4 */
.am-infra {
  position: relative;
  padding-block: clamp(82px, 8vw, 124px) clamp(72px, 7.3vw, 112px);
  background:
    radial-gradient(circle at 16% 0%, rgba(198,0,17,.042), transparent 30%),
    linear-gradient(180deg, #f4f7f9 0%, #ffffff 100%);
  border-top: 1px solid #e8edf1;
}
.am-infra__panel {
  position: relative;
  min-height: clamp(620px, 51vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: #090f15;
  box-shadow: 0 34px 90px rgba(7,13,20,.22);
  isolation: isolate;
}
.am-infra__image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}
.am-infra__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,10,15,.98) 0%, rgba(5,10,15,.91) 27%, rgba(5,10,15,.48) 52%, rgba(5,10,15,.17) 72%, rgba(5,10,15,.46) 100%),
    linear-gradient(180deg, rgba(3,7,10,.20), rgba(3,7,10,.58));
}
.am-infra__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 66%);
}
.am-infra__content {
  position: absolute;
  z-index: 4;
  left: clamp(34px, 5vw, 76px);
  top: 50%;
  width: min(48%, 620px);
  transform: translateY(-50%);
}
.am-infra__eyebrow {
  margin: 0 0 17px;
  color: #ff3a4b;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .15em;
  line-height: 1.3;
}
.am-infra__title {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .98;
}
.am-infra__lead {
  max-width: 570px;
  margin: 25px 0 0;
  color: rgba(230,238,244,.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.58;
}
.am-infra__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 30px;
}
.am-infra__button { min-width: 178px; }
.am-infra__text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.am-infra__text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 2px;
  height: 1px;
  background: rgba(255,255,255,.34);
  transition: background .2s ease;
}
.am-infra__text-link:hover::after { background: #ff3144; }
.am-infra__status {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  width: min(100%, 470px);
  margin-top: 35px;
  color: rgba(210,224,233,.56);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: .13em;
}
.am-infra__status-dot,
.am-infra__pulse {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 5px rgba(57,217,138,.10), 0 0 18px rgba(57,217,138,.26);
}
.am-infra__status-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.02));
}
.am-infra__rail {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(24px, 3vw, 46px);
  width: min(29%, 385px);
  transform: translateY(-50%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(8,15,21,.72);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.am-infra__rail-head,
.am-infra__rail-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 21px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(209,223,232,.44);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
}
.am-infra__features {
  list-style: none;
  margin: 0;
  padding: 2px 21px;
}
.am-infra__features li {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 13px;
  min-height: 95px;
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.am-infra__features li:last-child { border-bottom: 0; }
.am-infra__feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: #ff3447;
}
.am-infra__feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.am-infra__features strong,
.am-infra__features small { display: block; }
.am-infra__features strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -.012em;
}
.am-infra__features small {
  margin-top: 5px;
  color: rgba(215,228,236,.55);
  font-size: 11.5px;
  line-height: 1.35;
}
.am-infra__rail-foot {
  min-height: 48px;
  justify-content: flex-start;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
}
.am-infra__facts {
  position: relative;
  z-index: 8;
  width: calc(100% - clamp(30px, 4vw, 64px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #e2e7eb;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 52px rgba(13,23,31,.11);
  backdrop-filter: blur(12px);
}
.am-infra__facts > div {
  position: relative;
  min-height: 94px;
  padding: 20px 25px 18px 65px;
  border-right: 1px solid #e7ebee;
}
.am-infra__facts > div:last-child { border-right: 0; }
.am-infra__facts span {
  position: absolute;
  left: 24px;
  top: 22px;
  color: var(--am-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}
.am-infra__facts strong,
.am-infra__facts small { display: block; }
.am-infra__facts strong {
  color: #141b22;
  font-size: 17px;
  letter-spacing: -.018em;
}
.am-infra__facts small {
  margin-top: 5px;
  color: #78828b;
  font-size: 12px;
}


/* Domain Management + SEO showcase */
.am-growth {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 8.2vw, 126px) clamp(88px, 8.4vw, 132px);
  background:
    radial-gradient(circle at 10% 14%, rgba(198,0,17,.052), transparent 26%),
    radial-gradient(circle at 88% 5%, rgba(37,104,143,.075), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 58%, #ffffff 100%);
  border-top: 1px solid #edf0f2;
}
.am-growth__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    linear-gradient(rgba(25,39,50,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,39,50,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 52%);
}
.am-growth__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: clamp(32px, 5vw, 78px);
  margin-bottom: clamp(34px, 4vw, 56px);
}
.am-growth__title { max-width: 930px; }
.am-growth__intro {
  max-width: 500px;
  margin: 0 0 5px auto;
  color: #697680;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}
.am-growth__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.am-growth-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e7ea;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(18,28,36,.08);
}
.am-growth-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.am-growth-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.62 / 1;
  background: #edf3f6;
}
.am-growth-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(10,18,25,.06));
}
.am-growth-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform .75s cubic-bezier(.2,.75,.2,1), filter .45s ease;
}
.am-growth-card__link:hover .am-growth-card__media img { transform: scale(1.035); }
.am-growth-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.am-growth-card__badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 26px rgba(14,25,33,.10);
  color: #45525d;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  backdrop-filter: blur(14px);
}
.am-growth-card__badge--dark {
  border-color: rgba(255,255,255,.14);
  background: rgba(7,13,18,.70);
  color: rgba(238,244,248,.76);
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.am-growth-card__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--am-red);
  box-shadow: 0 0 0 4px rgba(198,0,17,.10);
}
.am-growth-card__body {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0 17px;
  min-height: 250px;
  padding: clamp(25px, 2.6vw, 38px);
}
.am-growth-card__icon {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198,0,17,.14);
  border-radius: 15px;
  background: linear-gradient(145deg, #fff4f5, #ffffff);
  color: var(--am-red);
  box-shadow: 0 12px 28px rgba(198,0,17,.08);
}
.am-growth-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.am-growth-card__copy { min-width: 0; }
.am-growth-card__kicker {
  margin: 1px 0 9px;
  color: var(--am-red);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.3;
}
.am-growth-card__copy h3 {
  margin: 0;
  color: #141b21;
  font-size: clamp(29px, 2.35vw, 38px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.am-growth-card__copy > p:not(.am-growth-card__kicker) {
  max-width: 580px;
  margin: 14px 0 0;
  color: #69757f;
  font-size: 14.5px;
  line-height: 1.58;
}
.am-growth-card__cta {
  grid-column: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 278px);
  margin-top: 22px;
  color: #202830;
  font-size: 13px;
  font-weight: 780;
}
.am-growth-card__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #e0e5e9;
  border-radius: 50%;
  background: #fff;
  color: var(--am-red);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.am-growth-card__link:hover .am-growth-card__arrow {
  transform: translateX(4px);
  border-color: var(--am-red);
  background: var(--am-red);
  color: #fff;
}
.am-growth-card--seo {
  border-color: #dfe4e7;
}
.am-growth-card--seo .am-growth-card__body {
  background:
    radial-gradient(circle at 95% 0%, rgba(198,0,17,.055), transparent 24%),
    #fff;
}
.am-growth__strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #e5e9ec;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 38px rgba(16,29,39,.055);
  backdrop-filter: blur(10px);
}
.am-growth__strip span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-right: 1px solid #e7ebee;
  color: #5f6c76;
  font-size: 11.5px;
  font-weight: 740;
  text-align: center;
}
.am-growth__strip span:last-child { border-right: 0; }
.am-growth__strip i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--am-red);
  box-shadow: 0 0 0 4px rgba(198,0,17,.08);
}

/* Generic content */
.am-content { padding-block: 72px; min-height: 60vh; }
.am-entry { max-width: 820px; }
.am-entry__title { font-size: clamp(42px, 6vw, 72px); letter-spacing: -.04em; line-height: 1.05; }
.am-entry__title a { text-decoration: none; }
.am-entry__content { color: #45515d; font-size: 18px; line-height: 1.75; }
.am-entry__content a { color: var(--am-red); }

.am-footer { border-top: 1px solid #edf0f3; background: #fff; color: #69737e; font-size: 13px; }
.am-footer__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.am-footer__inner p { margin: 0; }
.am-footer__iteration { color: #9aa2aa; }

@media (max-width: 1320px) {
  .am-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .am-service-card:nth-child(4), .am-service-card:nth-child(5) { min-height: 100%; }
}

@media (max-width: 1180px) {
  :root { --am-shell: min(100% - 56px, 1180px); }
  .am-header__inner { grid-template-columns: 180px 1fr auto; gap: 18px; }
  .am-nav__list { gap: 19px; }
  .am-nav__list a { font-size: 14px; }
  .am-header__cta { padding-inline: 16px; }
  .am-hero__inner { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); }
  .am-hero__microcopy { display: none; }
  .am-server-field { right: -100px; }
}

@media (max-width: 900px) {
  .am-trust { padding-block: 72px 68px; }
  .am-trust__head { grid-template-columns: 1fr; align-items: start; gap: 18px; margin-bottom: 28px; }
  .am-trust__intro { max-width: 660px; }
  .am-trust__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .am-services { padding-block: 72px 88px; }
  .am-services__head { align-items: center; margin-bottom: 28px; }
  .am-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .am-service-card__media { aspect-ratio: 1.75 / 1; }
  .am-service-card__body { min-height: 132px; }

  :root { --am-header-height: 74px; --am-shell: min(100% - 36px, 820px); }
  .am-header__inner { grid-template-columns: 1fr auto; }
  .am-nav--desktop, .am-header__cta { display: none; }
  .am-menu-toggle { display: inline-flex; }
  .am-brand__image, .custom-logo { width: 138px; }

  .am-hero { min-height: auto; background: linear-gradient(180deg, #fff 0 48%, #f3f9fc 100%); }
  .am-hero__inner { min-height: auto; grid-template-columns: 1fr; gap: 16px; padding-block: 48px 0; }
  .am-hero__content { max-width: 740px; padding: 0; }
  .am-hero__title { font-size: clamp(52px, 10.4vw, 78px); }
  .am-hero__lead { max-width: 650px; }
  .am-hero__visual { min-height: 480px; margin: 0; }
  .am-hero__visual::before { width: 94%; right: -12%; top: 0; }
  .am-hero__turtle { width: min(70%, 560px); left: 2%; top: 16%; }
  .am-server-field { right: -18px; bottom: 48px; width: 315px; height: 320px; }
  .am-hero__scribble { left: 35%; bottom: 15%; }
  .am-cloud--one { right: -100px; bottom: 20px; }
  .am-cloud--two { right: 140px; top: 30px; }
  .am-speed-lines { left: 1%; top: 39%; }
}

@media (max-width: 620px) {
  .am-trust { padding-block: 62px 58px; }
  .am-trust__gridline { background-size: 36px 36px; }
  .am-trust__head { margin-bottom: 22px; }
  .am-trust__intro { font-size: 15px; }
  .am-trust__cards { grid-template-columns: 1fr; gap: 12px; }
  .am-trust-card { min-height: 238px; padding: 19px 18px 21px; }
  .am-trust-card__visual { height: 54px; margin-block: 16px 14px; }
  .am-trust-card__copy p { font-size: 13px; }
  .am-trust__signal { grid-template-columns: 1fr auto; margin-top: 18px; padding: 12px 14px; font-size: 9px; }
  .am-trust__signal-line { display: none; }
  .am-services { padding-block: 62px 74px; }
  .am-services__head { align-items: flex-start; margin-bottom: 22px; }
  .am-services__head .am-text-link { display: none; }
  .am-section-kicker { margin-bottom: 10px; font-size: 10.5px; }
  .am-section-title { font-size: clamp(38px, 12vw, 52px); }
  .am-services__grid {
    width: calc(100vw - 14px);
    margin-right: calc((100vw - var(--am-shell)) / -2);
    grid-template-columns: repeat(5, minmax(82vw, 1fr));
    gap: 13px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 3px 14px 24px 0;
  }
  .am-services__grid::-webkit-scrollbar { display: none; }
  .am-service-card { scroll-snap-align: start; }
  .am-service-card__link:hover { transform: none; }
  .am-service-card__media { aspect-ratio: 1.65 / 1; }
  .am-service-card__body { min-height: 128px; padding: 17px 16px 18px; }
  .am-service-card__copy h3 { font-size: 20px; }
  .am-service-card__copy p { font-size: 13px; }
  .am-services__hint {
    display: block;
    margin: 1px 0 0;
    color: #8a949e;
    font-size: 11px;
    line-height: 1.4;
  }

  :root { --am-shell: calc(100% - 28px); }
  .am-eyebrow { font-size: 11px; letter-spacing: .09em; margin-bottom: 14px; }
  .am-hero__inner { padding-top: 34px; }
  .am-hero__title { font-size: clamp(43px, 13.6vw, 64px); line-height: .98; letter-spacing: -.052em; }
  .am-hero__title-light { margin-top: 6px; }
  .am-hero__lead { margin-top: 22px; font-size: 17px; line-height: 1.5; }
  .am-hero__buttons { display: grid; grid-template-columns: 1fr; gap: 11px; margin-top: 24px; }
  .am-button { width: 100%; min-height: 54px; }
  .am-hero__proof { margin-top: 22px; gap: 10px 14px; font-size: 12.5px; }
  .am-hero__proof li:last-child { display: none; }
  .am-hero__visual { min-height: 390px; margin-top: 2px; }
  .am-hero__turtle { width: 88%; left: -9%; top: 19%; }
  .am-server-field { right: -72px; width: 250px; height: 272px; bottom: 36px; gap: 8px; }
  .am-cloud--one { width: 400px; height: 150px; right: -170px; bottom: 2px; }
  .am-cloud--two { width: 300px; right: 40px; top: 30px; opacity: .55; }
  .am-hero__scribble { left: auto; right: 6px; bottom: 16%; font-size: 18px; }
  .am-hero__scribble i { width: 82px; }
  .am-speed-lines { width: 54%; left: -5%; top: 42%; }
  .am-footer__inner { min-height: 96px; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px; }
}


@media (max-width: 1180px) {
  .am-infra__content { width: min(49%, 560px); left: 42px; }
  .am-infra__rail { width: 34%; right: 28px; }
  .am-infra__veil { background: linear-gradient(90deg, rgba(5,10,15,.98) 0%, rgba(5,10,15,.88) 39%, rgba(5,10,15,.24) 64%, rgba(5,10,15,.50) 100%), linear-gradient(180deg, rgba(3,7,10,.20), rgba(3,7,10,.60)); }
}

@media (max-width: 900px) {
  .am-infra { padding-block: 72px 82px; }
  .am-infra__panel { min-height: 980px; border-radius: 24px; }
  .am-infra__image { object-position: 54% center; }
  .am-infra__veil {
    background:
      linear-gradient(180deg, rgba(5,10,15,.96) 0%, rgba(5,10,15,.84) 36%, rgba(5,10,15,.32) 56%, rgba(5,10,15,.86) 74%, rgba(5,10,15,.98) 100%);
  }
  .am-infra__grid { mask-image: linear-gradient(180deg, #000, transparent 60%); }
  .am-infra__content { top: 52px; left: 42px; right: 42px; width: auto; transform: none; }
  .am-infra__title { max-width: 700px; font-size: clamp(48px, 8.5vw, 68px); }
  .am-infra__lead { max-width: 620px; }
  .am-infra__rail { top: auto; left: 42px; right: 42px; bottom: 38px; width: auto; transform: none; }
  .am-infra__features { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 22px; }
  .am-infra__features li:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.075); }
  .am-infra__features li:nth-child(3) { border-bottom: 0; }
  .am-infra__facts { width: calc(100% - 34px); }
}

@media (max-width: 620px) {
  .am-infra { padding-block: 60px 70px; }
  .am-infra__panel { min-height: 1015px; border-radius: 20px; }
  .am-infra__image { object-position: 52% center; }
  .am-infra__content { top: 28px; left: 22px; right: 22px; }
  .am-infra__eyebrow { margin-bottom: 13px; font-size: 10px; letter-spacing: .12em; }
  .am-infra__title { font-size: clamp(40px, 12.5vw, 54px); line-height: 1; }
  .am-infra__lead { margin-top: 19px; font-size: 15px; line-height: 1.5; }
  .am-infra__actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 22px; }
  .am-infra__button { width: 100%; }
  .am-infra__text-link { min-height: 42px; justify-content: space-between; padding-inline: 2px; }
  .am-infra__status { margin-top: 21px; font-size: 8.5px; }
  .am-infra__rail { left: 14px; right: 14px; bottom: 16px; border-radius: 17px; }
  .am-infra__rail-head { min-height: 44px; padding-inline: 16px; }
  .am-infra__features { display: block; padding-inline: 16px; }
  .am-infra__features li { min-height: 79px; grid-template-columns: 38px minmax(0,1fr); gap: 11px; }
  .am-infra__features li:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.075); }
  .am-infra__feature-icon { width: 36px; height: 36px; border-radius: 10px; }
  .am-infra__feature-icon svg { width: 20px; height: 20px; }
  .am-infra__features strong { font-size: 13px; }
  .am-infra__features small { font-size: 10.5px; }
  .am-infra__rail-foot { min-height: 42px; padding-inline: 16px; font-size: 8px; }
  .am-infra__facts { width: calc(100% - 20px); margin-top: -16px; grid-template-columns: 1fr; }
  .am-infra__facts > div { min-height: 70px; padding: 15px 18px 13px 54px; border-right: 0; border-bottom: 1px solid #e7ebee; }
  .am-infra__facts > div:last-child { border-bottom: 0; }
  .am-infra__facts span { left: 18px; top: 17px; }
  .am-infra__facts strong { font-size: 15px; }
  .am-infra__facts small { font-size: 11px; }
}


@media (max-width: 900px) {
  .am-growth { padding-block: 74px 86px; }
  .am-growth__head { grid-template-columns: 1fr; align-items: start; gap: 18px; margin-bottom: 30px; }
  .am-growth__intro { max-width: 680px; margin: 0; }
  .am-growth__grid { grid-template-columns: 1fr; gap: 20px; }
  .am-growth-card__media { aspect-ratio: 1.82 / 1; }
  .am-growth-card__body { min-height: 220px; }
  .am-growth__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .am-growth__strip span:nth-child(3) { border-right: 0; }
  .am-growth__strip span:nth-child(-n+3) { border-bottom: 1px solid #e7ebee; }
}

@media (max-width: 620px) {
  .am-growth { padding-block: 62px 72px; }
  .am-growth__head { margin-bottom: 23px; }
  .am-growth__intro { font-size: 15px; }
  .am-growth__grid { gap: 14px; }
  .am-growth-card { border-radius: 20px; }
  .am-growth-card__media { aspect-ratio: 1.23 / 1; }
  .am-growth-card__media img { object-position: center; }
  .am-growth-card__badge { top: 15px; left: 15px; min-height: 32px; padding-inline: 11px; font-size: 8px; }
  .am-growth-card__body { grid-template-columns: 44px minmax(0, 1fr); gap: 0 13px; min-height: 230px; padding: 21px 18px 20px; }
  .am-growth-card__icon { width: 43px; height: 43px; border-radius: 13px; }
  .am-growth-card__icon svg { width: 24px; height: 24px; }
  .am-growth-card__kicker { margin-top: 0; font-size: 8.5px; }
  .am-growth-card__copy h3 { font-size: clamp(27px, 8.7vw, 34px); }
  .am-growth-card__copy > p:not(.am-growth-card__kicker) { margin-top: 11px; font-size: 13px; }
  .am-growth-card__cta { width: 100%; margin-top: 18px; font-size: 12.5px; }
  .am-growth-card__arrow { width: 35px; height: 35px; }
  .am-growth__strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
  .am-growth__strip span { min-height: 54px; font-size: 10.5px; border-right: 1px solid #e7ebee; border-bottom: 1px solid #e7ebee; }
  .am-growth__strip span:nth-child(2n) { border-right: 0; }
  .am-growth__strip span:nth-child(3) { border-right: 1px solid #e7ebee; }
  .am-growth__strip span:nth-last-child(-n+2) { border-bottom: 0; }
  .am-growth__strip span:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
}


/* Contact CTA + full footer – introduced in Iteration 0.6 */
.am-contact-cta {
  position: relative;
  padding-block: 34px 92px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fa 100%);
}
.am-contact-cta__panel {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  overflow: hidden;
  border: 1px solid #e1e7eb;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(17,22,29,.11);
}
.am-contact-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  z-index: 4;
  background: linear-gradient(180deg, #e71325 0%, #a9000e 100%);
}
.am-contact-cta__content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 58px clamp(38px, 5vw, 74px);
}
.am-contact-cta__eyebrow { margin-bottom: 16px; }
.am-contact-cta__title {
  max-width: 660px;
  margin: 0;
  color: var(--am-ink);
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: .98;
  letter-spacing: -.052em;
}
.am-contact-cta__text {
  max-width: 610px;
  margin: 24px 0 0;
  color: #5c6873;
  font-size: 17px;
  line-height: 1.62;
}
.am-contact-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 30px;
}
.am-contact-cta__button { min-width: 196px; }
.am-contact-cta__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #26313b;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.am-contact-cta__mail:hover { color: var(--am-red); }
.am-contact-cta__mail-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e0e5e8;
  border-radius: 50%;
  background: #fff;
  color: var(--am-red);
  box-shadow: 0 8px 24px rgba(17,22,29,.07);
}
.am-contact-cta__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.am-contact-cta__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e5e9ec;
  border-radius: 999px;
  background: #f8fafb;
  color: #68747e;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .02em;
}
.am-contact-cta__visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #eef4f7;
}
.am-contact-cta__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.7) 12%, rgba(255,255,255,.08) 42%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.am-contact-cta__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.2,.72,.25,1);
}
.am-contact-cta__panel:hover .am-contact-cta__visual img { transform: scale(1.025); }
.am-contact-cta__visual-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3.6vw, 56px);
  bottom: 38px;
  display: grid;
  justify-items: start;
  padding: 20px 22px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 50px rgba(17,22,29,.12);
  backdrop-filter: blur(12px);
}
.am-contact-cta__visual-copy span {
  color: var(--am-red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .17em;
}
.am-contact-cta__visual-copy strong {
  margin-top: 8px;
  color: #18212a;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: .98;
  letter-spacing: -.045em;
}
.am-contact-cta__visual-copy i {
  width: 74px;
  height: 3px;
  margin-top: 13px;
  border-radius: 99px;
  background: var(--am-red);
  transform: rotate(-4deg);
}

/* Footer */
.am-footer {
  position: relative;
  border-top: 0;
  background: #fff;
  color: #5f6a74;
  font-size: 14px;
}
.am-footer__accent {
  height: 4px;
  background: linear-gradient(90deg, #9e000c 0%, #d30b1d 23%, #d30b1d 37%, #eceff1 37%, #eceff1 100%);
}
.am-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(170px, .72fr) minmax(170px, .72fr) minmax(230px, .92fr);
  gap: clamp(34px, 4vw, 74px);
  padding-block: 62px 52px;
}
.am-footer__brand { max-width: 390px; }
.am-footer__logo,
.am-footer__logo .custom-logo-link { display: inline-flex; }
.am-footer__logo img,
.am-footer__logo .custom-logo { display: block; width: 156px; height: auto; }
.am-footer__brand > p {
  max-width: 370px;
  margin: 23px 0 0;
  color: #69747e;
  font-size: 14px;
  line-height: 1.65;
}
.am-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #e5e9ec;
  border-radius: 999px;
  background: #f8fafb;
  color: #43505b;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.am-footer__status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30b770;
  box-shadow: 0 0 0 4px rgba(48,183,112,.11);
}
.am-footer__status strong { font-weight: 800; }
.am-footer__column h2 {
  margin: 3px 0 20px;
  color: #161d24;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.am-footer__column ul,
.am-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.am-footer__column li + li { margin-top: 12px; }
.am-footer__column a {
  color: #5e6a74;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.am-footer__column a:hover,
.am-footer__column a:focus-visible { color: var(--am-red); }
.am-footer__contact address {
  display: grid;
  gap: 5px;
  margin: 0;
  color: #68737d;
  font-style: normal;
  line-height: 1.45;
}
.am-footer__contact address span:first-child {
  margin-bottom: 3px;
  color: #28333c;
  font-weight: 750;
}
.am-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #202a33 !important;
  font-weight: 800;
}
.am-footer__email span { color: var(--am-red); transition: transform .18s ease; }
.am-footer__email:hover span { transform: translateX(3px); }
.am-footer__socials { display: flex; gap: 9px; margin-top: 20px; }
.am-footer__socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dfe5e8;
  border-radius: 10px;
  background: #f8fafb;
  color: #1b242c !important;
  font-size: 12px;
  font-weight: 850;
}
.am-footer__socials a:hover { border-color: rgba(198,0,17,.3); background: #fff3f4; color: var(--am-red) !important; }
.am-footer__bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid #e8ecef;
  color: #8a949c;
  font-size: 11.5px;
}
.am-footer__bottom p { margin: 0; }
.am-footer__legal { display: flex; align-items: center; gap: 22px; }
.am-footer__legal a { color: #6e7982; text-decoration: none; }
.am-footer__legal a:hover { color: var(--am-red); }
.am-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
  font-weight: 800;
}
.am-footer__top > span:last-child {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #dfe4e7;
  border-radius: 50%;
  background: #f8fafb;
  color: var(--am-red);
}

@media (max-width: 1180px) {
  .am-contact-cta__panel { grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr); }
  .am-contact-cta__content { padding-inline: 42px; }
  .am-footer__main { grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .am-contact-cta { padding-block: 24px 74px; }
  .am-contact-cta__panel { grid-template-columns: 1fr; }
  .am-contact-cta__content { padding: 46px 42px 38px; }
  .am-contact-cta__visual { min-height: 360px; }
  .am-contact-cta__visual::before { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.1) 22%, rgba(255,255,255,0) 100%); }
  .am-footer__main { grid-template-columns: 1.35fr 1fr 1fr; }
  .am-footer__contact { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 10px 34px; padding-top: 30px; border-top: 1px solid #e8ecef; }
  .am-footer__contact h2 { grid-column: 1 / -1; margin-bottom: 4px; }
  .am-footer__email { margin-top: 0; justify-self: end; }
  .am-footer__socials { grid-column: 2; justify-self: end; margin-top: 0; }
}

@media (max-width: 620px) {
  .am-contact-cta { padding-block: 14px 58px; }
  .am-contact-cta__panel { border-radius: 22px; }
  .am-contact-cta__content { padding: 32px 22px 28px; }
  .am-contact-cta__title { font-size: clamp(39px, 12vw, 52px); }
  .am-contact-cta__text { margin-top: 18px; font-size: 15px; }
  .am-contact-cta__actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .am-contact-cta__button { width: 100%; }
  .am-contact-cta__mail { min-height: 44px; font-size: 13px; }
  .am-contact-cta__chips { gap: 7px; margin-top: 20px; }
  .am-contact-cta__chips li { min-height: 31px; padding-inline: 10px; font-size: 9.5px; }
  .am-contact-cta__visual { min-height: 288px; }
  .am-contact-cta__visual img { object-position: 58% center; }
  .am-contact-cta__visual-copy { right: 14px; bottom: 14px; padding: 15px 16px 14px; border-radius: 14px; }
  .am-contact-cta__visual-copy strong { font-size: 24px; }

  .am-footer__accent { height: 3px; background: linear-gradient(90deg, #b0000e 0%, #d10a1b 42%, #eceff1 42%, #eceff1 100%); }
  .am-footer__main { grid-template-columns: 1fr 1fr; gap: 34px 22px; padding-block: 44px 34px; }
  .am-footer__brand { grid-column: 1 / -1; max-width: none; }
  .am-footer__brand > p { max-width: 520px; font-size: 13px; }
  .am-footer__logo img, .am-footer__logo .custom-logo { width: 142px; }
  .am-footer__column h2 { margin-bottom: 16px; font-size: 10.5px; }
  .am-footer__column li + li { margin-top: 10px; }
  .am-footer__column a { font-size: 12.5px; }
  .am-footer__contact { grid-column: 1 / -1; display: block; padding-top: 28px; }
  .am-footer__contact h2 { margin-bottom: 16px; }
  .am-footer__email { margin-top: 18px; }
  .am-footer__socials { margin-top: 18px; }
  .am-footer__bottom { min-height: auto; flex-direction: column; align-items: flex-start; padding-block: 22px 26px; gap: 16px; }
  .am-footer__legal { width: 100%; flex-wrap: wrap; gap: 14px 18px; }
  .am-footer__top { margin-left: auto; }
}

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

/* ==========================================================
   Service pages – v0.8
   Shared visual system for Hosting, Server, SLA, Domains, SEO
   ========================================================== */
.am-is-service-page #main { overflow: hidden; }
.am-service-page { background: #fff; }
.am-service-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(198,0,17,.085), transparent 24%),
    linear-gradient(118deg, #fff 0%, #fff 46%, #f5f9fb 100%);
}
.am-service-hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(28,42,52,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,42,52,.035) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(90deg, transparent 0 45%, #000 66% 100%);
}
.am-service-hero__shell {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(480px,1.14fr);
  align-items: center;
  gap: clamp(42px,5vw,90px);
  min-height: 720px;
  padding-block: 78px 88px;
}
.am-service-hero__copy { position: relative; z-index: 2; max-width: 690px; }
.am-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
  color: #8b969f;
  font-size: 12px;
  font-weight: 700;
}
.am-breadcrumbs a { color: #69757f; text-decoration: none; }
.am-breadcrumbs a:hover { color: var(--am-red); }
.am-service-hero__eyebrow {
  margin: 0 0 17px;
  color: var(--am-red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
}
.am-service-hero__title {
  margin: 0;
  color: #0e141a;
  font-size: clamp(58px,5.5vw,88px);
  line-height: .94;
  letter-spacing: -.058em;
}
.am-service-hero__title span,
.am-service-hero__title em { display: block; }
.am-service-hero__title span { font-weight: 850; }
.am-service-hero__title em {
  margin-top: 8px;
  color: #343d45;
  font-style: normal;
  font-weight: 330;
}
.am-service-hero__lead {
  max-width: 630px;
  margin: 27px 0 0;
  color: #596570;
  font-size: clamp(17px,1.45vw,21px);
  line-height: 1.58;
  letter-spacing: -.018em;
}
.am-service-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 31px; }
.am-service-hero__jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #303a43;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.am-service-hero__jump > span:last-child { color: var(--am-red); transition: transform .18s ease; }
.am-service-hero__jump:hover > span:last-child { transform: translateY(3px); }
.am-service-hero__metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 34px 0 0;
  padding: 0;
  color: #626d76;
  font-size: 12px;
  font-weight: 750;
}
.am-service-hero__metrics li { display: inline-flex; align-items: center; gap: 8px; }
.am-service-hero__metrics i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32b875;
  box-shadow: 0 0 0 4px rgba(50,184,117,.11);
}
.am-service-hero__visual { position: relative; min-width: 0; }
.am-service-hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 75%;
  aspect-ratio: 1;
  right: -4%;
  top: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,0,17,.16), rgba(198,0,17,0) 68%);
  filter: blur(8px);
}
.am-service-hero__visual-frame {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border: 1px solid rgba(198,208,215,.9);
  border-radius: 30px;
  background: #eef3f6;
  box-shadow: 0 32px 90px rgba(19,31,40,.15);
}
.am-service-hero__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 55%, rgba(14,20,26,.06));
}
.am-service-hero__visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.72,.25,1);
}
.am-service-hero__visual-frame:hover img { transform: scale(1.025); }
.am-service-hero__visual-label {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  gap: 4px;
  padding: 13px 15px 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 13px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 13px 38px rgba(15,24,31,.08);
  backdrop-filter: blur(12px);
}
.am-service-hero__visual-label span { color: var(--am-red); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.am-service-hero__visual-label strong { color: #172029; font-size: 12px; letter-spacing: .035em; }
.am-service-hero__visual-status {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(18,27,34,.82);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}
.am-service-hero__visual-status i { width: 7px; height: 7px; border-radius: 50%; background: #35c57e; box-shadow: 0 0 0 4px rgba(53,197,126,.14); }

.am-service-details { padding-block: 102px 110px; background: #fff; }
.am-service-section-head {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(350px,.72fr);
  align-items: end;
  gap: clamp(48px,8vw,120px);
}
.am-service-section-head h2,
.am-service-process__head h2,
.am-service-related__head h2,
.am-service-editorial__label h2 {
  max-width: 820px;
  margin: 7px 0 0;
  color: #121920;
  font-size: clamp(39px,4vw,62px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.am-service-section-head > p {
  margin: 0 0 3px;
  color: #66727c;
  font-size: 16px;
  line-height: 1.7;
}
.am-service-feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 52px;
}
.am-service-feature-card {
  position: relative;
  min-height: 310px;
  padding: 28px 26px 29px;
  overflow: hidden;
  border: 1px solid #e2e8ec;
  border-radius: 20px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(247,250,252,.97));
  box-shadow: 0 18px 44px rgba(18,28,35,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.am-service-feature-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,0,17,.12), rgba(198,0,17,0) 68%);
}
.am-service-feature-card:hover { transform: translateY(-5px); border-color: rgba(198,0,17,.2); box-shadow: 0 24px 56px rgba(18,28,35,.085); }
.am-service-feature-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.am-service-feature-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #fff1f2;
  color: var(--am-red);
}
.am-service-feature-card__icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.am-service-feature-card__number { color: #c8d0d6; font-size: 12px; font-weight: 850; letter-spacing: .11em; }
.am-service-feature-card h3 { margin: 54px 0 0; color: #172029; font-size: 21px; letter-spacing: -.025em; }
.am-service-feature-card p { margin: 11px 0 0; color: #707b84; font-size: 14px; line-height: 1.65; }

.am-service-spotlight { padding-block: 0 106px; background: #fff; }
.am-service-spotlight__shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(460px,1.15fr);
  align-items: stretch;
  min-height: 590px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 77% 45%, rgba(219,12,31,.24), transparent 30%),
    linear-gradient(118deg, #0d141a 0%, #121c24 45%, #1d2a34 100%);
  box-shadow: 0 28px 80px rgba(13,20,26,.18);
}
.am-service-spotlight__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
}
.am-service-spotlight__copy { padding: clamp(50px,5vw,76px); align-self: center; }
.am-service-spotlight__kicker { margin: 0; color: #ff4f60; font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.am-service-spotlight__copy h2 { max-width: 650px; margin: 14px 0 0; color: #fff; font-size: clamp(39px,4.1vw,62px); line-height: 1.02; letter-spacing: -.052em; }
.am-service-spotlight__copy > p:not(.am-service-spotlight__kicker) { max-width: 610px; margin: 22px 0 0; color: #aeb9c2; font-size: 15.5px; line-height: 1.7; }
.am-service-spotlight__copy ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 31px 0 0; padding: 0; color: #eaf0f4; font-size: 13px; font-weight: 700; }
.am-service-spotlight__copy li { display: flex; align-items: center; gap: 9px; }
.am-service-spotlight__copy li span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #d40a1e; color: #fff; font-size: 11px; }
.am-service-spotlight__visual { position: relative; display: grid; place-items: center; min-height: 500px; padding: 58px 54px; }
.am-service-spotlight__screen {
  position: relative;
  width: min(100%,600px);
  aspect-ratio: 1.22;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: inset 0 0 80px rgba(255,255,255,.02), 0 34px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}
.am-service-spotlight__screen::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size:42px 42px; }
.am-service-spotlight__screen-label { position:absolute; top:24px; left:24px; z-index:2; color:#8f9ca6; font-size:9px; font-weight:800; letter-spacing:.14em; }
.am-service-spotlight__bars { position:absolute; left:10%; right:10%; bottom:22%; height:48%; display:flex; align-items:flex-end; gap:4.5%; }
.am-service-spotlight__bars i { flex:1; min-width:18px; border-radius:8px 8px 2px 2px; background:linear-gradient(180deg,#e10d22,#84101a); box-shadow:0 0 22px rgba(224,13,34,.18); }
.am-service-spotlight__bars i:nth-child(1){height:34%}.am-service-spotlight__bars i:nth-child(2){height:48%}.am-service-spotlight__bars i:nth-child(3){height:42%}.am-service-spotlight__bars i:nth-child(4){height:66%}.am-service-spotlight__bars i:nth-child(5){height:72%}.am-service-spotlight__bars i:nth-child(6){height:92%}
.am-service-spotlight__pulse { position:absolute; inset:0; }
.am-service-spotlight__pulse span { position:absolute; width:7px; height:7px; border-radius:50%; background:#fff; box-shadow:0 0 0 5px rgba(255,255,255,.08); }
.am-service-spotlight__pulse span:nth-child(1){left:17%;top:31%}.am-service-spotlight__pulse span:nth-child(2){left:47%;top:22%}.am-service-spotlight__pulse span:nth-child(3){right:16%;top:34%}.am-service-spotlight__pulse span:nth-child(4){right:27%;bottom:15%}
.am-service-spotlight__status { position:absolute; right:22px; bottom:20px; display:grid; grid-template-columns:auto auto; align-items:center; gap:2px 8px; padding:10px 12px; border:1px solid rgba(255,255,255,.1); border-radius:12px; background:rgba(9,15,20,.7); }
.am-service-spotlight__status i { grid-row:1/3; width:8px; height:8px; border-radius:50%; background:#34c27b; }
.am-service-spotlight__status strong { color:#fff; font-size:9px; letter-spacing:.1em; }.am-service-spotlight__status span { color:#788791; font-size:7px; letter-spacing:.12em; }

.am-service-process { padding-block: 100px 112px; background: #f5f8fa; }
.am-service-process__head { max-width: 800px; }
.am-service-process__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 48px; overflow: hidden; border: 1px solid #dfe6ea; border-radius: 22px; background: #dfe6ea; }
.am-service-process__grid article { position:relative; min-height:260px; padding:34px 34px 38px; background:#fff; }
.am-service-process__grid article > span { display:inline-flex; align-items:center; justify-content:center; width:42px; height:28px; border-radius:999px; background:#fff1f2; color:var(--am-red); font-size:10px; font-weight:900; letter-spacing:.08em; }
.am-service-process__grid h3 { margin:55px 0 0; color:#172029; font-size:24px; letter-spacing:-.03em; }
.am-service-process__grid p { max-width:330px; margin:12px 0 0; color:#707b84; font-size:14px; line-height:1.65; }

.am-service-editorial { padding-block: 100px 112px; background:#fff; }
.am-service-editorial__grid { display:grid; grid-template-columns:minmax(260px,.7fr) minmax(0,1.3fr); gap:clamp(50px,8vw,130px); align-items:start; }
.am-service-editorial__label { position:sticky; top:calc(var(--am-header-height) + 38px); }
.am-service-editorial__content { max-width:850px; color:#56626c; font-size:17px; line-height:1.78; }
.am-service-editorial__content > *:first-child { margin-top:0; }
.am-service-editorial__content h2 { margin:2.3em 0 .65em; color:#172029; font-size:clamp(30px,3vw,42px); line-height:1.08; letter-spacing:-.035em; }
.am-service-editorial__content h3 { margin:2em 0 .5em; color:#172029; font-size:25px; letter-spacing:-.025em; }
.am-service-editorial__content a { color:var(--am-red); }
.am-service-editorial__content ul,.am-service-editorial__content ol { padding-left:1.25em; }
.am-service-editorial__content blockquote { margin:2em 0; padding:8px 0 8px 24px; border-left:3px solid var(--am-red); color:#29343d; font-size:1.08em; }

.am-service-related { padding-block: 92px 104px; background:#fff; border-top:1px solid #edf0f2; }
.am-service-related__head { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; }
.am-service-related__head h2 { max-width:760px; font-size:clamp(36px,3.55vw,54px); }
.am-service-related__grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:42px; }
.am-service-related-card { min-height:180px; display:flex; align-items:flex-end; justify-content:space-between; gap:30px; padding:31px 32px; border:1px solid #e1e7eb; border-radius:20px; background:linear-gradient(135deg,#f8fafb,#fff); text-decoration:none; box-shadow:0 15px 38px rgba(18,28,35,.045); transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.am-service-related-card:hover { transform:translateY(-4px); border-color:rgba(198,0,17,.22); box-shadow:0 22px 48px rgba(18,28,35,.075); }
.am-service-related-card div > span { color:var(--am-red); font-size:9px; font-weight:850; letter-spacing:.14em; }
.am-service-related-card h3 { margin:10px 0 0; color:#172029; font-size:28px; letter-spacing:-.035em; }
.am-service-related-card__arrow { display:grid; place-items:center; flex:0 0 46px; width:46px; height:46px; border:1px solid #e0e6ea; border-radius:50%; background:#fff; color:var(--am-red); font-size:20px; transition:transform .18s ease; }
.am-service-related-card:hover .am-service-related-card__arrow { transform:translateX(3px); }

.am-service-final-cta { padding:0 0 80px; background:#fff; }
.am-service-final-cta__inner { display:flex; align-items:center; justify-content:space-between; gap:45px; min-height:260px; padding:48px 54px; overflow:hidden; border-radius:24px; background:linear-gradient(110deg,#f4f7f9 0%,#f9fbfc 54%,#e9f0f4 100%); border:1px solid #e1e7eb; }
.am-service-final-cta__inner > div { max-width:780px; }
.am-service-final-cta__inner h2 { margin:7px 0 0; color:#131a20; font-size:clamp(38px,4vw,58px); line-height:1; letter-spacing:-.05em; }
.am-service-final-cta__inner p:last-child { max-width:650px; margin:15px 0 0; color:#66727c; font-size:15px; line-height:1.65; }
.am-service-final-cta__inner > .am-button { flex:0 0 auto; }

@media (max-width: 1180px) {
  .am-service-hero__shell { grid-template-columns:minmax(0,.95fr) minmax(420px,1.05fr); gap:40px; }
  .am-service-hero__visual-frame { min-height:500px; }
  .am-service-feature-grid { grid-template-columns:1fr 1fr; }
  .am-service-feature-card { min-height:270px; }
  .am-service-spotlight__shell { grid-template-columns:1fr 1fr; }
}

@media (max-width: 900px) {
  .am-service-hero { min-height:0; }
  .am-service-hero__shell { grid-template-columns:1fr; min-height:0; padding-block:54px 72px; }
  .am-service-hero__copy { max-width:760px; }
  .am-service-hero__title { font-size:clamp(54px,10vw,78px); }
  .am-service-hero__visual-frame { min-height:500px; }
  .am-service-section-head { grid-template-columns:1fr; align-items:start; gap:22px; }
  .am-service-section-head > p { max-width:720px; }
  .am-service-spotlight__shell { grid-template-columns:1fr; }
  .am-service-spotlight__visual { padding-top:0; min-height:440px; }
  .am-service-process__grid { grid-template-columns:1fr; }
  .am-service-process__grid article { min-height:210px; }
  .am-service-process__grid h3 { margin-top:35px; }
  .am-service-editorial__grid { grid-template-columns:1fr; gap:32px; }
  .am-service-editorial__label { position:static; }
  .am-service-related__head { align-items:flex-start; flex-direction:column; gap:18px; }
  .am-service-related__grid { grid-template-columns:1fr; }
  .am-service-final-cta__inner { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 620px) {
  .am-service-hero__ambient { background-size:48px 48px; }
  .am-service-hero__shell { padding-block:38px 54px; gap:38px; }
  .am-breadcrumbs { margin-bottom:30px; font-size:10.5px; }
  .am-service-hero__eyebrow { font-size:10px; }
  .am-service-hero__title { font-size:clamp(44px,14vw,60px); }
  .am-service-hero__lead { margin-top:21px; font-size:15.5px; }
  .am-service-hero__actions { display:grid; grid-template-columns:1fr; gap:8px; margin-top:26px; }
  .am-service-hero__actions .am-button { width:100%; }
  .am-service-hero__jump { justify-content:center; }
  .am-service-hero__metrics { gap:10px 14px; margin-top:24px; font-size:10.5px; }
  .am-service-hero__visual-frame { min-height:330px; border-radius:20px; }
  .am-service-hero__visual-label { top:14px; left:14px; padding:10px 11px; border-radius:10px; }
  .am-service-hero__visual-status { right:12px; bottom:12px; }
  .am-service-details { padding-block:72px 76px; }
  .am-service-section-head h2,.am-service-process__head h2,.am-service-related__head h2,.am-service-editorial__label h2 { font-size:clamp(34px,10vw,46px); }
  .am-service-section-head > p { font-size:14.5px; }
  .am-service-feature-grid { grid-template-columns:1fr; margin-top:35px; }
  .am-service-feature-card { min-height:230px; padding:24px 22px; }
  .am-service-feature-card h3 { margin-top:38px; }
  .am-service-spotlight { padding-bottom:76px; }
  .am-service-spotlight__shell { border-radius:22px; }
  .am-service-spotlight__copy { padding:38px 24px 28px; }
  .am-service-spotlight__copy h2 { font-size:clamp(35px,11vw,48px); }
  .am-service-spotlight__copy > p:not(.am-service-spotlight__kicker) { font-size:14px; }
  .am-service-spotlight__copy ul { grid-template-columns:1fr; gap:11px; }
  .am-service-spotlight__visual { min-height:330px; padding:22px; }
  .am-service-spotlight__screen { width:100%; }
  .am-service-process { padding-block:72px 78px; }
  .am-service-process__grid { margin-top:34px; }
  .am-service-process__grid article { min-height:195px; padding:28px 24px; }
  .am-service-editorial { padding-block:72px 78px; }
  .am-service-editorial__content { font-size:15.5px; }
  .am-service-related { padding-block:70px 76px; }
  .am-service-related__grid { margin-top:32px; }
  .am-service-related-card { min-height:150px; padding:25px 22px; }
  .am-service-related-card h3 { font-size:24px; }
  .am-service-final-cta { padding-bottom:58px; }
  .am-service-final-cta__inner { min-height:0; padding:34px 24px; border-radius:20px; }
  .am-service-final-cta__inner h2 { font-size:clamp(36px,11vw,47px); }
  .am-service-final-cta__inner > .am-button { width:100%; }
}

/* Long service names get a slightly tighter headline scale. */
.am-service-sla .am-service-hero__title,
.am-service-domains .am-service-hero__title { font-size: clamp(50px,4.65vw,76px); }
@media (max-width:620px) {
  .am-service-sla .am-service-hero__title,
  .am-service-domains .am-service-hero__title { font-size: clamp(39px,11.5vw,52px); }
}

/* ==========================================================
   Company + Contact pages – v0.9
   ========================================================== */
.am-is-core-page #main { overflow: hidden; }
.am-company-page,
.am-contact-page { background: #fff; }

.am-company-hero,
.am-contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 12%, rgba(198,0,17,.07), transparent 21%),
    radial-gradient(circle at 76% 45%, rgba(213,235,247,.72), transparent 30%),
    linear-gradient(135deg,#fff 0%,#fff 48%,#f3f8fb 100%);
}
.am-company-hero__ambient,
.am-contact-hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .55;
  background-image:
    linear-gradient(rgba(78,99,115,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,99,115,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 56%, #000 100%);
}
.am-company-hero__grid,
.am-contact-hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(480px,1.08fr);
  align-items: center;
  gap: clamp(44px,6vw,96px);
  padding-block: 56px 72px;
}
.am-company-hero__copy,
.am-contact-hero__copy { position: relative; z-index: 2; max-width: 690px; }
.am-company-hero__title,
.am-contact-hero__title {
  margin: 0;
  color: #11171d;
  font-size: clamp(56px,5.25vw,84px);
  line-height: .96;
  letter-spacing: -.055em;
}
.am-company-hero__title span,
.am-company-hero__title em,
.am-contact-hero__title span,
.am-contact-hero__title em { display: block; }
.am-company-hero__title span,
.am-contact-hero__title span { font-weight: 850; }
.am-company-hero__title em,
.am-contact-hero__title em {
  margin-top: 10px;
  color: #313a43;
  font-style: normal;
  font-weight: 350;
}
.am-company-hero__lead,
.am-contact-hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #5b6873;
  font-size: clamp(17px,1.35vw,20px);
  line-height: 1.62;
}
.am-company-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; margin-top: 30px; }
.am-company-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #26313a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.am-company-hero__link span:last-child { color: var(--am-red); transition: transform .18s ease; }
.am-company-hero__link:hover span:last-child { transform: translateY(3px); }
.am-company-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  color: #66717b;
  font-size: 12px;
  font-weight: 700;
}
.am-company-hero__signals li { display: inline-flex; align-items: center; gap: 8px; }
.am-company-hero__signals i { width: 7px; height: 7px; border-radius: 50%; background: var(--am-red); box-shadow: 0 0 0 4px rgba(198,0,17,.08); }

.am-company-hero__visual { position: relative; min-width: 0; }
.am-company-hero__visual::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  right: -9%;
  top: -10%;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.95),rgba(224,239,247,.62) 48%,transparent 70%);
  filter: blur(3px);
}
.am-company-hero__visual-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(167,184,195,.48);
  border-radius: 30px;
  background: linear-gradient(145deg,rgba(255,255,255,.94),rgba(234,242,247,.88));
  box-shadow: 0 34px 80px rgba(27,42,53,.14);
}
.am-company-hero__gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(83,105,120,.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(83,105,120,.07) 1px,transparent 1px);
  background-size: 48px 48px;
}
.am-company-hero__visual-frame::before {
  content: "";
  position: absolute;
  inset: auto -6% -18% 14%;
  height: 56%;
  border-radius: 50%;
  background: radial-gradient(ellipse,rgba(255,255,255,.99) 0 28%,rgba(255,255,255,.72) 48%,transparent 72%);
  filter: blur(4px);
}
.am-company-hero__visual-frame img {
  position: absolute;
  z-index: 2;
  width: 92%;
  max-width: none;
  left: -4%;
  top: 19%;
  filter: drop-shadow(0 30px 25px rgba(34,46,54,.22));
  transform: rotate(-1deg);
}
.am-company-hero__badge,
.am-company-hero__mark {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 38px rgba(26,38,47,.12);
  backdrop-filter: blur(12px);
}
.am-company-hero__badge { top: 22px; right: 22px; padding: 13px 15px; border-radius: 14px; }
.am-company-hero__badge span { color: var(--am-red); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.am-company-hero__badge strong { color: #33404b; font-size: 9px; letter-spacing: .05em; }
.am-company-hero__mark { right: 24px; bottom: 22px; padding: 16px 18px; border-radius: 16px; transform: rotate(-2deg); }
.am-company-hero__mark span { color: #7c8790; font-size: 10px; }
.am-company-hero__mark strong { color: #171e24; font-size: 23px; line-height: 1; letter-spacing: -.04em; }
.am-company-hero__mark::after { content:""; width:74px; height:3px; margin-top:7px; border-radius:99px; background:var(--am-red); transform:rotate(-4deg); }

.am-company-principles { padding-block: 104px 112px; background: #fff; }
.am-company-principles__head,
.am-contact-details__head {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.75fr);
  align-items: end;
  gap: clamp(40px,8vw,130px);
}
.am-company-principles__head h2,
.am-contact-details__head h2,
.am-company-focus__copy h2,
.am-company-editorial__grid h2,
.am-contact-form-section__intro h2 {
  margin: 0;
  color: #12191f;
  font-size: clamp(42px,4.2vw,64px);
  line-height: 1.01;
  letter-spacing: -.05em;
}
.am-company-principles__head > p,
.am-contact-details__head > p {
  margin: 0;
  color: #69757f;
  font-size: 15.5px;
  line-height: 1.7;
}
.am-company-principles__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.am-company-principle {
  position: relative;
  min-height: 310px;
  padding: 30px 30px 34px;
  overflow: hidden;
  border: 1px solid #e2e7ea;
  border-radius: 22px;
  background: linear-gradient(145deg,#fff,#f7f9fa);
  box-shadow: 0 18px 46px rgba(20,30,38,.05);
}
.am-company-principle::after { content:""; position:absolute; right:-75px; bottom:-80px; width:190px; height:190px; border-radius:50%; background:radial-gradient(circle,rgba(198,0,17,.09),transparent 68%); }
.am-company-principle__number { display: inline-flex; min-width: 42px; min-height: 28px; align-items: center; justify-content:center; border-radius:999px; background:#fff0f1; color:var(--am-red); font-size:10px; font-weight:900; letter-spacing:.08em; }
.am-company-principle h3 { margin: 86px 0 0; color:#162029; font-size:30px; line-height:1; letter-spacing:-.04em; }
.am-company-principle p { max-width: 360px; margin: 15px 0 0; color:#6c7882; font-size:14.5px; line-height:1.66; }

.am-company-focus { padding-block: 0 112px; background:#fff; }
.am-company-focus__grid {
  display:grid;
  grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr);
  align-items:center;
  min-height:590px;
  overflow:hidden;
  border:1px solid #202b34;
  border-radius:28px;
  background:linear-gradient(135deg,#0e151b,#17222b 55%,#0c1217);
  box-shadow:0 34px 80px rgba(11,20,27,.18);
}
.am-company-focus__visual { min-height: 590px; display:grid; place-items:center; padding:50px; background:radial-gradient(circle at 46% 48%,rgba(198,0,17,.14),transparent 35%); }
.am-company-focus__screen { position:relative; width:min(100%,650px); aspect-ratio:1.18/1; overflow:hidden; border:1px solid rgba(255,255,255,.12); border-radius:22px; background:linear-gradient(145deg,rgba(9,15,20,.92),rgba(22,31,38,.92)); box-shadow:0 30px 65px rgba(0,0,0,.3); }
.am-company-focus__screen::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:34px 34px; }
.am-company-focus__screen-top { position:relative; z-index:2; height:52px; display:flex; align-items:center; justify-content:space-between; padding:0 18px; border-bottom:1px solid rgba(255,255,255,.08); color:#788791; font-size:8px; font-weight:850; letter-spacing:.14em; }
.am-company-focus__screen-top i { width:8px; height:8px; border-radius:50%; background:#32bf78; box-shadow:0 0 0 5px rgba(50,191,120,.1); }
.am-company-focus__nodes { position:absolute; z-index:2; inset:25% 10% auto; display:grid; grid-template-columns:repeat(5,1fr); gap:8px; }
.am-company-focus__nodes span { min-height:54px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.09); border-radius:11px; background:rgba(255,255,255,.035); color:#cbd5dc; font-size:8px; font-weight:850; letter-spacing:.08em; }
.am-company-focus__nodes span:nth-child(3){ border-color:rgba(198,0,17,.48); background:rgba(198,0,17,.11); color:#fff; }
.am-company-focus__pulse { position:absolute; z-index:1; left:10%; right:10%; top:52%; height:2px; background:linear-gradient(90deg,transparent,var(--am-red),rgba(255,255,255,.22),var(--am-red),transparent); box-shadow:0 0 24px rgba(198,0,17,.34); }
.am-company-focus__status { position:absolute; z-index:2; left:18px; bottom:18px; display:grid; grid-template-columns:auto auto; align-items:center; gap:2px 8px; padding:10px 12px; border:1px solid rgba(255,255,255,.1); border-radius:12px; background:rgba(3,8,12,.64); }
.am-company-focus__status i{grid-row:1/3;width:8px;height:8px;border-radius:50%;background:#35c57e}.am-company-focus__status strong{color:#fff;font-size:9px;letter-spacing:.1em}.am-company-focus__status span{color:#74838d;font-size:7px;letter-spacing:.13em}
.am-company-focus__copy { padding: 60px clamp(44px,5vw,78px) 60px 10px; color:#fff; }
.am-company-focus__copy .am-section-kicker { color:#ef4453; }
.am-company-focus__copy h2 { color:#fff; }
.am-company-focus__copy > p:not(.am-section-kicker) { max-width:580px; margin:23px 0 0; color:#aebac2; font-size:15px; line-height:1.7; }
.am-company-focus__links { display:grid; grid-template-columns:1fr 1fr; gap:1px; margin-top:31px; border:1px solid rgba(255,255,255,.09); border-radius:16px; overflow:hidden; background:rgba(255,255,255,.09); }
.am-company-focus__links a { display:flex; align-items:center; justify-content:space-between; min-height:56px; padding:0 17px; background:rgba(12,20,26,.96); color:#dce4e9; font-size:12px; font-weight:760; text-decoration:none; }
.am-company-focus__links a:hover { color:#fff; background:rgba(198,0,17,.13); }.am-company-focus__links span{color:#ef4453}

.am-company-editorial { padding-block: 100px 110px; border-top:1px solid #edf0f2; background:#fff; }
.am-company-editorial__grid { display:grid; grid-template-columns:minmax(250px,.65fr) minmax(0,1.35fr); gap:clamp(50px,8vw,130px); }
.am-company-editorial__grid > div:first-child { position:sticky; top:calc(var(--am-header-height) + 35px); align-self:start; }
.am-company-editorial__content { max-width:850px; color:#56626c; font-size:17px; line-height:1.8; }
.am-company-editorial__content > *:first-child { margin-top:0; }
.am-company-editorial__content h2,.am-company-editorial__content h3 { color:#172029; line-height:1.1; letter-spacing:-.035em; }.am-company-editorial__content h2{font-size:38px;margin:2em 0 .6em}.am-company-editorial__content h3{font-size:25px;margin:1.8em 0 .5em}.am-company-editorial__content a{color:var(--am-red)}
.am-company-final-cta { padding-top:0; }

/* Contact page */
.am-contact-hero__grid { min-height: 620px; }
.am-contact-hero__direct { display:flex; flex-wrap:wrap; gap:14px; margin-top:31px; }
.am-contact-hero__direct > a,
.am-contact-hero__direct > div { min-width:220px; display:flex; align-items:center; gap:12px; min-height:64px; padding:10px 14px 10px 10px; border:1px solid #e2e8eb; border-radius:14px; background:rgba(255,255,255,.82); box-shadow:0 12px 30px rgba(20,31,39,.05); text-decoration:none; }
.am-contact-hero__direct-icon { width:42px; height:42px; display:grid; place-items:center; flex:0 0 42px; border-radius:11px; background:#fff0f1; color:var(--am-red); font-size:17px; font-weight:850; }
.am-contact-hero__direct span:last-child{display:grid;gap:3px}.am-contact-hero__direct small{color:#8a949d;font-size:8px;font-weight:850;letter-spacing:.13em}.am-contact-hero__direct strong{color:#28333c;font-size:12.5px}.am-contact-hero__direct a:hover strong{color:var(--am-red)}

.am-contact-map-card { position:relative; min-height:470px; overflow:hidden; border:1px solid rgba(158,178,190,.48); border-radius:28px; background:linear-gradient(145deg,#edf5f8,#f8fbfc 55%,#e4eef3); box-shadow:0 30px 70px rgba(26,42,53,.13); }
.am-contact-map-card::before { content:""; position:absolute; width:52%; height:115%; top:-8%; left:24%; transform:rotate(28deg); border-left:22px solid rgba(255,255,255,.78); border-right:8px solid rgba(255,255,255,.6); }
.am-contact-map-card::after { content:""; position:absolute; width:120%; height:28px; left:-10%; top:55%; transform:rotate(-11deg); background:rgba(255,255,255,.7); box-shadow:0 0 0 7px rgba(217,229,235,.5); }
.am-contact-map-card__grid { position:absolute; inset:0; opacity:.64; background-image:linear-gradient(rgba(66,102,123,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(66,102,123,.08) 1px,transparent 1px); background-size:42px 42px; }
.am-contact-map-card__route { position:absolute; z-index:2; width:68%; height:46%; left:9%; top:24%; border:3px solid rgba(198,0,17,.72); border-color:var(--am-red) transparent var(--am-red) var(--am-red); border-radius:48% 42% 58% 36%; transform:rotate(-7deg); }
.am-contact-map-card__pin { position:absolute; z-index:4; left:57%; top:41%; width:48px; height:48px; display:grid; place-items:center; border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:var(--am-red); box-shadow:0 18px 34px rgba(198,0,17,.28); }
.am-contact-map-card__pin span { width:14px; height:14px; border-radius:50%; background:#fff; }
.am-contact-map-card__label { position:absolute; z-index:5; right:21px; bottom:22px; display:grid; gap:3px; min-width:196px; padding:16px 18px; border:1px solid rgba(255,255,255,.9); border-radius:15px; background:rgba(255,255,255,.88); box-shadow:0 16px 36px rgba(24,39,49,.12); backdrop-filter:blur(12px); }
.am-contact-map-card__label span{color:var(--am-red);font-size:8px;font-weight:900;letter-spacing:.14em}.am-contact-map-card__label strong{color:#18222b;font-size:24px;letter-spacing:-.035em}.am-contact-map-card__label small{color:#77838c;font-size:10px}
.am-contact-map-card__status { position:absolute; z-index:5; left:20px; top:20px; display:flex; align-items:center; gap:9px; min-height:34px; padding:0 12px; border:1px solid rgba(255,255,255,.85); border-radius:999px; background:rgba(255,255,255,.82); color:#66727d; font-size:8px; font-weight:850; letter-spacing:.11em; backdrop-filter:blur(10px); }.am-contact-map-card__status i{width:7px;height:7px;border-radius:50%;background:#35bd77;box-shadow:0 0 0 4px rgba(53,189,119,.1)}

.am-contact-form-section { padding-block: 104px 112px; background:#f4f7f9; }
.am-contact-form-section__grid { display:grid; grid-template-columns:minmax(300px,.76fr) minmax(0,1.24fr); gap:clamp(50px,8vw,120px); align-items:start; }
.am-contact-form-section__intro { position:sticky; top:calc(var(--am-header-height) + 36px); }
.am-contact-form-section__intro > p:not(.am-section-kicker) { max-width:520px; margin:22px 0 0; color:#68747e; font-size:15px; line-height:1.7; }
.am-contact-form-section__intro ul { list-style:none; margin:34px 0 0; padding:0; display:grid; gap:1px; overflow:hidden; border:1px solid #dfe6ea; border-radius:18px; background:#dfe6ea; }
.am-contact-form-section__intro li { display:grid; grid-template-columns:38px 1fr; gap:1px 13px; padding:17px 18px; background:#fff; }
.am-contact-form-section__intro li > span { grid-row:1/3; display:grid; place-items:center; width:34px; height:28px; border-radius:999px; background:#fff0f1; color:var(--am-red); font-size:9px; font-weight:900; }.am-contact-form-section__intro strong{color:#29343d;font-size:13px}.am-contact-form-section__intro small{color:#869099;font-size:10.5px}
.am-contact-form-card { padding: clamp(28px,4vw,50px); border:1px solid #e0e6ea; border-radius:24px; background:#fff; box-shadow:0 24px 60px rgba(20,31,39,.08); }
.am-contact-form { display:grid; gap:20px; }
.am-contact-form__row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.am-contact-form label { display:grid; gap:8px; color:#3e4a54; font-size:12px; font-weight:780; }
.am-contact-form input[type="text"],
.am-contact-form input[type="email"],
.am-contact-form select,
.am-contact-form textarea { width:100%; min-height:54px; border:1px solid #dce3e7; border-radius:11px; background:#fbfcfd; color:#172029; padding:0 15px; outline:none; transition:border-color .18s ease,box-shadow .18s ease,background .18s ease; }
.am-contact-form textarea { min-height:170px; resize:vertical; padding-block:14px; line-height:1.6; }
.am-contact-form input:focus,
.am-contact-form select:focus,
.am-contact-form textarea:focus { border-color:rgba(198,0,17,.62); background:#fff; box-shadow:0 0 0 4px rgba(198,0,17,.08); }
.am-contact-form__privacy { grid-template-columns:20px 1fr; align-items:start; gap:10px !important; color:#6c7780 !important; font-size:11px !important; font-weight:500 !important; line-height:1.55; }
.am-contact-form__privacy input { width:18px; height:18px; margin:1px 0 0; accent-color:var(--am-red); }.am-contact-form__privacy a{color:var(--am-red)}
.am-contact-form__submit { width:max-content; min-width:190px; border:0; cursor:pointer; }
.am-contact-form__honeypot { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.am-form-notice { display:grid; gap:4px; margin:0 0 22px; padding:15px 17px; border-radius:12px; font-size:12px; line-height:1.5; }.am-form-notice strong{font-size:13px}.am-form-notice--success{border:1px solid #bfe8d2;background:#f0fbf5;color:#256b45}.am-form-notice--error{border:1px solid #f0c7cb;background:#fff3f4;color:#8f2731}

.am-contact-details { padding-block: 100px 112px; background:#fff; }
.am-contact-details__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:44px; }
.am-contact-details__grid article { min-height:200px; display:grid; grid-template-columns:auto 1fr; align-content:start; gap:7px 15px; padding:27px 28px; border:1px solid #e1e7ea; border-radius:20px; background:linear-gradient(145deg,#fff,#f8fafb); }
.am-contact-details__grid article > span { grid-row:1/4; width:38px; height:28px; display:grid; place-items:center; border-radius:999px; background:#fff0f1; color:var(--am-red); font-size:9px; font-weight:900; }.am-contact-details__grid small{margin-top:2px;color:#929ba2;font-size:8px;font-weight:900;letter-spacing:.13em}.am-contact-details__grid strong{margin-top:34px;color:#25303a;font-size:16px;line-height:1.6}.am-contact-details__grid strong a{color:inherit;text-decoration:none}.am-contact-details__grid strong a:hover{color:var(--am-red)}
.am-contact-editorial { background:#f7f9fa; }

/* v0.9: mobile/tablet finishing */
html { scroll-padding-top: calc(var(--am-header-height) + 18px); }
body { overflow-wrap: anywhere; }
.am-mobile-panel { max-height: calc(100svh - var(--am-header-height)); overflow-y: auto; overscroll-behavior: contain; }
.am-button,
.am-menu-toggle,
.am-nav__list a,
.am-footer__column a { touch-action: manipulation; }

@media (max-width:1180px) {
  .am-company-hero__grid,.am-contact-hero__grid { grid-template-columns:minmax(0,.95fr) minmax(420px,1.05fr); gap:42px; }
  .am-company-hero__visual-frame { min-height:510px; }
  .am-company-focus__grid { grid-template-columns:1fr 1fr; }
  .am-company-focus__visual { padding:38px; }
}

@media (max-width:900px) {
  .am-company-hero__grid,.am-contact-hero__grid { min-height:0; grid-template-columns:1fr; gap:42px; padding-block:52px 76px; }
  .am-company-hero__copy,.am-contact-hero__copy { max-width:760px; }
  .am-company-hero__visual,.am-contact-hero__visual { max-width:760px; width:100%; margin-inline:auto; }
  .am-company-hero__visual-frame { min-height:500px; }
  .am-contact-map-card { min-height:440px; }
  .am-company-principles__head,.am-contact-details__head { grid-template-columns:1fr; align-items:start; gap:20px; }
  .am-company-principles__head > p,.am-contact-details__head > p { max-width:720px; }
  .am-company-principles__grid { grid-template-columns:1fr 1fr; }
  .am-company-principle:last-child { grid-column:1/-1; min-height:230px; }
  .am-company-principle:last-child h3 { margin-top:48px; }
  .am-company-focus__grid { grid-template-columns:1fr; }
  .am-company-focus__visual { min-height:460px; }
  .am-company-focus__copy { padding:0 42px 48px; }
  .am-company-editorial__grid { grid-template-columns:1fr; gap:30px; }
  .am-company-editorial__grid > div:first-child { position:static; }
  .am-contact-form-section__grid { grid-template-columns:1fr; gap:38px; }
  .am-contact-form-section__intro { position:static; }
  .am-contact-form-section__intro > p:not(.am-section-kicker) { max-width:680px; }
  .am-contact-form-section__intro ul { max-width:680px; }
  .am-contact-details__grid { grid-template-columns:1fr 1fr; }
  .am-contact-details__grid article:last-child { grid-column:1/-1; }

  .am-service-hero__visual-frame img { object-fit:cover; }
  .am-service-final-cta__inner { width:100%; }
}

@media (max-width:620px) {
  :root { --am-header-height:68px; --am-shell:calc(100% - 28px); }
  .am-header { height:var(--am-header-height); }
  .am-header__inner { gap:12px; }
  .am-brand__image,.custom-logo { width:122px; }
  .am-menu-toggle { width:44px; height:44px; border-radius:11px; }
  .am-mobile-panel__inner { padding-block:18px 24px; }
  .am-nav--mobile .am-nav__list a { min-height:52px; font-size:18px; }
  .am-mobile-panel__cta { min-height:52px; margin-top:16px; }

  .am-company-hero__ambient,.am-contact-hero__ambient { background-size:44px 44px; }
  .am-company-hero__grid,.am-contact-hero__grid { gap:34px; padding-block:36px 56px; }
  .am-company-hero__title,.am-contact-hero__title { font-size:clamp(43px,13.2vw,58px); }
  .am-company-hero__lead,.am-contact-hero__lead { margin-top:21px; font-size:15.5px; line-height:1.58; }
  .am-company-hero__actions { display:grid; grid-template-columns:1fr; gap:8px; margin-top:25px; }
  .am-company-hero__actions .am-button { width:100%; }
  .am-company-hero__link { justify-content:center; }
  .am-company-hero__signals { gap:9px 14px; margin-top:22px; font-size:10.5px; }
  .am-company-hero__signals li:last-child { width:100%; }
  .am-company-hero__visual-frame { min-height:345px; border-radius:21px; }
  .am-company-hero__visual-frame img { width:108%; left:-13%; top:20%; }
  .am-company-hero__badge { top:13px; right:13px; padding:9px 10px; border-radius:10px; }
  .am-company-hero__badge strong { font-size:7px; }
  .am-company-hero__mark { right:13px; bottom:13px; padding:12px 13px; border-radius:12px; }.am-company-hero__mark strong{font-size:18px}

  .am-company-principles { padding-block:72px 78px; }
  .am-company-principles__head h2,.am-contact-details__head h2,.am-company-focus__copy h2,.am-company-editorial__grid h2,.am-contact-form-section__intro h2 { font-size:clamp(35px,10.8vw,47px); }
  .am-company-principles__head > p,.am-contact-details__head > p { font-size:14px; }
  .am-company-principles__grid { grid-template-columns:1fr; gap:12px; margin-top:34px; }
  .am-company-principle,.am-company-principle:last-child { min-height:230px; padding:24px 22px; }
  .am-company-principle h3,.am-company-principle:last-child h3 { margin-top:46px; font-size:26px; }
  .am-company-principle p { font-size:13.5px; }

  .am-company-focus { padding-bottom:76px; }
  .am-company-focus__grid { border-radius:22px; }
  .am-company-focus__visual { min-height:340px; padding:22px; }
  .am-company-focus__screen { width:100%; }
  .am-company-focus__nodes { inset:25% 6% auto; gap:4px; }.am-company-focus__nodes span{min-height:44px;font-size:6.4px}
  .am-company-focus__copy { padding:0 23px 34px; }
  .am-company-focus__copy > p:not(.am-section-kicker) { font-size:13.5px; }
  .am-company-focus__links { grid-template-columns:1fr; }
  .am-company-focus__links a { min-height:50px; }
  .am-company-editorial { padding-block:72px 78px; }.am-company-editorial__content{font-size:15.5px}

  .am-contact-hero__direct { display:grid; grid-template-columns:1fr; gap:9px; margin-top:24px; }
  .am-contact-hero__direct > a,.am-contact-hero__direct > div { min-width:0; width:100%; }
  .am-contact-map-card { min-height:330px; border-radius:21px; }
  .am-contact-map-card__pin { left:54%; top:39%; width:42px; height:42px; }
  .am-contact-map-card__label { right:12px; bottom:12px; min-width:172px; padding:13px 14px; }.am-contact-map-card__label strong{font-size:21px}
  .am-contact-map-card__status { left:12px; top:12px; }

  .am-contact-form-section { padding-block:72px 78px; }
  .am-contact-form-section__grid { gap:30px; }
  .am-contact-form-section__intro > p:not(.am-section-kicker) { font-size:14px; }
  .am-contact-form-section__intro ul { margin-top:25px; }
  .am-contact-form-card { padding:22px 18px; border-radius:20px; }
  .am-contact-form__row { grid-template-columns:1fr; gap:18px; }
  .am-contact-form { gap:18px; }
  .am-contact-form input[type="text"],.am-contact-form input[type="email"],.am-contact-form select { min-height:52px; font-size:16px; }
  .am-contact-form textarea { font-size:16px; }
  .am-contact-form__submit { width:100%; }
  .am-contact-details { padding-block:72px 78px; }
  .am-contact-details__grid { grid-template-columns:1fr; gap:12px; margin-top:32px; }
  .am-contact-details__grid article,.am-contact-details__grid article:last-child { grid-column:auto; min-height:160px; padding:23px 21px; }
  .am-contact-details__grid strong { margin-top:22px; font-size:14.5px; }

  /* Wider polish across the existing site. */
  .am-service-hero__visual-frame { aspect-ratio: 1.04 / 1; min-height:0; }
  .am-service-spotlight__visual { min-height:300px; }
  .am-service-process__grid,.am-service-related__grid { gap:10px; border:0; background:transparent; overflow:visible; }
  .am-service-process__grid article { border:1px solid #e0e6ea; border-radius:17px; }
  .am-service-related-card { border-radius:17px; }
  .am-footer__main { gap:30px 18px; }
  .am-footer__legal { align-items:center; }
  .am-footer__top { min-height:44px; }
}

@media (max-width:390px) {
  :root { --am-shell:calc(100% - 22px); }
  .am-company-hero__title,.am-contact-hero__title { font-size:42px; }
  .am-company-hero__signals { display:grid; grid-template-columns:1fr; }
  .am-company-hero__visual-frame { min-height:310px; }
  .am-company-focus__nodes span { font-size:5.8px; }
  .am-contact-map-card__label { min-width:156px; }
}

/* ==========================================================
   v0.10 – Core pages: Impressum & Datenschutz
   ========================================================== */
.am-legal-page {
  background: #fff;
  color: #1f2931;
}
.am-legal-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e8edef;
  background:
    radial-gradient(circle at 82% 20%, rgba(198,0,17,.09), transparent 25%),
    linear-gradient(135deg, #fff 0%, #fbfcfd 58%, #f2f5f6 100%);
}
.am-legal-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    linear-gradient(rgba(63,78,88,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,78,88,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 42%, #000 100%);
}
.am-legal-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  min-height: 570px;
  padding-block: 70px 82px;
}
.am-legal-hero__title {
  margin: 18px 0 0;
  font-size: clamp(58px, 6.1vw, 94px);
  line-height: .94;
  letter-spacing: -.058em;
}
.am-legal-hero__title span,
.am-legal-hero__title em {
  display: block;
}
.am-legal-hero__title span {
  color: #12191f;
  font-style: normal;
  font-weight: 840;
}
.am-legal-hero__title em {
  max-width: 790px;
  margin-top: 8px;
  color: #68747d;
  font-style: normal;
  font-weight: 350;
  font-size: .55em;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.am-legal-hero__lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: #64717a;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}
.am-legal-hero__panel {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(40,52,61,.11);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.96), rgba(246,248,249,.92)),
    #fff;
  box-shadow: 0 30px 80px rgba(32,44,53,.10);
}
.am-legal-hero__panel::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(198,0,17,.14);
  border-radius: 50%;
  top: -86px;
  right: -58px;
  box-shadow:
    0 0 0 30px rgba(198,0,17,.025),
    0 0 0 62px rgba(198,0,17,.018);
}
.am-legal-hero__panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  pointer-events: none;
}
.am-legal-hero__code {
  position: absolute;
  top: 30px;
  left: 34px;
  color: var(--am-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.am-legal-hero__panel strong {
  position: relative;
  z-index: 1;
  max-width: 390px;
  color: #1c252c;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.am-legal-hero__panel small {
  position: relative;
  z-index: 1;
  margin-top: 13px;
  color: #707b83;
  font-size: 13px;
  line-height: 1.55;
}
.am-legal-hero__line {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 3px;
  margin: 26px 0 14px;
  background: var(--am-red);
}
.am-legal-hero__panel > span:last-child {
  position: relative;
  z-index: 1;
  color: #89939a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
}
.am-legal-hero__panel--privacy {
  justify-content: center;
  align-items: flex-start;
  background:
    radial-gradient(circle at 67% 30%, rgba(198,0,17,.12), transparent 31%),
    linear-gradient(145deg, #111a21, #202c34);
  border-color: rgba(255,255,255,.09);
}
.am-legal-hero__panel--privacy::after { border-color: rgba(255,255,255,.08); }
.am-legal-hero__panel--privacy strong { color: #fff; margin-top: 28px; }
.am-legal-hero__panel--privacy small { color: #aeb7bd; max-width: 380px; }
.am-privacy-shield {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 98px;
  margin-top: 20px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 42px 42px 52px 52px / 26px 26px 64px 64px;
  transform: perspective(200px) rotateX(-4deg);
}
.am-privacy-shield::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 34px;
  translate: -50% 0;
  border-radius: 50%;
  background: var(--am-red);
  box-shadow: 0 0 0 8px rgba(198,0,17,.16), 0 0 26px rgba(198,0,17,.5);
}
.am-privacy-shield::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  left: 50%;
  top: 50px;
  translate: -50% 0;
  background: #fff;
  border-radius: 999px;
}
.am-legal-main {
  padding-block: 96px 120px;
  background: #fff;
}
.am-legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  justify-content: space-between;
  gap: clamp(60px, 9vw, 145px);
  align-items: start;
}
.am-legal-aside {
  position: sticky;
  top: calc(var(--am-header-height) + 34px);
  display: grid;
  gap: 2px;
  padding: 20px 0;
  border-top: 1px solid #dfe5e8;
  border-bottom: 1px solid #dfe5e8;
}
.am-legal-aside > span {
  margin-bottom: 13px;
  color: #9aa3a9;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
}
.am-legal-aside a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px 8px 16px;
  border-radius: 8px;
  color: #53606a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.am-legal-aside a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--am-red);
  transition: height .18s ease;
}
.am-legal-aside a:hover { color: #1c252c; background: #f6f8f9; }
.am-legal-aside a:hover::before { height: 18px; }
.am-legal-content { min-width: 0; }
.am-legal-section {
  scroll-margin-top: calc(var(--am-header-height) + 34px);
  padding: 0 0 72px;
  margin: 0 0 72px;
  border-bottom: 1px solid #e4e9eb;
}
.am-legal-section:last-child { margin-bottom: 0; }
.am-legal-section h2 {
  margin: 10px 0 24px;
  color: #1d272e;
  font-size: clamp(33px, 3.3vw, 50px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.am-legal-section p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #5e6a73;
  font-size: 16px;
  line-height: 1.78;
}
.am-legal-section p strong { color: #2a343b; }
.am-legal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 32px;
}
.am-legal-facts article {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 25px 27px;
  border: 1px solid #e0e6e9;
  border-radius: 18px;
  background: linear-gradient(145deg,#fff,#f8fafb);
}
.am-legal-facts small {
  color: var(--am-red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}
.am-legal-facts strong {
  color: #263139;
  font-size: 17px;
  line-height: 1.55;
}
.am-legal-facts a { color: inherit; text-decoration: none; }
.am-legal-facts a:hover { color: var(--am-red); }
.am-legal-data-list {
  margin: 32px 0 0;
  border-top: 1px solid #dfe5e8;
}
.am-legal-data-list > div {
  display: grid;
  grid-template-columns: minmax(170px,.75fr) 1.25fr;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid #e5eaec;
}
.am-legal-data-list dt {
  color: #929ca3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.am-legal-data-list dd {
  margin: 0;
  color: #2a343b;
  font-size: 15px;
  font-weight: 760;
}
.am-legal-contact-link {
  max-width: 650px;
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  margin-top: 30px;
  padding: 14px 18px;
  border: 1px solid #dfe5e8;
  border-radius: 14px;
  background: #fafbfb;
  color: #263139;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.am-legal-contact-link:hover {
  border-color: rgba(198,0,17,.38);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34,46,55,.08);
}
.am-legal-contact-link span { color: #929ca3; font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.am-legal-contact-link strong { overflow-wrap: anywhere; font-size: 15px; }
.am-legal-contact-link i { color: var(--am-red); font-size: 20px; font-style: normal; }
.am-legal-callout {
  display: grid;
  grid-template-columns: minmax(150px,.55fr) 1.45fr;
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--am-red);
  border-radius: 0 14px 14px 0;
  background: #f7f9fa;
}
.am-legal-callout strong { color: #243039; font-size: 14px; }
.am-legal-callout span { color: #69757d; font-size: 13px; line-height: 1.65; }
.am-legal-editorial-content {
  color: #5e6a73;
  font-size: 16px;
  line-height: 1.78;
}
.am-legal-editorial-content > *:first-child { margin-top: 0; }
.am-legal-editorial-content > *:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .am-legal-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 60px 72px; }
  .am-legal-hero__panel { min-height: 280px; max-width: 760px; }
  .am-legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .am-legal-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 0;
  }
  .am-legal-aside > span { width: 100%; }
  .am-legal-aside a { min-height: 36px; padding: 7px 11px; border: 1px solid #e1e7ea; }
  .am-legal-aside a::before { display: none; }
}

@media (max-width: 620px) {
  .am-legal-hero__ambient { background-size: 42px 42px; }
  .am-legal-hero__grid { gap: 32px; padding-block: 38px 52px; }
  .am-legal-hero__title { font-size: clamp(44px, 13.4vw, 58px); }
  .am-legal-hero__title em { margin-top: 10px; font-size: .48em; line-height: 1.14; }
  .am-legal-hero__lead { margin-top: 22px; font-size: 15px; line-height: 1.6; }
  .am-legal-hero__panel { min-height: 245px; padding: 27px 24px; border-radius: 21px; }
  .am-legal-hero__code { top: 22px; left: 23px; }
  .am-legal-hero__panel strong { font-size: 29px; }
  .am-privacy-shield { width: 66px; height: 76px; }
  .am-privacy-shield::before { top: 26px; }
  .am-privacy-shield::after { top: 43px; height: 16px; }
  .am-legal-main { padding-block: 62px 78px; }
  .am-legal-layout { gap: 28px; }
  .am-legal-aside { margin-inline: -2px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .am-legal-aside::-webkit-scrollbar { display: none; }
  .am-legal-aside > span { display: none; }
  .am-legal-aside a { white-space: nowrap; flex: 0 0 auto; font-size: 10px; }
  .am-legal-section { padding-bottom: 46px; margin-bottom: 48px; }
  .am-legal-section h2 { margin-bottom: 19px; font-size: clamp(32px, 10.5vw, 44px); }
  .am-legal-section p { font-size: 14.5px; line-height: 1.72; }
  .am-legal-facts { grid-template-columns: 1fr; gap: 10px; margin-top: 25px; }
  .am-legal-facts article { min-height: 145px; padding: 21px; }
  .am-legal-data-list > div { grid-template-columns: 1fr; gap: 6px; min-height: 0; padding: 15px 0; }
  .am-legal-contact-link { grid-template-columns: 1fr auto; gap: 4px 14px; padding: 15px; }
  .am-legal-contact-link span { grid-column: 1 / -1; }
  .am-legal-contact-link strong { font-size: 13px; }
  .am-legal-callout { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
}

/* ==========================================================
   Launch polish – v1.0
   ========================================================== */
html.am-menu-open,
html.am-menu-open body { overflow: hidden; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(198,0,17,.28);
  outline-offset: 3px;
}

.am-menu-toggle:focus-visible { outline: 3px solid rgba(198,0,17,.28); outline-offset: 3px; }

.am-empty-state {
  max-width: 760px;
  padding: clamp(56px,8vw,110px) 0;
}
.am-empty-state h1 { margin: 10px 0 18px; font-size: clamp(42px,6vw,70px); line-height:1.03; letter-spacing:-.045em; }
.am-empty-state > p:not(.am-section-kicker) { max-width:620px; margin:0 0 28px; color:var(--am-muted); font-size:18px; line-height:1.65; }

.am-error-page { overflow:hidden; background:#fff; }
.am-error-hero { position:relative; min-height:calc(100vh - var(--am-header-height)); display:grid; align-items:center; isolation:isolate; }
.am-error-hero__ambient { position:absolute; inset:0; z-index:-1; background:radial-gradient(circle at 82% 38%,rgba(198,0,17,.10),transparent 24%),linear-gradient(120deg,#fff 0 52%,#f3f7f9 100%); }
.am-error-hero__ambient::after { content:""; position:absolute; inset:0; opacity:.48; background-image:linear-gradient(rgba(17,22,29,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(17,22,29,.035) 1px,transparent 1px); background-size:58px 58px; mask-image:linear-gradient(90deg,transparent 38%,#000); }
.am-error-hero__grid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr); align-items:center; gap:clamp(34px,6vw,90px); padding-block:clamp(64px,8vw,120px); }
.am-error-hero__copy { position:relative; z-index:2; }
.am-error-hero__code { margin:0 0 -12px; color:rgba(198,0,17,.08); font-size:clamp(100px,15vw,220px); font-weight:900; line-height:.72; letter-spacing:-.08em; }
.am-error-hero h1 { margin:0; font-size:clamp(48px,6.2vw,88px); line-height:.98; letter-spacing:-.055em; }
.am-error-hero h1 em { display:block; color:var(--am-red); font-style:normal; font-weight:450; }
.am-error-hero__copy > p:not(.am-section-kicker):not(.am-error-hero__code) { max-width:650px; margin:27px 0 0; color:#53606b; font-size:18px; line-height:1.65; }
.am-error-hero__actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:31px; }
.am-error-hero__contact { display:inline-flex; gap:9px; margin-top:24px; color:#4d5964; font-size:14px; font-weight:700; text-decoration:none; }
.am-error-hero__contact:hover { color:var(--am-red); }
.am-error-hero__visual { position:relative; min-height:520px; display:grid; place-items:center; }
.am-error-hero__visual img { position:relative; z-index:3; width:min(86%,620px); filter:drop-shadow(0 28px 28px rgba(17,22,29,.16)); transform:rotate(-4deg); }
.am-error-hero__orbit { position:absolute; width:min(88%,620px); aspect-ratio:1; border:1px solid rgba(198,0,17,.18); border-radius:50%; box-shadow:0 0 0 44px rgba(198,0,17,.025),0 0 0 90px rgba(17,22,29,.018); }
.am-error-hero__orbit::before,.am-error-hero__orbit::after { content:""; position:absolute; border-radius:50%; background:var(--am-red); box-shadow:0 0 22px rgba(198,0,17,.35); }
.am-error-hero__orbit::before { width:12px; height:12px; top:13%; right:14%; }
.am-error-hero__orbit::after { width:7px; height:7px; bottom:18%; left:10%; }
.am-error-hero__badge { position:absolute; z-index:4; right:6%; bottom:14%; padding:11px 14px; border:1px solid rgba(17,22,29,.08); border-radius:999px; background:rgba(255,255,255,.9); box-shadow:0 14px 35px rgba(17,22,29,.08); color:#4f5a65; font-size:10px; font-weight:850; letter-spacing:.13em; }

@media (max-width: 900px) {
  .am-error-hero { min-height:auto; }
  .am-error-hero__grid { grid-template-columns:1fr; padding-block:54px 70px; }
  .am-error-hero__visual { min-height:390px; order:-1; }
  .am-error-hero__visual img { width:min(74%,520px); }
  .am-error-hero__code { font-size:clamp(92px,24vw,170px); }
}

@media (max-width: 620px) {
  .am-error-hero__grid { padding-block:32px 56px; gap:20px; }
  .am-error-hero__visual { min-height:285px; }
  .am-error-hero__visual img { width:min(88%,420px); }
  .am-error-hero__badge { right:2%; bottom:8%; font-size:8px; }
  .am-error-hero h1 { font-size:clamp(42px,12.2vw,58px); }
  .am-error-hero__copy > p:not(.am-section-kicker):not(.am-error-hero__code) { font-size:15.5px; }
  .am-error-hero__actions { display:grid; grid-template-columns:1fr; }
}

@media (forced-colors: active) {
  .am-button,
  .am-service-card,
  .am-menu-toggle { border:1px solid ButtonText; }
}
