:root {
  --ink: #171717;
  --muted: #5f6470;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f6f3ed;
  --soft-2: #eef2f6;
  --graphite: #313133;
  --gold: #ffc607;
  --gold-2: #e2aa00;
  --green: #1f9d55;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 24, 39, .10);
  --container: 1180px;
  --topbar-height: 42px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--graphite);
  color: #f7f7f7;
  font-size: .92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 9px 0;
}

.topbar a {
  color: #fff;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.topbar-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: filter .2s ease, transform .2s ease;
}

.topbar-social a:hover img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(98%) saturate(975%) hue-rotate(359deg) brightness(103%) contrast(104%);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--nav-height);
  position: relative;
}

main {
  padding-top: var(--nav-height);
}

.nav-menu {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: var(--nav-height);
  padding: 0 18px;
}

.brand img {
  width: 176px;
  height: auto;
  margin: -34px 0;
  filter: drop-shadow(0 12px 18px rgba(17, 24, 39, .18));
}

.brand span {
  display: none;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.25;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-links a {
  border-radius: 999px;
  color: #2f333a;
  font-weight: 700;
  padding: 10px 14px;
  transition: color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #151515;
  box-shadow: 0 10px 24px rgba(255, 198, 7, .25);
}

.btn-dark {
  background: var(--graphite);
  color: #fff;
}

.btn-ghost {
  border-color: #cfd4dc;
  background: #fff;
  color: var(--ink);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--graphite);
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(23, 23, 23, .94), rgba(23, 23, 23, .78) 48%, rgba(23, 23, 23, .24));
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .container {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  align-items: center;
  padding: 52px 0 68px;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8dfa0;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1 {
  max-width: 590px;
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.28;
}

.lead {
  color: #f0f0f0;
  max-width: 560px;
  margin: 14px 0 0;
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  max-width: 590px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero-strip div {
  background: rgba(255, 255, 255, .08);
  padding: 10px 12px;
}

.hero-strip strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-strip span {
  display: block;
  margin-top: 4px;
  font-size: .86rem;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 64px;
  height: 80px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 5.2rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  text-shadow: 0 3px 14px rgba(0, 0, 0, .5);
  transition: color .2s ease, transform .2s ease;
}

.hero-control:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  border-color: var(--gold);
  background: var(--gold);
}

.section {
  padding: 88px 0;
}

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

.section-graphite {
  background: var(--graphite);
  color: #fff;
}

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

.section-head p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.section-graphite .section-head p {
  color: #d7d7d7;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(17, 24, 39, .03);
}

.card-link {
  display: block;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.card-link:hover {
  border-color: rgba(255, 198, 7, .78);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 10px;
}

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

.values-section {
  position: relative;
}

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

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 32px 28px;
  border-color: rgba(255, 198, 7, .36);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.value-card::after {
  content: attr(data-number);
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: rgba(255, 198, 7, .22);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.value-card:hover {
  border-color: rgba(255, 198, 7, .78);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fff6cc;
  color: #7b5c00;
  font-size: .78rem;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.value-card h3,
.value-card p,
.value-card span {
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 236px;
  padding: 0;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.service-card:hover {
  background: #fffdf6;
  border-color: rgba(255, 198, 7, .72);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  top: 154px;
  z-index: 2;
  color: rgba(255, 198, 7, .20);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  transition: color .24s ease, transform .24s ease;
}

.service-card:hover::before {
  color: rgba(255, 198, 7, .34);
  transform: translateY(-4px);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: 82px;
  height: 82px;
  background: var(--gold);
  opacity: .12;
  transform: rotate(-8deg) scale(1);
  transition: opacity .24s ease, transform .24s ease;
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
}

.service-card:hover::after {
  opacity: .22;
  transform: rotate(0deg) scale(1.14);
}

.service-card h3,
.service-card p,
.service-card .tag {
  position: relative;
  z-index: 3;
}

.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--soft-2);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .22));
  opacity: .7;
  transition: opacity .24s ease;
}

.service-card:hover .service-card-media::after {
  opacity: .35;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.service-card:hover .service-card-media img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.service-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 26px 26px;
}

.service-card .tag {
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff6cc;
  color: #7b5c00;
  font-size: .78rem;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.service-card[data-icon="shield"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 22s8-4 8-11V5l-8-3-8 3v6c0 7 8 11 8 11Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="file"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h8l4 4v16H6V2Zm7 1.5V7h3.5L13 3.5ZM8 11h8v2H8v-2Zm0 4h8v2H8v-2Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="car"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 11l1.5-5h11L19 11l2 2v6h-3v-2H6v2H3v-6l2-2Zm2.5-3-1 3h11l-1-3h-9ZM6 14.5A1.5 1.5 0 1 0 6 17.5 1.5 1.5 0 0 0 6 14.5Zm12 0A1.5 1.5 0 1 0 18 17.5 1.5 1.5 0 0 0 18 14.5Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="lock"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 9h1a2 2 0 0 1 2 2v9H4v-9a2 2 0 0 1 2-2h1V7a5 5 0 0 1 10 0v2Zm-8 0h6V7a3 3 0 0 0-6 0v2Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="handshake"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.5 12.5 11 10l2 2 1.5-1.5-3.5-3.5-5 5 2.5 2.5Zm7 0L13 15l-2-2-1.5 1.5 3.5 3.5 5-5-2.5-2.5ZM2 12l4-4 2 2-4 4-2-2Zm20 0-4 4-2-2 4-4 2 2Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="search"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 3a7 7 0 0 1 5.6 11.2l4.1 4.1-1.4 1.4-4.1-4.1A7 7 0 1 1 10 3Zm0 2a5 5 0 1 0 0 10A5 5 0 0 0 10 5Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="plate"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6h18v12H3V6Zm2 2v8h14V8H5Zm2 2h10v2H7v-2Zm0 3h6v2H7v-2Z'/%3E%3C/svg%3E");
}

.service-card[data-icon="id"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18v14H3V5Zm2 2v10h14V7H5Zm2 2h5v2H7V9Zm0 3h7v2H7v-2Zm10-3h-3v5h3V9Z'/%3E%3C/svg%3E");
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 36px;
  align-items: start;
}

.service-detail-main {
  display: grid;
  gap: 22px;
}

.service-detail-main .card h2 {
  margin: 26px 0 12px;
  font-size: 1.45rem;
}

.service-detail-main .card h2:first-child {
  margin-top: 0;
}

.service-detail-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-2);
  box-shadow: var(--shadow);
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-panel {
  position: sticky;
  top: calc(var(--topbar-height) + var(--nav-height) + 22px);
}

.service-panel .btn {
  width: 100%;
  margin-top: 12px;
}

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

.service-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #30343a;
  font-weight: 800;
  line-height: 1.35;
  padding: 12px 14px;
}

