*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --surface: rgba(135, 206, 250, 0.08);
  --card: rgba(135, 206, 250, 0.12);
  --border: rgba(135, 206, 250, 0.2);
  --text: #1a1a1a;
  --muted: rgba(26, 26, 26, 0.65);
  --primary: #87ceeb;
  --primary-dark: #5ba3d0;
  --accent: #87ceeb;
  --blue: #87ceeb;
  --amber: #87ceeb;
  --gradient: linear-gradient(120deg, #87ceeb 0%, #5ba3d0 100%);
  --gradient-soft: linear-gradient(140deg, rgba(135, 206, 250, 0.15), rgba(91, 163, 208, 0.08));
  --grid-color: rgba(135, 206, 250, 0.1);
  --shadow-soft: 0 25px 60px rgba(135, 206, 250, 0.15);
  --noise: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="180" height="180" viewBox="0 0 180 180"%3E%3Crect fill="%23ffffff" width="180" height="180"/%3E%3Cg fill-opacity="0.08"%3E%3Ccircle fill="%23000000" cx="10" cy="10" r="1"/%3E%3Ccircle fill="%23000000" cx="40" cy="70" r="1"/%3E%3Ccircle fill="%23000000" cx="90" cy="90" r="1"/%3E%3Ccircle fill="%23000000" cx="140" cy="150" r="1"/%3E%3C/g%3E%3C/svg%3E');
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  background: rgba(135, 206, 250, 0.2);
  z-index: 120;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transform-origin: left;
}

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

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

.bg-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(135, 206, 250, 0.15), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(91, 163, 208, 0.12), transparent 45%),
              radial-gradient(circle at 40% 80%, rgba(135, 206, 250, 0.1), transparent 55%);
  z-index: -2;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.3;
  z-index: -1;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.9), transparent 65%);
}

.texture {
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.6;
  mix-blend-mode: soft-light;
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(135, 206, 250, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

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

.desktop-only {
  display: inline-flex;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.brand__text small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--muted);
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
  background: rgba(135, 206, 250, 0.1);
}

.link-ghost {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(135, 206, 250, 0.3);
}

.btn--ghost {
  border-color: rgba(135, 206, 250, 0.4);
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(135, 206, 250, 0.4);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 110;
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

body.menu-open {
  overflow: hidden;
}

.nav-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(135, 206, 250, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  z-index: 111;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-drawer__close:hover {
  background: rgba(135, 206, 250, 0.1);
  border-color: rgba(135, 206, 250, 0.6);
  transform: scale(1.1);
}

.nav-drawer__close:active {
  transform: scale(0.95);
}

.nav-drawer__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 2px;
}

.nav-drawer__close span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-drawer__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.nav-drawer__close:hover span {
  background: var(--primary);
}

.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-drawer__inner a {
  font-size: 1.3rem;
  filter: none !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-drawer__inner a:hover {
  color: var(--primary);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

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

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin: 16px 0;
  line-height: 1.1;
  font-style: italic;
  font-weight: 600;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.hero__meta-item {
  border: 1px solid rgba(135, 206, 250, 0.3);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  min-height: 110px;
}

.hero__meta-item span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero__meta-item strong {
  display: block;
  font-size: 1.1rem;
  margin-top: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(135, 206, 250, 0.3);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(12px);
  min-height: 140px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-media {
  position: relative;
}

.media-stack {
  position: relative;
  padding: 40px;
}

.media-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(135, 206, 250, 0.05);
  box-shadow: 0 25px 80px rgba(135, 206, 250, 0.15);
}

.media-card--secondary {
  margin-top: 28px;
  max-width: 320px;
  margin-left: auto;
}

.media-label {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
}

.floating-badge {
  position: absolute;
  top: 10%;
  right: 4%;
  background: #ffffff;
  border: 1px solid rgba(135, 206, 250, 0.4);
  border-radius: 16px;
  padding: 12px 16px;
  text-align: right;
  box-shadow: 0 10px 40px rgba(135, 206, 250, 0.2);
}

.hero-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-chip {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(135, 206, 250, 0.4);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(135, 206, 250, 0.2);
}

.floating-chip:nth-child(1) { top: 5%; left: 4%; }
.floating-chip:nth-child(2) { top: 45%; right: 5%; }
.floating-chip:nth-child(3) { bottom: 8%; left: 15%; }

.orb {
  position: absolute;
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  z-index: -1;
}

.orb--one {
  background: #87ceeb;
  top: 0;
  left: 10%;
}

.orb--two {
  background: #5ba3d0;
  right: 8%;
  bottom: 10%;
}

.hero-video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-mesh span {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(135, 206, 250, 0.3), transparent);
  transform-origin: top;
}

.showreel {
  padding: 50px 0;
}

.showreel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.showreel__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.showreel__list li {
  position: relative;
  padding-left: 26px;
}

.showreel__list li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  background: var(--gradient);
}

.showreel__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.showreel__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showreel__frame {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(135, 206, 250, 0.05);
  position: relative;
}

.showreel__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.showreel__tag {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.showreel__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.showreel__metrics article {
  border-radius: 20px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.showreel__metrics strong {
  display: block;
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}

.ribbon {
  border-top: 1px solid rgba(135, 206, 250, 0.2);
  border-bottom: 1px solid rgba(135, 206, 250, 0.2);
  padding: 20px 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  background: rgba(135, 206, 250, 0.05);
  overflow: hidden;
}

.section {
  padding: 50px 0;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.section__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.split-panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(135, 206, 250, 0.05);
  box-shadow: var(--shadow-soft);
}

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

.panel-note {
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.values-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.clients {
  padding-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 26s linear infinite;
}

.client-card {
  min-width: 260px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.client-card h3 {
  margin: 10px 0 0;
}

.client-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
}

.service-card li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(135, 206, 250, 0.15);
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--muted);
}

.chip--blue {
  color: #ffffff;
  background: rgba(135, 206, 250, 0.9);
}

.chip--amber {
  color: #ffffff;
  background: rgba(135, 206, 250, 0.9);
}

.chip--translucent {
  border: 1px solid rgba(135, 206, 250, 0.4);
}

.case-grid .cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.case-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
}

.case-card img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: contain;
  display: block;
}

.capabilities {
  position: relative;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.capability-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.capability-card li {
  padding-left: 18px;
  position: relative;
}

.capability-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
}

.process-rail {
  margin-top: 48px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(135, 206, 250, 0.2);
  background: rgba(135, 206, 250, 0.05);
  position: relative;
  overflow: hidden;
}

.process-rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.4;
  filter: blur(80px);
  transform: translateY(30%);
}

