:root {
  color-scheme: light;
  --ink: #101010;
  --muted: #665f57;
  --paper: #fff8ee;
  --paper-deep: #f6eadc;
  --line: rgba(35, 24, 18, 0.12);
  --orange: #df3d17;
  --orange-dark: #b92f12;
  --black: #0b0b0b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.48);
  --glass-strong: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 80px rgba(56, 35, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(223, 61, 23, 0.12), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(180deg, var(--paper), #fffaf3 48%, var(--paper));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before,
body::after {
  position: fixed;
  pointer-events: none;
  content: "";
}

body::before {
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(223, 61, 23, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(135deg, transparent 0 35%, black 56%, transparent 92%);
  opacity: 0.32;
}

body::after {
  top: 8%;
  right: 6%;
  z-index: -1;
  width: 42vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 36% 64% 58% 42% / 44% 38% 62% 56%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.75), transparent 34%),
    linear-gradient(135deg, rgba(223, 61, 23, 0.28), rgba(255, 248, 238, 0.22));
  filter: blur(10px);
  opacity: 0.72;
  animation: liquidMorph 18s ease-in-out infinite;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 44px;
  align-items: center;
  width: min(1440px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 238, 0.72);
  box-shadow: 0 16px 50px rgba(56, 35, 17, 0.08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.logo-lockup img {
  width: 92px;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.6vw, 38px);
}

.main-nav a {
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--orange);
}

.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(223, 61, 23, 0.24);
}

.menu-button span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

main {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  min-height: calc(100vh - 104px);
  gap: 42px;
  align-items: center;
  padding: 54px 30px 72px;
}

.motion-landing {
  position: relative;
  overflow: hidden;
}

.motion-landing::before {
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 248, 238, 0.16));
  backdrop-filter: blur(10px);
  content: "";
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.2vw, 112px);
  line-height: 0.95;
  text-transform: uppercase;
}

h1 span {
  color: var(--orange);
  text-shadow: 0 22px 54px rgba(223, 61, 23, 0.2);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions,
.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.portfolio-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-button {
  border: 1px solid var(--orange);
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(223, 61, 23, 0.24);
}

.primary-button:hover {
  background: var(--orange-dark);
}

.ghost-button,
.portfolio-actions a {
  border: 1px solid var(--line);
  color: var(--black);
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.2);
}

.play-dot,
.showreel-button span {
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--glass);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.editor-stage {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  perspective: 1100px;
}

.stage-glow,
.liquid-blob,
.brand-watermark {
  position: absolute;
  pointer-events: none;
}

.stage-glow {
  width: 68%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.78), transparent 32%),
    radial-gradient(circle, rgba(223, 61, 23, 0.18), transparent 64%);
  filter: blur(18px);
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.liquid-blob {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08)),
    rgba(223, 61, 23, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 70px rgba(56, 35, 17, 0.12);
  backdrop-filter: blur(18px) saturate(1.35);
}

.blob-one {
  top: 8%;
  left: 7%;
  width: 120px;
  height: 86px;
  border-radius: 56% 44% 42% 58% / 48% 52% 48% 52%;
  animation: liquidFloat 8s ease-in-out infinite;
}

.blob-two {
  right: 2%;
  bottom: 18%;
  width: 154px;
  height: 104px;
  border-radius: 42% 58% 60% 40% / 42% 38% 62% 58%;
  animation: liquidFloat 10s ease-in-out infinite reverse;
}

.blob-three {
  right: 12%;
  top: 8%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  animation: orbitMini 12s linear infinite;
}

.brand-watermark {
  z-index: 1;
  top: 1%;
  right: 13%;
  width: min(270px, 34vw);
  opacity: 0.09;
  filter: grayscale(1) contrast(1.18);
  animation: logoDrift 10s ease-in-out infinite;
}

.editor-window {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.58);
  box-shadow:
    0 30px 100px rgba(56, 35, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(1.28);
  transform: rotateX(3deg) rotateY(-7deg);
  animation: editorFloat 7s ease-in-out infinite;
}

.window-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.window-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.18);
}

.window-topbar span:first-child {
  background: var(--orange);
}

.window-topbar span:nth-child(2) {
  background: #eeb252;
}

.window-topbar span:nth-child(3) {
  background: var(--black);
}

.window-topbar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-screen {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--black);
}

.preview-screen img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.08) contrast(1.06);
}

.preview-screen::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.02), rgba(11, 11, 11, 0.65)),
    radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(223, 61, 23, 0.18) 27%, transparent 31%);
  content: "";
}

.scan-line {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 238, 0.42), transparent);
  animation: scanPreview 4s linear infinite;
}

.preview-screen .showreel-button {
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  color: var(--white);
  background: rgba(223, 61, 23, 0.9);
  transform: translate(-50%, -50%);
}

.showreel-button {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(223, 61, 23, 0.28);
}

.showreel-button span {
  margin-left: 4px;
}

.edit-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.meter,
.floating-panel,
.motion-workflow article,
.service-row article,
.services-grid article,
.stats-grid article,
.blog-grid article,
.contact-form,
.client-marquee {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.22);
}

.meter {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
}

.meter small {
  color: var(--muted);
  font-weight: 800;
}

.meter i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.1);
}

.meter i::before {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--black));
  animation: meterLoad 3s ease-in-out infinite alternate;
  content: "";
}

.timeline-editor {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 248, 238, 0.4);
}

.track {
  height: 18px;
  border-radius: 6px;
  background-size: 180px 100%;
  animation: slideTrack 8s linear infinite;
}

.video-track {
  background-image: repeating-linear-gradient(90deg, rgba(223, 61, 23, 0.94) 0 62px, rgba(223, 61, 23, 0.35) 62px 76px, transparent 76px 94px);
}

.audio-track {
  background-image: repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.72) 0 18px, rgba(17, 17, 17, 0.16) 18px 28px, transparent 28px 40px);
}

.caption-track {
  background-image: repeating-linear-gradient(90deg, rgba(95, 91, 85, 0.72) 0 44px, rgba(95, 91, 85, 0.18) 44px 54px, transparent 54px 74px);
}

.playhead {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 18%;
  z-index: 3;
  width: 2px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(223, 61, 23, 0.7);
  animation: playheadMove 5s ease-in-out infinite alternate;
}

.floating-panel {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 14px;
  border-radius: 18px;
}

.floating-panel span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-panel strong {
  color: var(--black);
}

.panel-a {
  top: 9%;
  left: 2%;
  animation: floatPanel 5s ease-in-out infinite;
}

.panel-b {
  top: 22%;
  right: -2%;
  animation: floatPanel 6.2s ease-in-out infinite reverse;
}

