﻿:root {
  --font-heading: "Bahnschrift", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Arial Narrow", "Bahnschrift", "Segoe UI", sans-serif;

  --bg: #050303;
  --bg-soft: #0b0506;
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-red: rgba(245, 27, 53, 0.26);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-soft: rgba(255, 255, 255, 0.46);
  --red: #f51b35;
  --red-2: #ff3048;
  --pointer-x: 50%;
  --pointer-y: 24%;
  --reveal-distance: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: var(--font-body);
  background: #050303;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -3%;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 3, 3, 0.42), rgba(6, 3, 3, 0.76)),
    url("./assets/backgrounds/site-background.webp") center top / cover no-repeat;
  opacity: 0.92;
  filter: saturate(1.04) brightness(0.82);
  transform: scale(1.035);
  animation: site-background-drift 28s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 72%, rgba(245, 27, 53, 0.16), transparent 26%),
    radial-gradient(circle at 82% 54%, rgba(245, 27, 53, 0.14), transparent 24%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 63, 86, 0.12), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.84));
  animation: site-grid-drift 24s linear infinite;
}

@keyframes site-background-drift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.055) translate3d(-0.6%, -0.8%, 0);
  }

  100% {
    transform: scale(1.045) translate3d(0.8%, 0.4%, 0);
  }
}

@keyframes site-grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 0 0, 0 0, 24px 24px, -24px 24px;
  }
}

@keyframes site-sheen-sweep {
  0% {
    transform: translate3d(-130%, 0, 0) rotate(18deg);
    opacity: 0;
  }

  18% {
    opacity: 0;
  }

  42% {
    opacity: 0.52;
  }

  70% {
    opacity: 0;
  }

  100% {
    transform: translate3d(155%, 0, 0) rotate(18deg);
    opacity: 0;
  }
}

@keyframes hero-badge-sheen {
  0%,
  72%,
  100% {
    transform: translate3d(-132%, 0, 0);
  }

  84% {
    transform: translate3d(132%, 0, 0);
  }
}

@keyframes cta-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes contact-shell-ambient {
  0% {
    transform: translate3d(-8%, -6%, 0) scale(0.96);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(6%, 2%, 0) scale(1.04);
    opacity: 0.32;
  }

  100% {
    transform: translate3d(-2%, 8%, 0) scale(0.98);
    opacity: 0.22;
  }
}

@keyframes brand-wall-sweep {
  0% {
    transform: translate3d(-120%, 0, 0) skewX(-16deg);
    opacity: 0;
  }

  18% {
    opacity: 0;
  }

  46% {
    opacity: 0.5;
  }

  72% {
    opacity: 0;
  }

  100% {
    transform: translate3d(150%, 0, 0) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes brand-logo-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter:
      drop-shadow(0 0 1px rgba(255, 255, 255, 0.5))
      drop-shadow(0 16px 36px rgba(0, 0, 0, 0.28));
  }

  50% {
    transform: translate3d(0, -5px, 0) scale(1.022);
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.58))
      drop-shadow(0 18px 40px rgba(245, 27, 53, 0.18));
  }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 75, 95, 0.92);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.045em;
}

section {
  scroll-margin-top: 130px;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  overflow: hidden;
  isolation: isolate;
  width: min(100% - 60px, 1110px);
  height: 102px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 98% 16%, rgba(245, 27, 53, 0.36), transparent 18%),
    radial-gradient(circle at 6% 12%, rgba(255, 255, 255, 0.08), transparent 12%),
    linear-gradient(90deg, rgba(16, 13, 15, 0.92), rgba(6, 3, 4, 0.96)),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 26px 90px rgba(0, 0, 0, 0.48);
}

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

.site-header::before {
  z-index: 0;
  background:
    radial-gradient(circle at var(--pointer-x) 50%, rgba(255, 72, 98, 0.16), transparent 18%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.88;
}

.site-header::after {
  inset: -30% auto -30% -18%;
  width: 34%;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  filter: blur(16px);
  transform: translate3d(-130%, 0, 0) rotate(18deg);
  animation: site-sheen-sweep 9s ease-in-out infinite;
}

.header-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 308px) minmax(0, 1fr) minmax(188px, 206px);
  align-items: center;
  gap: 26px;
  padding: 0 28px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  height: 100%;
  min-width: 0;
  overflow: visible;
  padding-left: 0;
}

