:root {
  --black: #171414;
  --dark: #1f1a1a;
  --red: #be1e2d;
  --red-bright: #d4202f;
  --red-dim: #7a1220;
  --cream: #edf0da;
  --navy: #273043;
  --text: #ece8df;
  --muted: #7a7570;
  --line: rgba(237, 240, 218, 0.07);
  --surface: rgba(255, 255, 255, 0.025);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-variant-numeric: lining-nums;
  font-family: "Outfit", sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 100% 60% at 50% 0%,
      rgba(190, 30, 45, 0.42) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 60% at 0% 60%,
      rgba(190, 30, 45, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 100% 100%,
      rgba(190, 30, 45, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 40% at 50% 100%,
      rgba(60, 70, 95, 0.45) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0d0b0b 0%, #100d0d 60%, #0e0c10 100%);
}

header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}
.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.sr {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sr.sr-left {
  transform: translateX(-50px);
}
.sr.sr-right {
  transform: translateX(50px);
}
.sr.sr-scale {
  transform: scale(0.93) translateY(20px);
}
.sr.in {
  opacity: 1;
  transform: none;
}
.sr-d1 {
  transition-delay: 0.08s;
}
.sr-d2 {
  transition-delay: 0.16s;
}
.sr-d3 {
  transition-delay: 0.24s;
}
.sr-d4 {
  transition-delay: 0.32s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-load-d1 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.08s;
}
.hero-load-d2 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.18s;
}
.hero-load-d3 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.28s;
}
.hero-load-d4 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.38s;
}

/* HEADER BASE */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  will-change: backdrop-filter, transform;

  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);

  background: rgba(13, 11, 11, 0.75);
  border-bottom: 1px solid var(--line);

  transition:
    padding 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.hidden {
  transform: translateY(-100%);
}

/* HEADER INNER */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.35s ease;
}

/* LOGO */
.logo-link img {
  height: 40px;
  transition: transform 0.35s ease;
}

/* SCROLLED STATE */
.site-header.scrolled {
  background: rgba(18, 16, 16, 0.95);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.site-header.scrolled .header-inner {
  padding: 10px 0;
}

.site-header.scrolled .logo-link img {
  transform: scale(0.85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(237, 240, 218, 0.6);
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main-nav a:hover {
  color: #fff;
}
.main-nav a:hover::after {
  width: 100%;
}
.btn-contact {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
}
.btn-contact:hover {
  background: var(--red-bright);
  box-shadow:
    0 0 28px rgba(190, 30, 45, 0.65),
    0 0 60px rgba(190, 30, 45, 0.25);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: rgba(190, 30, 45, 0.5);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.25s ease,
    background 0.2s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--red);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--red);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  z-index: 399;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-tray {
  margin: 0 16px;
  border-radius: 16px;
  background: rgba(18, 15, 15, 0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(190, 30, 45, 0.18);
  box-shadow:
    0 0 0 1px rgba(190, 30, 45, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.55);
  padding: 8px 0 16px;
  overflow: hidden;
}
.mobile-tray::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 20px 16px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 30, 45, 0.55),
    transparent
  );
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  gap: 2px;
}
.mobile-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(237, 240, 218, 0.65);
  padding: 13px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.mobile-nav a::after {
  content: "→";
  font-size: 0.8rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.mobile-nav a:hover {
  background: rgba(190, 30, 45, 0.08);
  color: #fff;
  padding-left: 22px;
}
.mobile-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.tray-divider {
  height: 1px;
  margin: 10px 16px;
  background: var(--line);
}
.mobile-cta {
  display: block;
  margin: 4px 8px 0;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  text-align: center;
  transition:
    background 0.2s,
    box-shadow 0.25s;
}
.mobile-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 0 24px rgba(190, 30, 45, 0.5);
}

/* BUTTONS */
.btn-primary {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow:
    0 0 40px rgba(190, 30, 45, 0.65),
    0 0 80px rgba(190, 30, 45, 0.2);
  transform: translateY(-3px);
}
.btn-primary .arrow {
  transition: transform 0.25s;
}
.btn-primary:hover .arrow {
  transform: translateX(5px);
}
.btn-ghost {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(237, 240, 218, 0.18);
  background: transparent;
  padding: 15px 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(190, 30, 45, 0.6);
  background: rgba(190, 30, 45, 0.08);
  color: #fff;
  box-shadow: 0 0 20px rgba(190, 30, 45, 0.18);
  transform: translateY(-3px);
}

