:root {
  --ink: #17202a;
  --muted: #58616d;
  --paper: #fffdf7;
  --soft: #f5f1e7;
  --line: #e6dfcf;
  --yellow: #f7c948;
  --green: #4a8d05;
  --deep-green: #235c17;
  --red: #d74632;
  --blue: #246b8f;
  --shadow: 0 20px 60px rgba(23, 32, 42, 0.12);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(24px, 6vw, 104px);
  background: rgba(247, 246, 241, 0.98);
  border-bottom: 1px solid rgba(230, 223, 207, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 278px;
  text-decoration: none;
}

.brand img {
  width: 72px;
  min-width: 72px;
  height: auto;
  mix-blend-mode: multiply;
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand strong {
  color: #172f4f;
  font-size: 1.26rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.site-nav a {
  padding: 8px 0;
  border-radius: 999px;
  color: #172f4f;
  font-size: 1rem;
  font-weight: 760;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--deep-green);
}

.site-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 22px;
  background: #172f4f;
  color: #fff;
  font-weight: 900;
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  background: var(--deep-green);
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.menu-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  min-height: calc(100vh - 116px);
  padding: clamp(26px, 4vw, 50px) clamp(18px, 5vw, 72px) 30px;
  background:
    linear-gradient(105deg, rgba(74, 141, 5, 0.1), rgba(247, 201, 72, 0.14) 62%, rgba(255, 253, 247, 0) 100%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88px;
  background: linear-gradient(to top, rgba(255, 253, 247, 0.96), transparent);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 640px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.section .button + .button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--deep-green);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-media::before {
  display: none;
}

.hero-media::after {
  display: none;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: clamp(350px, 44vw, 540px);
  overflow: hidden;
  border: 10px solid #fff;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: #fff;
  box-shadow: -18px 24px 70px rgba(23, 32, 42, 0.16);
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1400ms ease;
}

.hero-slides img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(23, 32, 42, 0.9);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-dots {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 0 1px rgba(23, 32, 42, 0.16);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 26px;
  background: var(--yellow);
}

.hero-notes {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 30px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 480px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(23, 32, 42, 0.08);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border-block: 1px solid var(--line);
}

.service-strip a {
  display: grid;
  gap: 6px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  text-decoration: none;
}

.service-strip strong {
  color: var(--deep-green);
  font-size: 1.1rem;
}

.service-strip span {
  color: var(--muted);
}

.section {
  scroll-margin-top: 92px;
  padding: clamp(60px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 7vw, 82px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse .section-copy {
  order: 2;
}

.section-copy {
  max-width: 620px;
}

.section-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.framed-media {
  margin: 0;
}

.framed-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.framed-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-section {
  background:
    linear-gradient(180deg, rgba(245, 241, 231, 0.7), rgba(255, 253, 247, 0));
}

.video-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: clamp(30px, 7vw, 82px);
}

.video-showcase {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.video-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 320ms ease, filter 320ms ease;
}

.video-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14, 22, 34, 0.42), rgba(14, 22, 34, 0.05) 58%, rgba(14, 22, 34, 0.36));
}

.video-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(14, 22, 34, 0.24);
  clip-path: polygon(34% 24%, 34% 76%, 78% 50%);
}

.video-link:hover img {
  transform: scale(1.035);
  filter: saturate(1.15) contrast(1.05);
}

.play-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(14, 22, 34, 0.9);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.video-showcase figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.video-showcase figcaption a {
  color: var(--yellow);
  white-space: nowrap;
}

.video-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 5vw, 48px);
}

.video-types article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 32, 42, 0.06);
}

.video-types span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(74, 141, 5, 0.12);
  color: var(--deep-green);
  font-weight: 900;
}

.video-types p {
  margin-bottom: 0;
  color: var(--muted);
}

.production-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.production-flow div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.production-flow div:last-child {
  border-right: 0;
}

.production-flow strong {
  color: var(--deep-green);
}

.production-flow span {
  color: var(--muted);
  font-size: 0.95rem;
}

.comics-section {
  background:
    linear-gradient(135deg, rgba(215, 70, 50, 0.07), rgba(247, 201, 72, 0.12) 48%, rgba(74, 141, 5, 0.07)),
    var(--paper);
}

.comics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.comics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.comics-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comics-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(190px, 0.62fr);
  align-items: center;
  gap: 18px;
  min-height: 560px;
}

.comic-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.comic-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid rgba(23, 32, 42, 0.08);
  pointer-events: none;
  z-index: 2;
}

.comic-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.comic-panel-large {
  align-self: stretch;
}

.comic-panel-small {
  transform: translateY(42px);
}

.comic-panel figcaption {
  position: static;
  padding: 11px 13px;
  border-radius: 0 0 8px 8px;
  background: rgba(23, 32, 42, 0.9);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.35;
}

.comics-problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 6vw, 58px);
}

.comics-problems article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(23, 32, 42, 0.06);
}