.header-logo-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
}

.header-logo-mark {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
  transform-origin: center;
  animation: header-logo-spin 24s linear infinite;
  filter: drop-shadow(0 0 14px rgba(245, 27, 53, 0.18));
}

.header-logo-wordmark-wrap {
  display: inline-flex;
  align-items: center;
  width: 228px;
  height: 48px;
  min-width: 228px;
  overflow: visible;
}

.header-logo-wordmark {
  display: block;
  width: 228px;
  max-height: 48px;
  object-fit: contain;
  transform: translateX(-10px);
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 20px;
  width: min(100%, 560px);
  height: 100%;
  min-width: 0;
  max-width: 560px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
  transform: none;
}

.header-nav::before,
.header-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 54px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(245, 27, 53, 0.72) 0 8px,
      transparent 8px 14px
    );
}

.header-nav::before {
  left: 0;
}

.header-nav::after {
  right: 0;
}

.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 27, 53, 0), rgba(245, 27, 53, 0.96), rgba(245, 27, 53, 0));
  opacity: 0;
  transform: translateX(-50%) scaleX(0.55);
  transform-origin: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.header-nav a + a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(245, 27, 53, 0.35);
}

.header-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(245, 27, 53, 0.24);
}

.header-nav a.is-active {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(245, 27, 53, 0.22);
}

.header-nav a.is-active::after,
.header-nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

@keyframes header-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.header-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.header-menu-toggle:hover {
  background: rgba(245, 27, 53, 0.16);
  border-color: rgba(245, 27, 53, 0.34);
  transform: translateY(-1px);
}

.header-lang-switch {
  position: fixed;
  top: 12px;
  right: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  min-width: 112px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.header-lang-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.header-lang-link.is-current {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(245, 27, 53, 0.2), rgba(245, 27, 53, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(245, 27, 53, 0.14);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.24);
}

.header-cta::after {
  content: "\2192";
  margin-left: 12px;
  color: var(--red);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.header-cta:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 50px rgba(245, 27, 53, 0.16);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 54px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  width: min(100% - 56px, 1480px);
  margin: 0 auto;
  min-height: calc(100svh - 174px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: #030303;
  box-shadow: 0 34px 130px rgba(0, 0, 0, 0.58);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(245, 27, 53, 0.14), transparent 26%);
  opacity: 0.72;
}

@media (min-width: 1200px) {
  .hero-shell {
    aspect-ratio: 16 / 8.2;
    min-height: 680px;
    max-height: 820px;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero-video {
  object-position: 58% center;
  opacity: 1;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1);
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.03);
}

.hero-media-background.is-image-active .hero-video,
.hero-media-background.is-video-failed .hero-video {
  opacity: 0;
  transform: scale(1.02);
}

.hero-media-background.is-image-active .hero-image-layer,
.hero-media-background.is-video-failed .hero-image-layer {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform, opacity;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease;
}

.hero-overlay-base {
  background: rgba(0, 0, 0, 0.22);
}

.hero-overlay-glow {
  background: radial-gradient(circle at 78% 48%, rgba(245, 27, 53, 0.22), transparent 34%);
}

.hero-overlay-gradient {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 43%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-overlay-vignette {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 74px 76px 62px;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 27, 53, 0.36);
  background: rgba(245, 27, 53, 0.10);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.18);
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18) 48%, transparent 78%);
  transform: translate3d(-132%, 0, 0);
  animation: hero-badge-sheen 7.4s ease-in-out infinite;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-heading, "Geologica", sans-serif);
  font-size: clamp(38px, 4.25vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: #ffffff;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 22px;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.btn::before,
.header-cta::before,
.service-link::before,
.filter-button::before,
.service-tab::before,
.submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.18) 48%, transparent 74%);
  transform: translate3d(-135%, 0, 0);
  transition: transform 0.7s ease;
}