/* HERO */
.hero {
  padding: 30px 0 50px;
  position: relative;
  overflow: hidden;
  background: transparent !important;
}
.hero-orb {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100vw;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(190, 30, 45, 0.3) 0%,
    rgba(190, 30, 45, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(190, 30, 45, 0.4);
  background: rgba(190, 30, 45, 0.1);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 10px var(--red),
    0 0 20px rgba(190, 30, 45, 0.5);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow:
      0 0 10px var(--red),
      0 0 20px rgba(190, 30, 45, 0.5);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 4px var(--red);
  }
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
  text-shadow: 0 0 40px rgba(190, 30, 45, 0.5);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.hero-stat {
  background: rgba(20, 18, 18, 0.9);
  padding: 20px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}
.hero-stat:hover {
  background: rgba(190, 30, 45, 0.1);
}
.hero-stat strong {
  display: block;
  font-family: "Outfit", "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: lining-nums;
}
.hero-stat strong em {
  font-style: normal;
  color: var(--red);
  font-variant-numeric: lining-nums;
}
.hero-stat small {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero-panel {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(145deg, #201818 0%, #170f0f 100%);
  border: 1px solid rgba(190, 30, 45, 0.22);
  padding: 38px 34px;
  box-shadow:
    0 0 0 1px rgba(190, 30, 45, 0.08),
    0 0 80px rgba(190, 30, 45, 0.18),
    0 32px 80px rgba(0, 0, 0, 0.6);
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.9;
}
.panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.panel-items {
  display: grid;
  gap: 10px;
}
.panel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(237, 240, 218, 0.05);
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.panel-item:hover {
  border-color: rgba(190, 30, 45, 0.45);
  background: rgba(190, 30, 45, 0.08);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(190, 30, 45, 0.15);
}
.panel-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(190, 30, 45, 0.15);
  border: 1px solid rgba(190, 30, 45, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.panel-item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.panel-item-text span {
  font-size: 0.77rem;
  color: var(--muted);
}

.red-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--red) 30%,
    var(--red) 70%,
    transparent 100%
  );
  opacity: 0.22;
  margin: 0;
}

/* SECTION SHARED */
.section {
  padding: 110px 0;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}
.section-head.text-center {
  text-align: center;
}
.section-head.text-center .section-eyebrow {
  justify-content: center;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--red);
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}
.section-head {
  margin-bottom: 64px;
}
.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(190, 30, 45, 0.12);
  border: 1px solid rgba(190, 30, 45, 0.15);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  background: #141212;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(190, 30, 45, 0.14) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  background: #191515;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 12px var(--red);
}
.service-card:hover::after {
  transform: scaleY(1);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(190, 30, 45, 0.08);
  position: absolute;
  top: 24px;
  right: 28px;
  line-height: 1;
  transition: color 0.35s;
  user-select: none;
}
.service-card:hover .service-num {
  color: rgba(190, 30, 45, 0.2);
}
.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(190, 30, 45, 0.12);
  border: 1px solid rgba(190, 30, 45, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(190, 30, 45, 0.25);
  box-shadow: 0 0 30px rgba(190, 30, 45, 0.4);
  transform: scale(1.08) rotate(-3deg);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.25s;
}
.service-card:hover h3 {
  color: var(--cream);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 38ch;
  font-weight: 300;
}
.service-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(190, 30, 45, 0.75);
  border: 1px solid rgba(190, 30, 45, 0.22);
  border-radius: 4px;
  padding: 3px 8px;
  background: rgba(190, 30, 45, 0.06);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.service-card:hover .service-tag {
  background: rgba(190, 30, 45, 0.15);
  color: #ff6b7a;
  border-color: rgba(190, 30, 45, 0.45);
}
.service-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(190, 30, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  flex-shrink: 0;
}
.service-card:hover .service-arrow-btn {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(190, 30, 45, 0.5);
}

