:root {
  color-scheme: dark;
  --bg: #05080d;
  --bg-soft: #07111a;
  --card: #0b121a;
  --card-strong: #0e1722;
  --line: rgba(37, 150, 190, 0.25);
  --line-strong: rgba(0, 170, 255, 0.42);
  --blue: #2596be;
  --blue-bright: #0b9df0;
  --cyan: #00aaff;
  --red: #dd0c0c;
  --text: #ffffff;
  --muted: #c7d0d9;
  --soft: #8f9ba8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --header-height: 86px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 170, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #05080d 0%, #06101a 38%, #05080d 100%);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: 74px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(5, 8, 13, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-logo {
  width: 168px;
  display: block;
}

.brand img,
.footer-logo img,
.contact-logo,
.watermark-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.site-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-cta {
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #0875dc, #0b9df0);
  box-shadow: 0 14px 32px rgba(11, 157, 240, 0.22);
}

.btn {
  min-width: 220px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0875dc, #0b9df0);
  box-shadow: 0 18px 38px rgba(11, 157, 240, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(7, 17, 26, 0.72);
  border-color: rgba(0, 170, 255, 0.52);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(11, 157, 240, 0.32);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--cyan);
  background: rgba(10, 35, 52, 0.88);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle .icon-close {
  display: none;
}

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(37, 150, 190, 0.16);
}

.hero-grid {
  width: 100%;
  max-width: none;
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span,
.accent-line {
  color: var(--cyan);
}

.hero-text {
  max-width: 440px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(100% - 40px, var(--container));
  max-width: none;
  margin-inline: auto;
  padding: 58px 0 56px;
}

.media-shell.hero-media {
  width: 100vw;
  min-height: 430px;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #05080d;
}

.hero-media .optional-image {
  object-position: right center;
}

.hero-media.media-shell::before {
  display: none;
}

.hero-media.media-shell::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.99) 0%, rgba(5, 8, 13, 0.94) 34%, rgba(5, 8, 13, 0.62) 58%, rgba(5, 8, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, 0.08) 0%, rgba(5, 8, 13, 0.28) 100%);
}

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1.03;
}

.media-shell {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background:
    linear-gradient(120deg, rgba(5, 8, 13, 0.12), rgba(5, 8, 13, 0.72)),
    linear-gradient(135deg, rgba(0, 170, 255, 0.16), transparent 36%),
    #08121b;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  z-index: 0;
}

.media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.96) 0%, rgba(5, 8, 13, 0.34) 32%, rgba(5, 8, 13, 0.04) 100%),
    radial-gradient(circle at 78% 20%, rgba(221, 12, 12, 0.18), transparent 15rem);
  pointer-events: none;
  z-index: 2;
}

.optional-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.optional-image.is-missing {
  display: none;
}

.optional-image:not(.is-missing) + .media-fallback {
  display: none;
}

.media-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: 34px;
}

.media-fallback img {
  width: min(46%, 260px);
  height: auto;
  margin-bottom: auto;
  opacity: 0.72;
}

.media-fallback span {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-fallback strong {
  max-width: 360px;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-centered {
  text-align: center;
}

.section-heading h2,
.prebuy-copy h2,
.contact-form-area h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p,
.prebuy-copy p,
.contact-form-area p {
  color: var(--muted);
}

.section-heading p {
  margin-bottom: 0;
}

.services-section {
  padding-top: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  grid-column: span 2;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.service-card:nth-child(6) {
  grid-column: 2 / span 2;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(0, 170, 255, 0.07), rgba(255, 255, 255, 0.01)),
    var(--card);
}

.service-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: var(--cyan);
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(0, 170, 255, 0.24));
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.service-card p {
  max-width: 220px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.prebuy-card,
.contact-card,
.trust-card,
.map-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(7, 17, 26, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prebuy-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  padding: 10px;
  align-items: stretch;
}

.prebuy-media {
  min-width: 0;
  min-height: 400px;
}

.prebuy-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 38px 42px 0;
}

.watermark-logo {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 142px;
  opacity: 0.13;
  pointer-events: none;
}

.prebuy-copy h2 {
  margin-bottom: 0;
}

.accent-line {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1.05;
}

.prebuy-copy > p:not(.accent-line) {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.benefit-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text);
  text-align: center;
}

.benefit-item .icon {
  width: 42px;
  height: 42px;
  color: var(--cyan);
}

.prebuy-btn {
  align-self: center;
  min-width: min(100%, 360px);
}

.work-section {
  padding-top: 46px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.16), transparent 45%),
    #08121b;
}

.work-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.22;
}

.small-fallback {
  justify-content: center;
  align-items: center;
  padding: 18px;
  text-align: center;
}

.small-fallback span {
  font-size: 0.82rem;
}

.work-label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 800;
}

.work-label .icon {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 999px;
  padding: 2px;
}

.trust-section {
  padding-top: 44px;
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px;
}

.trust-card article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-card article:last-child {
  border-right: 0;
}

.trust-card .icon {
  width: 46px;
  height: 46px;
  color: var(--cyan);
}

.trust-card h3 {
  margin-bottom: 3px;
  font-size: 1rem;
  line-height: 1.25;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  padding-top: 46px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  overflow: hidden;
}