.btn:hover::before,
.header-cta:hover::before,
.service-link:hover::before,
.filter-button:hover::before,
.service-tab:hover::before,
.submit-button:hover::before {
  transform: translate3d(135%, 0, 0);
}

.btn-primary {
  background: linear-gradient(135deg, #ff5264, #c90022);
  background-size: 140% 140%;
  color: #fff;
  box-shadow: 0 18px 54px rgba(245, 27, 53, 0.28);
  animation: cta-gradient-shift 5.8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(245, 27, 53, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-head {
  max-width: 980px;
  margin-bottom: 54px;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--font-accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 27, 53, 0.84), rgba(245, 27, 53, 0));
  box-shadow: 0 0 14px rgba(245, 27, 53, 0.22);
}

.section-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.section-head .section-title,
.contact-title {
  text-wrap: balance;
}

.section-description {
  max-width: 720px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.card-label,
.service-number,
.case-tag {
  color: rgba(255,255,255,0.42);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.38);
}
.problem-card--before {
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 27, 53, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.020));
}
.problem-card--after {
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 27, 53, 0.20), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.030));
  border-color: rgba(245, 27, 53, 0.20);
}
.problem-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-accent, "Unbounded", sans-serif);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.problem-card--after .problem-card__label {
  color: rgba(245, 27, 53, 0.85);
}
.problem-card__title {
  margin: 0;
  font-family: var(--font-heading, "Geologica", sans-serif);
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.problem-card__media {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
  aspect-ratio: 16 / 9;
}
.problem-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--media-scroll-shift, 0px), 0) scale(var(--media-state-scale, 1));
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
}
.problem-card--before .problem-card__media img {
  filter: saturate(0.82) contrast(0.92) brightness(0.86);
}
.problem-card--after .problem-card__media img {
  filter: saturate(1.05) contrast(1.04) brightness(1);
}
.problem-card__media.is-changing img {
  opacity: 0;
  --media-state-scale: 1.025;
}
.problem-card__description {
  margin: 30px 0 0;
  max-width: 760px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}
.problem-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.problem-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}
.problem-card--after .problem-card__tags span {
  border-color: rgba(245, 27, 53, 0.20);
  color: rgba(255, 255, 255, 0.72);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  min-height: 560px;
}

.about-slider-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 560px;
  padding: 26px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 27, 53, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    #070707;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46);
}

.about-slider-frame::before {
  content: "";
  position: absolute;
  inset: 26px;
  z-index: 1;
  pointer-events: none;
  border-radius: 30px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.28;
}

.about-slider-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 27, 53, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.16));
}

.about-slider-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 508px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
}

.about-slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.84) contrast(1.03) saturate(0.94);
  transform: translate3d(0, var(--media-scroll-shift, 0px), 0) scale(var(--media-state-scale, 1));
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.55s ease;
}

.about-slider-inner.is-changing .about-slider-image {
  opacity: 0;
  --media-state-scale: 1.02;
}

.clients-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.clients-copy,
.clients-metrics {
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.clients-copy {
  padding: 30px 32px;
}

.clients-copy h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.05;
}

.clients-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
}

.clients-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
}

.clients-metric {
  min-height: 116px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    rgba(8, 8, 8, 0.66);
}

.clients-metric strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.clients-metric span {
  display: block;
  max-width: 24ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.brands-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.brands-grid::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -18%;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(16px);
  opacity: 0;
}

.brands-grid.is-animated::after {
  animation: brand-wall-sweep 10.5s ease-in-out infinite;
}

.brand-card {
  position: relative;
  min-height: 152px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.brand-card--dark,
.brand-card--light {
  background:
    linear-gradient(180deg, rgba(20, 18, 20, 0.98), rgba(8, 8, 10, 0.99)),
    #0a0a0b;
  border-color: rgba(255, 255, 255, 0.08);
}

.brand-card--wide {
  grid-column: span 2;
  min-height: 176px;
}

.brand-card--tall {
  min-height: 198px;
}

.brand-card img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.5))
    drop-shadow(0 16px 36px rgba(0, 0, 0, 0.28));
}