/* HOW WE WORK */
.process-bg {
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 50%,
      rgba(190, 30, 45, 0.07) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, transparent, rgba(39, 48, 67, 0.1) 50%, transparent);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.process-step {
  background: #141212;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: background 0.35s;
}
.process-step:hover {
  background: #191414;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 10px var(--red);
}
.process-step:hover::before {
  transform: scaleX(1);
}
.step-num {
  font-family: "Outfit", "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
  font-variant-numeric: lining-nums;
}
.step-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1c1818;
  border: 2px solid rgba(190, 30, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  transition:
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
}
.process-step:hover .step-dot {
  background: rgba(190, 30, 45, 0.18);
  border-color: var(--red);
  box-shadow:
    0 0 30px rgba(190, 30, 45, 0.5),
    0 0 60px rgba(190, 30, 45, 0.2);
  transform: scale(1.1);
}
.process-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.68;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
     TESTIMONIALS — SAFE MARQUEE CAROUSEL
     No mask-image. No pseudo-element tricks.
     Edge fades = plain positioned child divs.
  ═══════════════════════════════════════════ */
.testi-section {
  padding: 110px 0 80px;
}

.testi-stage {
  position: relative; /* anchor for the two fade divs */
  overflow: hidden; /* clip the scrolling track     */
}
.testi-drag-wrapper {
  cursor: grab;
  width: 100%;
}
.testi-drag-wrapper:active {
  cursor: grabbing;
}

/* Scrolling strip */
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0 16px;
  animation: marquee 50s linear infinite;
}
.testi-stage:hover .testi-track {
  animation-play-state: paused;
}

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

/* Edge fade divs — plain elements, z-index above the track */
.testi-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  pointer-events: none;
  z-index: 2;
}
.testi-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.testi-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

/* Cards */
.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: #141212;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.testi-card:hover {
  border-color: rgba(190, 30, 45, 0.4);
  box-shadow:
    0 0 40px rgba(190, 30, 45, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}
.testi-stars {
  display: none !important;
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--red);
  font-size: 0.74rem;
  letter-spacing: 3px;
  opacity: 0.85;
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 6px;
  display: block;
}
.testi-card p {
  font-size: 0.91rem;
  color: rgba(237, 240, 218, 0.76);
  line-height: 1.76;
  margin-bottom: 20px;
  font-weight: 300;
}


.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--red-dim) 0%, var(--navy) 100%);
  border: 1px solid rgba(190, 30, 45, 0.3);
  display: none !important;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}
.testi-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.testi-author span {
  font-size: 0.73rem;
  color: var(--muted);
}

/* CTA BAND */
.section,
.cta-band,
.capabilities-section,
.process-bg {
  background: transparent !important;
}
.cta-band {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    rgba(190, 30, 45, 0.16) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-box {
  background: rgba(32, 20, 20, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(190, 30, 45, 0.28);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(190, 30, 45, 0.08),
    0 0 100px rgba(190, 30, 45, 0.18),
    0 40px 100px rgba(0, 0, 0, 0.55);
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    rgba(255, 100, 120, 0.9),
    var(--red),
    transparent
  );
  opacity: 0.9;
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(190, 30, 45, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
}
.cta-box h2 em {
  font-style: italic;
  color: var(--red);
}
.cta-box p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: rgba(13, 11, 11, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(190, 30, 45, 0.25);
  color: var(--text);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 -1px 0 rgba(190, 30, 45, 0.1),
    0 -40px 80px rgba(0, 0, 0, 0.5);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red) 30%,
    rgba(255, 100, 120, 0.9) 50%,
    var(--red) 70%,
    transparent
  );
  opacity: 0.65;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(190, 30, 45, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 26ch;
  line-height: 1.7;
  font-weight: 300;
}
.footer-col-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-nav {
  display: grid;
  gap: 13px;
}
.footer-nav a {
  font-size: 0.91rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.25s;
  display: inline-block;
}
.footer-nav a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-contact p {
  font-size: 0.91rem;
  color: var(--muted);
  font-weight: 300;
}
.footer-contact p + p {
  margin-top: 10px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(190, 30, 45, 0.5);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.6;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.6;
  text-decoration: none;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.footer-legal a:hover {
  color: var(--red);
  opacity: 1;
}
.footer-legal span {
  color: var(--muted);
  opacity: 0.3;
  font-size: 0.7rem;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .main-nav, .btn-contact { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { display: block !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 30px; }
  .hero-actions { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section, .client-marquee-section { padding: 60px 0 !important; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { padding: 25px; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: none; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .process-step { padding: 30px 20px; }
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners-stage:hover .partners-track {
  animation-play-state: paused;
}

/* ═══════════════════════════════
   MARQUEE SECTION
═══════════════════════════════ */
.client-marquee-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 50%,
      rgba(190, 30, 45, 0.08) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, transparent, rgba(39, 48, 67, 0.1) 50%, transparent);
}

.marquee-header {
  text-align: center;
  margin-bottom: 60px;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Edge Fading Mask */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
}

.marquee-group {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  min-width: 100vw;
  justify-content: space-around;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-100% - 20px));
  }
  100% {
    transform: translateX(0);
  }
}

.marquee-row.right-to-left .marquee-group {
  animation: scrollLeft 90s linear infinite;
}

.marquee-row.left-to-right .marquee-group {
  animation: scrollRight 90s linear infinite;
}

.marquee-row:hover .marquee-group {
  animation-play-state: paused;
}

.client-logo-box {
  width: 140px;
  aspect-ratio: 2 / 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition:
    opacity 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  opacity: 0.85; /* slight opacity default if hover goes to 100% */
}

.client-logo-box:hover {
  opacity: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.3s;
}

.client-logo-box:hover img {
  transform: scale(1.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .section,
  .capabilities-section,
  .client-marquee-section,
  .testi-section,
  .category-section {
    padding: 60px 0 !important;
  }
  
  .client-logo-box {
    width: 100px;
  }
  .marquee-wrapper {
    gap: 12px;
  }
  .marquee-row,
  .marquee-group {
    gap: 12px;
  }

  @keyframes scrollLeftMob {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% - 12px));
    }
  }

  @keyframes scrollRightMob {
    0% {
      transform: translateX(calc(-100% - 12px));
    }
    100% {
      transform: translateX(0);
    }
  }

  .marquee-row.right-to-left .marquee-group {
    animation-name: scrollLeftMob;
  }
  .marquee-row.left-to-right .marquee-group {
    animation-name: scrollRightMob;
  }
}