.panel-c {
  right: 10%;
  bottom: 7%;
  animation: floatPanel 5.8s ease-in-out infinite;
}

.motion-orbit {
  position: absolute;
  inset: 10% 8%;
  z-index: 1;
  border: 1px dashed rgba(223, 61, 23, 0.24);
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}

.motion-orbit span {
  position: absolute;
  display: grid;
  min-width: 70px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--glass);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.motion-orbit span:nth-child(1) {
  top: 4%;
  left: 46%;
}

.motion-orbit span:nth-child(2) {
  right: 2%;
  bottom: 34%;
}

.motion-orbit span:nth-child(3) {
  bottom: 8%;
  left: 12%;
}

.motion-ribbon {
  overflow: hidden;
  margin: -32px 30px 72px;
  border-block: 1px solid var(--line);
  color: var(--black);
  background: rgba(255, 248, 238, 0.44);
  backdrop-filter: blur(16px) saturate(1.18);
}

.motion-ribbon div {
  display: flex;
  width: max-content;
  animation: ribbonRun 24s linear infinite;
}

.motion-ribbon span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 34px;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.motion-ribbon span::after {
  position: absolute;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

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

.motion-workflow article {
  padding: 24px;
  border-radius: 18px;
}

.motion-workflow span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.motion-workflow p,
.service-row p,
.services-grid p,
.blog-grid p,
.blog-heading p,
.clients-section .section-head p,
.about-copy p,
.contact-info p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.services-intro,
.about-section,
.blog-section,
.contact-section,
.clients-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  padding: 86px 30px;
  border-top: 1px solid var(--line);
}

.services-intro > p,
.about-copy p,
.blog-heading p,
.contact-info p {
  max-width: 620px;
  font-size: 17px;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0 30px 86px;
}

.service-row article {
  min-height: 176px;
  padding: 22px;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-row article:hover,
.services-grid article:hover,
.blog-grid article:hover,
.portfolio-video:hover {
  transform: translateY(-8px);
}

.service-row span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff3e9;
  font-weight: 900;
}

.studio-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.stats-grid article {
  padding: 28px;
  border-radius: 18px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--orange);
  font-size: 42px;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.team-section {
  padding: 0 30px 86px;
  border-top: 1px solid var(--line);
}

.team-section .section-head {
  padding-top: 86px;
}

.team-section .section-head p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

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

.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card::before {
  position: absolute;
  inset: auto 18px 18px;
  height: 38%;
  border-radius: 50%;
  background: rgba(223, 61, 23, 0.18);
  filter: blur(30px);
  content: "";
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}

.team-card div {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.team-card span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  font-size: 26px;
}

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

.clients-section {
  display: block;
}

.clients-section .section-head {
  margin-bottom: 24px;
}

.clients-section .section-head p {
  max-width: 540px;
}

.client-marquee {
  overflow: hidden;
  border-radius: 18px;
  padding: 18px;
}

.client-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: logoMarquee 28s linear infinite;
}

.client-track article {
  display: grid;
  width: 210px;
  height: 112px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.client-track img {
  max-width: 160px;
  max-height: 74px;
  object-fit: contain;
  filter: saturate(0.92);
}

.tools-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 86px;
  padding: 44px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.95), rgba(30, 30, 30, 0.9)),
    url("https://images.unsplash.com/photo-1492619375914-88005aa9e8fb?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
}

.tools-strip h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.tool-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.tool-icons span {
  display: grid;
  min-width: 74px;
  height: 64px;
  place-items: center;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  font-weight: 900;
}

.portfolio-section {
  display: block;
  margin-bottom: 86px;
  padding: 86px 30px;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 18%, rgba(223, 61, 23, 0.18), transparent 28%),
    var(--black);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 30px;
}

.portfolio-libraries {
  display: grid;
  gap: 52px;
}

.portfolio-library {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.library-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.library-head span {
  color: var(--white);
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.library-head a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

.portfolio-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease;
}

.portfolio-video::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 48%, transparent 55%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  content: "";
}

.portfolio-video:hover::after {
  transform: translateX(130%);
}

.portfolio-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #000000;
}

.portfolio-video div {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.portfolio-video span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-video h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.portfolio-video a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-decoration-color: var(--orange);
}

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

.services-grid article {
  min-height: 180px;
  padding: 24px;
  border-radius: 18px;
  transition: transform 0.35s ease;
}

.blog-section {
  display: block;
}

.blog-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

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

.blog-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 292px;
  padding: 20px;
  border-radius: 18px;
  transition: transform 0.35s ease;
}

.blog-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff3e9;
  font-weight: 900;
}

.blog-grid small {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

.blog-grid a {
  margin-top: auto;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-decoration-color: var(--orange);
}

.contact-section {
  align-items: start;
  padding-bottom: 110px;
}

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

.contact-info li {
  display: grid;
  gap: 4px;
}

.contact-info strong {
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-info a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px max(24px, calc((100vw - 1440px) / 2 + 30px));
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 120px;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  font-size: 13px;
  font-weight: 900;
  text-decoration-color: var(--orange);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 11, 11, 0.82);
}

.video-modal[hidden] {
  display: none;
}

.video-modal iframe {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  background: var(--black);
}

.video-modal button {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-section,
  .services-intro,
  .about-section,
  .contact-section,
  .tools-strip {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .editor-stage {
    min-height: 560px;
  }

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

  .motion-workflow,
  .stats-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 110px 1fr 42px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
  }

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

  .main-nav a {
    padding: 10px;
    color: var(--black);
  }

  .hero-section,
  .services-intro,
  .about-section,
  .portfolio-section,
  .blog-section,
  .contact-section,
  .clients-section,
  .team-section {
    padding: 54px 6px;
  }

  .motion-landing::before {
    inset: 16px 0;
  }

  .editor-stage {
    min-height: 500px;
  }

  .editor-window {
    transform: none;
  }

  .panel-a,
  .panel-b,
  .panel-c,
  .motion-orbit {
    display: none;
  }

  .edit-dashboard {
    grid-template-columns: 1fr;
  }

  .service-row,
  .stats-grid,
  .portfolio-grid,
  .services-grid,
  .motion-workflow,
  .blog-grid,
  .team-grid {
    grid-template-columns: 1fr;
    padding-right: 6px;
    padding-left: 6px;
  }

  .motion-workflow,
  .motion-ribbon {
    margin-right: 6px;
    margin-left: 6px;
  }

  .team-section .section-head {
    padding-top: 0;
  }

  .library-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: flex;
  }
}