.service-links a:hover {
  border-color: rgba(255, 198, 7, .7);
  background: #fff9df;
}

.section-graphite .service-card {
  padding: 26px;
}

.section-graphite .service-card::before {
  top: 8px;
}

.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.about-intro {
  margin-top: 22px;
}

.portrait {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-2);
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-more {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 54px;
}

.about-more .check-list {
  margin: 22px 0 24px;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.photo-stack-main {
  width: 74%;
  height: 470px;
  object-position: center;
}

.photo-stack-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 330px;
  border: 8px solid #fff;
  object-position: center top;
}

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

.tv-program-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}

.tv-program-card:hover {
  box-shadow: 0 22px 44px rgba(17, 24, 39, .16);
  transform: translateY(-5px);
}

.tv-program-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.tv-program-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.check-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 14px;
  padding-left: 30px;
  color: #31343a;
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff;
}

.banner {
  background: var(--graphite);
  color: #fff;
  padding: 38px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.banner p {
  color: #e3e3e3;
}

.prototype-section {
  padding-top: 72px;
}

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

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

.prototype-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 24, 39, .03);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.prototype-card:hover {
  border-color: rgba(255, 198, 7, .72);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.prototype-media {
  display: grid;
  place-items: center;
  min-height: 170px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft-2);
}

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