.contact-form-area,
.contact-info {
  padding: 42px 48px;
}

.contact-form-area {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  color: var(--text);
  background: #07111a;
  border: 1px solid rgba(143, 155, 168, 0.24);
  border-radius: 6px;
  padding: 0 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input::placeholder {
  color: rgba(199, 208, 217, 0.58);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

input:focus,
select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.14);
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

.contact-info {
  position: relative;
  display: grid;
  align-content: center;
  gap: 26px;
}

.contact-logo {
  width: 210px;
  opacity: 0.9;
}

.contact-info ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-size: 1.05rem;
}

.contact-info li .icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.whatsapp-color {
  color: #20d466 !important;
}

.instagram-color {
  color: #ff2d8d !important;
}

.location-section {
  padding-top: 46px;
}

.map-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 6px;
  filter: saturate(0.88) contrast(1.04);
}

.map-btn {
  position: absolute;
  right: 28px;
  bottom: 28px;
  min-width: 180px;
  background: rgba(5, 8, 13, 0.88);
  backdrop-filter: blur(12px);
}

.footer-photo {
  padding: 8px 0 22px;
}

.footer-photo-frame {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.footer-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 402;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
}

.site-footer {
  margin-top: 10px;
  padding: 32px 0 22px;
  background: rgba(3, 6, 10, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.copyright {
  margin-top: 18px;
  color: var(--soft);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .site-nav {
    gap: 22px;
  }

  .header-cta {
    padding: 0 16px;
  }

  .hero-grid,
  .prebuy-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .media-shell {
    min-height: 430px;
  }

  .prebuy-copy {
    padding: 18px 28px 34px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(6) {
    grid-column: auto;
  }

  .trust-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .trust-card article {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-card article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 138px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 70;
  }

  .menu-toggle[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }

  .site-nav,
  .header-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav {
    top: calc(var(--header-height) + 12px);
    display: grid;
    gap: 0;
    overflow: hidden;
    background: rgba(7, 17, 26, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    top: calc(var(--header-height) + 216px);
    width: auto;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding: 0;
  }

  .hero-grid {
    gap: 26px;
  }

  .media-shell.hero-media {
    min-height: min(650px, calc(100vh - var(--header-height) - 20px));
  }

  .hero-media .optional-image {
    object-position: 82% center;
  }

  .hero-media.media-shell::after {
    background:
      linear-gradient(90deg, rgba(5, 8, 13, 1) 0%, rgba(5, 8, 13, 0.98) 48%, rgba(5, 8, 13, 0.78) 72%, rgba(5, 8, 13, 0.38) 100%),
      linear-gradient(180deg, rgba(5, 8, 13, 0.14) 0%, rgba(5, 8, 13, 0.36) 100%);
  }

  .hero-copy {
    width: min(100% - 28px, var(--container));
    padding: 42px 0;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 4.15rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .media-shell {
    min-height: 320px;
  }

  .media-fallback {
    padding: 24px;
  }

  .media-fallback img {
    width: min(58%, 220px);
  }

  .services-grid,
  .work-grid,
  .benefits,
  .contact-card,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 154px;
  }

  .prebuy-card {
    gap: 0;
  }

  .prebuy-copy {
    padding: 30px 22px;
  }

  .watermark-logo {
    width: 118px;
    top: 18px;
    right: 18px;
  }

  .benefits {
    justify-items: start;
  }

  .benefit-item {
    grid-template-columns: 42px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .work-grid {
    gap: 14px;
  }

  .trust-card {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .trust-card article,
  .trust-card article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-card article:last-child {
    border-bottom: 0;
  }

  .contact-form-area,
  .contact-info {
    padding: 30px 22px;
  }

  .contact-form-area {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-logo {
    width: 180px;
  }

  .map-card iframe {
    height: 280px;
  }

  .map-btn {
    position: static;
    margin-top: 12px;
    width: 100%;
    background: rgba(7, 17, 26, 0.72);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .hero-text {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .prebuy-copy h2,
  .contact-form-area h2 {
    font-size: 1.7rem;
  }

  .media-shell {
    min-height: 270px;
  }

  .media-shell.hero-media {
    min-height: 620px;
  }

  .hero-media .optional-image {
    object-position: 86% center;
  }

  .hero-media.media-shell::after {
    background:
      linear-gradient(90deg, rgba(5, 8, 13, 1) 0%, rgba(5, 8, 13, 0.99) 58%, rgba(5, 8, 13, 0.82) 80%, rgba(5, 8, 13, 0.42) 100%),
      linear-gradient(180deg, rgba(5, 8, 13, 0.18) 0%, rgba(5, 8, 13, 0.42) 100%);
  }

  .hero-copy {
    width: min(100% - 22px, var(--container));
    padding: 34px 0;
  }

  .media-fallback strong {
    font-size: 1.8rem;
  }

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

  .trust-card article {
    align-items: flex-start;
    padding: 18px 14px;
  }

  .contact-info li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    font-size: 0.96rem;
  }

  .contact-info li .icon {
    width: 28px;
    height: 28px;
  }
}