@keyframes liquidMorph {
  0%,
  100% {
    border-radius: 36% 64% 58% 42% / 44% 38% 62% 56%;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    border-radius: 58% 42% 35% 65% / 56% 64% 36% 44%;
    transform: translate3d(-26px, 18px, 0) rotate(8deg);
  }
}

@keyframes liquidFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    border-radius: 56% 44% 42% 58% / 48% 52% 48% 52%;
  }
  50% {
    transform: translate3d(16px, -18px, 0) rotate(10deg);
    border-radius: 42% 58% 62% 38% / 60% 38% 62% 40%;
  }
}

@keyframes orbitMini {
  from {
    transform: rotate(0deg) translateX(22px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(22px) rotate(-360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes editorFloat {
  0%,
  100% {
    transform: rotateX(3deg) rotateY(-7deg) translateY(0);
  }
  50% {
    transform: rotateX(1deg) rotateY(-4deg) translateY(-16px);
  }
}

@keyframes scanPreview {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(340%);
  }
}

@keyframes meterLoad {
  from {
    filter: brightness(0.86);
    transform: scaleX(0.84);
    transform-origin: left;
  }
  to {
    filter: brightness(1.14);
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes slideTrack {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 180px 0;
  }
}

@keyframes playheadMove {
  from {
    left: 12%;
  }
  to {
    left: 82%;
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ribbonRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logoDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(-18px, 12px, 0) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Final request overrides */
.hero-title span {
  color: var(--ink);
}

.hero-title em {
  color: var(--orange);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(21, 21, 21, 0.09);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  letter-spacing: 0;
}

.whatsapp-button .whatsapp-icon-wrap {
  width: 30px;
  height: 30px;
  background: transparent;
}

.whatsapp-button .whatsapp-icon {
  display: block;
  width: 30px;
  height: 30px;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 72, 29, 0.34);
  box-shadow: 0 18px 36px rgba(229, 72, 29, 0.18);
}

.client-logo-marquee {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 236, 0.62)),
    radial-gradient(circle at 12% 10%, rgba(229, 72, 29, 0.1), transparent 34%);
}

.client-logo-marquee::before {
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee article {
  display: grid;
  place-items: center;
  width: 236px;
  height: 132px;
  padding: 20px 24px;
  overflow: visible;
  border-color: rgba(21, 21, 21, 0.08);
  background: #fff;
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.08);
}

.client-logo-marquee img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 82px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 640px) {
  .whatsapp-button {
    width: 100%;
  }

  .client-logo-marquee article {
    width: 196px;
    height: 112px;
    padding: 16px 18px;
  }
}

/* Final hero and clientele polish */
.hero-title span {
  color: var(--ink);
}

.hero-title em {
  color: var(--orange);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(21, 21, 21, 0.09);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  letter-spacing: 0;
}

.whatsapp-button .whatsapp-icon-wrap {
  width: 30px;
  height: 30px;
  background: transparent;
}

.whatsapp-button .whatsapp-icon {
  display: block;
  width: 30px;
  height: 30px;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 72, 29, 0.34);
  box-shadow: 0 18px 36px rgba(229, 72, 29, 0.18);
}

.client-logo-marquee {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.44)),
    radial-gradient(circle at 12% 10%, rgba(229, 72, 29, 0.12), transparent 34%);
}

.client-logo-marquee::before {
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee .client-track {
  align-items: center;
}

.client-logo-marquee article {
  display: grid;
  width: 244px;
  height: 132px;
  place-items: center;
  overflow: visible;
  padding: 20px 24px;
  border-color: rgba(21, 21, 21, 0.11);
  background: #fff;
  box-shadow: 0 18px 46px rgba(33, 24, 17, 0.1);
}

.client-logo-marquee img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 86px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 640px) {
  .whatsapp-button {
    width: 100%;
  }

  .client-logo-marquee article {
    width: 204px;
    height: 112px;
    padding: 18px 20px;
  }

  .client-logo-marquee img {
    max-height: 74px;
  }
}

/* Final client logo visibility fix */
.client-logo-marquee {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.44)),
    radial-gradient(circle at 12% 10%, rgba(229, 72, 29, 0.12), transparent 34%);
}

.client-logo-marquee::before {
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee .client-track {
  align-items: center;
}

.client-logo-marquee article {
  display: grid;
  width: 244px;
  height: 132px;
  place-items: center;
  overflow: visible;
  padding: 20px 24px;
  border-color: rgba(21, 21, 21, 0.11);
  background: #fff;
  box-shadow: 0 18px 46px rgba(33, 24, 17, 0.1);
}

.client-logo-marquee img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 86px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 640px) {
  .client-logo-marquee {
    padding: 12px;
  }

  .client-logo-marquee article {
    width: 204px;
    height: 112px;
    padding: 18px 20px;
  }

  .client-logo-marquee img {
    max-height: 74px;
  }
}

/* Client logo visibility fix */
.client-logo-marquee {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.44)),
    radial-gradient(circle at 12% 10%, rgba(229, 72, 29, 0.12), transparent 34%);
}

.client-logo-marquee::before {
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee .client-track {
  align-items: center;
}

.client-logo-marquee article {
  display: grid;
  width: 244px;
  height: 132px;
  place-items: center;
  overflow: visible;
  padding: 20px 24px;
  border-color: rgba(21, 21, 21, 0.11);
  background: #fff;
  box-shadow: 0 18px 46px rgba(33, 24, 17, 0.1);
}

.client-logo-marquee img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 86px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 640px) {
  .client-logo-marquee {
    padding: 12px;
  }

  .client-logo-marquee article {
    width: 204px;
    height: 112px;
    padding: 18px 20px;
  }

  .client-logo-marquee img {
    max-height: 74px;
  }
}

/* Client logo visibility fix */
.client-logo-marquee {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 236, 0.62)),
    radial-gradient(circle at 12% 10%, rgba(229, 72, 29, 0.1), transparent 34%);
}

.client-logo-marquee::before {
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee article {
  display: grid;
  place-items: center;
  width: 236px;
  height: 132px;
  padding: 20px 24px;
  overflow: visible;
  border-color: rgba(21, 21, 21, 0.08);
  background: #fff;
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.08);
}

.client-logo-marquee img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 82px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 640px) {
  .client-logo-marquee article {
    width: 196px;
    height: 112px;
    padding: 16px 18px;
  }
}

/* Full redesign pass inspired by the Ainak editor app */
body::after {
  opacity: 0.42;
  filter: blur(18px);
}

main {
  width: min(1280px, calc(100% - 32px));
}

.site-header {
  grid-template-columns: 130px minmax(0, 1fr) 42px;
  border-radius: 24px;
  padding: 10px 14px;
}

