:root {
  --page: #f6f8fb;
  --page-2: #eef3f8;
  --ink: #0b1220;
  --ink-2: #172033;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(15, 23, 42, 0.12);
  --border: var(--line);
  --surface: #ffffff;
  --primary: var(--blue);
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.66);
  --amber: #d29219;
  --amber-strong: #e8a020;
  --blue: #203a8f;
  --cyan: #0c9ec0;
  --serif: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --max: 1180px;
  --shadow: 0 24px 90px rgba(15, 23, 42, 0.13);
  --glow: 0 22px 70px rgba(12, 158, 192, 0.16), 0 18px 44px rgba(210, 146, 25, 0.13);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 10% 6%, rgba(12, 158, 192, 0.14), transparent 31rem),
    radial-gradient(circle at 88% 12%, rgba(210, 146, 25, 0.18), transparent 32rem),
    radial-gradient(circle at 74% 86%, rgba(32, 58, 143, 0.1), transparent 34rem),
    linear-gradient(180deg, #fbfcff 0%, var(--page) 44%, #ffffff 100%);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  background-attachment: fixed;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--amber));
  z-index: 1000;
  transition: width 100ms ease-out;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 3px solid rgba(12, 158, 192, 0.48);
  outline-offset: 4px;
}

.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;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(22px) saturate(1.32);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.06);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.78;
  background:
    radial-gradient(circle at var(--nav-x, 50%) var(--nav-y, 50%), rgba(12, 158, 192, 0.18), transparent 18rem),
    linear-gradient(90deg, transparent, rgba(210, 146, 25, 0.13), transparent);
  transform: translateX(-12%);
  animation: navSheen 8s ease-in-out infinite;
}

.nav.scrolled {
  border-bottom-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.12);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  transition: transform 220ms ease;
}

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

.brand-symbol {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(32, 58, 143, 0.18));
  transition: transform 360ms ease, filter 360ms ease;
}

.logo:hover .brand-symbol {
  transform: rotate(-4deg) scale(1.06);
  filter: drop-shadow(0 14px 22px rgba(210, 146, 25, 0.24));
}

.logo-mark {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
}

.logo-text {
  color: rgba(11, 18, 32, 0.68);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 12px 32px rgba(15, 23, 42, 0.05);
  color: rgba(11, 18, 32, 0.68);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 300ms ease, transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
}

.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-links a::before {
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(12, 158, 192, 0.12), rgba(210, 146, 25, 0.14)),
    rgba(255, 255, 255, 0.48);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 300ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a::after {
  left: 50%;
  bottom: 5px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links:hover a:not(:hover) { opacity: 0.5; }
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  transform: translateY(-3px);
}
.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  min-height: 42px;
  padding: 0 18px;
  border-color: rgba(12, 158, 192, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: relative;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 5px; }