.brands-grid.is-animated .brand-card img {
  animation: brand-logo-breathe 6.4s ease-in-out infinite;
  animation-delay: var(--brand-delay, 0ms);
}

.premium-card {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--card-glow-x, 50%) var(--card-glow-y, 50%), rgba(255, 66, 91, 0.16), transparent 32%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.premium-card.is-hovered {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.premium-card.is-hovered::after {
  opacity: 1;
}

.brand-card img,
.case-visual-tile img,
.package-slider-image,
.service-card .service-visual,
.problem-card__media img {
  transition: transform 0.38s ease, filter 0.38s ease, opacity 0.38s ease;
}

.premium-card.is-hovered img,
.premium-card.is-hovered .service-visual {
  animation: none;
  transform: scale(1.018);
}

.brand-card--wide img {
  max-height: 108px;
}

.brand-card--tall img {
  max-height: 158px;
}

.brand-card--umg img {
  max-height: 108px;
}

.brand-card--president img {
  max-height: 124px;
}

.brand-card--laktel img {
  max-height: 118px;
}

.brand-card--life-events img {
  max-height: 108px;
}

.brand-card--byd img {
  max-height: 104px;
}

.brand-card--tcm img {
  max-height: 148px;
}

.brand-card--iccr img {
  max-height: 156px;
}

.brand-card--eoi img {
  max-height: 174px;
}

.brand-card--ambarnya img {
  max-height: 132px;
}

.brand-card--ad-astra img {
  max-height: 92px;
}

.brand-card--legion img {
  max-height: 92px;
}

.brand-card--seventeam img {
  max-height: 98px;
}

.brand-card--omega-eye img {
  max-height: 94px;
}

.brand-card--unicorn img {
  max-height: 98px;
}

.brand-card--lorved img {
  max-height: 94px;
}

.brand-card--vema img {
  max-height: 114px;
}

.brand-card--karcher img {
  max-height: 98px;
}

.brand-card--shishka img {
  max-height: 92px;
}

.brand-card--golden img {
  max-height: 104px;
}

.brand-card--shafaq img {
  max-height: 112px;
}

.brand-card--ain img {
  max-height: 96px;
}

.brand-card--xushnud-shifo img {
  max-height: 84px;
}

.brand-card--jagermeister img {
  max-height: 118px;
}

.brand-card--united-marketing img {
  max-height: 86px;
}

.brand-card--lorved,
.brand-card--golden,
.brand-card--ain,
.brand-card--xushnud-shifo,
.brand-card--united-marketing {
  padding-inline: 18px;
}

.brand-card--ambarnya {
  padding-inline: 18px;
}

.brand-card--wordmark {
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 27, 53, 0.14), transparent 64%),
    linear-gradient(180deg, rgba(17, 17, 18, 0.96), rgba(8, 8, 9, 0.98)),
    #09090a;
}

.brand-wordmark {
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-indent: 0.28em;
}

.section-divider {
  margin-top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

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

.service-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 27, 53, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 27, 53, 0.34);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 27, 53, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}

.service-visual-link {
  display: block;
  margin-bottom: 26px;
  border-radius: 24px;
  text-decoration: none;
}

.service-visual-link:focus-visible {
  outline: none;
}

.service-visual {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background-color: #111;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.08) 0%, rgba(6, 6, 8, 0.46) 100%),
    radial-gradient(circle at 80% 18%, rgba(245, 27, 53, 0.18), transparent 32%);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(245, 27, 53, 0.14), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.22), transparent 28%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.service-visual-link:hover .service-visual,
.service-visual-link:focus-visible .service-visual {
  border-color: rgba(245, 27, 53, 0.34);
  box-shadow: 0 0 0 1px rgba(245, 27, 53, 0.18), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.service-smm {
  background-image: url("./assets/services/smm-instagram/profile-example-1.webp");
}

.smm-profile-preview {
  display: block;
  padding: 0;
  background-image: none;
}

.smm-profile-preview-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  object-position: center center;
  border: 0;
  box-shadow: none;
}

.service-production {
  background-image: url("./assets/services/production-showcase/production-example-1.webp");
}

.production-preview {
  display: block;
  padding: 0;
  background-image: none;
}