.logo-lockup img {
  width: 74px;
  height: 58px;
}

.hero-premium {
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  gap: 38px;
  min-height: calc(100vh - 92px);
  padding: 44px 0 42px;
}

.motion-landing::before {
  inset: 10px -10px 28px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.72), rgba(255, 253, 249, 0.2)),
    radial-gradient(circle at 78% 18%, rgba(229, 72, 29, 0.1), transparent 30%);
}

.hero-premium .hero-copy,
.hero-premium .hero-copy .eyebrow,
.hero-premium .hero-copy p,
.hero-premium .hero-actions,
.hero-premium .hero-proof {
  margin-left: 0;
  text-align: left;
}

.hero-title {
  display: grid;
  gap: 2px;
  max-width: 620px;
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(56px, 6.1vw, 94px);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.88;
  white-space: normal;
}

.hero-title span,
.hero-title em {
  display: block;
}

.hero-title em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.075em;
  text-shadow: 0 18px 42px rgba(229, 72, 29, 0.2);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  justify-content: flex-start;
}

.contact-hero-button {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 25px rgba(21, 21, 21, 0.16);
}

.hero-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
}

.hero-proof span {
  min-height: 54px;
  border-radius: 15px;
  text-align: left;
}

.hero-composition {
  min-height: 540px;
}

.hero-composition::before {
  inset: 0 0 8px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 72% 84%, rgba(229, 72, 29, 0.86), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 58%),
    #d9d1c5;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.hero-composition::after {
  position: absolute;
  right: 34px;
  bottom: 36px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
  content: "";
}

.showcase-frame {
  width: min(780px, 92%);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.92);
  transform: rotate(-1.5deg);
}

.frame-screen {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.frame-screen iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.frame-screen::after {
  opacity: 0.22;
}

.floating-card {
  border-radius: 17px;
}

.card-brief {
  top: 3%;
  left: -1%;
}

.card-deliver {
  right: -1%;
  bottom: 4%;
}

.section-block {
  margin-bottom: 44px;
  padding: 52px 0;
}

.section-heading {
  max-width: 960px;
}

.section-heading h2,
.section-head h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.94;
}

.motion-workflow article,
.stats-panel article,
.contact-form,
.blog-grid article,
.blog-long-card {
  border-radius: 24px;
}

.services-grid-premium {
  gap: 14px;
}

.services-grid-premium article {
  min-height: 224px;
  border-radius: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.services-grid-premium article::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(21, 21, 21, 0.15);
  border-radius: 50%;
  content: "";
}

.services-grid-premium h3 {
  font-size: 24px;
  line-height: 1;
}

.client-logo-marquee {
  background: rgba(255, 253, 249, 0.74);
  box-shadow: 0 18px 45px rgba(28, 20, 14, 0.1);
}

.client-logo-marquee article {
  background: var(--paper-soft);
  box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.08);
}

.client-logo-marquee img {
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.55) saturate(0) brightness(0.72);
}

.portfolio-section {
  padding: 58px 26px;
  border-radius: 34px;
}

.portfolio-section .section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  text-align: left;
}

.portfolio-section .section-head .eyebrow,
.portfolio-section .section-head h2 {
  margin-left: 0;
  text-align: left;
}

.portfolio-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.portfolio-actions a.blink-button {
  min-height: 52px;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 0 0 rgba(229, 72, 29, 0.42);
  animation: blinkPulse 1.45s ease-in-out infinite;
}

.portfolio-actions a.blink-button:nth-child(2) {
  animation-delay: 0.28s;
}

.portfolio-actions a.blink-button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.portfolio-playlists {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-playlists .playlist-thumb-card {
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.08);
}

.playlist-thumbnail {
  min-height: 230px;
  padding: 0;
}

.playlist-thumbnail::before {
  background:
    linear-gradient(180deg, transparent 0 46%, rgba(0, 0, 0, 0.72)),
    linear-gradient(120deg, rgba(229, 72, 29, 0.14), transparent 52%);
}

.playlist-thumbnail::after {
  right: 22px;
  bottom: 20px;
  width: 68px;
  height: 68px;
}

.playlist-thumbnail i {
  right: 48px;
  bottom: 41px;
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 16px;
}

.playlist-thumbnail strong,
.playlist-thumbnail > span {
  display: none;
}

.playlist-content {
  padding: 22px;
}

.playlist-content h3 {
  font-size: 25px;
  line-height: 1.02;
}

.playlist-content p {
  font-size: 14px;
}

.playlist-content b {
  min-height: 44px;
  padding: 0 16px;
}

.tool-icons span {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
}

@keyframes blinkPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(229, 72, 29, 0.38), 0 14px 28px rgba(229, 72, 29, 0.24);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 9px rgba(229, 72, 29, 0), 0 18px 36px rgba(229, 72, 29, 0.34);
  }
}

@media (max-width: 1180px) {
  .hero-premium {
    grid-template-columns: 1fr;
  }

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

  .portfolio-section .section-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-section .section-head .eyebrow,
  .portfolio-section .section-head h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .portfolio-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  main {
    width: min(100% - 24px, 1280px);
  }

  .hero-premium {
    padding-top: 32px;
  }

  .hero-title {
    font-size: clamp(48px, 17vw, 72px);
  }

  .hero-proof,
  .portfolio-playlists {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    min-height: auto;
  }

  .hero-composition::before {
    inset: 0;
  }

  .showcase-frame {
    width: 100%;
    transform: none;
  }

  .card-brief,
  .card-deliver {
    display: none;
  }

  .portfolio-section {
    padding: 42px 14px;
    border-radius: 26px;
  }

  .portfolio-actions {
    width: 100%;
  }

  .portfolio-actions a.blink-button {
    flex: 1 1 100%;
  }
}

/* Reference app font and color pass */
:root {
  --paper: #f5f0e8;
  --paper-deep: #ebe4d9;
  --paper-soft: #fffdf9;
  --ink: #151515;
  --black: #151515;
  --muted: #6d6962;
  --line: rgba(21, 21, 21, 0.13);
  --orange: #e5481d;
  --orange-dark: #bc3210;
  --mint: #b9d5ca;
  --yellow: #ecd78a;
  --lavender: #cfc5de;
  --glass: rgba(255, 253, 249, 0.52);
  --glass-strong: rgba(255, 253, 249, 0.86);
  --shadow: 0 24px 80px rgba(34, 24, 15, 0.12);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 197, 168, 0.52), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(205, 222, 211, 0.46), transparent 26%),
    linear-gradient(180deg, var(--paper), var(--paper-soft) 48%, var(--paper));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-header {
  background: rgba(250, 247, 241, 0.86);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(26, 20, 15, 0.08);
}