.comics-problems span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.comics-problems p {
  margin-bottom: 0;
  color: var(--muted);
}

.comics-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.comics-process div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.comics-process div:last-child {
  border-right: 0;
}

.comics-process strong {
  color: var(--deep-green);
}

.comics-process span {
  color: var(--muted);
  font-size: 0.95rem;
}

.sst-section {
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.08), transparent 38%),
    #1a2e4a;
  color: #fff;
}

.sst-section .eyebrow {
  color: var(--yellow);
}

.sst-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.sst-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  align-items: center;
  gap: clamp(30px, 7vw, 86px);
}

.sst-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sst-section .button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sst-showcase {
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.sst-showcase figcaption {
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

.sst-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 6vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.sst-stats div {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.sst-stats strong {
  color: var(--yellow);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.sst-stats span {
  color: rgba(255, 255, 255, 0.72);
}

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

.sst-formats article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.sst-formats article.is-featured {
  background: #fff;
  color: var(--ink);
}

.sst-formats span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.sst-formats article.is-featured span,
.sst-formats article.is-featured h3 {
  color: var(--deep-green);
}

.sst-formats p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.sst-formats article.is-featured p {
  color: var(--muted);
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(70px, 9vw, 108px) clamp(18px, 5vw, 72px);
  background: #fff;
  text-align: center;
}

.contact .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #5b6a80;
  letter-spacing: 0.14em;
}

.contact .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #5b6a80;
}

.contact h2 {
  max-width: 760px;
  margin: 0;
  color: #1a2e4a;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.04;
}

.contact > p:not(.eyebrow):not(.contact-note) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5b6a80;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.contact-whatsapp {
  min-width: 276px;
  background: #f26b2e;
  color: #fff;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  background: #d95a22;
}

.contact-whatsapp span {
  margin-left: 8px;
  font-size: 1.25rem;
  line-height: 1;
}

.contact-email {
  min-width: 246px;
  border-color: #d4d9e1;
  background: #fff;
  color: #1a2e4a;
}

.contact-note {
  margin: 28px 0 0;
  color: #5b6a80;
}

.contact-note strong {
  color: #1a2e4a;
}

.site-footer {
  padding: clamp(54px, 6vw, 78px) clamp(24px, 6vw, 104px) 36px;
  background: #1a2e4a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(250px, 0.95fr) minmax(250px, 0.95fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  max-width: 1540px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}

.footer-brand img {
  width: 72px;
  min-width: 72px;
  height: auto;
}

.footer-brand span {
  display: grid;
  line-height: 1.05;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.05;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.footer-about p {
  max-width: 390px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  gap: 16px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  max-width: 1540px;
  margin: clamp(44px, 5vw, 70px) auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1rem;
}

.footer-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-accent span {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #f7f6f1;
}

.footer-accent span:nth-child(2) {
  background: #f26b2e;
}

.footer-accent span:nth-child(3) {
  background: var(--green);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #24d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.footer-whatsapp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-whatsapp strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  background: #1fc15c;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .site-nav a.nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

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

  .hero,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: center;
  }

  .hero-stamp {
    display: none;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-slides {
    height: auto;
    min-height: 320px;
    border-right: 10px solid #fff;
    border-radius: 18px;
  }

  .hero-slides::before {
    display: block;
    padding-top: 56.25%;
    content: "";
  }

  .hero-media::before {
    display: none;
  }

  .hero-notes {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1;
    margin-top: -4px;
  }

  .split.reverse .section-copy {
    order: initial;
  }

  .service-strip,
  .video-types,
  .production-flow,
  .comics-problems,
  .comics-process,
  .sst-stats,
  .sst-formats {
    grid-template-columns: 1fr;
  }

  .video-intro,
  .comics-layout,
  .sst-hero {
    grid-template-columns: 1fr;
  }

  .comics-stack {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.5fr);
    min-height: 0;
  }

  .production-flow div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .production-flow div:last-child,
  .comics-process div:last-child {
    border-bottom: 0;
  }

  .comics-process div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .site-nav {
    top: 72px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 58px;
    min-width: 58px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-slides {
    min-height: 215px;
    border-width: 8px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

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

  .button {
    min-height: 46px;
  }

  .video-showcase {
    border-width: 8px;
  }

  .video-showcase figcaption {
    border-radius: 6px;
  }



  .hero-media figcaption {
    position: static;
    max-width: none;
    margin: 10px 8px 0;
  }

  .comics-stack {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .comic-panel,
  .comic-panel-large,
  .comic-panel-small {
    height: auto;
    transform: none;
  }

  .comic-panel figcaption {
    position: static;
    margin-top: 8px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .footer-brand {
    gap: 10px;
    min-width: 0;
  }

  .footer-brand img {
    width: 58px;
    min-width: 58px;
  }

  .footer-brand strong {
    font-size: 1rem;
  }

  .footer-brand small {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  .footer-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