.production-preview::before {
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.16) 0%, rgba(6, 6, 8, 0.6) 100%),
    radial-gradient(circle at 82% 16%, rgba(245, 27, 53, 0.26), transparent 30%);
}

.production-preview::after {
  background:
    linear-gradient(135deg, rgba(245, 27, 53, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.28), transparent 24%);
  mix-blend-mode: screen;
}

.production-preview-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  object-position: center center;
  border: 0;
  box-shadow: none;
  filter: saturate(0.98) brightness(0.94);
  transition: opacity 0.42s ease, transform 0.8s ease, filter 0.42s ease;
}

.rotating-service-gallery-image {
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
}

.rotating-service-gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) brightness(1);
}

.service-websites {
  background-image: url("./assets/services/websites/websites-preview-1.webp");
}

.service-branding {
  background-image: url("./assets/services/branding/beauty-system.webp");
}

.service-ads {
  background-image: url("./assets/services/digital-ads/digital-ads-example-4.webp");
}

.service-promo {
  background-image: url("./assets/services/promo-activations/promo-example-4.webp");
}

.service-card h3 {
  margin: 14px 0 14px;
  font-size: 27px;
  line-height: 1.13;
}

.service-card p {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 27, 53, 0.42);
  background: rgba(245, 27, 53, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.section-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-button,
.service-tab {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.76);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-button.is-active,
.service-tab.active {
  background: linear-gradient(135deg, #ff4b5f, #c90022);
  color: #fff;
  border-color: transparent;
}

.header-cta,
.service-link,
.filter-button,
.service-tab,
.submit-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

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

.case-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.case-card.reveal .case-visual-tile,
.case-card.reveal .case-content > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card.reveal .case-visual-tile:nth-child(1) {
  transition-delay: 110ms;
}

.case-card.reveal .case-visual-tile:nth-child(2) {
  transition-delay: 180ms;
}

.case-card.reveal .case-visual-tile:nth-child(3) {
  transition-delay: 250ms;
}

.case-card.reveal .case-visual-tile:nth-child(4) {
  transition-delay: 320ms;
}

.case-card.reveal .case-content > :nth-child(1) {
  transition-delay: 220ms;
}

.case-card.reveal .case-content > :nth-child(2) {
  transition-delay: 300ms;
}

.case-card.reveal .case-content > :nth-child(3) {
  transition-delay: 380ms;
}

.case-card.reveal .case-content > :nth-child(4) {
  transition-delay: 460ms;
}

.case-card.reveal .case-content > :nth-child(5) {
  transition-delay: 540ms;
}

.case-card.reveal.is-visible .case-visual-tile,
.case-card.reveal.is-visible .case-content > * {
  opacity: 1;
  transform: none;
}

.case-card.is-hidden {
  display: none;
}

.case-visual {
  height: 280px;
}

.case-content {
  padding: 28px;
}

.case-tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.case-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.14;
}

.case-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.case-done {
  color: rgba(255,255,255,0.84);
}

.case-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: auto;
  padding: 18px;
  background:
    radial-gradient(circle at 76% 24%, rgba(245, 27, 53, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    #0b0809;
}

.case-visual-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 8, 10, 0.92);
  aspect-ratio: 1.22 / 1;
}

.case-visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.04), rgba(8, 8, 10, 0.78));
}

.case-visual-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: rgba(255,255,255,0.94);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.case-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.case-notes li {
  color: rgba(255,255,255,0.74);
  font-size: 15px;
  line-height: 1.6;
}

.case-notes strong {
  color: rgba(255,255,255,0.96);
}

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

.process-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
}

.process-number {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
}

.process-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.process-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

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

.why-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
}

.why-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.why-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

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

.package-card {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 27, 53, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.package-visual {
  height: 230px;
  border-radius: 24px;
  margin-bottom: 28px;
}

.package-card h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.14;
}

.package-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.package-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 11, 0.92);
}

.package-slider-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-scroll-shift, 0px), 0) scale(var(--media-state-scale, 1));
  transition: opacity 320ms ease, transform 320ms ease;
}

