﻿:root {
  --bg: #050505;
  --bg-soft: #0b0b0d;
  --panel: #101013;
  --panel-strong: #151518;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --subtle: #747474;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e31b23;
  --red-dark: #a80f16;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-lang="el"] .lang-en,
html[data-lang="en"] .lang-el {
  display: none !important;
}

.lang-el[hidden],
.lang-en[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 27, 35, 0.12), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #0a0a0b 52%, #050505 100%);
  color: var(--text);
  font-family: "Play", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px 5vw;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  border-bottom-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 38px);
  min-height: 42px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

.nav-call {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(227, 27, 35, 0.85);
  border-radius: 6px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.nav-call:hover,
.nav-call:focus-visible {
  background: var(--red);
}

.legacy-hero {
  display: none;
}

.top-slider {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: 42px 5vw 34px;
}

.top-slider-track {
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    linear-gradient(180deg, #121214, #050505);
  box-shadow: var(--shadow);
}

.top-slide {
  display: none;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 48px;
  min-height: 590px;
  padding: 46px;
}

.top-slide.is-active {
  display: grid;
  animation: slideIn 0.45s ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(227, 27, 35, 0.16), transparent 38%),
    #09090a;
}

.slide-media::before,
.slide-media::after {
  position: absolute;
  content: "";
}

.slide-media::before {
  inset: 24px;
  border: 1px solid rgba(227, 27, 35, 0.28);
}

.slide-media::after {
  width: 142%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.92), transparent);
  transform: rotate(-18deg);
}

.slide-media img {
  position: relative;
  z-index: 2;
  width: min(88%, 440px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: contrast(1.06) saturate(1.03);
}

.media-b::after {
  transform: rotate(18deg);
}

.media-c::after {
  transform: rotate(0deg);
}

.scan-line,
.security-ring,
.screen-block {
  position: absolute;
  z-index: 1;
}

.scan-line {
  left: 9%;
  right: 9%;
  height: 3px;
  background: rgba(227, 27, 35, 0.72);
  box-shadow: 0 0 22px rgba(227, 27, 35, 0.5);
}

.scan-one {
  top: 24%;
}

.scan-two {
  top: 52%;
  background: rgba(255, 255, 255, 0.35);
}

.scan-three {
  bottom: 22%;
}

.security-ring {
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 27, 35, 0.45);
  border-radius: 50%;
}

.ring-two {
  width: 48%;
  border-color: rgba(255, 255, 255, 0.22);
}

.ring-three {
  width: 30%;
  border-color: rgba(227, 27, 35, 0.72);
}

.screen-block {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.block-one {
  left: 12%;
  top: 18%;
  width: 38%;
  height: 26%;
}

.block-two {
  right: 12%;
  top: 26%;
  width: 30%;
  height: 38%;
  border-color: rgba(227, 27, 35, 0.5);
}

.block-three {
  left: 18%;
  bottom: 16%;
  width: 58%;
  height: 18%;
}

.slide-copy {
  max-width: 730px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0;
}

.slider-arrow,
.slider-dots button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 1.65rem;
  line-height: 1;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
}

.slider-arrow:hover,
.slider-arrow:focus-visible,
.slider-dots button:hover,
.slider-dots button:focus-visible,
.slider-dots button.is-active {
  border-color: var(--red);
  background: var(--red);
}

.slider-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.slider-facts div {
  min-height: 104px;
  padding: 22px;
  background: rgba(12, 12, 14, 0.95);
}

.slider-facts dt {
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.slider-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  grid-template-areas:
    "visual copy"
    "facts facts";
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 74px);
  padding: 54px 5vw 34px;
}

.hero.legacy-hero {
  display: none;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #161616, #070707);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
}

.hero-visual::before {
  inset: 22px;
  border: 1px solid rgba(227, 27, 35, 0.28);
}

.hero-visual::after {
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.95), transparent);
  transform: rotate(-18deg);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(78%, 420px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: contrast(1.05) saturate(1.05);
}

.signal {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(227, 27, 35, 0.72);
  box-shadow: 0 0 22px rgba(227, 27, 35, 0.5);
}

.signal-one {
  top: 24%;
}