/* ═══════════════════════════════
   CORE CAPABILITIES SECTION
═══════════════════════════════ */
.capabilities-section {
  padding: 110px 0;
  position: relative;
}

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

.cap-card {
  position: relative;
  background: rgba(23, 20, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 42px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cap-card:hover {
  transform: scale(1.02);
  border-color: rgba(190, 30, 45, 0.6);
  background: rgba(23, 20, 20, 0.6);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(190, 30, 45, 0.15);
}

.cap-icon-wrap {
  width: 52px;
  height: 52px;
  color: var(--red);
  margin-bottom: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-icon-wrap svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s;
}

.cap-card:hover .cap-icon-wrap svg,
.panel-item:hover .cap-icon-wrap svg,
.process-step:hover .cap-icon-wrap svg {
  transform: rotate(5deg) scale(1.1);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--red);
  filter: blur(25px);
  opacity: 0.3;
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.cap-card:hover .icon-glow,
.panel-item:hover .icon-glow,
.process-step:hover .icon-glow {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.5);
}

.cap-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cap-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 25px;
  flex-grow: 1;
}

.cap-learn {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cap-learn .arrow {
  transition: transform 0.3s;
}

.cap-card:hover .cap-learn .arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .cap-card {
    padding: 40px 30px;
  }
}

/* ═══════════════════════════════
   GLOBAL MOBILE OPTIMIZATIONS
═══════════════════════════════ */
@media (max-width: 768px) {
  html {
    font-size: 15px; /* Slight reduction from base */
  }
  .section-title {
    font-size: 2.2rem !important; /* Force reduction for standard titles */
  }
  h2.section-title {
    font-size: 2.2rem !important;
  }
  h1.page-load-d1,
  .page-hero h1 {
    font-size: 2.8rem !important;
  }
}

/* ═══════════════════════════════
   PARTNERS SECTION
═══════════════════════════════ */
.partners-section {
  padding: 40px 0 0 0;
  position: relative;
  overflow: hidden;
}

.partners-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 35px;
  text-shadow: 0 0 15px rgba(190, 30, 45, 0.3);
}

.partners-wrapper {
  position: relative;
  width: 100%;
  /* Edge Fading Mask */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partnersLoop 50s linear infinite;
}

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

.partners-group {
  display: flex;
  flex-shrink: 0;
}

.partner-card {
  height: 52px;
  padding: 8px 30px;
  background: rgba(255, 255, 255, 0.45); /* Glassy white */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px; /* Majorly reduced spacing */
  transition: all 0.4s ease;
}

.partner-card img {
  max-width: 160px;
  max-height: 42px; /* Larger logos fitting the strip height */
  object-fit: contain;
  transition: all 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
}

