:root {
  --matrix-ink: #302873;
  --matrix-sky: #00a8e0;
  --matrix-navy: #111827;
  --matrix-text: #243044;
  --matrix-muted: #667085;
  --matrix-soft: #eaf7fc;
  --matrix-line: #d8e5ef;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 24, 39, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--matrix-text);
  background: var(--white);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: auto -12vw 8vh auto;
  width: 44vw;
  height: 44vw;
  pointer-events: none;
  border: 1px solid rgba(0, 168, 224, .18);
  border-radius: 50%;
  z-index: -1;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--matrix-ink);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 229, 239, .78);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 220px;
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--matrix-navy);
}

.main-nav .nav-header,
.main-nav .separator,
.main-nav button,
.main-nav .mm-toggler {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--matrix-navy);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav .mm-toggler {
  display: none;
}

.main-nav a:hover,
.main-nav .current > a,
.main-nav .active > a,
.main-nav .nav-header:hover,
.main-nav .separator:hover,
.main-nav button:hover {
  color: var(--matrix-ink);
  background: var(--matrix-soft);
}

.main-nav li ul,
.main-nav li .mm-collapse,
.main-nav li .mod-menu__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  display: grid !important;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--matrix-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  height: auto !important;
  overflow: visible !important;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.main-nav li:hover > ul,
.main-nav li:focus-within > ul,
.main-nav li:hover > .mm-collapse,
.main-nav li:focus-within > .mm-collapse,
.main-nav li:hover > .mod-menu__sub,
.main-nav li:focus-within > .mod-menu__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav li ul a,
.main-nav li .mm-collapse a,
.main-nav li .mod-menu__sub a {
  width: 100%;
  justify-content: flex-start;
}

.header-language {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.header-language a,
.header-language .mod-languages a {
  min-width: 46px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--matrix-line);
  border-radius: 6px;
  background: #fff;
  color: var(--matrix-navy);
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.header-language img {
  width: 22px;
  height: auto;
}

.header-language a strong {
  position: relative;
  z-index: 1;
  padding: 1px 5px;
  border-radius: 4px;
  color: #fff;
  background: rgba(17, 24, 39, .62);
}

.header-language .flag-el {
  background:
    linear-gradient(180deg,
      #0d5eaf 0 11%, #fff 11% 22%,
      #0d5eaf 22% 33%, #fff 33% 44%,
      #0d5eaf 44% 55%, #fff 55% 66%,
      #0d5eaf 66% 77%, #fff 77% 88%,
      #0d5eaf 88% 100%);
}

.header-language .flag-en {
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(147deg, transparent 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(90deg, transparent 42%, #fff 42% 46%, #c8102e 46% 54%, #fff 54% 58%, transparent 58%),
    linear-gradient(0deg, transparent 38%, #fff 38% 44%, #c8102e 44% 56%, #fff 56% 62%, transparent 62%),
    #012169;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--matrix-line);
  border-radius: 6px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--matrix-ink);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 72px 0 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, rgba(234, 247, 252, .96) 0%, rgba(255, 255, 255, .84) 42%, rgba(0, 168, 224, .12) 100%),
    radial-gradient(circle at 82% 22%, rgba(48, 40, 115, .18), transparent 34%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 36px;
  right: -7vw;
  width: 70vw;
  height: 120px;
  border-top: 16px solid var(--matrix-sky);
  border-radius: 50%;
  transform: rotate(3deg);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -18vw;
  bottom: -28px;
  width: 64vw;
  height: 112px;
  border-bottom: 12px solid rgba(48, 40, 115, .16);
  border-radius: 50%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--matrix-sky);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--matrix-navy);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 68px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 19px;
  color: var(--matrix-text);
}

.hero-actions {
  position: relative;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--matrix-ink);
  color: var(--white);
}

.btn.ghost {
  border-color: var(--matrix-ink);
  color: var(--matrix-ink);
  background: rgba(255, 255, 255, .7);
}

.hero-panel {
  position: relative;
  min-height: 440px;
}

.sample-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  color: var(--card-text, var(--white));
  font-family: var(--card-font, Manrope, Arial, sans-serif);
  font-weight: 900;
  box-shadow: var(--shadow);
  background: var(--card-bg, var(--matrix-ink));
  text-align: center;
  line-height: 1;
}

.sample-card span {
  font-size: 42px;
}

