:root {
  --navy: #16163f;
  --navy-deep: #070817;
  --blue: #659dd3;
  --blue-strong: #25a9ff;
  --yellow: #fcbf01;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.1);
  --glass: rgba(13, 18, 48, 0.62);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --header-height: 78px;
  --scrub-ui-offset: 0px;
  --creative-scrub-shift: 0px;
  --creative-glow-x: 50%;
  --creative-headroom: 0px;
  --creative-left-opacity: 0;
  --creative-center-opacity: 1;
  --creative-right-opacity: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  font-family: "Heebo", "Assistant", "Rubik", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(252, 191, 1, 0.95);
  outline-offset: 4px;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 8, 23, 0.92), rgba(22, 22, 63, 0.92) 42%, rgba(5, 7, 19, 0.96)),
    var(--navy);
}

.ambient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(7, 8, 23, 0.55), transparent 22%, transparent 74%, rgba(7, 8, 23, 0.66)),
    radial-gradient(circle at 50% 0%, rgba(101, 157, 211, 0.12), transparent 32%);
  pointer-events: none;
}

.ambient-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(101, 157, 211, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 157, 211, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(700px) rotateX(62deg) translateY(-17%);
  transform-origin: top center;
  animation: gridDrift 18s linear infinite;
}

.ambient-glow {
  position: absolute;
  width: 54vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.36;
  mix-blend-mode: screen;
}

.ambient-glow-a {
  top: -18vw;
  left: -12vw;
  background: rgba(101, 157, 211, 0.55);
  animation: glowFloatA 14s ease-in-out infinite alternate;
}

.ambient-glow-b {
  right: 5vw;
  bottom: 10vh;
  width: 36vw;
  background: rgba(37, 169, 255, 0.28);
  animation: glowFloatB 16s ease-in-out infinite alternate;
}

.ambient-particles {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 30%, rgba(101, 157, 211, 0.44) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 72%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    linear-gradient(112deg, transparent 0 45%, rgba(101, 157, 211, 0.2) 46%, transparent 48% 100%);
  background-size: 260px 260px, 360px 360px, 300px 300px, 880px 880px;
  animation: particlesShift 22s linear infinite;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 26px;
  background: rgba(7, 8, 23, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(7, 8, 23, 0.86);
  border-color: rgba(101, 157, 211, 0.18);
}

.brand {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  width: clamp(142px, 12vw, 210px);
  height: 52px;
  min-width: 0;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  transition: filter 0.24s ease, transform 0.24s ease;
}

.site-header .brand img {
  inline-size: 100% !important;
  block-size: 100% !important;
  max-inline-size: 100% !important;
  max-block-size: 100% !important;
}

.main-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: right center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.main-nav a:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(101, 157, 211, 0.36);
}

.header-cta {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  min-width: max-content;
  padding: 12px 21px;
  border-radius: 8px;
  color: #111326;
  background: var(--yellow);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(252, 191, 1, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: calc(var(--header-height) + 24px) clamp(18px, 5vw, 74px) 40px;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 157, 211, 0.4), transparent);
  opacity: 0.42;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(860px, 100%);
  margin-right: 0;
  margin-left: auto;
  padding-top: 18px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
  transform: translateX(var(--scrub-ui-offset));
  transition: transform 0.08s linear;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(3.28rem, 5vw, 5.92rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-title-line,
.no-break {
  white-space: nowrap;
}

.hero-title-line {
  display: block;
  max-width: 100%;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.32rem, 2.07vw, 1.63rem);
  line-height: 1.6;
}

.hero-person {
  margin: 28px 0 30px;
  padding-inline-start: 18px;
  border-inline-start: 3px solid var(--blue);
}

.hero-person strong,
.hero-person span {
  display: block;
}

.hero-person strong {
  font-size: 1.59rem;
}

.hero-person span {
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 22px;
  height: 22px;
}

