@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Light.otf") format("opentype");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Bold.otf") format("opentype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #05080d;
  --ink-2: #09111a;
  --ink-3: #0f1924;
  --paper: #f4f9fb;
  --white: #ffffff;
  --muted: #aab7c4;
  --cyan: #30b2d4;
  --cyan-bright: #45d5ef;
  --cyan-deep: #0793b5;
  --pink: #e91e63;
  --pink-soft: #ff4f87;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(5, 8, 13, 0.12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.35);
  --container: 1220px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: "Nexa", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--cyan-bright);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--cyan-deep);
}

.section-dark .section-kicker,
.final-cta .section-kicker {
  color: var(--cyan-bright);
}

.display-title {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.display-title span {
  color: var(--cyan-deep);
}

.section-dark .display-title span {
  color: var(--cyan-bright);
}

.large-copy {
  max-width: 780px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
  color: #536272;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.site-header a:focus-visible,
.gallery-item:focus-visible,
.video-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 4px;
}

.button-primary {
  color: var(--ink);
  background: var(--cyan-bright);
  box-shadow: 0 16px 38px rgba(69, 213, 239, 0.2);
}

.button-primary:hover {
  background: #72e4f6;
  box-shadow: 0 20px 46px rgba(69, 213, 239, 0.3);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(5, 8, 13, 0.2);
}

.button-dark:hover {
  background: #111c28;
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(5, 8, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.055em;
}

.brand-symbol {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cyan);
  flex: none;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-word {
  font-size: 18px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 31px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-bright);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a.is-active::after {
  right: 0;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(48, 178, 212, 0.08), transparent 28%),
    linear-gradient(135deg, #05080d 0%, #07101a 55%, #05080d 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow-cyan {
  top: -26vw;
  right: -15vw;
  background: var(--cyan-bright);
}

.hero-glow-pink {
  bottom: -35vw;
  left: -25vw;
  background: var(--pink);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.82fr);
  gap: 70px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 100px;
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 0 6px rgba(69, 213, 239, 0.1), 0 0 18px rgba(69, 213, 239, 0.65);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--cyan-bright);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  height: 10px;
  left: 2%;
  right: 0;
  bottom: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12'%3E%3Cpath d='M3 8c58-7 120 1 180-3 37-2 75-1 114 2' fill='none' stroke='%23e91e63' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.9;
}

.hero-lead {
  max-width: 700px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--white);
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.hero-tags span,
.hero-tags a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tags a {
  color: var(--white);
  border-color: rgba(233, 30, 99, 0.32);
  background: rgba(233, 30, 99, 0.08);
}

.hero-tags b {
  margin-left: 4px;
  color: var(--pink-soft);
  font-size: 9px;
}

.hero-visual {
  position: relative;
  min-height: 690px;
}

.hero-video-card,
.hero-photo-card,
.hero-fotop-card {
  position: absolute;
}

.hero-video-card {
  top: 20px;
  right: 9%;
  z-index: 3;
  width: min(78%, 405px);
  aspect-ratio: 0.744;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #111;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: transform 280ms ease;
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 35%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.video-card-topline {
  position: absolute;
  inset: 18px 18px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.video-card-topline > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.video-card-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3e5e;
  box-shadow: 0 0 10px rgba(255, 62, 94, 0.8);
}

.video-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  z-index: 2;
}

.video-card-copy span,
.video-card-copy strong {
  display: block;
}

.video-card-copy span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.video-card-copy strong {
  margin-top: 3px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.hero-photo-card-back {
  left: -2%;
  top: 155px;
  z-index: 1;
  width: 64%;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(-8deg);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 13, 0.65), transparent 65%);
}

.media-label {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-fotop-card {
  right: -2%;
  bottom: 70px;
  z-index: 4;
  display: grid;
  gap: 3px;
  width: 235px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.92), rgba(125, 21, 142, 0.96));
  box-shadow: 0 24px 55px rgba(125, 21, 142, 0.3);
  transform: rotate(-3deg);
  transition: transform 180ms ease;
}

.hero-fotop-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.hero-fotop-card strong {
  margin-top: 9px;
  font-size: 28px;
}

.hero-fotop-card > span:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.35;
}