.main-nav a {
  color: #55514b;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3 {
  font-weight: 750;
  letter-spacing: -0.055em;
  text-transform: none;
}

h1 {
  letter-spacing: -0.066em;
}

h3 {
  letter-spacing: -0.035em;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #5b5750;
  background: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.hero-copy .eyebrow,
.about-copy .eyebrow,
.contact-info .eyebrow,
.tools-strip .eyebrow {
  margin-left: 0;
}

.primary-button,
.ghost-button,
.portfolio-actions a,
.playlist-content b,
.blog-long-card summary {
  border-radius: 12px;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0;
  text-transform: none;
}

.primary-button,
.menu-button,
.playlist-content b,
.blog-long-card summary {
  background: var(--orange);
  box-shadow: 0 12px 25px rgba(229, 72, 29, 0.22);
}

.ghost-button,
.portfolio-actions a {
  color: var(--ink);
  background: rgba(21, 21, 21, 0.07);
}

.hero-proof span,
.floating-card,
.motion-workflow article,
.services-grid-premium article,
.stats-panel article,
.blog-grid article,
.blog-long-card,
.contact-form,
.client-logo-marquee {
  background: rgba(255, 253, 249, 0.52);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 45px rgba(28, 20, 14, 0.11);
}

.services-grid-premium article:nth-child(4n + 1) {
  background: rgba(185, 213, 202, 0.58);
}

.services-grid-premium article:nth-child(4n + 2) {
  background: rgba(236, 215, 138, 0.46);
}

.services-grid-premium article:nth-child(4n + 3) {
  background: rgba(207, 197, 222, 0.48);
}

.services-grid-premium article:nth-child(4n + 4) {
  background: rgba(216, 184, 169, 0.46);
}

.services-grid-premium p,
.motion-workflow p,
.blog-grid p,
.section-heading p:not(.eyebrow),
.hero-copy > p:not(.eyebrow),
.about-copy p,
.contact-info p,
.blog-full-article p {
  color: var(--muted);
}

.portfolio-section,
.tools-strip {
  background:
    radial-gradient(circle at 18% 16%, rgba(229, 72, 29, 0.18), transparent 27%),
    var(--ink);
}

.playlist-card,
.short-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 253, 249, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.site-footer {
  background: #e9e2d7;
}

/* Portfolio playlist libraries */
.portfolio-playlists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-playlists .playlist-player-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(223, 61, 23, 0.16), rgba(255, 255, 255, 0.06) 42%),
    rgba(255, 255, 255, 0.08);
}

.portfolio-playlists .playlist-player-card::before {
  content: none;
}

.playlist-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 50%, rgba(223, 61, 23, 0.2), transparent 34%),
    var(--black);
}

.playlist-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.playlist-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.portfolio-playlists .playlist-content span,
.portfolio-playlists .playlist-content h3,
.portfolio-playlists .playlist-content p {
  margin-right: 0;
  margin-left: 0;
}

.portfolio-playlists .playlist-content span {
  margin-top: 0;
}

.portfolio-playlists .playlist-content p {
  margin-bottom: 0;
}

.playlist-content a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin-top: 4px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(223, 61, 23, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.portfolio-playlists .playlist-player-card:nth-child(5) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.portfolio-playlists .playlist-player-card:nth-child(5) .playlist-frame {
  height: 100%;
}

@media (max-width: 1180px) {
  .portfolio-playlists {
    grid-template-columns: 1fr;
  }

  .portfolio-playlists .playlist-player-card:nth-child(5) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .playlist-content {
    padding: 18px;
  }
}

/* No-error portfolio thumbnails and long blog articles */
.portfolio-playlists {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-playlists .playlist-thumb-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
}

.portfolio-playlists .playlist-thumb-card::before {
  top: 16px;
  right: 16px;
  z-index: 4;
  content: "View";
}

.playlist-thumbnail {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 9px, transparent 9px 42px),
    radial-gradient(circle at 24% 28%, rgba(223, 61, 23, 0.84), transparent 30%),
    linear-gradient(135deg, #2a1710, #111111 56%, #3a1f17);
}

.playlist-thumbnail img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: saturate(1.04) contrast(1.02);
}

.playlist-thumbnail::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(0, 0, 0, 0.74)),
    linear-gradient(120deg, rgba(223, 61, 23, 0.28), transparent 42%);
  background-size: auto;
  content: "";
}

.playlist-thumbnail::after {
  position: absolute;
  inset: auto 30px 28px auto;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 18px 46px rgba(223, 61, 23, 0.34);
  content: "";
}

.playlist-thumbnail strong,
.playlist-thumbnail span {
  position: relative;
  z-index: 3;
  max-width: 76%;
}

.playlist-thumbnail strong {
  color: var(--white);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.96;
  text-transform: uppercase;
}

.playlist-thumbnail span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.playlist-thumbnail i {
  position: absolute;
  right: 56px;
  bottom: 52px;
  z-index: 4;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--white);
}

.thumb-ugc .playlist-thumbnail img {
  object-position: center 36%;
}

.thumb-explainer .playlist-thumbnail img {
  object-position: center 42%;
}

.thumb-faceless .playlist-thumbnail img {
  object-position: center 42%;
}

.thumb-ad .playlist-thumbnail img {
  object-position: center;
}

.thumb-animation .playlist-thumbnail img {
  object-position: center 42%;
}

.thumb-faceless .playlist-thumbnail {
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 8px, transparent 8px 38px),
    radial-gradient(circle at 76% 18%, rgba(223, 61, 23, 0.72), transparent 28%),
    linear-gradient(135deg, #171717, #33211c);
}

.thumb-ugc .playlist-thumbnail {
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 46% 24%, rgba(255, 248, 238, 0.24), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(223, 61, 23, 0.82), transparent 26%),
    linear-gradient(135deg, #111111, #3d1d14);
}

.thumb-ad .playlist-thumbnail {
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 6px, transparent 6px 34px),
    radial-gradient(circle at 28% 26%, rgba(223, 61, 23, 0.86), transparent 32%),
    linear-gradient(135deg, #35150f, #0b0b0b);
}

.thumb-animation .playlist-thumbnail {
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 28% 34%, rgba(223, 61, 23, 0.9), transparent 20%),
    radial-gradient(circle at 62% 22%, rgba(255, 248, 238, 0.2), transparent 22%),
    linear-gradient(135deg, #101010, #3a2018);
}