.button-primary {
  color: #111326;
  background: linear-gradient(135deg, var(--yellow), #ffe08a);
  box-shadow: 0 18px 52px rgba(252, 191, 1, 0.25);
}

.button-primary:hover {
  box-shadow: 0 22px 62px rgba(252, 191, 1, 0.34);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1.08rem;
}

.hero-note {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-width: 0;
}

.scrub-frame {
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: rgba(6, 8, 22, 0.88);
  isolation: isolate;
}

.scrub-frame::before,
.scrub-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.scrub-frame::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 23, 0.2), rgba(7, 8, 23, 0.14) 34%, rgba(7, 8, 23, 0.7) 72%, rgba(7, 8, 23, 0.92)),
    linear-gradient(0deg, rgba(7, 8, 23, 0.72), transparent 34%, rgba(7, 8, 23, 0.2)),
    radial-gradient(circle at 28% 44%, transparent 0 28%, rgba(7, 8, 23, 0.3) 62%);
}

.scrub-frame::after {
  background:
    linear-gradient(rgba(101, 157, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 157, 211, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.28;
  mix-blend-mode: screen;
  box-shadow: inset 0 0 120px rgba(7, 8, 23, 0.72);
}

.hero-video,
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.scrub-frame.is-ready .hero-video {
  opacity: 1;
}

.video-fallback {
  z-index: 1;
}

.scrub-frame.has-error .hero-video {
  display: none;
}

.video-loader {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(7, 8, 23, 0.62);
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.scrub-frame.is-ready .video-loader,
.scrub-frame.has-error .video-loader {
  opacity: 0;
  visibility: hidden;
}

.scrub-hint {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: auto;
  bottom: 28px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(7, 8, 23, 0.58);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
}

.scrub-hint span {
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.creative-lab .section-heading p {
  font-size: 1.29rem;
}

.creative-lab .eyebrow {
  color: var(--yellow);
}

.audience .section-heading h2 {
  font-size: clamp(2.47rem, 4.6vw, 4.83rem);
}

.feature-grid,
.pricing-grid,
.services-grid,
.creative-grid,
.about-principles,
.about-stats {
  display: grid;
  gap: 18px;
}

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

.about-mini {
  width: min(1240px, calc(100% - 40px));
  padding-top: 118px;
  padding-bottom: 96px;
  isolation: isolate;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.about-statement {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline-start: clamp(18px, 3vw, 42px);
}

.about-statement::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(252, 191, 1, 0.9), rgba(101, 157, 211, 0.45), transparent);
  box-shadow: 0 0 24px rgba(252, 191, 1, 0.2);
}

.about-statement h2 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-signal {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(101, 157, 211, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 18%, rgba(101, 157, 211, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(13, 18, 48, 0.62);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.34),
    inset 0 0 60px rgba(101, 157, 211, 0.055);
  backdrop-filter: blur(18px);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.about-signal::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  pointer-events: none;
}

.about-signal::after {
  content: "";
  position: absolute;
  inset-inline-start: 26px;
  inset-block-start: 26px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 191, 1, 0.28), transparent 68%);
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.about-signal span,
.about-signal strong,
.about-signal p {
  position: relative;
  z-index: 1;
}

.about-signal span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-signal strong {
  display: block;
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.44rem, 2.15vw, 2.3rem);
  line-height: 1.32;
  font-weight: 900;
}

.about-signal p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}

.about-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.about-principle {
  min-height: 230px;
  padding: clamp(30px, 2.8vw, 38px);
}

.about-principle span {
  display: block;
  margin-bottom: 30px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.about-principle h3 {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.5rem, 1.85vw, 2.12rem);
  line-height: 1.18;
  font-weight: 900;
  text-wrap: balance;
}

.about-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.75;
}

.creative-lab {
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  max-width: none;
  padding: 120px 0 28px;
  background: rgba(7, 8, 23, 0.58);
}

.creative-lab > .section-heading,
.creative-lab > .creative-grid,
.creative-lab > .creative-offers {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.creative-scrub-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 36%, rgba(101, 157, 211, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 8, 23, 0.96), rgba(22, 22, 63, 0.72), rgba(7, 8, 23, 0.95));
}