.new-pill {
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--pink);
  background: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-marquee {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 52px;
  gap: 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  animation: marquee 20s linear infinite;
}

.marquee-track b {
  color: var(--cyan-bright);
  font-size: 10px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) 1fr;
  gap: 70px;
  align-items: start;
}

.intro .display-title {
  max-width: 960px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading.centered {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p {
  max-width: 650px;
  margin-inline: auto;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--ink-3);
  isolation: isolate;
}

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

.service-card-tall {
  grid-row: span 2;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 500ms ease;
}

.service-card:hover img {
  transform: scale(1.055);
}

.service-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 8, 13, 0.94), rgba(5, 8, 13, 0.05) 72%);
}

.service-index {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 8, 13, 0.28);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
}

.service-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 23px;
}

.service-copy > span {
  color: var(--cyan-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-copy h3 {
  margin: 6px 0 5px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.service-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  font-size: 14px;
}

.fotop-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eafcff, #fdf1f7 82%);
}

.fotop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.38;
}

.fotop-orb-one {
  width: 460px;
  height: 460px;
  top: -180px;
  left: -140px;
  background: var(--cyan-bright);
}

.fotop-orb-two {
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: -160px;
  background: #ff78a5;
}

.fotop-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
  gap: 80px;
  align-items: center;
}

.fotop-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(233, 30, 99, 0.15);
  border-radius: 999px;
  color: #7b2144;
  background: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.fotop-badge span {
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  font-size: 8px;
}

.fotop-copy .display-title {
  margin-top: 20px;
}

.fotop-copy .display-title span {
  color: var(--pink);
}

.fotop-features {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.fotop-features > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(5, 8, 13, 0.1);
}

.fotop-features > div > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 900;
}

.fotop-features p {
  margin: 0;
  color: #566473;
  line-height: 1.45;
}

.fotop-features strong {
  color: var(--ink);
}

.fotop-browser-wrap {
  position: relative;
  padding: 34px 0 54px;
}

.fotop-browser {
  overflow: hidden;
  border: 1px solid rgba(5, 8, 13, 0.1);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 42px 100px rgba(20, 83, 101, 0.18);
  transform: rotate(1.2deg);
}

.browser-bar {
  height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid #e5ebef;
  background: #f5f7f9;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cad3da;
}

.browser-dots i:first-child { background: #fd6b69; }
.browser-dots i:nth-child(2) { background: #f7c44d; }
.browser-dots i:last-child { background: #61c783; }

.browser-url {
  justify-self: center;
  width: min(78%, 310px);
  padding: 7px 12px;
  border-radius: 8px;
  color: #778693;
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 10px;
  text-align: center;
}

.browser-lock {
  color: #9aa7b2;
}

.browser-body {
  padding: 26px;
}

.browser-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.browser-brand {
  color: var(--cyan-deep);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.browser-links {
  display: flex;
  gap: 17px;
  color: #687783;
  font-size: 9px;
}

.browser-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 10px 9px 14px;
  border: 1px solid #e1e7eb;
  border-radius: 10px;
  color: #a0acb5;
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.browser-search b {
  padding: 7px 12px;
  border-radius: 7px;
  color: var(--white);
  background: var(--cyan-deep);
  font-size: 9px;
}

.browser-event-card {
  position: relative;
  aspect-ratio: 1.18;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 18px;
  background: #10151a;
}

.browser-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser-event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.1) 72%);
}

.browser-event-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
}

.browser-event-copy > span {
  color: var(--cyan-bright);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.browser-event-copy h3 {
  margin: 6px 0 4px;
  font-size: 28px;
}

.browser-event-copy p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.face-search-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan-bright);
  font-size: 9px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(5, 8, 13, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(5, 8, 13, 0.13);
}

.floating-note > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  font-size: 12px;
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 10px;
}

.floating-note small {
  margin-top: 2px;
  color: #7e8a94;
  font-size: 8px;
}

.floating-note-one {
  left: -30px;
  bottom: 2px;
}

.floating-note-two {
  right: -30px;
  top: 3px;
}

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

