.service-lines {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.85);
}

.service-lines p {
  margin: 0;
}

.service-lines--creative {
  gap: 14px;
}

.service-line {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(40, 120, 140, 0.08);
  border: 1px solid rgba(40, 120, 140, 0.18);
  list-style: none;
}

.service-line strong {
  color: var(--primary);
  font-weight: 700;
}

.service-lines--creative {
  list-style: none;
}

.line-kicker {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0;
  background: none;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg-dark: #123c43;
  --bg: #f5f7f6;
  --bg-soft: #daddd8;
  --text-dark: #333333;
  --text: #333333;
  --text-light: #f5f7f6;
  --accent: #28788c;
  --primary: #2a6f77;
  --border: rgba(31, 42, 46, 0.16);
  --shadow: 0 20px 50px rgba(18, 60, 67, 0.2);
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, var(--bg) 45%, #eef1f0 100%);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--primary);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(245, 247, 246, 0.9);
  border-bottom: 1px solid rgba(31, 42, 46, 0.08);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(12, 50, 56, 0.2);
}

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

.brand-name {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a,
.nav-dropdown-toggle,
.nav-dropdown-menu a,
.nav-mobile summary,
.nav-mobile-submenu a {
  text-transform: capitalize;
}

.case-nav-links {
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding-bottom: 6px;
}

.nav-dropdown-toggle span {
  font-size: 0.8rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 180px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: var(--bg-soft);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile {
  display: none;
  font-weight: 600;
}

.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.nav-mobile[open] summary {
  background: var(--bg-soft);
  border-color: rgba(40, 120, 140, 0.35);
}

.nav-mobile .nav-icon--close {
  display: none;
}

.nav-mobile[open] .nav-icon--open {
  display: none;
}

.nav-mobile[open] .nav-icon--close {
  display: inline;
}

.nav-mobile-links {
  display: grid;
  gap: 12px;
  margin-top: -30px;
  background: var(--bg-soft);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: min(260px, 80vw);
  z-index: 200;
}

.nav-mobile-links > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-mobile-links > a:hover,
.nav-mobile-links > a:focus-visible,
.nav-mobile-links > a:active {
  color: var(--primary);
  background: rgba(40, 120, 140, 0.12);
  border-radius: 10px;
  padding: 6px 8px;
}

.nav-mobile-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-mobile-dropdown summary::after {
  content: "▾";
  font-size: 0.85rem;
  color: var(--accent);
}

.nav-mobile-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.nav-mobile-submenu {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(40, 120, 140, 0.2);
}

.nav-mobile-submenu a {
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
}

.nav-mobile-submenu a:hover,
.nav-mobile-submenu a:focus-visible,
.nav-mobile-submenu a:active {
  color: var(--primary);
  background: rgba(40, 120, 140, 0.1);
  border-radius: 8px;
  padding: 4px 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(40, 120, 140, 0.35);
}

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

.btn-ghost {
  border-color: var(--border);
  background: white;
  color: var(--text-dark);
}

.btn-ghost.active {
  background: rgba(42, 111, 119, 0.1);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(42, 111, 119, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
}

.hero-landing {
  padding: 100px 0 70px;
  background: var(--bg);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  overflow: hidden;
  pointer-events: none;
}

.hero-marquee-track {
  display: inline-flex;
  gap: 32px;
  padding: 6px 0;
  margin-top: 8%;
  color: rgba(51, 51, 51, 0.35);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: hero-marquee 22s linear infinite;
}

.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-marquee-track span::after {
  content: "•";
  color: rgba(40, 120, 140, 0.5);
}

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

.hero-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 32px;
}

.hero-landing-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #7fbec4;
  color: var(--text-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  text-align: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  justify-self: center;
}

.hero-landing-content h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  margin-bottom: 12px;
  font-weight: 900;
}

.hero-title-glow {
  color: #333333;
  text-shadow: 0 12px 30px rgba(40, 120, 140, 0.35);
}

.hero-title-glow.hero-title-anim-ready span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
}

.hero-title-glow.hero-title-anim span {
  animation: hero-letter-bounce 0.7s ease forwards;
  animation-delay: calc(var(--hero-delay, 0ms) + var(--char-delay, 0ms));
}

@keyframes hero-letter-bounce {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-landing-content p {
  color: var(--text);
  max-width: 520px;
}

.hero-landing-visual {
  display: grid;
  justify-items: center;
}

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

.hero-landing-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 6px solid rgba(42, 111, 119, 0.15);
}

.phone-frame {
  width: min(240px, 90%);
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 25px 55px rgba(11, 44, 48, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.6);
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--bg-dark);
  position: relative;
}

.phone-screen video,
.phone-screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 44, 48, 0.75);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
}

.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(218, 221, 216, 0.95), rgba(200, 206, 202, 0.55));
}