.package-slider.is-changing .package-slider-image {
  opacity: 0.3;
  --media-state-scale: 1.025;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  padding: 48px;
  border-radius: 38px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 27, 53, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: -24% -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(245, 27, 53, 0.18), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(255, 255, 255, 0.06), transparent 22%);
  filter: blur(24px);
  animation: contact-shell-ambient 10s ease-in-out infinite alternate;
}

.contact-copy,
.contact-visual,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 0;
}

.contact-text {
  margin-top: 24px;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-visual {
  margin-top: 36px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 78% 28%, rgba(245, 27, 53, 0.20), transparent 30%),
    rgba(0,0,0,0.34);
  transform: translate3d(0, var(--media-block-shift, 0px), 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-screen {
  min-height: 180px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.34);
}

.contact-screen span,
.contact-screen p {
  color: rgba(255,255,255,0.74);
}

.contact-screen strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  color: #fff;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  padding-top: 18px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(245, 27, 53, 0.56);
  box-shadow: 0 0 0 4px rgba(245, 27, 53, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.submit-button {
  min-height: 60px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5264, #c90022);
  background-size: 140% 140%;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 22px 70px rgba(245, 27, 53, 0.26);
  animation: cta-gradient-shift 5.8s ease-in-out infinite;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.74;
  box-shadow: 0 14px 40px rgba(245, 27, 53, 0.18);
  filter: saturate(0.88);
}

.form-note {
  margin: 0;
  color: var(--muted-soft);
  min-height: 24px;
  transition: color 0.25s ease;
}

.form-note.is-success {
  color: rgba(138, 255, 181, 0.92);
}

.form-note.is-error {
  color: rgba(255, 166, 166, 0.94);
}

.form-field--trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.abstract-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(245, 27, 53, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
    #0b0809;
}

.abstract-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 70px
    );
  opacity: 0.55;
}