.nav.open .menu-toggle span { transform: rotate(45deg); }
.nav.open .menu-toggle span::before { opacity: 0; }
.nav.open .menu-toggle span::after { top: -2px; transform: rotate(-90deg); }

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(210, 146, 25, 0.44);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), background 200ms ease, border-color 200ms ease, box-shadow 300ms cubic-bezier(0.34, 1.56, 0.64, 1), color 200ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #16295a 0%, var(--blue) 46%, var(--amber) 100%);
  box-shadow: 0 16px 44px rgba(32, 58, 143, 0.18), 0 12px 34px rgba(210, 146, 25, 0.17);
}
.btn-primary:hover { filter: saturate(1.08); box-shadow: 0 20px 48px rgba(32, 58, 143, 0.22), 0 16px 38px rgba(210, 146, 25, 0.22); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover {
  border-color: rgba(12, 158, 192, 0.42);
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  padding: 120px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-carousel,
.hero-bg-carousel span {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-carousel {
  overflow: hidden;
  background: #fbfcff;
}

.hero-bg-carousel span {
  opacity: 0;
  background-position: 72% center;
  background-size: cover;
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
  animation: heroBgCarousel 40s ease-in-out infinite;
}

.hero-bg-carousel span:nth-child(1) { opacity: 1; background-position: 74% center; }
.hero-bg-carousel span:nth-child(2) { animation-delay: 8s; background-position: 76% 54%; }
.hero-bg-carousel span:nth-child(3) { animation-delay: 16s; background-position: 70% 48%; }
.hero-bg-carousel span:nth-child(4) { animation-delay: 24s; background-position: 78% center; }
.hero-bg-carousel span:nth-child(5) { animation-delay: 32s; background-position: 80% 52%; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 38%, rgba(251, 252, 255, 0.98) 0 18rem, rgba(251, 252, 255, 0.74) 30rem, transparent 48rem),
    linear-gradient(90deg, rgba(251, 252, 255, 0.96) 0%, rgba(251, 252, 255, 0.78) 39%, rgba(251, 252, 255, 0.34) 63%, rgba(251, 252, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.68) 0%, rgba(251, 252, 255, 0.2) 50%, rgba(246, 248, 251, 0.86) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image: radial-gradient(rgba(15, 23, 42, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 55% 36%, #000 0%, transparent 64%);
}

@keyframes heroBgCarousel {
  0%, 16% { opacity: 1; transform: scale(1.035); }
  21%, 95% { opacity: 0; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1.035); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(11, 18, 32, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.rule {
  content: "";
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
}

h1, h2, h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.05;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  overflow-wrap: break-word;
}

.contact-card h1,
.contact-card h2 {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1.1;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
}

.form-label {
  color: rgba(11, 18, 32, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field:focus {
  border-color: rgba(12, 158, 192, 0.64);
  box-shadow: 0 0 0 4px rgba(12, 158, 192, 0.12);
  outline: 0;
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

h3 { font-size: 1.65rem; line-height: 1.12; }

.lead {
  max-width: 740px;
  margin: 26px 0 0;
  color: rgba(11, 18, 32, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

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

.visual-card {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}

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

.visual-carousel {
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  min-height: 0;
  justify-self: start;
}

.visual-carousel img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  animation: visualCarousel 20s ease-in-out infinite;
}

.visual-carousel img:nth-of-type(1) { opacity: 1; }
.visual-carousel img:nth-of-type(2) { animation-delay: 5s; }
.visual-carousel img:nth-of-type(3) { animation-delay: 10s; }
.visual-carousel img:nth-of-type(4) { animation-delay: 15s; }

.visual-carousel.is-interactive img,
.visual-carousel.is-interactive .visual-carousel-captions span {
  animation: none;
}

.visual-carousel.is-interactive img {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 260ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-carousel.is-interactive img.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes visualCarousel {
  0%, 22% { opacity: 1; }
  28%, 94% { opacity: 0; }
  100% { opacity: 1; }
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(11, 18, 32, 0.72));
}

.visual-carousel::after {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.04) 0%, rgba(11, 18, 32, 0.1) 46%, rgba(11, 18, 32, 0.9) 100%);
}

.visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 160, 32, 0.62);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.visual-carousel-captions {
  min-height: 100px;
}

.visual-carousel-captions span {
  position: absolute;
  inset: 16px 0 0;
  display: block;
  opacity: 0;
  animation: visualCaptionCarousel 20s ease-in-out infinite;
}

.visual-carousel-captions span:first-child { opacity: 1; }
.visual-carousel-captions span:nth-child(2) { animation-delay: 5s; }
.visual-carousel-captions span:nth-child(3) { animation-delay: 10s; }
.visual-carousel-captions span:nth-child(4) { animation-delay: 15s; }

.visual-carousel.is-interactive .visual-carousel-captions span {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-carousel.is-interactive .visual-carousel-captions span.active {
  opacity: 1;
  transform: translateY(0);
}

.visual-carousel-captions strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.1;
}

@keyframes visualCaptionCarousel {
  0%, 22% { opacity: 1; transform: translateY(0); }
  28%, 94% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-logo-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 540px);
  margin: 0;
  min-height: 470px;
  isolation: isolate;
  background: transparent;
  transform: translateX(min(3vw, 38px));
}

.hero-logo-visual::before {
  display: none;
}

.hero-logo-visual::after {
  display: none;
}

.logo-orbit {
  position: absolute;
  left: 50%;
  top: 43%;
  z-index: 2;
  width: min(82%, 390px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.orbit-line {
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(88, 220, 240, 0.36);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(51, 214, 238, 0.12),
    inset 0 0 28px rgba(51, 214, 238, 0.08);
}

.orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
  filter: drop-shadow(0 0 16px currentColor);
  transform:
    translate(-50%, -50%)
    rotate(var(--dot-start))
    translateX(min(42vw, 205px));
  animation: dotOrbit 12s linear infinite;
}

.orbit-dot-blue {
  color: #1599ff;
  --dot-start: 205deg;
}

.orbit-dot-cyan {
  color: #33d9e9;
  --dot-start: 85deg;
}

.orbit-dot-gold {
  color: #e8a020;
  --dot-start: 325deg;
}

.logo-medallion {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(79.2%, 360px);
  aspect-ratio: 1;
  margin-bottom: 72px;
  background: transparent;
  animation: logoFloat 5s ease-in-out infinite;
}

.logo-medallion img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(32, 58, 143, 0.18));
}

section { padding: 92px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.rule { display: block; margin-bottom: 20px; }
.kicker {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.copy {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 42px; align-items: start; }
.process-section {
  position: relative;
}

.process-section .split {
  align-items: center;
  gap: clamp(42px, 7vw, 78px);
}

.process-content {
  max-width: 620px;
}

.process-content h2 {
  max-width: 620px;
}

.process-content .copy {
  max-width: 620px;
  font-size: 1.05rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.process-steps button {
  display: grid;
  gap: 6px;
  min-height: 76px;
  padding: 14px 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.process-steps button:hover,
.process-steps button:focus-visible,
.process-steps button.active {
  transform: translateY(-4px);
  border-color: rgba(210, 146, 25, 0.48);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--glow), 0 18px 42px rgba(15, 23, 42, 0.1);
}

.process-steps button.active {
  color: var(--blue);
}

.process-steps b {
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

@media (min-width: 721px) {
  .split h1 { font-size: clamp(2.4rem, 4.6vw, 4.4rem); }
}

.card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    var(--card);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(12, 158, 192, 0.12), transparent 42%, rgba(210, 146, 25, 0.12));
  opacity: 0;
  transition: opacity 300ms ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(210, 146, 25, 0.42);
  box-shadow: var(--glow), 0 26px 70px rgba(15, 23, 42, 0.12);
}
.card:hover::before { opacity: 1; }

.parallax-bg {
  transform: translateY(var(--p-y, 0));
  transition: transform 100ms linear;
}

.card p { color: var(--muted); line-height: 1.68; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(32, 58, 143, 0.08), rgba(210, 146, 25, 0.08));
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.label {
  display: block;
  margin-top: 8px;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
}

.stat-strip, .pricing-grid, .timeline-grid {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.stat-strip { grid-template-columns: repeat(4, 1fr); margin-top: 54px; }
.stat, .price-item, .year {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.stat i { color: var(--amber); font-size: 1.6rem; margin-bottom: 12px; display: block; }
.stat strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.stat span, .price-item span, .year p { color: var(--muted); }

.timeline-grid { grid-template-columns: repeat(6, 1fr); }
.pricing-grid { grid-template-columns: repeat(5, 1fr); }
.price-item b, .year strong { display: block; margin-top: 14px; color: var(--text); }
.price-item span, .year strong { color: var(--amber); font-weight: 900; }

.tag-cloud, .logo-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag, .logo-pill, .value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: rgba(11, 18, 32, 0.76);
  font-weight: 800;
}

.tag i, .logo-pill i, .value i { color: var(--amber); }

.logo-pill {
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.logo-pill:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px rgba(32, 58, 143, 0.25);
}

/* Interactive Values Section */
.values-interactive {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

button.value {
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

button.value:hover, button.value.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(32, 58, 143, 0.22);
}

button.value i {
  transition: color 300ms ease;
}

button.value:hover i, button.value.active i {
  color: #ffffff;
}

.values-visual-container {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 44px;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.value-visual {
  position: absolute;
  top: 50%;
  left: 44px;
  right: 44px;
  transform: translateY(-42%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1), visibility 500ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.value-visual.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.value-visual i {
  font-size: 4.8rem;
  opacity: 0.96;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 12px 24px rgba(12, 158, 192, 0.16));
}

.value-visual h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.value-visual p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  gap: 12px;
}

.tool-card {
  display: grid;
  place-items: center;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.tool-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(12, 158, 192, 0.32);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--glow);
}

.tool-card img { max-width: 72px; max-height: 46px; object-fit: contain; }

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: logoScroll 50s linear infinite;
  will-change: transform;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-slide {
  flex-shrink: 0;
  width: 280px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  max-width: 240px;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 300ms ease;
}

.logo-slide:hover img {
  transform: scale(1.1);
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-montage {
  margin-top: 40px;
  width: 100%;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  overflow: hidden;
}

.play-logo {
  width: min(360px, 78vw);
  margin-bottom: 26px;
  filter: drop-shadow(0 18px 26px rgba(54, 91, 190, 0.16));
}

.play-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(21, 172, 226, 0.16), transparent 26rem),
    radial-gradient(circle at 78% 18%, rgba(210, 146, 25, 0.15), transparent 26rem);
}

.gallery-section {
  position: relative;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 300ms ease;
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(32, 58, 143, 0.2);
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 114, 206, 0.2);
}

.carousel-container {
  width: 100%;
  padding: 10px 0 40px;
  margin-top: 20px;
  overflow: hidden;
}

.gallery-carousel {
  display: flex;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-img {
  flex: 0 0 calc(80vw - 40px);
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  transition: transform 400ms ease, box-shadow 400ms ease, opacity 300ms ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.carousel-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.testimonial {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.testimonial p { margin: 0; color: rgba(11, 18, 32, 0.72); line-height: 1.7; }
.testimonial strong { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--amber); }

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: center;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 76% 24%, rgba(210, 146, 25, 0.18), transparent 20rem),
    radial-gradient(circle at 16% 18%, rgba(12, 158, 192, 0.12), transparent 22rem),
    rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: var(--glow), var(--shadow);
}

.contact-list { display: grid; gap: 16px; }
.contact-list a, .contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: rgba(11, 18, 32, 0.76);
}
.contact-list b { display: flex; align-items: center; gap: 8px; color: var(--text); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.84rem; }

footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: start; }
.footer-links, .footer-contact, .footer-social { display: grid; gap: 10px; color: var(--muted); font-size: 0.94rem; }
.footer-links a:hover, .footer-contact a:hover, .footer-social a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 16px; margin-top: 10px; }
.footer-social a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  background: rgba(15, 23, 42, 0.05); 
  color: var(--blue); 
  font-size: 1.2rem; 
  transition: all 300ms ease; 
}
.footer-social a:hover { 
  background: var(--blue); 
  color: #fff; 
  transform: translateY(-3px); 
  box-shadow: 0 8px 20px rgba(32, 58, 143, 0.2);
}
.copyright { margin-top: 34px; color: rgba(11, 18, 32, 0.44); font-size: 0.9rem; }

.reveal {
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.on-scroll-scale {
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.on-scroll-scale.visible {
  transform: scale(1.05);
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.35), 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, background 200ms ease, color 200ms ease;
  isolation: isolate;
  overflow: hidden;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.02);
  background: #20bd5a;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.45), 0 6px 18px rgba(15, 23, 42, 0.12);
  color: #ffffff;
}

.floating-whatsapp i {
  font-size: 1.5rem;
}

@keyframes navSheen {
  0%, 100% { transform: translateX(-12%); opacity: 0.64; }
  50% { transform: translateX(12%); opacity: 0.92; }
}

@keyframes orbitSpin {
  to { rotate: 360deg; }
}

@keyframes dotOrbit {
  from {
    transform:
      translate(-50%, -50%)
      rotate(var(--dot-start))
      translateX(min(42vw, 205px));
  }
  to {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--dot-start) + 360deg))
      translateX(min(42vw, 205px));
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.015); }
}