.sample-card small {
  display: block;
  margin-top: 9px;
  font-size: 17px;
  font-weight: 800;
  opacity: .86;
}

.card-one {
  top: 34px;
  right: 24px;
}

.card-two {
  top: 164px;
  left: 10px;
}

.card-three {
  right: 0;
  bottom: 38px;
}

.products-section,
.proof-section,
.contact-section {
  padding: 88px 0;
}

.products-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.product-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--matrix-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 84px;
  height: 38px;
  border-top: 6px solid rgba(0, 168, 224, .24);
  border-radius: 50%;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 224, .58);
  box-shadow: var(--shadow);
}

.product-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--matrix-soft);
  color: var(--matrix-ink);
  font-weight: 900;
}

.product-card p {
  margin: 0;
  color: var(--matrix-muted);
}

.proof-section {
  background: var(--matrix-ink);
  position: relative;
  overflow: hidden;
}

.proof-section::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -14vw;
  width: 70vw;
  height: 130px;
  border-top: 14px solid rgba(0, 168, 224, .74);
  border-radius: 50%;
  transform: rotate(2deg);
}

.process-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  right: -18vw;
  top: 24px;
  width: 58vw;
  height: 96px;
  border-top: 10px solid rgba(0, 168, 224, .32);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.process-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--matrix-muted);
  font-size: 18px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 229, 239, .9);
  background: var(--matrix-navy);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doming-article {
  display: grid;
  gap: 56px;
}

.product-article,
.contact-article,
.blog-index {
  display: grid;
  gap: 56px;
}

.doming-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.dtf-page {
  --dtf-pink: #ff3f8f;
  --dtf-orange: #ff8a00;
  --dtf-green: #11b981;
  --dtf-blue: #1677ff;
}

.dtf-hero,
.product-hero,
.contact-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.dtf-hero {
  padding: 32px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 63, 143, .14), transparent 32%),
    linear-gradient(225deg, rgba(0, 168, 224, .18), transparent 34%),
    #fff;
  border: 1px solid var(--matrix-line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.dtf-hero::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -40px;
  width: 280px;
  height: 120px;
  border-top: 16px solid var(--dtf-pink);
  border-radius: 50%;
  transform: rotate(12deg);
}

.doming-hero img,
.dtf-hero img,
.product-hero img,
.gallery-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doming-lead {
  font-size: 19px;
  color: var(--matrix-muted);
}

.spec-grid,
.finish-grid,
.glue-grid,
.doming-gallery,
.dtf-ribbon,
.feature-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

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

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

.glue-grid,
.doming-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dtf-ribbon {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.spec-card,
.finish-chip,
.glue-card,
.gallery-card,
.feature-card,
.blog-card,
.contact-detail {
  border: 1px solid var(--matrix-line);
  border-radius: 8px;
  background: #fff;
}

.spec-card,
.glue-card,
.feature-card,
.blog-card,
.contact-detail {
  padding: 22px;
}

.dtf-ribbon span {
  min-height: 86px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: end;
}

.dtf-ribbon span:nth-child(1) { background: var(--dtf-pink); }
.dtf-ribbon span:nth-child(2) { background: var(--dtf-orange); }
.dtf-ribbon span:nth-child(3) { background: var(--dtf-green); }
.dtf-ribbon span:nth-child(4) { background: var(--dtf-blue); }

.spec-card strong,
.finish-chip strong,
.glue-card strong {
  display: block;
  color: var(--matrix-ink);
  font-size: 18px;
  margin-bottom: 8px;
}

.finish-chip {
  min-height: 120px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--matrix-muted);
}