.playlist-content b {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin-top: 4px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.blog-long-card {
  display: grid;
  gap: 18px;
  min-height: auto;
  padding: 24px;
  border-radius: 18px;
}

.blog-card-head {
  display: grid;
  gap: 10px;
}

.blog-long-card details {
  display: grid;
  gap: 18px;
}

.blog-long-card summary {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.blog-long-card summary::-webkit-details-marker {
  display: none;
}

.blog-full-article {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.blog-full-article p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.blog-full-article a {
  width: fit-content;
}

@media (max-width: 1180px) {
  .portfolio-playlists,
  .blog-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .playlist-thumbnail {
    min-height: 190px;
    padding: 18px;
  }

  .blog-long-card {
    padding: 20px;
  }
}

/* Heading alignment pass */
.section-heading,
.section-head {
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-head {
  flex-direction: column;
}

.section-heading h2,
.section-head h2 {
  max-width: none;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.section-head p:not(.eyebrow),
.blog-heading p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.portfolio-actions {
  justify-content: center;
}

@media (min-width: 761px) {
  .section-heading h2,
  .section-head h2 {
    white-space: nowrap;
    font-size: clamp(34px, 4.4vw, 76px);
    line-height: 1;
  }

  .hero-premium h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(44px, 4.8vw, 82px);
  }

  .hero-premium .hero-copy,
  .hero-copy > p:not(.eyebrow) {
    max-width: 860px;
  }
}

@media (max-width: 760px) {
  .section-heading h2,
  .section-head h2,
  .hero-premium h1 {
    text-align: center;
  }

  .hero-premium .hero-copy,
  .hero-copy > p:not(.eyebrow),
  .hero-actions,
  .hero-proof {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Feedback pass: tighter spacing, cleaner alignment, landscape hero */
main {
  overflow: hidden;
}

.section-block {
  margin-bottom: 46px;
  padding: 56px 30px;
}

.section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-section .about-copy,
.contact-section .contact-info {
  text-align: left;
}

.hero-premium {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(24px, 4vw, 58px);
  min-height: calc(100vh - 120px);
  padding-top: 42px;
  padding-bottom: 46px;
}

.hero-premium .hero-copy {
  align-self: center;
  max-width: 650px;
}

.hero-premium h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.96;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 18px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 680px;
  gap: 8px;
}

.hero-proof span {
  min-height: 64px;
  padding: 12px;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.hero-composition,
.hero-preview-stack {
  min-height: 520px;
}

.hero-composition::before {
  inset: 8% 2% 8% 2%;
  border-radius: 30px;
  transform: none;
}

.hero-preview-stack {
  place-items: center;
}

.showcase-frame {
  width: min(760px, 100%);
  border-radius: 22px;
  transform: rotateX(2deg) rotateY(-4deg);
}

.frame-screen {
  min-height: unset;
  aspect-ratio: 16 / 9;
}

.frame-screen img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.frame-timeline {
  gap: 8px;
  padding: 14px 16px 16px;
}

.floating-card {
  max-width: 190px;
  padding: 14px 16px;
  border-radius: 14px;
}

.card-brief {
  top: 8%;
  left: 2%;
}

.card-deliver {
  right: 2%;
  bottom: 8%;
}

.card-proof,
.liquid-blob,
.glass-lens {
  display: none;
}

.motion-ribbon {
  margin: -18px 30px 46px;
}

.motion-ribbon span {
  min-height: 50px;
  padding: 0 28px;
  font-size: clamp(18px, 2vw, 28px);
}

.motion-workflow {
  margin: 0;
}

.about-section,
.contact-section {
  gap: 34px;
}

.tools-strip {
  margin-bottom: 46px;
  padding: 34px;
}

.clients-section {
  padding-right: 18px;
  padding-left: 18px;
}

.client-logo-marquee {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.34)),
    radial-gradient(circle at 10% 10%, rgba(223, 61, 23, 0.12), transparent 32%);
}

.client-logo-marquee::before,
.client-logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 90px;
  pointer-events: none;
  content: "";
}

.client-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee .client-track {
  gap: 18px;
}

.client-logo-marquee article {
  width: 230px;
  height: 122px;
  overflow: visible;
  padding: 20px;
  border-radius: 16px;
}

.client-logo-marquee img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.portfolio-section {
  margin-bottom: 46px;
  padding: 56px 30px;
}

.portfolio-section .section-head {
  align-items: center;
  margin-bottom: 24px;
}

.portfolio-section .section-head h2 {
  font-size: clamp(36px, 4.2vw, 62px);
}

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

.playlist-card {
  min-height: unset;
  align-content: start;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
}

.playlist-card::before {
  top: 14px;
  right: 14px;
  z-index: 2;
}

.playlist-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.92;
}

.playlist-card span,
.playlist-card h3,
.playlist-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.playlist-card span {
  margin-top: 18px;
}

.playlist-card p {
  margin-bottom: 18px;
}

.shorts-section {
  margin-top: 34px;
  padding-top: 26px;
}

.blog-teaser {
  margin-bottom: 46px;
}

@media (max-width: 1180px) {
  .hero-premium {
    grid-template-columns: 1fr;
  }

  .hero-premium .hero-copy,
  .hero-premium h1,
  .hero-copy > p:not(.eyebrow) {
    max-width: 900px;
  }

  .hero-composition,
  .hero-preview-stack {
    min-height: auto;
  }

  .showcase-frame {
    margin-top: 20px;
  }

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

@media (max-width: 760px) {
  .section-block {
    margin-bottom: 32px;
    padding: 38px 4px;
  }

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

  .hero-premium {
    gap: 20px;
    padding: 34px 4px 36px;
  }

  .hero-premium h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

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

  .showcase-frame {
    width: 100%;
    transform: none;
  }

  .frame-screen,
  .frame-screen img {
    height: auto;
    min-height: unset;
    aspect-ratio: 16 / 9;
  }

  .floating-card {
    position: static;
    display: inline-grid;
    margin-top: 10px;
  }

  .hero-preview-stack {
    display: block;
  }

  .card-deliver {
    margin-left: 8px;
  }

  .motion-ribbon {
    margin: -10px 4px 32px;
  }

  .portfolio-section {
    margin-bottom: 32px;
    padding: 42px 16px;
  }

  .portfolio-section .section-head {
    align-items: flex-start;
  }

  .portfolio-section .section-head h2 {
    font-size: 42px;
  }

  .client-logo-marquee {
    padding: 12px;
  }

  .client-logo-marquee article {
    width: 190px;
    height: 104px;
  }

  .client-logo-marquee img {
    max-height: 70px;
  }

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

/* Premium homepage refresh */
.section-block {
  position: relative;
  margin-bottom: 86px;
  padding: 86px 30px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  max-width: 850px;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-premium {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 110px);
  overflow: hidden;
}

.hero-premium h1 {
  max-width: 840px;
  font-size: clamp(48px, 6.4vw, 104px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.hero-proof span,
.portfolio-note,
.playlist-card,
.short-card,
.stats-panel article,
.client-logo-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 20px 70px rgba(56, 35, 17, 0.11);
  backdrop-filter: blur(18px) saturate(1.2);
}

.hero-proof span {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.play-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--white) 0 28%, transparent 28%),
    conic-gradient(from 90deg, transparent 0 25%, var(--white) 0 100%);
}

.hero-composition {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.hero-composition::before {
  position: absolute;
  inset: 8% 4% 8% 10%;
  border: 1px solid rgba(223, 61, 23, 0.22);
  border-radius: 48px;
  background:
    linear-gradient(90deg, rgba(223, 61, 23, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(223, 61, 23, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
  transform: rotate(-4deg);
  content: "";
}

.liquid-blob,
.glass-lens {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 238, 0.16)),
    linear-gradient(90deg, rgba(223, 61, 23, 0.16), transparent);
  box-shadow: inset 0 1px 26px rgba(255, 255, 255, 0.38), 0 26px 80px rgba(56, 35, 17, 0.13);
  backdrop-filter: blur(18px) saturate(1.35);
}

.liquid-blob {
  width: min(38vw, 460px);
  height: 260px;
  border-radius: 46% 54% 52% 48% / 40% 42% 58% 60%;
  animation: liquidFloat 12s ease-in-out infinite;
}

.blob-one {
  top: 6%;
  right: 6%;
}

.blob-two {
  bottom: 9%;
  left: 2%;
  width: min(32vw, 380px);
  height: 220px;
  animation-delay: -4s;
}

.glass-lens {
  width: 150px;
  height: 72px;
  border-radius: 26px;
}

.lens-a {
  top: 16%;
  left: 10%;
  animation: floatPanel 6s ease-in-out infinite;
}

.lens-b {
  right: 0;
  bottom: 20%;
  animation: floatPanel 7s ease-in-out infinite reverse;
}

.hero-preview-stack {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  width: min(620px, 94%);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 34px 100px rgba(26, 18, 12, 0.2);
  backdrop-filter: blur(24px) saturate(1.28);
  transform: rotateX(4deg) rotateY(-8deg);
  animation: editorFloat 6s ease-in-out infinite;
}

.frame-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.frame-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.frame-topbar span:nth-child(2) {
  background: var(--black);
  opacity: 0.62;
}

.frame-topbar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.frame-screen {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  background: var(--black);
}

.frame-screen::after {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(11, 11, 11, 0.72)),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.24) 48%, transparent 56%);
  transform: translateX(-120%);
  animation: scanPreview 4.8s ease-in-out infinite;
  content: "";
}

.frame-screen img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.05) contrast(1.08);
}