.creative-scrub-bg::before,
.creative-scrub-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.creative-scrub-bg::before {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(101, 157, 211, 0.18), transparent 34%),
    radial-gradient(circle at var(--creative-glow-x) 42%, rgba(101, 157, 211, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(7, 8, 23, 0.78), rgba(7, 8, 23, 0.42) 24%, rgba(7, 8, 23, 0.22) 43%, rgba(7, 8, 23, 0.22) 57%, rgba(7, 8, 23, 0.42) 76%, rgba(7, 8, 23, 0.78)),
    linear-gradient(180deg, rgba(7, 8, 23, 0.66), rgba(7, 8, 23, 0.12) 42%, rgba(7, 8, 23, 0.82));
}

.creative-scrub-bg::after {
  opacity: 0.16;
  background:
    linear-gradient(rgba(101, 157, 211, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 157, 211, 0.1) 1px, transparent 1px);
  background-size: 68px 68px;
  mix-blend-mode: screen;
}

.creative-scrub-image,
.creative-scrub-video {
  position: absolute;
  z-index: 1;
  opacity: 0;
  filter: saturate(1.06) contrast(1.08);
  transform-origin: center center;
  transition: opacity 0.38s ease;
  will-change: transform;
}

.creative-scrub-video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: translate3d(var(--creative-scrub-shift), var(--creative-headroom), 0) scale(1.005);
}

.creative-scrub-image {
  top: clamp(800px, 60vw, 1040px);
  left: 50%;
  width: min(1120px, 68vw);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  transform: translate3d(calc(-50% + var(--creative-scrub-shift)), var(--creative-headroom), 0) scale(1);
}

.creative-scrub-image-left {
  opacity: var(--creative-left-opacity);
}

.creative-scrub-image-center {
  opacity: var(--creative-center-opacity);
}

.creative-scrub-image-right {
  opacity: var(--creative-right-opacity);
}

.creative-scrub-bg.is-ready .creative-scrub-video {
  opacity: 0.94;
}

.creative-scrub-bg.is-ready .creative-scrub-image {
  transition-duration: 0.14s;
}

.creative-scrub-bg.has-error .creative-scrub-video {
  display: none;
}

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

.creative-card {
  min-height: 230px;
  padding: 26px;
}

.creative-card svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  transition: color 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.creative-card h3 {
  margin: 22px 0 12px;
}

.creative-card p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.creative-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.creative-offer-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.creative-offer-card.recommended {
  border-color: rgba(252, 191, 1, 0.62);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.35),
    0 0 54px rgba(252, 191, 1, 0.13),
    inset 0 0 42px rgba(252, 191, 1, 0.035);
}

.creative-offer-card h3 {
  min-height: 58px;
  margin-bottom: 18px;
  font-size: 1.59rem;
}

.creative-offer-card p:not(.plan-label):not(.price):not(.recommended-label) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.proof-section {
  width: min(1240px, calc(100% - 40px));
}

.case-studies {
  width: min(1280px, calc(100% - 40px));
}

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

.case-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 610px;
}

.case-card-featured {
  border-color: rgba(252, 191, 1, 0.46);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(252, 191, 1, 0.08);
}

.case-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(101, 157, 211, 0.22), transparent 42%),
    rgba(7, 8, 23, 0.74);
}

.case-media video,
.case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 23, 0.03), rgba(7, 8, 23, 0.34)),
    linear-gradient(90deg, rgba(7, 8, 23, 0.24), transparent 38%, rgba(7, 8, 23, 0.26));
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.case-content h3 {
  min-height: 98px;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.76rem);
  line-height: 1.28;
}

.case-content p:not(.plan-label) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.case-content .button {
  width: 100%;
  margin-top: auto;
}

.case-visual {
  display: grid;
  place-items: center;
  padding: 28px;
}