.finish-clear { background: linear-gradient(135deg, #ffffff, #eef7fb); }
.finish-nickel { background: linear-gradient(135deg, #f1f4f6, #9ba4ad); }
.finish-matte { background: linear-gradient(135deg, #f4f4f4, #c7c7c7); }
.finish-gold { background: linear-gradient(135deg, #fff3c4, #b98b24); }
.finish-black { background: linear-gradient(135deg, #343434, #050505); color: #fff; }

.gallery-card {
  overflow: hidden;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  font-weight: 800;
  color: var(--matrix-navy);
}

.proof-section h2,
.proof-section .eyebrow,
.proof-section p {
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-list p {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.contact-section {
  background: var(--matrix-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 14px;
}

.page-title {
  padding: 56px 0 88px;
}

.page-title .container {
  max-width: 920px;
}

.decorative-page .container {
  max-width: 1180px;
}

.decorative-page .page-header,
.decorative-page .article-info,
.decorative-page .com-content-article__info,
.decorative-page .icons,
.decorative-page .tags,
.decorative-page .pagenavigation,
.decorative-page .com-content-article > dl {
  display: none;
}

.decorative-page .com-content-article,
.decorative-page .item-page,
.decorative-page .com-content-article__body {
  width: 100%;
}

.decorative-page .doming-article,
.decorative-page .product-article,
.decorative-page .contact-article,
.decorative-page .blog-index {
  width: 100%;
}

.decorative-page {
  position: relative;
  overflow: hidden;
}

.decorative-page::before,
.decorative-page::after {
  content: "";
  position: absolute;
  width: 46vw;
  height: 88px;
  border-radius: 50%;
  pointer-events: none;
}

.decorative-page::before {
  top: 22px;
  right: -14vw;
  border-top: 10px solid rgba(0, 168, 224, .24);
}

.decorative-page::after {
  bottom: 34px;
  left: -16vw;
  border-bottom: 10px solid rgba(48, 40, 115, .14);
}

.site-footer {
  background: var(--matrix-navy);
  color: var(--white);
  padding: 38px 0;
}

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

.footer-grid p {
  margin: 0;
}

.cookie-consent {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  width: min(620px, calc(100% - 40px));
}

.cookie-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(17, 24, 39, .24);
  backdrop-filter: blur(14px);
}

.cookie-copy h2 {
  margin: 4px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.cookie-copy p {
  margin: 0;
  color: var(--matrix-muted);
}

.cookie-settings {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--matrix-line);
  border-radius: 8px;
  background: #fff;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--matrix-blue);
}

.cookie-option span {
  display: grid;
  gap: 3px;
  color: var(--matrix-muted);
  font-size: 14px;
}

.cookie-option strong {
  color: var(--matrix-ink);
}

.cookie-option.is-locked {
  background: linear-gradient(135deg, rgba(0, 168, 224, .08), rgba(48, 40, 115, .06));
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.cookie-actions .btn {
  min-height: 42px;
  border: 1px solid var(--matrix-line);
  cursor: pointer;
}

.cookie-reopen {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: var(--matrix-ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(17, 24, 39, .22);
  cursor: pointer;
}

@media (max-width: 900px) {
  .topbar {
    font-size: 13px;
  }

  .nav-wrap {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    background: var(--white);
    border: 1px solid var(--matrix-line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 40;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 0;
    padding: 8px;
  }

  .main-nav li ul {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .header-language {
    margin-left: auto;
  }

  h1,
  h2,
  h3,
  .lead {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-section {
    min-height: auto;
    padding: 54px 0 44px;
  }

  .hero-grid,
  .section-heading,
  .proof-grid,
  .process-grid,
  .doming-hero,
  .dtf-hero,
  .product-hero,
  .contact-hero,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .sample-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 116px;
    padding: 18px 12px;
    font-size: 28px;
  }

  .sample-card span {
    font-size: 30px;
  }

  .sample-card small {
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid,
  .finish-grid,
  .glue-grid,
  .doming-gallery,
  .dtf-ribbon,
  .feature-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .container,
  .nav-wrap {
    width: min(100% - 28px, 1180px);
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar p {
    text-align: center;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 8px;
  }

  .brand img {
    width: 146px;
  }

  .header-language {
    gap: 4px;
  }

  .header-language a,
  .header-language .mod-languages a {
    min-width: 38px;
    min-height: 34px;
    padding: 0 6px;
    font-size: 12px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .main-nav {
    left: 14px;
    right: 14px;
    top: 74px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-section {
    padding: 42px 0 36px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .sample-card {
    min-height: 96px;
  }

  .card-two,
  .card-three {
    transform: none;
  }

  .product-card {
    min-height: 240px;
    padding: 24px;
  }

  .process-section {
    padding: 56px 0;
  }

  .products-section,
  .proof-section,
  .contact-section {
    padding: 56px 0;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 24px;
  }

  .process-grid,
  .contact-grid,
  .proof-grid {
    gap: 28px;
  }

  .video-frame,
  .contact-card {
    width: 100%;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-panel {
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }
}