.about::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 60%;
  background: radial-gradient(circle at 20% 20%, rgba(40, 120, 140, 0.18), transparent 60%);
  pointer-events: none;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.about-media {
  display: grid;
  gap: 16px;
}

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

.youtube-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(40, 120, 140, 0.18);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 16px 36px rgba(18, 60, 67, 0.1);
}

.youtube-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  display: block;
  background: #0b2c30;
}

.youtube-card p {
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: white;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-carousel {
  display: grid;
  gap: 14px;
  perspective: 1200px;
}

.video-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 6px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.video-track::-webkit-scrollbar {
  display: none;
}

.video-track::-webkit-scrollbar {
  height: 6px;
}

.video-track::-webkit-scrollbar-thumb {
  background: rgba(42, 111, 119, 0.35);
  border-radius: 999px;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
  min-height: 260px;
  scroll-snap-align: center;
  transform: rotateY(-12deg) scale(0.86);
  opacity: 0.6;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.video-card.is-active {
  transform: rotateY(0deg) scale(1);
  opacity: 1;
  box-shadow: none;
}

.video-card.is-prev {
  transform: rotateY(10deg) scale(0.92);
  opacity: 0.8;
}

.video-card.is-next {
  transform: rotateY(-10deg) scale(0.92);
  opacity: 0.8;
}

.video-card.is-far-prev {
  transform: rotateY(16deg) scale(0.82);
  opacity: 0.5;
}

.video-card.is-far-next {
  transform: rotateY(-16deg) scale(0.82);
  opacity: 0.5;
}

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

.video-meta {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 44, 48, 0.7);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.75rem;
}

.video-meta span {
  font-weight: 600;
}

.video-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1rem;
}

.carousel-sound {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 8px 14px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

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

.media-gallery.container {
  width: 100%;
  max-width: none;
  margin: 32px auto 0;
  padding: 0 4vw;
}

.media-item {
  break-inside: avoid;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.media-item img,
.media-item video,
.media-item iframe {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.media-item .media-service {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: white;
  background: rgba(18, 60, 67, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
  pointer-events: none;
}

.media-item:hover img,
.media-item:hover video,
.media-item:hover iframe {
  filter: blur(3px);
  transform: scale(1.02);
}

.media-item:hover .media-service {
  opacity: 1;
}

.media-item::after {
  content: none;
}

.media-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.media-tag {
  z-index: 3;
  pointer-events: none;
}

.media-filename {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(18, 60, 67, 0.75);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  opacity: 1;
  pointer-events: none;
}

.media-more {
  break-inside: avoid;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-span: all;
}

.media-more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(40, 120, 140, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(218, 221, 216, 0.6));
  box-shadow: 0 16px 36px rgba(18, 60, 67, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.media-more summary::-webkit-details-marker {
  display: none;
}

.media-more-label--close {
  display: none;
}

.media-more[open] summary {
  order: 2;
  margin-top: 18px;
}

.media-more[open] .media-more-label--open {
  display: none;
}

.media-more[open] .media-more-label--close {
  display: inline;
}

.media-more[open] .media-more-grid {
  order: 1;
}

.media-more summary::after {
  content: "↗";
  font-size: 0.9rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.media-more summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(18, 60, 67, 0.16);
  border-color: rgba(40, 120, 140, 0.6);
}

.media-more[open] summary::after {
  transform: rotate(45deg);
}

.media-more-grid {
  margin-top: 18px;
  column-count: 3;
  column-gap: 18px;
}

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

.media-item video {
  background: var(--bg-dark);
}

.media-item iframe {
  border: 0;
  background: var(--bg-dark);
}

.media-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.process {
  background: linear-gradient(180deg, rgba(42, 111, 119, 0.12), rgba(245, 247, 246, 0.9));
}

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

.process-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(42, 111, 119, 0.2);
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 35px rgba(11, 44, 48, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(42, 111, 119, 0.15), rgba(42, 111, 119, 0.4));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.process-grid.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-card {
  opacity: 1;
  transform: translateY(0);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.process-grid.is-visible .process-card {
  animation: process-in 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes process-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-card span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(42, 111, 119, 0.12);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
}

.process-card h3 {
  font-size: 1.05rem;
}

.process-card p {
  color: var(--text);
  font-size: 0.92rem;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(42, 111, 119, 0.08);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(11, 44, 48, 0.12);
}

@media (max-width: 1024px) {
  .process-grid::before {
    display: none;
  }
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.choose-media img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: 22px;
  padding: 12px;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 85%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 85%);
}

.choose-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.choose-list li::before {
  content: "• ";
  color: var(--primary);
  font-weight: 700;
}

.choose {
  background: #006b7b;
  color: var(--text-light);
}

.choose .choose-list {
  color: var(--text-light);
}

.choose .choose-list li::before {
  color: var(--text-light);
}

.contact {
  background:
    url("https://www.transparenttextures.com/patterns/cartographer.png"),
    linear-gradient(135deg, rgba(9, 33, 39, 0.62), rgba(18, 60, 67, 0.42));
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact > * {
  position: relative;
  z-index: 2;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.contact::before {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 20px;
  background: radial-gradient(circle, rgba(164, 225, 236, 0.25), transparent 70%);
  z-index: 1;
}

.contact::after {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: 24px;
  background: radial-gradient(circle, rgba(142, 211, 223, 0.3), transparent 70%);
  z-index: 1;
}

.contact-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(242, 249, 250, 0.93));
  border: 1px solid rgba(42, 111, 119, 0.2);
  border-radius: 24px;
  padding: clamp(24px, 3.2vw, 38px);
  box-shadow: 0 28px 64px rgba(18, 60, 67, 0.15);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 18px;
  align-items: start;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(8px);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -100px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 111, 119, 0.2), transparent 70%);
  pointer-events: none;
}

.contact-card::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  min-height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(165deg, rgba(18, 60, 67, 0.22), rgba(18, 60, 67, 0.05)),
    url("assets/galeria/gallery-25.jpg") center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.contact-card > * {
  grid-column: 1;
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  color: #184f5c;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.contact-card h2::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2a6f77, rgba(42, 111, 119, 0.1));
}

.contact-card p {
  color: rgba(51, 51, 51, 0.85);
  max-width: 52ch;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: clamp(14px, 1.8vw, 20px);
  border-radius: 16px;
  border: 1px solid rgba(42, 111, 119, 0.14);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(42, 111, 119, 0.2);
  border-radius: 13px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 252, 0.96));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(51, 51, 51, 0.55);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(42, 111, 119, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(42, 111, 119, 0.65);
  box-shadow: 0 0 0 4px rgba(42, 111, 119, 0.14);
  background: #ffffff;
}

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

.contact-form .btn {
  justify-self: start;
  min-width: 140px;
  background: linear-gradient(135deg, #2a6f77, #1d5b69);
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 60, 67, 0.22);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.contact-form::after {
  content: "Respuesta habitual en menos de 24h.";
  font-size: 0.78rem;
  color: rgba(22, 79, 92, 0.75);
  font-weight: 600;
}

@media (max-width: 720px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card::after {
    grid-column: 1;
    grid-row: auto;
    min-height: 160px;
    order: -1;
  }

  .contact-card > * {
    grid-column: 1;
  }

  .contact-form .btn {
    width: 100%;
    justify-self: stretch;
  }
}

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

.service-page {
  padding: 120px 0;
}

.service-page-card {
  background: white;
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.service-page-card p {
  color: var(--text);
}

.service-hero {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, rgba(245, 247, 246, 0.9), rgba(218, 221, 216, 0));
}

.social-media-page .service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero--social::before,
.service-hero--social::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(42, 111, 119, 0.2), transparent 70%);
  pointer-events: none;
}

.service-hero--social::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -80px;
}