.case-visual-leads {
  background:
    radial-gradient(circle at 72% 24%, rgba(252, 191, 1, 0.24), transparent 24%),
    radial-gradient(circle at 20% 80%, rgba(101, 157, 211, 0.3), transparent 30%),
    linear-gradient(145deg, rgba(13, 18, 48, 0.96), rgba(7, 8, 23, 0.82));
}

.lead-panel {
  width: min(250px, 78%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
}

.lead-panel span {
  display: block;
  height: 11px;
  margin: 11px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.18));
}

.lead-panel span:nth-child(2) {
  width: 72%;
}

.lead-panel span:nth-child(3) {
  width: 48%;
  background: linear-gradient(90deg, var(--yellow), rgba(255, 255, 255, 0.18));
}

.lead-graph {
  position: absolute;
  inset-inline: 22%;
  bottom: 42px;
  height: 82px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  opacity: 0.78;
}

.lead-graph i {
  width: 18px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--yellow), var(--blue));
  box-shadow: 0 0 22px rgba(252, 191, 1, 0.16);
}

.lead-graph i:nth-child(1) { height: 34px; }
.lead-graph i:nth-child(2) { height: 58px; }
.lead-graph i:nth-child(3) { height: 44px; }
.lead-graph i:nth-child(4) { height: 76px; }

.case-visual strong {
  position: absolute;
  top: 28px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.testimonial-carousel,
.shorts-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  height: clamp(660px, 48vw, 720px);
  min-height: 660px;
  padding: clamp(34px, 4vw, 58px) 96px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-track,
.shorts-track {
  position: relative;
}

.testimonial-track {
  flex: 1;
  min-height: 0;
  display: grid;
  align-items: center;
}

.testimonial-slide,
.shorts-slide {
  display: none;
}

.testimonial-slide.is-active,
.shorts-slide.is-active {
  display: block;
}

.testimonial-carousel .testimonial-slide.is-active {
  display: grid;
  height: 100%;
  align-content: center;
  grid-template-rows: auto minmax(260px, 1fr) auto;
}

.testimonial-slide {
  text-align: center;
}

.testimonial-logo {
  width: 132px;
  height: 132px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 157, 211, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 20%, rgba(101, 157, 211, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 48px rgba(101, 157, 211, 0.13);
}

.testimonial-logo.logo-on-white {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.22),
    0 0 42px rgba(101, 157, 211, 0.14);
}

.testimonial-logo img {
  max-width: 74%;
  max-height: 74%;
  object-fit: contain;
}

.testimonial-logo.logo-on-white img {
  max-width: 82%;
  max-height: 82%;
}

.testimonial-logo.logo-wide img {
  max-width: 88%;
  max-height: 58%;
}

.logo-fallback-text {
  display: none;
  color: var(--white);
  font-size: 1.34rem;
  font-weight: 900;
}

.testimonial-logo.logo-fallback .logo-fallback-text {
  display: block;
}

.testimonial-slide blockquote {
  max-width: 920px;
  margin: 0 auto 28px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  line-height: 1.72;
  font-weight: 800;
}

.testimonial-slide footer {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.testimonial-slide footer strong {
  color: var(--yellow);
  font-size: 1.28rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 157, 211, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 8, 23, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-arrow:disabled {
  opacity: 0.34;
  cursor: default;
  pointer-events: none;
}

.carousel-arrow-next {
  right: 22px;
}

.carousel-arrow-prev {
  left: 22px;
}

.testimonial-carousel .carousel-arrow {
  right: auto;
  left: 32px;
}

.testimonial-carousel .carousel-arrow-next {
  top: calc(50% - 34px);
}

.testimonial-carousel .carousel-arrow-prev {
  top: calc(50% + 34px);
}

.testimonial-carousel .carousel-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.carousel-dots {
  position: relative;
  z-index: 3;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(252, 191, 1, 0.46);
}

.shorts-showcase {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: clamp(210px, 14vw, 290px) auto 0;
}

.shorts-carousel {
  min-height: auto;
  padding: 20px 72px 8px;
}

.shorts-track {
  width: min(390px, 100%);
  margin-inline: auto;
}

.shorts-slide iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(101, 157, 211, 0.28);
  border-radius: 8px;
  background: #070817;
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(101, 157, 211, 0.13);
}

.glass-card,
.service-item,
.ai-panel,
.final-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    var(--glass);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.glass-card,
.service-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.glass-card::after,
.service-item::after,
.audience-list li::after,
.timeline li::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(101, 157, 211, 0.23), transparent 38%),
    linear-gradient(135deg, rgba(252, 191, 1, 0.07), transparent 56%);
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.glass-card > *,
.service-item > *,
.audience-list li > *,
.timeline li > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  min-height: 220px;
  padding: 28px;
}