.partner-card:hover {
  border-color: rgba(190, 30, 45, 0.4);
  transform: translateY(-1px);
}

.partner-card:hover img {
  transform: scale(1.08);
}

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

/* Mobile responsive */
@media (max-width: 768px) {
  .partner-card {
    height: 44px;
    padding: 6px 20px;
    margin-right: 20px; /* Tighter on mobile too */
  }
  .partner-card img {
    max-height: 26px;
  }
  .partners-section {
    padding: 50px 0;
  }
}

/* WALL OF LOVE MASONRY */
.testi-section {
  padding-top: 40px !important;
  padding-bottom: 20px;
}
.testi-section .section-head {
  margin-bottom: 15px !important;
}

.wall-of-love-container {
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
}

/* WALL OF LOVE MASONRY */

/* Dual-Row Marquee Layout */
.testi-row {
  position: relative;
  width: 100%;
  margin-top: 0; /* Minimized vertical gap */
  overflow: hidden;
}

.testi-drag-wrapper {
  width: 100%;
  cursor: grab;
  transition: transform 0.1s ease-out;
  will-change: transform;
  z-index: 10;
}
.testi-drag-wrapper:active { cursor: grabbing; }

.testi-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 50s linear infinite;
}

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

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

/* Fades */
.testi-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 20;
  pointer-events: none;
}
.testi-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--bg) 10%, transparent 100%);
}
.testi-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--bg) 10%, transparent 100%);
}

/* Card Styling */
.wol-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: 400px; 
  height: 360px; 
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; 
  padding: 24px;
}

@media (max-width: 600px) {
  .wol-card { width: 320px; height: 400px; }
}

.wol-card:hover {
  border-color: rgba(209, 191, 174, 0.3);
  box-shadow: 0 0 25px rgba(209, 191, 174, 0.05);
}

.wol-card-header {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

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

.wol-avatar {
  display: none !important;
}

.wol-author-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  width: 16px;
  height: 16px;
  color: #d1bfae;
}

.wol-author-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.wol-content {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  flex: 1; 
  overflow: hidden;
  position: relative;
}

/* Stylistic Quotation Marks for all Testimonial Cards */
.wol-content p::before,
.wol-content p::after,
.testi-card p::before,
.testi-card p::after {
  font-family: "Cormorant Garamond", serif;
  color: var(--red, #be1e2d);
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.2em;
  display: inline-block;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(190, 30, 45, 0.2);
}

.wol-content p::before,
.testi-card p::before {
  content: "“";
  margin-right: 4px;
}

.wol-content p::after,
.testi-card p::after {
  content: "”";
  margin-left: 2px;
}

.wol-card.expanded .wol-content.has-overflow {
  overflow-y: auto;
}

.wol-card.expanded .wol-content.has-overflow::-webkit-scrollbar {
  width: 4px;
}
.wol-card.expanded .wol-content.has-overflow::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.wol-fade {
  display: none;
}

.wol-card.expanded .wol-fade {
  opacity: 0;
}

.show-more-btn {
  background: none;
  border: none;
  color: #d1bfae;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
}

/* ═══════════════════════════════
   VIDEO PLAYER STYLES
═══════════════════════════════ */

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder video, .video-placeholder img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover video {
  opacity: 1;
}

.play-btn-glass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.play-btn-glass svg {
  width: 20px;
  height: 20px;
  color: #fff;
  margin-left: 3px;
}

@media (max-width: 650px) {
  .wol-card.split-layout {
    flex-direction: column;
  }
}

/* ═══════════════════════════════
   MOBILE SPACING OPTIMIZATIONS
═══════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 50px; 
    text-align: center;
  }
  .hero h1 { 
    font-size: clamp(2.5rem, 10vw, 3.8rem); 
  }
  .hero-sub {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section { 
    padding: 60px 0; 
  }
  .section-head {
    margin-bottom: 40px;
    text-align: center;
  }
  .section-head .section-eyebrow {
    justify-content: center;
  }
  .section-head-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 20px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    padding: 25px;
    border-bottom: 1px solid var(--line);
  }
  .hero-stat:last-child {
    border-bottom: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Spacing between specific sections */
  .partners-section { padding-bottom: 20px !important; }
  .section.process-bg { padding-top: 20px !important; }
  .testi-section { padding-bottom: 20px !important; }
  .wall-of-love-container { padding-bottom: 20px !important; }
  .cta-band { padding: 40px 0 60px !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