.process-rail__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 1;
}

.process-node {
  position: relative;
  flex: 1;
  height: 3px;
  background: rgba(135, 206, 250, 0.3);
  transform-origin: left;
}

.process-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(135, 206, 250, 0.6);
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.process-node::after {
  content: attr(data-label);
  position: absolute;
  top: -32px;
  left: 0;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.magnetic {
  will-change: transform;
}

.cta-panel {
  padding: 60px 0;
}

.cta-panel__inner {
  border-radius: 32px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(135, 206, 250, 0.08);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-panel__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(135, 206, 250, 0.2);
  background: rgba(248, 249, 250, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  align-items: center;
}

.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

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

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

/* Serviços page */
.service-hero {
  padding: 80px 0 50px;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.service-hero__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 16px 0;
  font-family: 'Space Grotesk', sans-serif;
}

.service-hero__subtitle {
  color: var(--muted);
  max-width: 560px;
}

.service-hero__panel {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(135, 206, 250, 0.3);
}

.service-hero__panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
}

.pricing-card li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.pricing-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.pricing-card.featured {
  background: rgba(135, 206, 250, 0.1);
  border-color: rgba(135, 206, 250, 0.6);
}

.process {
  background: rgba(135, 206, 250, 0.03);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.process-step {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.process-step span {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(135, 206, 250, 0.3);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial p {
  font-size: 1rem;
  color: var(--muted);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
}

.testimonial__stars {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.testimonial__stars span {
  font-size: 0.85rem;
  letter-spacing: normal;
  color: var(--muted);
}

.alt .site-header {
  background: rgba(255, 255, 255, 0.95);
}

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

  .desktop-only {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-cta,
  .cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .media-stack {
    padding: 0;
  }

  .hero-video {
    height: 280px;
  }

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

  .cta-panel__inner {
    padding: 24px;
    flex-direction: column;
  }

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

  .floating-chip {
    position: static;
    display: inline-flex;
    margin: 6px;
  }

  .process-rail {
    padding: 20px;
  }

  .process-node::after {
    top: 16px;
    transform: translateY(0);
  }

  .hero {
    padding: 60px 0 40px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-grid,
  .split-grid,
  .showreel__grid,
  .service-hero__grid {
    gap: 24px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .client-card {
    min-width: 200px;
  }

  .cards-grid,
  .pricing-grid,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .clients-marquee {
    padding: 15px 0;
  }

  .marquee-track {
    animation: marquee 15s linear infinite;
  }

  .service-hero__panel {
    display: none;
  }

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