@keyframes logoFieldShift {
  0%, 100% { transform: rotate(0deg) scale(1.02); opacity: 0.66; }
  50% { transform: rotate(4deg) scale(1.08); opacity: 0.92; }
}

@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 12px; /* Increased for better touch separation */
    padding: 24px; /* Increased padding */
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98); /* Less transparent for readability */
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px) scale(0.96);
    transform-origin: top;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-links a { 
    padding: 16px 20px; /* Larger touch area */
    font-size: 1.1rem; 
    border-radius: 12px;
    background: rgba(12, 158, 192, 0.04);
  }
  .menu-toggle { 
    display: block; 
    width: 48px; /* Standard touch size */
    height: 48px; 
  }
  .nav-cta,
  .nav-login { display: none; }
  .hero-grid, .section-head, .split, .contact-card { grid-template-columns: 1fr; gap: 32px; }
  .section-head { text-align: center; align-items: center; }
  .section-head p.copy { margin: 0 auto; text-align: center; }
  .hero-bg-carousel span,
  .hero-bg-carousel span:nth-child(n) {
    background-position: center;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 252, 255, 0.88) 0%, rgba(251, 252, 255, 0.66) 52%, rgba(246, 248, 251, 0.92) 100%),
      linear-gradient(90deg, rgba(251, 252, 255, 0.82), rgba(251, 252, 255, 0.36));
  }
  .hero-logo-visual {
    justify-self: center;
    width: min(100%, 460px);
    transform: none;
  }
  .visual-carousel { justify-self: center; }
  .process-content { max-width: none; }
  .grid-3 { grid-template-columns: 1fr; } /* Stack cards on tablet too for better readability */
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-4, .pricing-grid, .timeline-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .visual-card { min-height: 320px; }
  .hero-logo-visual { min-height: 390px; }
  .logo-medallion { width: min(74.4%, 336px); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, var(--max)); }
  .hero { padding: 72px 0 40px; }
  h1 { font-size: clamp(2rem, 11vw, 3.6rem); line-height: 1.1; hyphens: auto; }
  h2 { font-size: clamp(1.65rem, 8vw, 2.6rem); line-height: 1.2; }
  section { padding: 60px 0; }
  .grid-3, .grid-4, .pricing-grid, .timeline-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .tag-cloud, .logo-cloud { justify-content: center; }
  .visual-card { min-height: 260px; }
  .hero-logo-visual {
    min-height: 340px;
    border-radius: 14px;
  }
  .logo-orbit { width: min(86%, 300px); }
  .logo-medallion {
    width: min(69.6%, 252px);
    margin-bottom: 58px;
  }
  .orbit-dot { width: 13px; height: 13px; }
  .nav-inner { height: 64px; }
  .nav-links { top: 64px; }
  .brand-symbol { width: 48px; height: 48px; }
  .logo-mark { font-size: 1.8rem; }
  .logo-text { display: none; }
  .nav-inner { gap: 10px; }
  .nav-actions { margin-left: auto; }
  .contact-card, .card { padding: 24px; }
  .value-visual { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .value-visual p { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; margin-top: 16px; }
  .contact-list a, .contact-list span { flex-direction: column; align-items: flex-start; gap: 4px; padding-bottom: 20px; }
  .contact-list b { margin-bottom: 4px; }
  .actions { flex-direction: column; width: 100%; gap: 12px; margin-top: 24px; }
  .actions .btn { width: 100%; min-height: 54px; justify-content: center; font-size: 1rem; }
  .visual-carousel {
    width: min(100%, 390px);
  }
  .visual-carousel-captions {
    min-height: 118px;
  }
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .floating-whatsapp { 
    bottom: 20px; 
    right: 20px; 
    padding: 12px 20px; 
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  }
  .gallery-img.wide { grid-column: span 1; }
  .gallery-img.tall { grid-row: span 1; height: 260px; }
  
  /* Gallery Carousel Fixes */
  .carousel-img {
    height: 280px !important;
    flex: 0 0 calc(100% - 20px) !important;
  }
  .carousel-controls { justify-content: center; margin-top: 16px; }
  
  /* Mobile Logo Slider Fix */
  .client-montage {
    margin-top: 24px;
    padding: 12px 0;
  }
  .logo-slide {
    width: 140px;
    height: 70px;
  }
  .logo-slide img {
    max-width: 115px;
    max-height: 57px;
  }
  .logo-track {
    gap: 24px;
    animation-duration: 35s;
  }
  
  /* Performance: Reduce heavy effects on mobile */
  .card, .tool-card, .nav, .contact-card, footer {
    backdrop-filter: none !important;
    background: #fff !important;
  }
  .testimonial-card.dark { background: #041c2c !important; }
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  content-visibility: auto; /* Performance boost for offscreen images */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .visual-carousel img {
    animation: none !important;
    opacity: 0;
  }
  .visual-carousel img:first-of-type {
    opacity: 1;
  }
  .visual-carousel-captions span {
    animation: none !important;
    opacity: 0;
  }
  .visual-carousel-captions span:first-child {
    opacity: 1;
  }
  .hero-bg-carousel span {
    animation: none !important;
    opacity: 0;
  }
  .hero-bg-carousel span:first-child {
    opacity: 1;
  }
}

/* Testimonials Carousel */
.testimonials-slider-section { 
  background: rgba(12, 158, 192, 0.02); 
  padding: 100px 0; 
  overflow: hidden;
}



.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 100px rgba(15, 23, 42, 0.18);
}