.signal-two {
  top: 51%;
  background: rgba(255, 255, 255, 0.35);
}

.signal-three {
  bottom: 22%;
}

.hero-copy {
  grid-area: copy;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.6rem;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 136px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  overflow: hidden;
  isolation: isolate;
  background: #141416;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(227, 27, 35, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -18px 28px rgba(0, 0, 0, 0.38),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.button span {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.button::before,
.button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.button::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 22%, rgba(0, 0, 0, 0.42) 60%, rgba(255, 255, 255, 0.11)),
    linear-gradient(135deg, #5d1015 0%, #2a2a2d 28%, #9b9b9f 44%, #2f2f32 58%, #d7d7da 72%, #252528 86%, #7f1117 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, rgba(0, 0, 0, 0.14) 1px 4px);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.button::after {
  z-index: 2;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.34) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.button:hover::before,
.button:focus-visible::before {
  filter: brightness(1.12) contrast(1.06);
  transform: scale(1.02);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.button-primary {
  border-color: rgba(227, 27, 35, 0.68);
}

.button-primary::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 22%, rgba(0, 0, 0, 0.42) 60%, rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, #8f1018 0%, #e31b23 16%, #3b3b3e 32%, #bdbdc1 47%, #2a2a2d 62%, #f0f0f2 74%, #9d1118 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, rgba(0, 0, 0, 0.14) 1px 4px);
}

.button-secondary {
  border-color: var(--line);
}

.button-secondary::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 22%, rgba(0, 0, 0, 0.5) 62%, rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #262629 0%, #4b4b4f 28%, #a6a6aa 43%, #2b2b2e 59%, #d2d2d5 72%, #222225 88%, #4a0d12 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, rgba(0, 0, 0, 0.16) 1px 4px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--red);
}

.hero-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 4px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-facts div {
  min-height: 104px;
  padding: 22px;
  background: rgba(12, 12, 14, 0.95);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.section {
  padding: 82px 5vw;
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1.1fr);
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.intro p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 1.07rem;
}

.dsp-certification {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(227, 27, 35, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.018);
}

.dsp-certification-badge {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #171719, #070708);
  box-shadow: var(--shadow);
}

.dsp-certification-badge::before,
.dsp-certification-badge::after {
  position: absolute;
  content: "";
}

.dsp-certification-badge::before {
  inset: 24px;
  border: 1px solid rgba(227, 27, 35, 0.32);
}

.dsp-certification-badge::after {
  left: -15%;
  right: -15%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.9), transparent);
  transform: rotate(-16deg);
}

.dsp-certification-badge span,
.dsp-certification-badge small {
  position: relative;
  z-index: 1;
}

.dsp-certification-badge span {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.dsp-certification-badge small {
  width: fit-content;
  padding-top: 18px;
  border-top: 3px solid var(--red);
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dsp-certification-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.dsp-certification-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.dsp-certification-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.dsp-certification-points div {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  background: rgba(7, 7, 8, 0.92);
}

.dsp-certification-points strong {
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.dsp-certification-points span {
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-list,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-list article,
.faq-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--panel);
}

.category-list article {
  border-left: 3px solid var(--red);
}

.service-card,
.process-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    var(--panel);
}

.service-card:hover {
  border-color: rgba(227, 27, 35, 0.65);
}

.service-mark {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--red);
}

.service-card p,
.category-list p,
.faq-grid p,
.process-grid p,
.split-copy p {
  color: var(--muted);
}

.project-gallery {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(227, 27, 35, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.025);
}

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

.project-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--panel);
}

.project-card:hover {
  border-color: rgba(227, 27, 35, 0.62);
}

.project-featured {
  grid-column: span 2;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
}

.project-card figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #09090a;
}

.project-featured figure {
  min-height: 430px;
}

.project-card figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.76)),
    linear-gradient(125deg, rgba(227, 27, 35, 0.2), transparent 42%);
}

.project-card figure > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.04);
}

.project-detail-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.04);
}