.feature-card svg,
.creative-card svg,
.service-item svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  transition: color 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.feature-card h3 {
  margin: 24px 0 12px;
  font-size: 1.47rem;
}

.feature-card p,
.pricing-card p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-card p {
  font-size: 1.15rem;
}

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

.service-item {
  min-height: 120px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.24rem;
  font-weight: 800;
}

.service-item.wide {
  grid-column: span 2;
}

.ai-era {
  width: min(1320px, calc(100% - 40px));
}

.ai-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
  padding: clamp(32px, 5vw, 62px);
}

.ai-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(252, 191, 1, 0.13), transparent 24%),
    radial-gradient(circle at 86% 70%, rgba(101, 157, 211, 0.18), transparent 28%);
  pointer-events: none;
}

.ai-panel > * {
  position: relative;
  z-index: 1;
}

.ai-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.ai-panel strong {
  grid-column: 1 / -1;
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  overflow: hidden;
  min-height: 88px;
  padding: 22px 56px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.6;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.audience-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 22px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  box-shadow: 0 0 22px rgba(252, 191, 1, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.pricing-card.recommended {
  border-color: rgba(252, 191, 1, 0.62);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.35),
    0 0 54px rgba(252, 191, 1, 0.13),
    inset 0 0 42px rgba(252, 191, 1, 0.035);
}

.recommended-label {
  position: absolute;
  top: 18px;
  left: 18px;
  margin: 0;
  padding: 6px 11px;
  border-radius: 8px;
  color: #101225;
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.plan-label {
  margin-bottom: 18px;
  color: var(--yellow) !important;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  min-height: 64px;
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.hours {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 800;
}

.price {
  margin: 8px 0 20px;
  color: var(--yellow) !important;
  font-size: 2.18rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.pricing-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-download {
  margin-top: 22px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-color: rgba(252, 191, 1, 0.28);
}

.pricing-download h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.pricing-download p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.pricing-download .button {
  flex: 0 0 auto;
  min-width: 230px;
}

.pricing-card > p:not(.plan-label):not(.hours):not(.price):not(.recommended-label) {
  font-size: 1.15rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 157, 211, 0.6), rgba(252, 191, 1, 0.42), transparent);
}

.timeline li {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 170px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.timeline span {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #101225;
  background: linear-gradient(135deg, var(--yellow), #fff1bb);
  box-shadow: 0 0 42px rgba(252, 191, 1, 0.2);
  font-size: 1.36rem;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.timeline span::after {
  content: "←";
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.48rem;
  line-height: 1;
  text-shadow:
    0 0 12px rgba(252, 191, 1, 0.9),
    0 0 28px rgba(252, 191, 1, 0.45);
}

@media (min-width: 1280px) and (pointer: fine) {
  html {
    font-size: 16.5px;
  }
}

@media (min-width: 1600px) and (pointer: fine) {
  html {
    font-size: 17px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img {
    filter: drop-shadow(0 0 16px rgba(101, 157, 211, 0.34));
    transform: translateY(-1px);
  }

  .main-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header-cta:hover {
    background: #ffd247;
    box-shadow: 0 18px 44px rgba(252, 191, 1, 0.32);
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: linear-gradient(135deg, #ffd22f, #fff0bd);
  }

  .button-secondary:hover {
    border-color: rgba(101, 157, 211, 0.48);
    background: rgba(101, 157, 211, 0.13);
    box-shadow: 0 18px 42px rgba(101, 157, 211, 0.16);
  }

  .button:hover svg {
    transform: translateX(-2px);
  }

  .glass-card:hover,
  .service-item:hover {
    border-color: rgba(101, 157, 211, 0.48);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
      rgba(13, 18, 48, 0.72);
    box-shadow:
      0 30px 86px rgba(0, 0, 0, 0.34),
      0 0 34px rgba(101, 157, 211, 0.13);
    transform: translateY(-6px);
  }

  .glass-card:hover::after,
  .service-item:hover::after,
  .audience-list li:hover::after,
  .timeline li:hover::after {
    opacity: 1;
  }

  .feature-card:hover svg,
  .creative-card:hover svg,
  .service-item:hover svg {
    color: var(--yellow);
    filter: drop-shadow(0 0 14px rgba(252, 191, 1, 0.26));
    transform: translateY(-2px);
  }

  .about-signal:hover {
    border-color: rgba(252, 191, 1, 0.38);
    box-shadow:
      0 36px 96px rgba(0, 0, 0, 0.38),
      0 0 42px rgba(252, 191, 1, 0.1),
      inset 0 0 60px rgba(101, 157, 211, 0.07);
  }

  .pricing-card.recommended:hover {
    border-color: rgba(252, 191, 1, 0.86);
    box-shadow:
      0 34px 96px rgba(0, 0, 0, 0.4),
      0 0 68px rgba(252, 191, 1, 0.2),
      inset 0 0 48px rgba(252, 191, 1, 0.055);
  }

  .audience-list li:hover,
  .timeline li:hover {
    border-color: rgba(101, 157, 211, 0.42);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    transform: translateY(-4px);
  }

  .audience-list li:hover::before {
    box-shadow: 0 0 28px rgba(252, 191, 1, 0.46);
    transform: scale(1.08);
  }

  .timeline li:hover span {
    box-shadow: 0 0 54px rgba(252, 191, 1, 0.32);
    transform: scale(1.04);
  }

  .carousel-arrow:hover {
    border-color: rgba(252, 191, 1, 0.64);
    background: rgba(101, 157, 211, 0.18);
    transform: translateY(-50%) scale(1.06);
  }
}

.timeline strong {
  display: block;
  font-size: 1.31rem;
  line-height: 1.4;
}

.final-cta {
  width: min(980px, calc(100% - 40px));
}

.final-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.final-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(101, 157, 211, 0.22), transparent 42%);
  pointer-events: none;
}

.final-panel > * {
  position: relative;
  z-index: 1;
}

.final-panel .eyebrow {
  color: var(--yellow);
  font-size: 1.2rem;
  text-align: center;
}

.final-panel h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2.82rem, 5.29vw, 5.58rem);
}

.final-panel p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.53rem;
  line-height: 1.8;
}

.final-panel .button {
  font-size: 1.32rem;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer strong {
  color: var(--white);
  font-size: 1.15rem;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 64px;
  }
}

@keyframes glowFloatA {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(8vw, 7vh, 0);
  }
}

@keyframes glowFloatB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-8vw, -4vh, 0) scale(1.12);
  }
}