.service-hero--social::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -120px;
}

.social-media-page {
  background: radial-gradient(circle at top, rgba(245, 247, 246, 0.7), transparent 55%);
}

.social-media-page section {
  position: relative;
  overflow: hidden;
}

.page-glow section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-glow section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(42, 111, 119, 0.08), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.page-glow section > * {
  position: relative;
  z-index: 1;
}

.page-preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: grid;
  place-items: center;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1.1s ease, transform 1.1s ease, visibility 1.1s ease;
}

.page-preloader .preloader-inner {
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10vh);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.page-preloader .preloader-inner span {
  margin-top: -80px;
}

.page-preloader img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(11, 44, 48, 0.2));
}

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

.page-preloader.is-visible .preloader-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  animation: preloader-float 2.6s ease-in-out 0.9s infinite;
}

.page-preloader.is-visible .preloader-inner img {
  animation: preloader-float 2.8s ease-in-out 1s infinite;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10%);
}

@keyframes preloader-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.service-section--intro::after {
  content: "";
  position: absolute;
  inset: auto -20% 0;
  height: 120px;
  background: linear-gradient(90deg, rgba(42, 111, 119, 0.12), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.service-hero--social .service-hero-grid {
  grid-template-columns: 1fr;
}

.service-hero-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(18, 60, 67, 0.22);
}

.service-hero-grid img.hero-portrait {
  height: 620px;
}

.service-hero-grid h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.service-hero--social .service-hero-grid h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.social-media-page .service-hero--social {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 246, 0.65));
}

.social-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.social-hero-grid h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.social-media-page .service-hero--social p {
  max-width: 720px;
  font-size: 1.05rem;
}

.social-hero-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
}

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

.hero-metrics span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-metrics small {
  display: block;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.85rem;
}

.social-hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-stack {
  position: relative;
  width: min(360px, 86%);
  height: 520px;
}

.phone-card {
  position: absolute;
  inset: 0;
  background: #0b1e22;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(11, 44, 48, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phone-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 110px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.phone-card--back {
  transform: translate(-18%, -6%) rotate(-6deg);
  opacity: 0.6;
}