.abstract-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -50px;
  background: rgba(245, 27, 53, 0.22);
  filter: blur(42px);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  transform-origin: center top;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1100px) {
  .clients-intro {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 1000px) {
  .cases-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 14px;
    width: min(100% - 24px, 1040px);
    height: 84px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    padding: 0 16px;
    gap: 12px;
  }

  .header-logo {
    gap: 14px;
    padding-left: 0;
  }

  .header-logo-mark-wrap {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .header-logo-mark {
    width: 52px;
    height: 52px;
  }

  .header-logo-wordmark-wrap {
    width: 148px;
    height: 34px;
    min-width: 148px;
  }

  .header-logo-wordmark {
    width: 148px;
    max-height: 34px;
    transform: translateX(-6px);
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(21, 14, 15, 0.96), rgba(7, 4, 5, 0.98)),
      rgba(0, 0, 0, 0.88);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin-left: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-nav::before,
  .header-nav::after {
    display: none;
  }

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

  .header-nav a {
    justify-content: flex-start;
    height: auto;
    min-height: 44px;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
  }

  .header-nav a + a::before {
    left: -10px;
    width: 4px;
    height: 4px;
  }

  .header-lang-switch {
    top: 10px;
    right: 12px;
  }

  .header-cta {
    display: none;
    min-width: auto;
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  .header-menu-toggle {
    display: inline-flex;
  }

  .page-hero-shell h1 {
    max-width: 100%;
    font-size: clamp(36px, 6.6vw, 54px);
    line-height: 1;
  }

  .page-lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.7;
  }

  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: auto;
  }

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

  .brand-card--wide {
    grid-column: span 2;
  }

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

@media (prefers-reduced-motion: reduce) {
  .header-logo-mark {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  body::before,
  body::after,
  .site-header::after {
    animation: none;
  }

  .premium-card,
  .premium-card.is-hovered,
  .btn,
  .btn:hover,
  .btn-secondary:hover,
  .btn-primary:hover,
  .service-link:hover,
  .header-cta:hover,
  .filter-button:hover,
  .service-tab:hover,
  .submit-button:hover,
  .reveal,
  .reveal.is-visible {
    transform: none;
  }

  .premium-card::after,
  .btn::before,
  .header-cta::before,
  .service-link::before,
  .filter-button::before,
  .service-tab::before,
  .submit-button::before,
  .hero-badge::after {
    display: none;
  }

  .btn-primary,
  .submit-button,
  .contact-shell::before {
    animation: none;
  }

  .hero-media,
  .hero-overlay,
  .hero-content,
  .hero-badge {
    transform: none !important;
  }

  .case-card.reveal .case-visual-tile,
  .case-card.reveal .case-content > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brands-grid::after,
  .brands-grid.is-animated .brand-card img {
    animation: none;
  }

  .about-slider-image,
  .problem-card__media img,
  .package-slider-image,
  .contact-visual {
    transform: none !important;
  }

  .reveal {
    filter: none;
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .about-slider-frame {
    min-height: 500px;
    padding: 20px;
    border-radius: 34px;
  }

  .about-slider-inner {
    min-height: 450px;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  .section {
    padding: 76px 0;
  }

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

  .section-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .clients-copy,
  .clients-metrics {
    border-radius: 24px;
  }

  .clients-copy {
    padding: 24px;
  }

  .clients-copy h3 {
    font-size: 26px;
  }

  .clients-metrics {
    padding: 14px;
  }

  .clients-metric {
    min-height: 98px;
    padding: 18px 20px;
  }

  .clients-metric strong {
    font-size: 38px;
  }

  .problem-comparison,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .about-slider-frame {
    min-height: 360px;
    padding: 14px;
    border-radius: 28px;
  }

  .about-slider-frame::before {
    inset: 14px;
    border-radius: 20px;
    background-size: 60px 60px;
  }

  .about-slider-inner {
    min-height: 320px;
    border-radius: 20px;
  }

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

  .brand-card,
  .brand-card--wide {
    grid-column: span 1;
    min-height: 132px;
    border-radius: 22px;
  }

  .brand-card--tall {
    min-height: 152px;
  }

  .brand-card img,
  .brand-card--wide img {
    max-height: 78px;
  }

  .brand-card--tall img {
    max-height: 112px;
  }

  .brand-card--president img,
  .brand-card--laktel img,
  .brand-card--umg img,
  .brand-card--life-events img,
  .brand-card--byd img,
  .brand-card--vema img {
    max-height: 96px;
  }

  .brand-card--unicorn img,
  .brand-card--lorved img,
  .brand-card--ambarnya img,
  .brand-card--legion img,
  .brand-card--seventeam img,
  .brand-card--omega-eye img,
  .brand-card--karcher img,
  .brand-card--shishka img,
  .brand-card--golden img,
  .brand-card--shafaq img,
  .brand-card--ain img,
  .brand-card--xushnud-shifo img,
  .brand-card--united-marketing img {
    max-height: 88px;
  }

  .brand-card--tcm img,
  .brand-card--iccr img,
  .brand-card--jagermeister img,
  .brand-card--eoi img {
    max-height: 118px;
  }

  .brand-wordmark {
    font-size: 2.15rem;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 104px 0 36px;
  }

  .hero-shell {
    width: min(100% - 24px, 1580px);
    min-height: calc(100svh - 140px);
    border-radius: 28px;
  }

  .hero-content {
    max-width: 100%;
    padding: 56px 24px 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 42px);
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

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

  .header-lang-switch {
    display: none;
  }

  .header-lang-link {
    min-width: 38px;
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .header-menu-toggle {
    padding: 0 14px;
    font-size: 12px;
  }

  .page-hero-shell h1 {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .page-lead {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 680px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .problem-comparison {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-height: auto;
    padding: 26px;
    border-radius: 28px;
  }
  .problem-card__media {
    margin-top: 24px;
    border-radius: 22px;
  }
}

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

.faq-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.022));
}

.faq-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 0 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.footer-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.footer-text {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.page-main {
  padding-top: 148px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted-soft);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.page-hero {
  padding: 22px 0 32px;
}

.page-hero-shell {
  padding: 44px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 27, 53, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.42);
}

.page-hero-shell h1 {
  margin: 0 0 18px;
  max-width: 940px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
}

.page-lead {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .page-hero-shell h1 {
    max-width: 100%;
    font-size: clamp(36px, 6.6vw, 54px);
    line-height: 1;
  }

  .page-lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .page-hero-shell h1 {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .page-lead {
    font-size: 15px;
    line-height: 1.65;
  }
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.detail-stack {
  display: grid;
  gap: 24px;
}

.detail-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 16px;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.detail-card li + li {
  margin-top: 8px;
}

.service-hero-visual {
  min-height: 100%;
  aspect-ratio: 16 / 11;
  margin: 0;
}

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

.service-hero-visual::before {
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.12) 0%, rgba(6, 6, 8, 0.52) 100%),
    radial-gradient(circle at 80% 18%, rgba(245, 27, 53, 0.18), transparent 30%);
}

.service-hero-visual::after {
  background:
    linear-gradient(135deg, rgba(245, 27, 53, 0.14), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.24), transparent 28%);
  mix-blend-mode: screen;
}

.detail-intro {
  margin: 0 0 24px !important;
}

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

.smm-example-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(245, 27, 53, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.smm-example-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.smm-example-card figcaption {
  padding: 18px 18px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.smm-note-section.is-hidden {
  display: none;
}

.smm-followup-section {
  padding-top: 28px;
}

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

.production-example-card {
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.production-example-media {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(245, 27, 53, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.98), rgba(9, 9, 11, 0.98));
  padding: 14px;
}

.production-example-card--wide {
  grid-column: span 2;
}

.production-example-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.production-example-card--wide .production-example-media img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.production-example-card--collage .production-example-media {
  padding: 18px;
}

.production-example-card figcaption {
  padding: 0 4px;
  color: var(--muted);
  line-height: 1.7;
}

.website-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.website-case-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(245, 27, 53, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.website-case-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 48px rgba(0, 0, 0, 0.26);
}

.website-case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%, transparent 72%, rgba(4, 4, 6, 0.2)),
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.12), transparent 28%);
}

.website-case-media video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050505;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.website-case-card:hover .website-case-media video {
  transform: scale(1.018);
  filter: saturate(1.06) contrast(1.03);
}

.website-case-body {
  display: grid;
  gap: 12px;
}

.website-case-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.website-case-body h3 {
  margin: 0;
}

.website-case-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.website-case-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.website-case-body li + li {
  margin-top: 8px;
}

.branding-segments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.branding-segment-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(245, 27, 53, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.branding-segment-card--wide {
  grid-column: span 2;
}

.branding-segment-copy {
  display: grid;
  gap: 10px;
}

.branding-segment-tag {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.branding-segment-copy h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.branding-segment-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.branding-segment-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.branding-segment-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(245, 27, 53, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.98), rgba(9, 9, 11, 0.98));
}

.branding-segment-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(10, 10, 12, 0.95);
}