.prototype-logo {
  padding: 14px;
  background: #fff;
}

.prototype-logo img {
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: 132px;
  object-fit: contain;
}

.prototype-logo-cet {
  padding: 8px;
}

.prototype-logo-cet img {
  max-width: 100%;
  max-height: 150px;
}

.prototype-video {
  position: relative;
  background: #111;
}

.prototype-video::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #151515;
  font-size: 1rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .24);
}

.prototype-file {
  background: linear-gradient(135deg, #313133, #4f5258);
  color: var(--gold);
}

.prototype-file span {
  border: 2px solid rgba(255, 198, 7, .8);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.prototype-card-body {
  display: grid;
  gap: 3px;
  padding: 14px;
}

.prototype-card-body strong {
  font-size: .98rem;
  line-height: 1.25;
}

.prototype-card-body small {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  text-align: left;
  font: inherit;
  font-weight: 850;
}

.faq-question span {
  color: var(--gold-2);
  font-size: 1.25rem;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.video-grid video {
  width: 100%;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.vertical-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.home-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 28px;
}

.home-video-grid .vertical-video-card {
  height: 100%;
  grid-template-columns: 1fr;
  align-items: start;
}

.home-video-grid .vertical-video-card video {
  width: min(100%, 260px);
  margin: 0 auto;
}

.home-video-grid .vertical-video-card div {
  display: grid;
  align-content: start;
  min-height: 150px;
}

.vertical-video-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.vertical-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}

.youtube-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.youtube-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.youtube-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-thumb::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #151515;
  font-size: 1.45rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.youtube-body {
  padding: 20px;
}

.youtube-body span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .78);
}

.video-modal.open {
  display: flex;
}

.video-modal-dialog {
  width: min(100%, 980px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.video-modal-content h3 {
  margin-bottom: 4px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.modal-close {
  min-width: 46px;
}

.video-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.video-pagination button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.video-pagination button.active {
  border-color: var(--gold);
  background: var(--gold);
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}

.contact-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  line-height: 1.65;
}

.contact-list strong {
  display: block;
}

.contact-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--ink);
  font-size: 1.32rem;
  font-weight: 800;
}

.contact-whatsapp-link + .contact-whatsapp-link {
  margin-top: 4px;
}

.contact-whatsapp-link::before {
  content: "";
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  background: #111;
  -webkit-mask: url("../img/whatsapp-icon.svg") center / contain no-repeat;
  mask: url("../img/whatsapp-icon.svg") center / contain no-repeat;
}