.phone-card--mid {
  transform: translate(12%, 2%) rotate(5deg);
  opacity: 0.75;
}

.phone-card--front {
  transform: translate(0, 0);
  z-index: 2;
}

.social-flow {
  padding: 70px 0;
  background: #ffffff;
}

.social-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

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

.flow-card {
  border: 1px solid rgba(42, 111, 119, 0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(245, 247, 246, 0.9);
  box-shadow: 0 12px 26px rgba(18, 60, 67, 0.08);
}

.flow-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.flow-card p {
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.75);
}

.social-bento .section-heading {
  margin-bottom: 28px;
}

.social-bento-full {
  padding: 0;
}

.social-bento-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.social-bento-full .bento-item {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.social-intro-detail {
  background: linear-gradient(180deg, rgba(245, 247, 246, 0.9), rgba(218, 221, 216, 0.2));
  padding: 50px 0;
}

.social-copy-section {
  padding: 30px 0 60px;
  position: relative;
  color: var(--text-light);
  background: linear-gradient(180deg, rgba(12, 43, 49, 0.65), rgba(12, 43, 49, 0.35)),
    url("assets/services/social-media/resources/POST\ 19\ DE\ NOVIEMBRE.jpg") center/cover fixed;
}

.social-copy-section p {
  max-width: 880px;
  font-size: 1.05rem;
  color: rgba(245, 247, 246, 0.9);
}

@media (max-width: 720px) {
  .social-copy-section {
    background-attachment: scroll;
  }
}

.social-bento-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.7fr) minmax(0, 1.35fr);
  grid-template-areas: "left center right";
  gap: 0;
  align-items: stretch;
}

.bento-item {
  border-radius: 22px;
  padding: 18px;
  background: transparent;
  border: 1px solid rgba(42, 111, 119, 0.2);
  box-shadow: 0 20px 40px rgba(18, 60, 67, 0.1);
}

.bento-text {
  grid-area: center;
  display: grid;
  align-content: center;
  text-align: center;
  justify-items: center;
}

.bento-text--fit {
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.bento-text--fit .service-bullets {
  width: fit-content;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.phone-frame {
  padding: 0;
  height: 100%;
  min-height: 360px;
}

.bento-side {
  width: 100%;
}

.bento-side--left {
  grid-area: left;
}

.bento-side--right {
  grid-area: right;
}

.bento-side--bottom {
  display: none;
}

.social-media-page .service-bullets li::before {
  color: var(--accent);
}

.social-media-page .hero-tags {
  justify-content: flex-start;
}

.social-media-page .service-hero--social .service-hero-grid {
  text-align: left;
  justify-items: start;
}

.social-media-page .hero-tags span {
  background: rgba(40, 120, 140, 0.12);
  border: 1px solid rgba(40, 120, 140, 0.18);
  font-weight: 600;
}

.social-media-page .service-section--intro {
  background: transparent;
  padding: 60px 0 70px;
}

.social-media-page .service-bullets li::before {
  color: var(--accent);
}

.service-hero-grid p {
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-landing-content h1,
.service-hero-grid h1,
.section-heading h2,
.service-section h2 {
  position: relative;
  display: inline-block;
}

.hero-landing-content h1::after,
.service-hero-grid h1::after,
.section-heading h2::after,
.service-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 111, 119, 0.25), rgba(42, 111, 119, 0));
  z-index: -1;
}

.hero-landing-content h1::before,
.service-hero-grid h1::before {
  content: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 12px 25px rgba(11, 44, 48, 0.12);
}

.service-section {
  padding: 70px 0;
}

.service-section.alt {
  background: rgba(218, 221, 216, 0.45);
}

.service-section--intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(218, 221, 216, 0.35));
}

.social-intro-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  perspective: 800px;
}

.social-intro-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(18, 60, 67, 0.12);
  will-change: transform;
  transform: translateY(0);
}

.social-intro-full .service-section-grid {
  grid-template-columns: 1fr;
}

.service-section--glow {
  position: relative;
}

.service-section--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(42, 111, 119, 0.15), transparent 55%);
  pointer-events: none;
}

.service-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.service-section-grid > div {
  position: relative;
}

.service-section-grid img,
.service-section-grid video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--bg-dark);
}

.service-section h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
}

.service-bullets {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--text);
}

.service-bullets li::before {
  content: "• ";
  color: var(--primary);
  font-weight: 700;
}

.media-stack {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.media-stack::before,
.media-stack::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  pointer-events: none;
}

.media-stack::before {
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

.media-stack::after {
  width: 140px;
  height: 140px;
  right: -12px;
  top: -12px;
  background: radial-gradient(circle, rgba(42, 111, 119, 0.25), transparent 70%);
}

.media-stack img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(18, 60, 67, 0.22);
}