.project-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.project-tag {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-content h3,
.project-content p {
  margin-bottom: 0;
}

.project-content p {
  color: var(--muted);
}

.project-content a {
  width: fit-content;
  margin-top: 8px;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.project-detail-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.project-detail-strip img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.work-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(227, 27, 35, 0.18), transparent 38%),
    linear-gradient(180deg, #171717, #060606);
}

.work-panel img {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: min(42%, 240px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.meter {
  position: absolute;
  left: 8%;
  height: 68px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent);
}

.meter-a {
  top: 18%;
  width: 68%;
}

.meter-b {
  top: 42%;
  width: 48%;
}

.meter-c {
  top: 66%;
  width: 58%;
}

.split-copy {
  max-width: 700px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--white);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 2px;
  background: var(--red);
  content: "";
}

.process {
  background: rgba(255, 255, 255, 0.03);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.contact-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

address {
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--white);
}

address a {
  color: var(--white);
  border-bottom: 1px solid rgba(227, 27, 35, 0.7);
}

.map-wrap {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(227, 27, 35, 0.18), transparent 42%),
    var(--panel);
}

.map-embed {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  background: var(--panel);
}

.map-embed::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 -90px 110px rgba(0, 0, 0, 0.42);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 460px;
  height: 100%;
  border: 0;
  filter: grayscale(0.16) contrast(1.06) brightness(0.92);
}

.map-grid {
  position: relative;
  width: 100%;
  min-height: 410px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
}

.route,
.pin,
.map-label {
  position: absolute;
}

.route {
  background: rgba(255, 255, 255, 0.18);
}

.route-a {
  left: 12%;
  right: 10%;
  top: 34%;
  height: 4px;
  transform: rotate(-12deg);
}

.route-b {
  left: 18%;
  top: 12%;
  bottom: 16%;
  width: 4px;
  background: rgba(227, 27, 35, 0.76);
  transform: rotate(8deg);
}

.route-c {
  left: 38%;
  right: 18%;
  bottom: 28%;
  height: 4px;
  background: rgba(227, 27, 35, 0.54);
  transform: rotate(18deg);
}

.pin {
  left: 50%;
  top: 42%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--red);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 10px rgba(227, 27, 35, 0.18), 0 0 38px rgba(227, 27, 35, 0.5);
}

.map-label {
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  width: min(320px, calc(100% - 56px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.86);
}

.map-label-live {
  z-index: 2;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
}

.map-label strong {
  color: var(--white);
}

.map-label span {
  color: var(--muted);
}

.map-label a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--white);
  font-weight: 700;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .top-slider {
    min-height: 0;
  }

  .top-slide {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 34px;
  }

  .slide-media {
    min-height: 430px;
  }

  .hero,
  .intro,
  .dsp-certification,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "visual"
      "facts";
    min-height: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .service-grid,
  .process-grid,
  .category-list,
  .faq-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .project-featured figure {
    min-height: 390px;
  }

  .project-detail-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts,
  .slider-facts,
  .dsp-certification-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    display: none;
  }

  .nav-call {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.92rem;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 34px);
    min-height: 40px;
  }

  .hero,
  .top-slider,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-slider {
    padding-top: 28px;
  }

  .top-slide {
    gap: 24px;
    padding: 18px;
  }

  .slide-media {
    min-height: 310px;
  }

  .slide-media img {
    width: min(78%, 250px);
  }

  .slider-controls {
    justify-content: space-between;
  }

  .slider-facts div {
    min-height: 0;
    padding: 18px;
  }

  .dsp-certification-badge {
    min-height: 290px;
    padding: 24px;
  }

  .dsp-certification-copy {
    padding: 24px;
  }

  .dsp-certification-points div {
    min-height: 0;
    padding: 18px;
  }

  .hero {
    gap: 28px;
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 340px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .lead {
    font-size: 1.03rem;
  }

  .service-grid,
  .process-grid,
  .category-list,
  .faq-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-grid article,
  .category-list article,
  .faq-grid article,
  .project-card {
    min-height: 0;
  }

  .project-card figure,
  .project-featured figure {
    min-height: 260px;
  }

  .project-content {
    padding: 20px;
  }

  .project-detail-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .work-panel {
    min-height: 360px;
  }

  .contact-copy {
    padding: 24px;
  }

  .map-embed,
  .map-frame {
    min-height: 360px;
  }

  .map-label-live {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }
}