.frame-screen iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
  background: var(--black);
}

.frame-timeline {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.frame-timeline i {
  display: block;
  height: 18px;
  border-radius: 7px;
  background-size: 160px 100%;
  animation: slideTrack 7s linear infinite;
}

.frame-timeline i:nth-child(1) {
  background-image: repeating-linear-gradient(90deg, var(--orange) 0 62px, rgba(223, 61, 23, 0.24) 62px 82px, transparent 82px 100px);
}

.frame-timeline i:nth-child(2) {
  background-image: repeating-linear-gradient(90deg, rgba(16, 16, 16, 0.7) 0 28px, rgba(16, 16, 16, 0.16) 28px 40px, transparent 40px 52px);
}

.frame-timeline i:nth-child(3) {
  background-image: repeating-linear-gradient(90deg, rgba(102, 95, 87, 0.6) 0 44px, rgba(102, 95, 87, 0.14) 44px 56px, transparent 56px 76px);
}

.frame-timeline b {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 18%;
  width: 2px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(223, 61, 23, 0.7);
  animation: playheadMove 5.5s ease-in-out infinite alternate;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 6px;
  max-width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(56, 35, 17, 0.14);
  backdrop-filter: blur(20px) saturate(1.28);
}

.floating-card span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-card strong {
  line-height: 1.25;
}

.card-brief {
  top: 11%;
  left: 1%;
  animation: floatPanel 5.6s ease-in-out infinite;
}

.card-deliver {
  right: 1%;
  bottom: 12%;
  animation: floatPanel 6.4s ease-in-out infinite reverse;
}

.card-proof {
  left: 9%;
  bottom: 12%;
  text-align: center;
  animation: floatPanel 7s ease-in-out infinite;
}

.card-proof strong {
  color: var(--orange);
  font-size: 38px;
}

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

.stats-panel article {
  min-height: 142px;
  padding: 26px;
  border-radius: 18px;
}

.stats-panel strong {
  display: block;
  color: var(--orange);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.stats-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}

.services-section {
  display: block;
}

.services-grid-premium {
  padding: 0;
}

.services-grid-premium article {
  display: grid;
  align-content: start;
  min-height: 238px;
  border-radius: 18px;
}

.services-grid-premium span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff3e9;
  font-weight: 900;
}

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

.client-logo-grid article {
  display: grid;
  min-height: 142px;
  place-items: center;
  overflow: visible;
  padding: 24px;
  border-radius: 18px;
}

.client-logo-grid img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.portfolio-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-note strong {
  color: var(--white);
}

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