.media-stack img,
.service-hero-grid img,
.service-section-grid img,
.service-section-grid video {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-stack img:hover,
.service-hero-grid img:hover,
.service-section-grid img:hover,
.service-section-grid video:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(11, 44, 48, 0.2);
}

.media-stack .media-primary {
  transform: translateY(-10px) rotate(-1.5deg);
}

.media-stack .media-secondary {
  position: absolute;
  width: 60%;
  height: 200px;
  bottom: -10px;
  left: -10px;
  border: 6px solid rgba(255, 255, 255, 0.9);
  transform: rotate(2.5deg);
}

.glow-frame {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(140deg, rgba(42, 111, 119, 0.4), rgba(18, 60, 67, 0.1));
  box-shadow: 0 30px 70px rgba(18, 60, 67, 0.22);
}

.glow-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.glow-frame::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(42, 111, 119, 0.25), transparent 65%);
  z-index: -1;
}

.glow-frame video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.glow-frame .portrait-media {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.panel-card--featured {
  border: 1px solid rgba(42, 111, 119, 0.5);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(218, 221, 216, 0.6));
  box-shadow: 0 24px 45px rgba(11, 44, 48, 0.12);
  position: relative;
}

.panel-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.panel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(11, 44, 48, 0.14);
}

.panel-card ul {
  line-height: 1.5;
}

.panel-card ul li {
  padding-left: 4px;
}

.service-section--packages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(218, 221, 216, 0.25));
}

.branding-page .service-section--packages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(218, 221, 216, 0.25));
}

.branding-page .service-section--packages .panel-card {
  background: linear-gradient(180deg, rgba(42, 111, 119, 0.95), rgba(18, 60, 67, 0.9));
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.branding-page .service-section--packages .panel-card h3,
.branding-page .service-section--packages .panel-card ul {
  color: var(--text-light);
}

.branding-page .service-section--packages .panel-card ul li::before {
  color: #f5f7f6;
}

.branding-page .service-section--packages .panel-badge {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.branding-packages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(218, 221, 216, 0.25));
}