.benefit-card {
  position: relative;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.benefit-card img {
  width: 180px;
  height: 180px;
  margin: 0 auto 14px;
  object-fit: contain;
  opacity: 0.86;
  transition: transform 300ms ease;
}

.benefit-card:hover img {
  transform: translateY(-6px) rotate(-2deg);
}

.benefit-card > span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 8px 0 10px;
  font-size: 24px;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.55;
  font-size: 14px;
}

.process {
  background: var(--paper);
}

.process-intro {
  max-width: 850px;
  margin-bottom: 55px;
}

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

.process-card {
  display: grid;
  gap: 22px;
}

.process-media {
  position: relative;
  aspect-ratio: 0.86;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe7ea;
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.process-card:hover .process-media img {
  transform: scale(1.04);
}

.process-media > span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cyan-bright);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(5, 8, 13, 0.15);
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.process-card p {
  margin: 0;
  color: #687785;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink-3);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item-large {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1), filter 250ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 13, 0.85), transparent 65%);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
}

.gallery-caption b,
.gallery-caption small {
  display: block;
}

.gallery-caption b {
  font-size: 20px;
}

.gallery-caption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.play-button {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(5, 8, 13, 0.48);
  backdrop-filter: blur(10px);
  font-size: 13px;
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-item:hover .play-button {
  transform: scale(1.08);
  color: var(--ink);
  background: var(--cyan-bright);
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-cta-media,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.final-cta-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.96) 0%, rgba(5, 8, 13, 0.88) 45%, rgba(5, 8, 13, 0.45) 100%),
    linear-gradient(to top, rgba(5, 8, 13, 0.8), transparent 45%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  padding-block: 110px;
}

.final-cta h2 {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.final-cta h2 em {
  color: var(--cyan-bright);
  font-style: normal;
}

.final-cta p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.55;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #030508;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
  gap: 48px;
  padding: 68px 0 56px;
}

.brand-footer {
  width: max-content;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  line-height: 1.55;
}

.footer-grid h3 {
  margin: 3px 0 18px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
}

.footer-grid a {
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--cyan-bright);
}