@keyframes particlesShift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 260px 260px, -360px 360px, 300px -300px, 880px -880px;
  }
}

@media (max-width: 1080px) {
  html {
    font-size: 15.75px;
  }

  .hero {
    min-height: 92vh;
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero-copy {
    max-width: 850px;
  }

  .services-grid,
  .three-columns,
  .pricing-grid,
  .case-grid,
  .creative-grid,
  .creative-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.recommended {
    order: -1;
  }

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 820px) {
  html {
    font-size: 15px;
  }

  .site-header {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .brand {
    position: absolute;
    left: 50%;
    justify-self: center;
    width: clamp(142px, 36vw, 190px);
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: clamp(18px, 4vw, 48px);
    margin-inline-start: 0;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(7, 8, 23, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
  }

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

  .main-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .header-cta {
    display: none;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 78px 0;
  }

  .hero {
    width: 100%;
    min-height: 92vh;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.67rem, 11vw, 4.72rem);
    line-height: 1.04;
  }

  .hero-title-line {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .scrub-frame::before {
    background:
      linear-gradient(90deg, rgba(7, 8, 23, 0.35), rgba(7, 8, 23, 0.28) 30%, rgba(7, 8, 23, 0.66) 64%, rgba(7, 8, 23, 0.92)),
      linear-gradient(0deg, rgba(7, 8, 23, 0.78), rgba(7, 8, 23, 0.18) 48%, rgba(7, 8, 23, 0.24));
  }

  .scrub-hint {
    right: 14px;
    bottom: 14px;
    font-size: 0.78rem;
  }

  .services-grid,
  .three-columns,
  .pricing-grid,
  .case-grid,
  .creative-grid,
  .creative-offers,
  .audience-list,
  .about-layout,
  .about-principles,
  .about-stats,
  .timeline {
    grid-template-columns: 1fr;
  }

  .about-mini {
    width: min(100% - 28px, var(--max));
    padding-top: 86px;
    padding-bottom: 78px;
  }

  .about-statement {
    min-height: auto;
    padding-inline-start: 24px;
  }

  .about-statement h2 {
    font-size: clamp(2.35rem, 8vw, 4.3rem);
    line-height: 1.04;
  }

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

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

  .creative-lab {
    width: 100%;
  }

  .creative-lab > .section-heading,
  .creative-lab > .creative-grid,
  .creative-lab > .creative-offers,
  .shorts-showcase {
    width: min(100% - 28px, var(--max));
  }

  .testimonial-carousel {
    height: 640px;
    min-height: 640px;
    padding: 30px 58px 34px;
  }

  .pricing-download {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-download .button {
    width: 100%;
    min-width: 0;
  }

  .testimonial-track,
  .testimonial-carousel .testimonial-slide.is-active {
    min-height: 0;
    height: 100%;
  }

  .testimonial-carousel .testimonial-slide.is-active {
    grid-template-rows: auto minmax(280px, 1fr) auto;
  }

  .testimonial-carousel .carousel-arrow-next {
    left: 12px;
    top: calc(50% - 31px);
  }

  .testimonial-carousel .carousel-arrow-prev {
    right: auto;
    left: 12px;
    top: calc(50% + 31px);
  }

  .testimonial-slide blockquote {
    min-height: 280px;
    font-size: clamp(1.18rem, 5vw, 1.62rem);
  }

  .shorts-carousel {
    min-height: auto;
    padding: 12px 0 28px;
  }

  .shorts-track {
    width: min(320px, calc(100% - 84px));
  }

  .shorts-carousel .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .service-item.wide {
    grid-column: auto;
  }

  .audience-list li {
    min-height: auto;
  }

  .timeline {
    gap: 14px;
  }

  .timeline li {
    min-height: auto;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 16px;
  }

  .timeline span {
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .timeline span::after {
    display: none;
  }

  .site-footer {
    width: min(100% - 28px, var(--max));
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 14.5px;
  }

  .brand {
    width: 132px;
    height: 44px;
  }

  .brand img {
    width: 100%;
    max-height: 100%;
  }

  .site-header {
    min-height: 66px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-video,
  .video-fallback {
    object-position: 45% center;
  }

  .scrub-hint {
    display: none;
  }

  .feature-card,
  .case-card,
  .pricing-card {
    padding: 24px;
  }

  .case-card {
    padding: 0;
  }

  .about-statement {
    padding-inline-start: 18px;
  }

  .about-statement h2 {
    font-size: clamp(2.18rem, 11vw, 3.15rem);
  }

  .about-signal,
  .about-principle {
    padding: 24px;
  }

  .price {
    font-size: 1.86rem;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