.branding-packages .panel-card {
  background: linear-gradient(180deg, rgba(42, 111, 119, 0.95), rgba(18, 60, 67, 0.9));
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.branding-packages .panel-card h3,
.branding-packages .panel-card ul {
  color: var(--text-light);
}

.branding-packages .panel-card ul li::before {
  color: #f5f7f6;
}

.branding-packages .panel-badge {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.social-media-page .service-section--packages .panel-card {
  background: #35727a;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.social-media-page .service-section--packages .panel-card h3,
.social-media-page .service-section--packages .panel-card ul {
  color: #ffffff;
}

.social-media-page .service-section--packages .panel-card ul li::before {
  color: #ffffff;
}

.social-media-page .service-section--packages .panel-badge {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.reels-packages .panel-card {
  background: #2d535a;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.reels-packages .panel-card h3,
.reels-packages .panel-card ul {
  color: #ffffff;
}

.reels-packages .panel-card ul li::before {
  color: #ffffff;
}

.branding-page .btn-primary {
  background: #000000;
  border-color: #000000;
}

.service-section--packages .section-heading {
  align-items: end;
}

.service-section--packages .section-heading p {
  max-width: 520px;
}

.service-section--packages::before,
.service-section--packages::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: rgba(42, 111, 119, 0.08);
  transform: rotate(12deg);
  pointer-events: none;
}

.service-section--packages::before {
  left: -40px;
  top: 40px;
}

.service-section--packages::after {
  right: -30px;
  bottom: 40px;
}

.service-section--packages .panel-grid {
  margin-top: 12px;
  gap: 26px;
}

.service-section--packages .panel-card {
  padding: 28px;
  min-height: 100%;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(218, 221, 216, 0.5));
  border: 1px solid rgba(42, 111, 119, 0.15);
  box-shadow: 0 28px 70px rgba(18, 60, 67, 0.12);
  position: relative;
  overflow: hidden;
}

.service-section--packages .panel-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.service-section--packages .panel-card ul {
  gap: 10px;
}

.service-section--packages .panel-card ul li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.service-section--packages .panel-card ul li::before {
  content: "✦";
  color: var(--primary);
  font-weight: 700;
  transform: translateY(2px);
}

.service-section--packages .panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(42, 111, 119, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-section--packages .panel-card::after {
  content: "";
  position: absolute;
  inset: -40% -30% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(42, 111, 119, 0.18), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.service-section--packages .panel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 60px rgba(11, 44, 48, 0.14);
}

.service-section--packages .panel-card:hover::before {
  opacity: 1;
}

.service-section--packages .panel-card--featured {
  border: 1px solid rgba(42, 111, 119, 0.5);
  box-shadow: 0 28px 60px rgba(11, 44, 48, 0.16);
  transform: translateY(-6px);
}

.service-section--packages .panel-card--featured::after {
  opacity: 0.55;
}

.service-section--packages .panel-badge {
  box-shadow: 0 10px 22px rgba(11, 44, 48, 0.2);
}

.branding-page {
  background: radial-gradient(circle at top, rgba(218, 221, 216, 0.5), transparent 60%);
}

.branding-page .service-section--intro {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(218, 221, 216, 0.4));
}

.branding-page .service-section--intro::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 30px;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  background: rgba(40, 120, 140, 0.08);
  transform: rotate(10deg);
  pointer-events: none;
}

.branding-intro {
  border-radius: 28px;
  margin: 0 auto;
}

.branding-intro .service-section-grid {
  gap: 42px;
}

.branding-intro img.hero-portrait {
  height: 460px;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(18, 60, 67, 0.25);
  border: 6px solid rgba(255, 255, 255, 0.65);
}

.branding-benefits img.hero-portrait {
  height: 640px;
}

.branding-intro h2 {
  font-size: clamp(2.8rem, 3.6vw, 3.4rem);
}

.branding-intro-title {
  letter-spacing: -0.01em;
}

.branding-intro-title span {
  background: linear-gradient(120deg, rgba(40, 120, 140, 0.9), rgba(18, 60, 67, 0.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.branding-intro p {
  font-size: 1.18rem;
  max-width: 520px;
}

@media (max-width: 1024px) {
  .branding-intro img.hero-portrait {
    height: 380px;
  }

  .branding-benefits img.hero-portrait {
    height: 500px;
  }
}

@media (max-width: 720px) {
  .branding-intro img.hero-portrait {
    height: 320px;
    border-width: 4px;
  }

  .branding-benefits img.hero-portrait {
    height: 440px;
  }
}

.branding-page .service-section--glow img {
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(18, 60, 67, 0.22);
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 16px;
}

.brand-pills span {
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(40, 120, 140, 0.12);
  color: var(--primary);
}

.brand-callout {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid rgba(40, 120, 140, 0.5);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(18, 60, 67, 0.12);
  font-weight: 600;
}

.branding-page .service-bullets li::before {
  content: "✦";
  color: var(--accent);
  font-weight: 700;
}

.branding-page .section-heading.compact {
  align-items: end;
}

.branding-page .section-heading.compact p {
  max-width: 520px;
}

.branding-page .panel-card {
  backdrop-filter: blur(10px);
}

.branding-gallery .media-item {
  background: rgba(18, 60, 67, 0.85);
}

.branding-pizza-gallery .section-heading.compact {
  align-items: end;
}

.branding-pizza-gallery .section-heading.compact p {
  max-width: 520px;
}

.case-sections {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-section {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.case-back {
  display: inline-flex;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--primary);
}

.case-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.case-back-floating {
  position: sticky;
  top: 90px;
  margin: 12px auto 8px calc((100vw - min(1200px, 92%)) / 2);
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(40, 120, 140, 0.25);
  box-shadow: 0 12px 24px rgba(18, 60, 67, 0.12);
  z-index: 2;
}

.case-cover {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 18px 34px rgba(18, 60, 67, 0.22);
}

.case-cover img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

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

.case-album img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(18, 60, 67, 0.2);
}

.case-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.case-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.case-link .case-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(18, 60, 67, 0.5);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: scale(1.02);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 60, 67, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-link:hover::after {
  opacity: 1;
}

.case-link:hover img {
  transform: scale(1.03);
  filter: blur(3px);
}

.case-link:hover .case-label {
  opacity: 1;
  transform: scale(1);
}

.case-gallery {
  padding-top: 20px;
}

.case-gallery .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 4vw;
}

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

.case-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(18, 60, 67, 0.22);
}

.reels-page {
  background: radial-gradient(circle at top, rgba(218, 221, 216, 0.5), transparent 60%);
}

.reels-hero {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, rgba(245, 247, 246, 0.95), rgba(218, 221, 216, 0.2));
}

.reels-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.reels-hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.01em;
}

.reels-hero-copy p {
  max-width: 520px;
}

.reels-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.reels-hero-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(40, 120, 140, 0.1);
  color: var(--primary);
}

.reels-hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.reels-hero-media--tilt {
  perspective: 100px;
}

.reels-hero-frame {
  border-radius: 36px;
  padding: 14px;
  background: #0c1216;
  box-shadow: 0 30px 70px rgba(18, 60, 67, 0.2);
}

.reels-hero-frame--tilt {
  position: relative;
  overflow: hidden;
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(5deg);
  transform-style: preserve-3d;
}

.reels-hero-frame--tilt::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.reels-hero-frame--tilt::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 120px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  transform: translateX(-50%);
  pointer-events: none;
}