.branding-segment-figure figcaption {
  padding: 14px 14px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.seo-copy {
  display: grid;
  gap: 18px;
}

.seo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

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

.seo-link-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 27, 53, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.seo-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 27, 53, 0.34);
}

.seo-link-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.seo-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .detail-layout,
  .footer-grid,
  .seo-links-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .smm-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-examples-grid {
    grid-template-columns: 1fr;
  }

  .website-case-grid {
    grid-template-columns: 1fr;
  }

  .branding-segments-grid {
    grid-template-columns: 1fr;
  }

  .branding-segment-card--wide {
    grid-column: span 1;
  }

  .production-example-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .page-main {
    padding-top: 122px;
  }

  .page-hero-shell,
  .detail-card,
  .faq-card,
  .footer-grid,
  .seo-link-card {
    padding: 22px;
    border-radius: 24px;
  }

  .page-actions {
    flex-direction: column;
  }

  .page-actions a {
    width: 100%;
  }

  .smm-profile-preview {
    gap: 10px;
    padding: 10px;
  }

  .smm-profile-preview-image {
    border-radius: 16px;
  }

  .smm-examples-grid {
    grid-template-columns: 1fr;
  }

  .branding-segment-media {
    grid-template-columns: 1fr;
  }

  .production-preview {
    padding: 0;
  }

  .production-preview-image,
  .smm-profile-preview-image {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .hero-video,
  .hero-image-layer,
  .production-preview-image,
  .problem-card__media img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}