.testimonial-card.dark {
  background: #041c2c;
  color: #fff;
  border-left: 6px solid var(--cyan);
}

.testimonial-card .type-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}

.testimonial-card .quote-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 30px;
  flex-grow: 1;
}

.testimonial-card.dark .quote-text {
  color: rgba(255,255,255,0.9);
}

.testimonial-card .author-info { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding-top: 24px;
  border-top: 1px solid var(--line); 
}

.testimonial-card.dark .author-info {
  border-top-color: rgba(255,255,255,0.1);
}

.testimonial-card .author-avatar { 
  width: 52px; 
  height: 52px; 
  border-radius: 50%; 
  background: rgba(12, 158, 192, 0.1); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.3rem; 
  color: var(--cyan); 
  border: 2px solid var(--cyan);
}

.testimonial-card.dark .author-avatar {
  background: rgba(12, 158, 192, 0.2);
}

.testimonial-card h4 { 
  font-size: 1.15rem; 
  margin: 0;
  color: var(--text);
}

.testimonial-card.dark h4 { color: #fff; }

.testimonial-card span { 
  display: block; 
  color: var(--muted); 
  font-size: 0.9rem; 
  margin: 2px 0;
}

.testimonial-card.dark span { color: var(--cyan); }

.testimonial-card small { 
  color: rgba(0,0,0,0.4); 
  font-size: 0.8rem;
}

.testimonial-card.dark small { color: rgba(255,255,255,0.5); }

/* Testimonial Carousel */
.testimonial-carousel {
  display: flex;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel .testimonial-card {
  flex: 0 0 calc(90vw - 40px);
  max-width: 580px;
  scroll-snap-align: center;
}
@media (max-width: 720px) {
  .testimonial-carousel .testimonial-card {
    flex: 0 0 calc(100vw - 40px);
  }
}

/* FAQ Styles */
.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.faq-item p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