.reels-hero-frame--tilt .reels-hero-video,
.reels-hero-frame--tilt .reels-hero-embed {
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.reels-hero-frame--tilt::marker {
  content: "";
}

.reels-hero-frame--tilt::after,
.reels-hero-frame--tilt::before {
  z-index: 2;
}

.reels-hero-frame--tilt .reels-hero-video,
.reels-hero-frame--tilt .reels-hero-embed {
  background: #000;
}

.reels-hero-frame--tilt::selection {
  background: transparent;
}

.reels-hero-frame--tilt {
  border: 2px solid rgba(255, 255, 255, 0.06);
}

.reels-hero-frame--tilt::before,
.reels-hero-frame--tilt::after {
  z-index: 2;
}

.reels-hero-video {
  width: min(220px, 50vw);
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.reels-hero-embed {
  width: min(220px, 50vw);
  height: 360px;
  border: 0;
  border-radius: 22px;
  display: block;
  background: #000;
}

.reels-hero-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 120, 140, 0.2), transparent 70%);
  right: -30px;
  top: -20px;
  z-index: -1;
}

.reels-page .service-hero-grid h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  letter-spacing: -0.01em;
}

.reels-page .service-hero-grid p {
  max-width: 540px;
}

.reels-what .service-section-grid {
  align-items: center;
}

.reels-media-stack {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 360px;
}

.reels-media-stack video,
.reels-media-stack iframe {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(18, 60, 67, 0.2);
  border: 0;
}

.reels-media-stack img {
  position: absolute;
  right: 8px;
  bottom: -10px;
  width: 48%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(18, 60, 67, 0.2);
}

.reels-note {
  position: absolute;
  left: -10px;
  top: -12px;
  background: linear-gradient(180deg, rgba(129, 200, 150, 0.9), rgba(109, 184, 135, 0.9));
  color: #0b2c30;
  padding: 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  max-width: 220px;
  box-shadow: 0 18px 40px rgba(18, 60, 67, 0.18);
}

.reels-page .panel-grid.two {
  gap: 24px;
}

.reels-page .panel-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(218, 221, 216, 0.55));
  border: 1px solid rgba(40, 120, 140, 0.2);
}

.reels-page .panel-card h3 {
  font-size: 1.25rem;
}

.reels-page .panel-card ul {
  gap: 10px;
}

.reels-page .panel-card ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}

.reels-page .panel-card--featured {
  border-color: rgba(40, 120, 140, 0.5);
}

.reels-carousel {
  position: relative;
}