.phone-carrier {
  font-size: .78em;
  font-weight: 500;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 7px;
  color: #31343a;
  font-weight: 800;
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  background: #fff;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

.page-hero {
  background: var(--graphite);
  color: #fff;
  padding: 72px 0;
}

.page-hero p {
  max-width: 720px;
  color: #e1e1e1;
  margin-top: 16px;
  line-height: 1.75;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 1.35rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content a {
  color: #8a6500;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #181818;
  color: #f3f3f3;
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .8fr 1.15fr;
  gap: 34px;
}

.footer-logo {
  width: 154px;
  height: auto;
  margin-bottom: 18px;
  filter: none;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d9d9d9;
}

.site-footer a {
  display: inline-block;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.site-footer .footer-social a,
.site-footer .footer-social a:hover {
  color: inherit;
  transform: none;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-services {
  columns: 2;
  column-gap: 22px;
}

.footer-services li {
  break-inside: avoid;
  font-size: .92rem;
  line-height: 1.35;
}

.footer-social,
.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social {
  margin-top: 18px;
}

.footer-social a,
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.footer-social img,
.contact-social img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter .2s ease, transform .2s ease;
}

.contact-social img {
  filter: brightness(0) saturate(100%);
}

.footer-social a:hover img,
.contact-social a:hover img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(98%) saturate(975%) hue-rotate(359deg) brightness(103%) contrast(104%);
  transform: translateY(-2px);
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-whatsapp-link::before {
  content: "";
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  background: url("../img/whatsapp-icon.svg") center / contain no-repeat;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 22px;
  color: #bdbdbd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: .9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  padding: 0;
  box-shadow: 0 14px 30px rgba(31, 157, 85, .32);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp::before {
  content: "";
  width: 34px;
  height: 34px;
  background: url("../img/whatsapp-icon.svg") center / contain no-repeat;
}

.back-to-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: var(--graphite);
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 24, 39, .24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.back-to-top::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

.back-to-top:hover {
  background: #242426;
  box-shadow: 0 18px 36px rgba(17, 24, 39, .3);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 116px), 860px);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(24, 24, 24, .96);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  transform: translateX(-50%);
}

.cookie-banner p {
  margin: 0;
  color: #f1f1f1;
  font-size: .95rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner .btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 16px;
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 70px;
    --nav-height: 78px;
  }

  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    position: relative;
    z-index: 3;
  }

  .nav {
    justify-content: space-between;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 1;
    flex: 1;
    width: auto;
  }

  .brand {
    order: -1;
    padding: 0;
  }

  .brand img {
    width: 132px;
    margin: -16px 0;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(260px, calc(100vw - 32px));
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(17, 24, 39, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    visibility: hidden;
    z-index: 2;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-left {
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    padding-bottom: 0;
  }

  .nav-right {
    top: calc(var(--nav-height) + 142px);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    padding-top: 0;
  }

  .video-modal-content {
    align-items: stretch;
    flex-direction: column;
  }

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

  .modal-actions .btn {
    flex: 1;
  }

  .nav-links a {
    border-radius: 8px;
  }

  .hero-slider {
    min-height: 560px;
  }

  .hero-slide {
    background-position: center right;
  }

  .hero-slide::before {
    background: linear-gradient(180deg, rgba(23, 23, 23, .94), rgba(23, 23, 23, .82));
  }

  .hero-slide .container {
    min-height: 560px;
    padding: 42px 0 64px;
  }

  .hero-control {
    display: none;
  }

  .hero-strip,
  .grid-2,
  .grid-3,
  .prototype-grid,
  .about-layout,
  .about-more,
  .tv-program-grid,
  .service-detail,
  .contact-panel,
  .vertical-video-grid,
  .footer-grid,
  .banner {
    grid-template-columns: 1fr;
  }

  .vertical-video-card {
    grid-template-columns: minmax(150px, 230px) 1fr;
  }

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

  .section-head {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-panel {
    position: static;
  }

  .photo-stack {
    min-height: 450px;
  }

  .photo-stack-main {
    width: 72%;
    height: 400px;
  }

  .photo-stack-overlap {
    width: 50%;
    height: 280px;
  }

  .tv-program-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .hero-slider,
  .hero-slide .container {
    min-height: 580px;
  }

  h1 {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

  .lead {
    line-height: 1.5;
  }

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

  .hero-strip {
    margin-top: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .banner {
    padding: 26px;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .photo-stack-main,
  .photo-stack-overlap {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

  .vertical-video-card {
    grid-template-columns: 1fr;
  }

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

  .service-links,
  .footer-services {
    columns: auto;
    grid-template-columns: 1fr;
  }

  .vertical-video-card video {
    max-width: 280px;
    margin: 0 auto;
  }

  .floating-whatsapp {
    left: auto;
    right: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 86px;
    align-items: stretch;
    flex-direction: column;
    transform: none;
  }

  .legal-content {
    padding: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