.footer-grid span {
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: #06150b;
  background: #62e77a;
  box-shadow: 0 15px 35px rgba(25, 194, 72, 0.28);
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(25, 194, 72, 0.38);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox {
  width: min(94vw, 1120px);
  max-width: none;
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox-media {
  width: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-media video,
.lightbox-media img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: #111820;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 35px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-fotop-card {
    right: 0;
  }

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

  .benefit-card {
    min-height: 335px;
  }

  .fotop-layout {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 92px 0;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 0;
    z-index: 99;
    display: block;
    padding: 18px 20px 28px;
    background: rgba(5, 8, 13, 0.96);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
    gap: 0;
  }

  .mobile-menu nav > a:not(.button) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 24px;
  }

  .nav-new {
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--white);
    background: var(--pink);
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 135px;
    padding-bottom: 100px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero h1 {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 620px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-video-card {
    width: 64%;
    right: 12%;
  }

  .hero-photo-card-back {
    left: 5%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .service-card-tall {
    grid-row: span 1;
  }

  .fotop-layout {
    grid-template-columns: 1fr;
  }

  .fotop-copy {
    max-width: 740px;
  }

  .fotop-browser-wrap {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-card {
    grid-template-columns: minmax(260px, 0.65fr) 1fr;
    align-items: center;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 6;
    grid-row: span 1;
  }

  .gallery-item-large {
    grid-row: span 2;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .display-title {
    font-size: clamp(39px, 12vw, 55px);
  }

  .brand-word {
    font-size: 16px;
  }

  .hero-layout {
    padding-top: 118px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .hero-video-card {
    width: 69%;
    right: 8%;
    border-radius: 26px;
  }

  .hero-photo-card-back {
    width: 61%;
    top: 110px;
    left: 2%;
  }

  .hero-fotop-card {
    width: 205px;
    right: 0;
    bottom: 38px;
  }

  .video-card-copy strong {
    font-size: 24px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
  }

  .service-card,
  .service-card-wide,
  .service-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .service-copy h3 {
    font-size: 30px;
  }

  .fotop-browser-wrap {
    padding-bottom: 74px;
  }

  .browser-links {
    display: none;
  }

  .browser-body {
    padding: 14px;
  }

  .browser-event-card {
    aspect-ratio: 0.92;
  }

  .browser-event-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .floating-note-one {
    left: 0;
  }

  .floating-note-two {
    right: 0;
    top: 7px;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .benefit-card img {
    width: 155px;
    height: 155px;
  }

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

  .process-media {
    aspect-ratio: 1.02;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 350px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .final-cta {
    min-height: 680px;
  }

  .final-cta-overlay {
    background: linear-gradient(to top, rgba(5, 8, 13, 0.98) 10%, rgba(5, 8, 13, 0.72) 100%);
  }

  .final-cta-content {
    align-self: flex-end;
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .final-cta h2 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .final-actions {
    display: grid;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .lightbox {
    width: calc(100vw - 20px);
  }

  .lightbox-close {
    top: -13px;
    right: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* --- Refinamiento visual v2 --- */
.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof-strip > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof-strip img,
.marquee-item img,
.intro-pills img,
.intro-smile-card img,
.hero-smile-note img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-proof-strip img,
.hero-smile-note img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.hero-smile-note {
  position: absolute;
  left: 6%;
  bottom: 155px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(5, 8, 13, 0.54);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero-smile-note strong,
.hero-smile-note small {
  display: block;
}

.hero-smile-note strong {
  font-size: 13px;
}

.hero-smile-note small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.35;
}

.hero-marquee {
  background: linear-gradient(90deg, rgba(233, 30, 99, 0.16), rgba(48, 178, 212, 0.06) 40%, rgba(48, 178, 212, 0.16));
}

.marquee-track {
  gap: 0;
  padding-block: 4px;
  animation-duration: 24s;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 18px;
  padding-inline: 18px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.marquee-item span {
  color: rgba(255, 255, 255, 0.48);
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(69, 213, 239, 0.08), transparent 24%),
    linear-gradient(180deg, #f4f8fb 0%, #eef3f7 100%);
}

.intro-grid {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.intro-media {
  display: grid;
  gap: 24px;
}

.intro-visuals {
  position: relative;
  min-height: 520px;
}

.intro-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #d9e2e8;
  box-shadow: 0 28px 55px rgba(17, 39, 55, 0.16);
}

.intro-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-shot span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 8, 13, 0.62);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
}

.intro-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 13, 0.25), transparent 55%);
}

.intro-shot-main {
  left: 0;
  top: 26px;
  width: min(78%, 340px);
  aspect-ratio: 0.86;
  transform: rotate(-7deg);
}

.intro-shot-side {
  right: 0;
  top: 0;
  width: min(64%, 260px);
  aspect-ratio: 0.88;
  transform: rotate(7deg);
}

.intro-smile-card {
  position: absolute;
  right: 18px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(74%, 280px);
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 45px rgba(18, 55, 75, 0.14);
}

.intro-smile-card strong,
.intro-smile-card small {
  display: block;
}

.intro-smile-card strong {
  font-size: 15px;
}

.intro-smile-card small {
  margin-top: 2px;
  color: #5c6c79;
  font-size: 12px;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-pills span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(5, 8, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #24313d;
  font-size: 12px;
  font-weight: 800;
}

.intro-copy .large-copy {
  max-width: 780px;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.intro-highlights article {
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(5, 8, 13, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(17, 39, 55, 0.06);
}

.intro-highlights h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.intro-highlights p {
  margin: 0;
  color: #61707d;
  font-size: 14px;
  line-height: 1.55;
}

.benefit-card {
  background:
    radial-gradient(circle at 75% 18%, rgba(69, 213, 239, 0.08), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  opacity: 0.14;
  background: url("../images/favicon.png") center / cover no-repeat;
}

@media (max-width: 1080px) {
  .intro-grid {
    gap: 48px;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    gap: 20px;
    padding-bottom: 84px;
  }

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

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

  .hero-smile-note {
    left: 8%;
    bottom: 108px;
  }

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

  .intro-visuals {
    min-height: 470px;
  }

  .services-grid {
    gap: 14px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .hero-layout {
    padding-top: 108px;
    padding-bottom: 76px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.2vw, 62px);
    line-height: 0.93;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-tags,
  .hero-proof-strip,
  .intro-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .hero-tags::-webkit-scrollbar,
  .hero-proof-strip::-webkit-scrollbar,
  .intro-pills::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-proof-strip > div,
  .hero-tags span,
  .hero-tags a,
  .intro-pills span {
    flex: none;
  }

  .hero-visual {
    min-height: 395px;
    margin-top: -10px;
  }

  .hero-video-card {
    top: 20px;
    right: 10%;
    width: 65%;
  }

  .hero-photo-card-back {
    top: 82px;
    left: 2%;
    width: 54%;
  }

  .hero-fotop-card {
    width: 180px;
    padding: 16px;
    right: 2%;
    bottom: 18px;
    border-radius: 20px;
  }

  .hero-fotop-card strong {
    font-size: 23px;
  }

  .hero-smile-note {
    left: 4%;
    bottom: 104px;
    width: 172px;
    padding: 10px 11px;
    gap: 9px;
    border-radius: 16px;
  }

  .hero-smile-note strong {
    font-size: 12px;
  }

  .hero-smile-note small {
    font-size: 10px;
  }

  .hero-marquee {
    position: relative;
    margin-top: 8px;
  }

  .marquee-track {
    height: 46px;
    animation-duration: 20s;
  }

  .marquee-group {
    gap: 14px;
    padding-inline: 10px;
  }

  .marquee-item {
    gap: 8px;
  }

  .marquee-item span {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .section {
    padding: 68px 0;
  }

  .intro-visuals {
    min-height: 390px;
  }

  .intro-shot-main {
    width: 67%;
  }

  .intro-shot-side {
    width: 54%;
  }

  .intro-smile-card {
    right: 0;
    bottom: 6px;
    width: 220px;
    padding: 12px 14px;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .service-card,
  .service-card-wide,
  .service-card-tall {
    min-height: 360px;
    scroll-snap-align: start;
  }

  .service-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-copy h3 {
    font-size: 29px;
  }

  .service-copy p {
    font-size: 13px;
  }

  .fotop-copy .large-copy,
  .process-intro .large-copy {
    font-size: 17px;
  }

  .browser-event-copy h3 {
    font-size: 24px;
  }

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

  .benefit-card {
    min-height: 260px;
    padding: 16px;
    border-radius: 20px;
  }

  .benefit-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
  }

  .benefit-card h3 {
    font-size: 20px;
    margin-top: 2px;
    margin-bottom: 6px;
  }

  .benefit-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-caption {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .gallery-caption b {
    font-size: 18px;
  }

  .gallery-caption small {
    font-size: 10px;
    margin-top: 2px;
  }

  .play-button {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .process-steps {
    gap: 28px;
  }

  .process-card {
    gap: 14px;
  }

  .process-card h3 {
    font-size: 22px;
  }

  .process-card p {
    font-size: 14px;
  }

  .final-cta {
    min-height: 560px;
  }

  .final-cta-content {
    padding-top: 160px;
    padding-bottom: 64px;
  }

  .final-cta p {
    font-size: 17px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
    padding: 54px 0 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:not(.footer-brand) {
    font-size: 12px;
    gap: 9px;
  }

  .footer-grid h3 {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .footer-bottom {
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 22px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero-actions .button {
    min-height: 50px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-video-card {
    width: 67%;
    right: 7%;
  }

  .hero-photo-card-back {
    width: 52%;
  }

  .hero-fotop-card {
    width: 172px;
  }

  .intro-visuals {
    min-height: 348px;
  }

  .intro-smile-card {
    width: 205px;
  }

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

/* --- Ajuste final de caritas + limpieza del hero --- */
.hero-proof-strip img,
.intro-pills img,
.intro-smile-card img,
.hero-smile-note img {
  border-radius: 50%;
  background: rgba(69, 213, 239, 0.08);
}

.hero-proof-strip img,
.hero-smile-note img {
  width: 24px;
  height: 24px;
}

.intro-pills img,
.intro-smile-card img {
  width: 20px;
  height: 20px;
}

.benefit-card::before {
  content: none;
}

.hero {
  padding-bottom: 0;
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 0;
  }

  .hero-proof-strip {
    margin-top: 16px;
  }
}