.reels-carousel-stage {
  position: relative;
  height: 360px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.reels-carousel-item {
  position: absolute;
  width: min(240px, 70vw);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 30px 70px rgba(18, 60, 67, 0.25);
  transform-style: preserve-3d;
  animation: reels-3d 18s infinite;
  animation-delay: calc((var(--i) - 1) * -3.6s);
}

.reels-carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reels-carousel-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

@keyframes reels-3d {
  0% {
    transform: translateX(0) translateZ(140px) scale(1);
    opacity: 1;
    z-index: 3;
  }
  20% {
    transform: translateX(160px) translateZ(0) scale(0.86) rotateY(-8deg);
    opacity: 0.7;
    z-index: 2;
  }
  40% {
    transform: translateX(320px) translateZ(-160px) scale(0.7) rotateY(-12deg);
    opacity: 0.35;
    z-index: 1;
  }
  60% {
    transform: translateX(-320px) translateZ(-160px) scale(0.7) rotateY(12deg);
    opacity: 0.35;
    z-index: 1;
  }
  80% {
    transform: translateX(-160px) translateZ(0) scale(0.86) rotateY(8deg);
    opacity: 0.7;
    z-index: 2;
  }
  100% {
    transform: translateX(0) translateZ(140px) scale(1);
    opacity: 1;
    z-index: 3;
  }
}

@media (max-width: 720px) {
  .reels-carousel-stage {
    height: 300px;
  }

  .reels-carousel-item {
    width: min(200px, 80vw);
  }
}

@media (max-width: 720px) {
  .reels-hero {
    padding: 70px 0 50px;
  }

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

  .reels-hero-media {
    order: -1;
  }

  .reels-hero-video {
    width: min(280px, 80vw);
    height: 440px;
  }

  .reels-hero-orb {
    right: -20px;
  }

  .reels-media-stack {
    min-height: auto;
  }

  .reels-media-stack video {
    height: 240px;
  }

  .reels-media-stack img {
    position: relative;
    width: 100%;
    height: 200px;
    right: 0;
    bottom: 0;
    border-width: 4px;
  }

  .reels-note {
    position: relative;
    left: 0;
    top: 0;
    max-width: 100%;
  }

  .reels-page .service-hero-grid {
    gap: 20px;
  }

  .reels-page .panel-grid.two {
    grid-template-columns: 1fr;
  }
}

.branding-benefits .benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.branding-benefits .benefit-card {
  background: linear-gradient(160deg, rgba(40, 120, 140, 0.12), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(40, 120, 140, 0.25);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(18, 60, 67, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.branding-benefits .benefit-card:nth-child(2n) {
  background: linear-gradient(160deg, rgba(40, 120, 140, 0.2), rgba(255, 255, 255, 0.9));
}

.branding-benefits .benefit-card::before {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(40, 120, 140, 0.12);
  margin-bottom: 10px;
}

.branding-benefits .benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(40, 120, 140, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.branding-benefits .benefit-title {
  background: linear-gradient(120deg, rgba(40, 120, 140, 0.9), rgba(18, 60, 67, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.branding-benefits .benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.branding-benefits .benefit-card p {
  font-size: 0.95rem;
  color: var(--text);
}

.branding-benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(18, 60, 67, 0.18);
  border-color: rgba(40, 120, 140, 0.4);
}

.branding-benefits .benefit-card:hover::after {
  opacity: 1;
}

@media (max-width: 720px) {
  .branding-benefits .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.service-section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(42, 111, 119, 0.08), transparent 55%);
  pointer-events: none;
}

.panel-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 200;
}

.whatsapp-fab span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(12, 50, 56, 0.2);
}

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

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

.section-cover {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-cover::before,
.section-cover::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(233, 255, 246, 0.12);
}

.section-cover::before {
  left: -120px;
  top: -60px;
}

.section-cover::after {
  right: -120px;
  bottom: -90px;
}

.cover-content {
  display: flex;
  justify-content: center;
}

.cover-content h1 {
  display: grid;
  gap: 12px;
  text-align: center;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  text-transform: lowercase;
}

.cover-content small {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: none;
}

.section {
  padding: 90px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-heading p {
  color: var(--text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.service-panel {
  background: rgba(233, 255, 246, 0.4);
}

.service-panel.alt {
  background: rgba(15, 90, 99, 0.06);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.service-box {
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(11, 44, 48, 0.08);
  display: grid;
  gap: 16px;
}

.service-box img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.service-box h3 {
  font-size: 1.2rem;
}

.service-box ul {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.service-box ul li::before {
  content: "• ";
  color: var(--primary);
  font-weight: 700;
}

.service-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-chips a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.panel-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.panel-images img {
  border-radius: 18px;
  height: 180px;
  object-fit: cover;
}

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

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

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

.panel-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.panel-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.panel-card ul {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.panel-card ul li::before {
  content: "• ";
  color: var(--primary);
  font-weight: 700;
}

.cta-final {
  background: linear-gradient(140deg, var(--bg-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
}

.cta-final-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 40px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.cta-final-card p {
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
  text-align: center;
  justify-items: center;
  justify-content: center;
}

.footer-grid h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-grid ul {
  display: grid;
  gap: 6px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.footer-socials--inline {
  margin-top: 0;
  margin-left: 12px;
  align-self: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

  .hero-landing-grid,
  .about-grid,
  .section-heading,
  .choose-grid,
  .contact-row,
  .service-hero-grid,
  .service-section-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .phone-stack {
    height: 420px;
  }

  .social-flow-cards {
    grid-template-columns: 1fr;
  }

  .social-bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "center"
      "right";
  }

  .bento-text {
    grid-area: center;
  }

  .media-more-grid {
    column-count: 2;
  }

  .hero-landing-visual img,
  .video-card img,
  .choose-media img,
  .service-hero-grid img,
  .service-section-grid img,
  .service-section-grid video {
    height: 320px;
  }

  .service-hero-grid img.hero-portrait {
    height: 360px;
  }

  .phone-frame {
    width: min(220px, 70%);
  }

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

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

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

  .social-flow-grid {
    grid-template-columns: 1fr;
  }

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

  .social-bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-text {
    grid-column: span 1;
  }

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

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

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


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

  .media-stack .media-secondary {
    width: 70%;
    left: 0;
    bottom: -6px;
  }

  .glow-frame video {
    height: 320px;
  }
}

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

  .hero-landing {
    padding: 56px 0 40px;
  }

  .hero-landing-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-landing-visual {
    order: -1;
  }

  .hero-landing-content {
    order: 1;
  }

  .hero-marquee-track {
    margin-top: 12%;
  }

  .hero-logo.logo-plain {
    display: none;
  }

  .hero-landing-badge {
    width: 110px;
    height: 110px;
  }

  .contact-card {
    padding: 24px;
  }

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

  .media-more-grid {
    column-count: 3;
  }

  .case-album {
    grid-template-columns: 1fr;
  }

  .case-album img:nth-child(1),
  .case-album img:nth-child(4),
  .case-album img:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }


  .case-sections {
    grid-template-columns: 1fr;
  }

  .case-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags span {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

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

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

  .media-stack {
    min-height: auto;
    gap: 12px;
  }

  .media-stack .media-secondary {
    position: relative;
    width: 100%;
    height: 200px;
    left: 0;
    bottom: 0;
    border: none;
  }

  .glow-frame video {
    height: 240px;
  }

  .service-hero-grid img.hero-portrait {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .video-track {
    overflow-x: auto;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  transition: opacity 1.4s ease, transform 1.4s ease, filter 1.4s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