.playlist-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 12% 18%, rgba(223, 61, 23, 0.42), transparent 36%),
    rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.playlist-card::before {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  content: "Play";
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.playlist-card:hover,
.short-card:hover {
  border-color: rgba(223, 61, 23, 0.72);
  transform: translateY(-8px);
}

.playlist-card span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.playlist-card h3 {
  margin: 10px 0 8px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.12;
}

.playlist-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.shorts-section {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.short-card {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.short-card img {
  width: 100%;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  background: var(--black);
}

.short-card span {
  display: block;
  padding: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-teaser {
  display: grid;
}

.blog-grid-teaser {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.blog-cta {
  width: fit-content;
}

.blog-hero {
  min-height: 54vh;
  display: grid;
  align-items: center;
  border-top: 0;
}

.blog-hero h1 {
  max-width: 1060px;
  font-size: clamp(44px, 6vw, 82px);
}

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

.video-modal video {
  width: min(430px, 100%);
  max-height: 86vh;
  border: 0;
  border-radius: 18px;
  background: var(--black);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

@media (max-width: 1180px) {
  .hero-premium {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-composition,
  .hero-preview-stack {
    min-height: 560px;
  }

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

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

@media (max-width: 760px) {
  main {
    width: min(100% - 24px, 1440px);
  }

  .site-header {
    width: min(100% - 24px, 1440px);
    top: 10px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hero-premium {
    padding: 42px 4px 54px;
  }

  .hero-premium h1 {
    font-size: clamp(42px, 15vw, 66px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-proof,
  .stats-panel,
  .shorts-grid,
  .blog-grid-teaser,
  .blog-section .blog-grid,
  .services-grid-premium,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-composition,
  .hero-preview-stack {
    min-height: 500px;
  }

  .showcase-frame {
    width: 100%;
    border-radius: 20px;
    transform: none;
  }

  .frame-screen,
  .frame-screen img,
  .frame-screen iframe {
    min-height: 240px;
    height: 240px;
  }

  .floating-card {
    max-width: 168px;
    padding: 14px;
  }

  .card-brief {
    top: 3%;
    left: 0;
  }

  .card-deliver {
    right: 0;
    bottom: 5%;
  }

  .card-proof {
    left: 0;
    bottom: 4%;
  }

  .section-block {
    margin-bottom: 54px;
    padding: 54px 4px;
  }

  .motion-workflow {
    margin: 0;
  }

  .motion-ribbon {
    margin: -18px 4px 54px;
  }

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

  .services-grid-premium article,
  .blog-grid article {
    min-height: auto;
  }

  .client-logo-grid article {
    min-height: 126px;
  }

  .client-logo-grid img {
    max-height: 82px;
  }

  .portfolio-section {
    padding: 54px 16px;
    border-radius: 16px;
  }

  .portfolio-note {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .blog-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Final request overrides */
.hero-title span {
  color: var(--ink);
}

.hero-title em {
  color: var(--orange);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(21, 21, 21, 0.09);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  letter-spacing: 0;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 72, 29, 0.34);
  box-shadow: 0 18px 36px rgba(229, 72, 29, 0.18);
}

.client-logo-marquee {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 238, 0.44)),
    radial-gradient(circle at 12% 10%, rgba(229, 72, 29, 0.12), transparent 34%);
}

.client-logo-marquee::before {
  background: linear-gradient(90deg, var(--paper), transparent);
}

.client-logo-marquee::after {
  background: linear-gradient(270deg, var(--paper), transparent);
}

.client-logo-marquee .client-track {
  align-items: center;
}

.client-logo-marquee article {
  display: grid;
  width: 244px;
  height: 132px;
  place-items: center;
  overflow: visible;
  padding: 20px 24px;
  border-color: rgba(21, 21, 21, 0.11);
  background: #fff;
  box-shadow: 0 18px 46px rgba(33, 24, 17, 0.1);
}

.client-logo-marquee img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 86px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 640px) {
  .whatsapp-button {
    width: 100%;
  }

  .client-logo-marquee article {
    width: 204px;
    height: 112px;
    padding: 18px 20px;
  }

  .client-logo-marquee img {
    max-height: 74px;
  }
}

.whatsapp-button .whatsapp-icon-wrap {
  width: 30px;
  height: 30px;
  background: transparent;
}

.whatsapp-button .whatsapp-icon {
  display: block;
  width: 30px;
  height: 30px;
}
/* SEO, trust, and service landing fixes */
.service-link,
.blog-grid article a,
.blog-full-article a {
  width: fit-content;
}

.service-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--orange-dark);
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(56px, 7vw, 92px);
}

.trust-section::before,
.service-landing::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 248, 238, 0.18));
  content: "";
  backdrop-filter: blur(18px) saturate(1.22);
}

.trust-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
  margin: 34px auto 0;
}

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

.trust-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.testimonial-grid {
  display: grid;
  gap: 12px;
}

.trust-grid article,
.testimonial-panel,
.testimonial-grid blockquote,
.service-detail-grid article,
.service-landing-panel,
.faq-section details,
.legal-page {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.2);
}

.trust-grid article,
.service-detail-grid article {
  padding: 22px;
}

.trust-grid article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 138px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(24, 20, 18, 0.08);
}

.trust-grid article::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(236, 57, 20, 0.08);
  content: "";
}

.trust-grid span,
.service-detail-grid span {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.trust-grid p,
.testimonial-grid p,
.service-detail-grid p,
.service-landing-panel li,
.faq-section p,
.legal-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.trust-grid p {
  max-width: 92%;
  font-size: 15px;
  line-height: 1.58;
}

.testimonial-panel {
  position: relative;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(236, 57, 20, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 238, 0.44));
}

.testimonial-panel::before {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(236, 57, 20, 0.18);
  content: '"';
  font-size: 118px;
  font-weight: 900;
  line-height: 0.8;
}

.quote-label {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-grid blockquote {
  position: relative;
  margin: 0;
  padding: 20px 22px;
  border-radius: 18px;
  box-shadow: none;
}

.testimonial-grid p {
  color: var(--black);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.5;
}

.testimonial-grid .featured-quote {
  border-color: rgba(236, 57, 20, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.testimonial-grid .featured-quote p {
  max-width: 760px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.16;
}

.testimonial-grid cite {
  display: block;
  margin-top: 14px;
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 28px;
  align-items: center;
  padding-top: 72px;
}

.service-landing h1,
.legal-page h1 {
  max-width: 980px;
  color: var(--black);
  font-size: clamp(44px, 6vw, 92px);
}

.service-landing h1,
.legal-page h1 {
  text-transform: none;
}

.service-landing-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.service-landing-panel {
  padding: 28px;
}

.service-landing-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-landing-panel ul,
.contact-info ul {
  padding-left: 0;
  list-style: none;
}

.service-landing-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-weight: 800;
}

.service-landing-panel li:last-child {
  border-bottom: 0;
}

.service-detail-grid h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.faq-section {
  display: grid;
  gap: 14px;
}

.faq-section details {
  padding: 22px 24px;
}

.faq-section summary {
  color: var(--black);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.faq-section p {
  margin: 16px 0 0;
}

.legal-page {
  max-width: 980px;
  margin-inline: auto;
  padding: 42px;
}

.legal-page a {
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 980px) {
  .trust-content,
  .service-detail-grid,
  .service-landing {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .trust-content {
    gap: 14px;
    margin-top: 24px;
  }

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

  .trust-grid article,
  .testimonial-panel,
  .testimonial-grid blockquote,
  .service-detail-grid article,
  .service-landing-panel,
  .faq-section details,
  .legal-page {
    border-radius: 18px;
    padding: 20px;
  }

  .testimonial-grid p {
    font-size: 15px;
  }

  .testimonial-grid .featured-quote p {
    font-size: 24px;
  }
}
