/* ── Google Fonts ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;700&display=swap');

/* ── CSS Variables ────────────────────────────── */
:root {
  --color-primary:     #e600b4;
  --color-secondary:   #ff6e00;
  --color-bg-base:     #000000;
  --color-bg-surface:  #0a0a0a;
  --color-bg-elevated: #111111;
  --color-text-primary:#ffffff;
  --color-text-muted:  #a0a0a0;
  --color-border:      rgba(255,255,255,0.08);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --shadow-glow:        0 0 32px rgba(230,0,180,0.35);
  --shadow-glow-strong: 0 0 48px rgba(230,0,180,0.55);
  --shadow-glow-sm:     0 0 16px rgba(230,0,180,0.25);

  --gradient-brand: linear-gradient(90deg, #e600b4, #ff6e00);
  --gradient-brand-135: linear-gradient(135deg, #e600b4, #ff6e00);

  --radius-xl:  1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --max-width:  1280px;
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Keyframes ────────────────────────────────── */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(230,0,180,0.40); }
  50%       { box-shadow: 0 0 48px rgba(230,0,180,0.60); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes spotlight {
  0%   { opacity: 0; transform: translate(-72%, -62%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -40%) scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%       { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Utilities: Gradients ─────────────────────── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient-brand     { background: var(--gradient-brand); }
.bg-gradient-brand-135 { background: var(--gradient-brand-135); }

.gradient-border {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
}
.gradient-border-surface {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-surface), var(--color-bg-surface)) padding-box,
    var(--gradient-brand) border-box;
}

/* ── Utilities: Shadows ───────────────────────── */
.shadow-glow        { box-shadow: var(--shadow-glow); }
.shadow-glow-strong { box-shadow: var(--shadow-glow-strong); }

/* ── Utilities: Animations ────────────────────── */
.animate-float      { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease infinite; }
.animate-bounce     { animation: bounce 1s infinite; }
.animate-spin       { animation: spin 1s linear infinite; }
.animate-spotlight  { animation: spotlight 2s ease 0.75s forwards; }

/* ── Fade-up animation (IntersectionObserver) ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── Scrollbar ────────────────────────────────── */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: #0a0a0a; }
::-webkit-scrollbar-thumb  { background: rgba(230,0,180,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(230,0,180,0.7); }

::selection { background: rgba(230,0,180,0.3); color: #fff; }

/* ── Layout helpers ───────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-py { padding-top: clamp(3rem, 8vw, 8rem); padding-bottom: clamp(3rem, 8vw, 8rem); }

/* ── UTILITY: display helpers ─────────────────── */
.hidden { display: none !important; }

/* ── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__logo-dx {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.navbar__logo:hover .navbar__logo-name { color: #fff; }
.navbar__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  position: relative;
  color: #a0a0a0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 2px; width: 0;
  background: var(--gradient-brand);
  transition: width 0.3s;
}
.navbar__link:hover { color: #fff; }
.navbar__link:hover::after { width: 100%; }
.navbar__link.active { color: #fff; }
.navbar__link.active::after { width: 100%; }
.navbar__cta { display: none; align-items: center; gap: 0.75rem; }
.navbar__hamburger {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  transition: background 0.2s;
}
.navbar__hamburger:hover { background: rgba(255,255,255,0.1); }
.navbar__hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.navbar__drawer {
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 20;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.navbar__drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
}
.navbar__drawer-link {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.navbar__drawer-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.navbar__drawer-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }

@media (min-width: 768px) {
  .navbar__nav { display: flex; }
  .navbar__cta { display: flex; }
  .navbar__hamburger { display: none; }
  .navbar__drawer { display: none !important; }
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease-out;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.btn--primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { box-shadow: var(--shadow-glow-strong); }

.btn--secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 0.875rem 1.75rem;
}
.btn--secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.45); }

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  color: #a0a0a0;
}
.btn--ghost:hover { color: white; border-color: rgba(255,255,255,0.25); }

.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--md { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn--full { width: 100%; }

/* ── BADGE ────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(230,0,180,0.30);
  background: rgba(230,0,180,0.10);
  color: var(--color-primary);
}
.badge--subtle {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #a0a0a0;
}
.badge--success {
  border-color: rgba(0,200,100,0.30);
  background: rgba(0,200,100,0.10);
  color: #00c864;
}

/* ── HERO SECTION ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding-top: 5rem;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.30;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.80), rgba(0,0,0,0.60), rgba(0,0,0,0.80));
}
.hero__glow-left {
  position: absolute;
  top: 25%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,180,0.15), transparent);
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow-right {
  position: absolute;
  bottom: 25%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,110,0,0.10), transparent);
  filter: blur(120px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.hero__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  color: white;
}
.hero__muted { color: rgba(255,255,255,0.6); }
.hero__desc {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.25rem; }
.hero__proof {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.hero__proof-icon { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.hero__proof-text { color: #a0a0a0; font-size: 0.875rem; }
.hero__proof-text strong { color: white; }

/* Spline 3D panel */
.hero__3d {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__3d-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__3d-canvas { width: 100%; height: 100%; display: block; }
spline-viewer { width: 100%; height: 100%; display: block; }
#logo { display: none !important; }
.hero__3d-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}
.hero__3d-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  filter: blur(48px);
  opacity: 0.25;
  background: var(--gradient-brand-135);
  border-radius: var(--radius-2xl);
  transform: scale(0.9) translateY(2rem);
}

/* Spotlight effect */
.spotlight {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  width: 68%;
  padding-bottom: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, white 0%, transparent 70%);
  opacity: 0;
  animation: spotlight 2s ease 0.75s forwards;
  top: -40%; left: 0;
  transform: translate(-50%, -40%);
  mix-blend-mode: overlay;
  filter: blur(20px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  animation: bounce 1s infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 1.5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; padding: 5rem 1.5rem; }
  .hero__3d { display: flex; }
  .hero__actions .btn { width: auto; }
}
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ── METRICS STRIP ────────────────────────────── */
.metrics {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.metrics__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}
.metrics__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.25rem; }
.metrics__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metrics__label { color: white; font-weight: 600; font-size: 0.875rem; }
.metrics__sublabel { color: #a0a0a0; font-size: 0.75rem; }
@media (min-width: 1024px) {
  .metrics__inner { grid-template-columns: repeat(4, 1fr); padding: 3rem 1.5rem; }
}

/* ── SECTION HEADER ───────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: white;
  line-height: 1.2;
}
.section-header p {
  color: #a0a0a0;
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── SERVICES GRID ────────────────────────────── */
.services-section { background: var(--color-bg-base); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
  position: relative;
}
.service-card:hover {
  background:
    linear-gradient(rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.08) 100%) padding-box,
    var(--gradient-brand) border-box;
  transform: translateY(-4px);
}
.service-card__icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: rgba(230,0,180,0.10);
  border: 1px solid rgba(230,0,180,0.20);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.service-card:hover .service-card__icon { background: rgba(230,0,180,0.18); }
.service-card__icon svg { width: 22px; height: 22px; color: var(--color-primary); fill: none; stroke: var(--color-primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card__title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.125rem; line-height: 1.3; }
.service-card__desc { color: #a0a0a0; font-size: 0.875rem; line-height: 1.6; flex: 1; }
.service-card__cta {
  display: flex; align-items: center; gap: 0.375rem;
  color: var(--color-primary); font-size: 0.875rem; font-weight: 600;
  transition: gap 0.2s;
}
.service-card__cta svg { width: 15px; height: 15px; }
.service-card:hover .service-card__cta { gap: 0.625rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

/* ── ABOUT STRIP ──────────────────────────────── */
.about-section { background: var(--color-bg-surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-img { position: relative; order: 2; align-self: center; }
.about-img img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  border-radius: var(--radius-2xl);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
  display: block;
}
.about-img__glow {
  position: absolute;
  inset: -1rem;
  z-index: -1;
  opacity: 0.20;
  background: var(--gradient-brand-135);
  filter: blur(48px);
  border-radius: var(--radius-3xl);
}
.about-content { order: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.about-content .btn { margin-top: 0.75rem; align-self: flex-start; }
.about-content h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; line-height: 1.2; }
.about-content p { color: #a0a0a0; line-height: 1.7; }
.about-list { display: flex; flex-direction: column; gap: 0.75rem; }
.about-list li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.about-list svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .about-img { order: 1; }
  .about-content { order: 2; }
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-section { background: var(--color-bg-base); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.testimonial-card {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
  transition: background 0.3s;
}
.testimonial-card:hover { background-color: rgba(255,255,255,0.08); }
.testimonial-card__quote-icon { width: 28px; height: 28px; color: rgba(230,0,180,0.60); }
.testimonial-card__text { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.testimonial-card__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.testimonial-card__name { color: white; font-size: 0.875rem; font-weight: 600; }
.testimonial-card__role { color: #a0a0a0; font-size: 0.75rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

/* ── CTA BANNER ───────────────────────────────── */
.cta-section { background: var(--color-bg-surface); }
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  background: var(--color-bg-elevated);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
}
.cta-box__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: linear-gradient(to bottom, rgba(230,0,180,0.20), transparent);
  filter: blur(60px);
  pointer-events: none;
}
.cta-box__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.cta-box h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 4.5vw, 3.5rem); color: white; line-height: 1.2; }
.cta-box p { color: #a0a0a0; font-size: 1rem; max-width: 480px; }
.cta-box__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
@media (max-width: 640px) {
  .cta-box__actions { flex-direction: column; width: 100%; }
  .cta-box__actions .btn { width: 100%; }
}

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--color-bg-surface); border-top: 1px solid var(--color-border); }
.footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 4rem 1.5rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer__brand-dx { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer__brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: white; }
.footer__brand-desc { color: #a0a0a0; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: #a0a0a0;
  transition: all 0.2s;
}
.footer__social:hover { color: var(--color-primary); border-color: rgba(230,0,180,0.40); background: rgba(230,0,180,0.10); }
.footer__social svg { width: 16px; height: 16px; }
.footer__col-title { color: white; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer__col-list { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col-list a { color: #a0a0a0; font-size: 0.875rem; transition: color 0.2s; }
.footer__col-list a:hover { color: white; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.625rem; color: #a0a0a0; font-size: 0.875rem; transition: color 0.2s; text-decoration: none; }
.footer__contact-item:hover { color: white; }
.footer__contact-item svg { width: 14px; height: 14px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__bottom { padding-top: 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; font-size: 0.75rem; color: #606060; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ── FLOATING WHATSAPP ────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s ease infinite;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.10); }
.float-wa:active { transform: scale(0.95); }
.float-wa svg { width: 26px; height: 26px; color: white; fill: white; }

/* ── BLOG GRID ────────────────────────────────── */
.blog-section { background: var(--color-bg-base); }
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; justify-content: center; }
.blog-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  color: #a0a0a0;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter-btn:hover, .blog-filter-btn.active { color: white; border-color: var(--color-primary); background: rgba(230,0,180,0.10); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.blog-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  text-decoration: none;
}
.blog-card:hover { border-color: rgba(230,0,180,0.40); transform: translateY(-4px); }
.blog-card__img { width: 100%; height: 200px; object-fit: cover; }
.blog-card__img-placeholder {
  width: 100%; height: 200px;
  background: var(--gradient-brand-135);
  opacity: 0.3;
}
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.blog-card__title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.05rem; line-height: 1.4; }
.blog-card__excerpt { color: #a0a0a0; font-size: 0.875rem; line-height: 1.6; flex: 1; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid var(--color-border); font-size: 0.75rem; color: #a0a0a0; margin-top: auto; }
.blog-card__read { color: var(--color-primary); font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── PORTFOLIO GRID ───────────────────────────── */
.portfolio-section { background: var(--color-bg-base); }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.portfolio-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}
.portfolio-card:hover { border-color: rgba(230,0,180,0.40); transform: translateY(-4px); }
.portfolio-card--featured { border-color: rgba(230,0,180,0.25); }
.portfolio-card__img { width: 100%; height: 220px; object-fit: cover; }
.portfolio-card__img-placeholder { width: 100%; height: 220px; background: var(--gradient-brand-135); opacity: 0.3; }
.portfolio-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.portfolio-card__meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.portfolio-card__title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.1rem; line-height: 1.3; }
.portfolio-card__client { color: #a0a0a0; font-size: 0.875rem; }
.portfolio-card__client strong { color: white; }
.portfolio-card__results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--color-border); }
.portfolio-card__result-value { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.portfolio-card__result-label { color: #a0a0a0; font-size: 0.7rem; }
.portfolio-card__cta { display: flex; align-items: center; gap: 0.375rem; color: var(--color-primary); font-size: 0.875rem; font-weight: 600; margin-top: 0.5rem; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── CONTACT FORM ─────────────────────────────── */
.contact-section { background: var(--color-bg-base); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: white; line-height: 1.2; }
.contact-info p { color: #a0a0a0; line-height: 1.7; }
.contact-info__list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__item { display: flex; align-items: center; gap: 0.75rem; color: #a0a0a0; font-size: 0.875rem; }
.contact-info__item svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; }
.contact-info__item a { color: #a0a0a0; transition: color 0.2s; }
.contact-info__item a:hover { color: white; }
.contact-form-wrap {
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-form-wrap h2 { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.25rem; margin-bottom: 0.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; }
.form-input {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.30); }
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(230,0,180,0.15); }
.form-input option { background: #111; }
.form-error { color: #f87171; font-size: 0.75rem; }
.form-alert {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}
.form-alert--error { background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.30); color: #f87171; }
.form-alert--success { background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.30); color: #4ade80; }
.form-success {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center; padding: 2.5rem;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
}
.form-success__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.form-success h3 { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.25rem; }
.form-success p { color: #a0a0a0; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } .contact-form-wrap { padding: 2rem; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ── PAGE HERO (inner pages) ──────────────────── */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: var(--color-bg-base);
  position: relative;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: linear-gradient(to bottom, rgba(230,0,180,0.15), transparent);
  filter: blur(80px);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.page-hero__back { display: inline-flex; align-items: center; gap: 0.5rem; color: #a0a0a0; font-size: 0.875rem; margin-bottom: 2rem; transition: color 0.2s; }
.page-hero__back:hover { color: white; }
.page-hero__back svg { width: 15px; height: 15px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: white; line-height: 1.15; margin-top: 1.25rem; }
.page-hero__excerpt { color: #a0a0a0; font-size: 1.125rem; line-height: 1.7; margin-top: 1rem; }
.page-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; color: #a0a0a0; font-size: 0.875rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.page-hero__meta-item { display: flex; align-items: center; gap: 0.375rem; }
.page-hero__meta-item svg { width: 14px; height: 14px; color: var(--color-primary); }
.page-hero__meta-item strong { color: white; }

/* ── BLOG COVER IMAGE ─────────────────────────── */
.blog-cover { width: 100%; height: 360px; object-fit: cover; background: #111; }
@media (min-width: 768px) { .blog-cover { height: 460px; } }
.blog-cover-wrap { position: relative; overflow: hidden; }
.blog-cover-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.60), transparent); }

/* ── ARTICLE PROSE ────────────────────────────── */
.prose { max-width: 800px; margin: 0 auto; padding: 3.5rem 1.5rem; background: var(--color-bg-surface); }
.prose h2 { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; line-height: 1.3; }
.prose h3 { font-family: var(--font-display); font-weight: 700; color: #e0e0e0; font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { color: #a0a0a0; line-height: 1.8; margin-bottom: 1.25rem; }
.prose strong { color: white; }
.prose ul { color: #a0a0a0; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose a { color: var(--color-primary); }
.prose a:hover { text-decoration: underline; }

/* ── CASE METRICS ─────────────────────────────── */
.case-metrics { background: var(--color-bg-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.case-metrics__inner { max-width: 900px; margin: 0 auto; padding: 2.5rem 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.case-metric { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.25rem; }
.case-metric__value { font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.case-metric__label { color: #a0a0a0; font-size: 0.875rem; }
@media (min-width: 768px) { .case-metrics__inner { grid-template-columns: repeat(4, 1fr); } }

/* ── CASE CONTENT CARDS ───────────────────────── */
.case-content { background: var(--color-bg-base); padding: 4rem 0; }
.case-content__inner { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 3rem; }
.case-card {
  border-radius: var(--radius-2xl); padding: 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
}
.case-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.case-card__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(230,0,180,0.10);
  border: 1px solid rgba(230,0,180,0.20);
  display: flex; align-items: center; justify-content: center;
}
.case-card__icon--secondary { background: rgba(255,110,0,0.10); border-color: rgba(255,110,0,0.20); }
.case-card__icon svg { width: 18px; height: 18px; color: var(--color-primary); fill: none; stroke: var(--color-primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.case-card__icon--secondary svg { color: var(--color-secondary); stroke: var(--color-secondary); }
.case-card__title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.25rem; }
.case-card__text { color: #a0a0a0; line-height: 1.7; }
.case-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.case-tag { padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ── SOBRE PAGE ───────────────────────────────── */
.about-page-hero { background: var(--color-bg-base); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.team-section { background: var(--color-bg-surface); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.value-card { padding: 1.5rem; border-radius: var(--radius-xl); background: rgba(255,255,255,0.05); border: 1px solid var(--color-border); }
.value-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card__title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card__text { color: #a0a0a0; font-size: 0.875rem; line-height: 1.6; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── INLINE CTA ───────────────────────────────── */
.inline-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
}
.inline-cta__glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16rem; height: 6rem; background: linear-gradient(to bottom, rgba(230,0,180,0.20), transparent); filter: blur(48px); pointer-events: none; }
.inline-cta h3 { font-family: var(--font-display); font-weight: 700; color: white; font-size: 1.5rem; position: relative; }
.inline-cta p { color: #a0a0a0; font-size: 0.9rem; max-width: 28rem; position: relative; }
.inline-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; position: relative; }

/* ── RELATED POSTS ────────────────────────────── */
.related-section { background: var(--color-bg-surface); padding: 3.5rem 0; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.related-card {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-elevated), var(--color-bg-elevated)) padding-box,
    var(--gradient-brand) border-box;
  transition: all 0.3s;
}
.related-card:hover { background-color: rgba(255,255,255,0.08); transform: translateY(-4px); }
.related-card__title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.9rem; line-height: 1.4; }
.related-card__read { display: flex; align-items: center; gap: 0.25rem; color: var(--color-primary); font-size: 0.875rem; font-weight: 600; margin-top: auto; }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── SERVICOS DETAIL ──────────────────────────── */
.service-detail { background: var(--color-bg-base); padding: 4rem 0; }
.service-detail__inner { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.service-features { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 2rem; }
.service-feature { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; padding: 0.875rem 1rem; border-radius: 0.75rem; background: rgba(255,255,255,0.04); border: 1px solid var(--color-border); }
.service-feature svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }
@media (min-width: 640px) { .service-features { grid-template-columns: repeat(2, 1fr); } }

/* ── TESTIMONIAL CARD hover fix ───────────────── */
.testimonial-card:hover {
  background:
    linear-gradient(rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.08) 100%) padding-box,
    var(--gradient-brand) border-box;
}

/* ── PORTFOLIO card hover fix ─────────────────── */
.portfolio-card:hover {
  border-color: rgba(230,0,180,0.50);
  box-shadow: 0 8px 32px rgba(230,0,180,0.12);
  transform: translateY(-4px);
}
.blog-card:hover {
  border-color: rgba(230,0,180,0.40);
  box-shadow: 0 8px 32px rgba(230,0,180,0.10);
  transform: translateY(-4px);
}

/* ── PAGE HERO - h1 styles ────────────────────── */
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  line-height: 1.15;
  margin-top: 1.25rem;
}

/* ── CASE COVER IMAGE ──────────────────────────── */
.case-cover-wrap { position: relative; overflow: hidden; width: 100%; }
.case-cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: var(--color-bg-elevated);
  display: block;
}
.case-cover-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
}
@media (min-width: 768px) { .case-cover { height: 460px; } }

/* ── HERO - mobile button full width ──────────── */
@media (max-width: 639px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── HERO - ensure 3D section hidden correctly ── */
@media (max-width: 1023px) {
  .hero__3d { display: none !important; }
}
@media (min-width: 1024px) {
  .hero__3d { display: flex; }
}

/* ── BLOG FILTER btn active (also works as nav item) */
.blog-filter-btn.active,
.blog-filter-btn:focus {
  color: white;
  border-color: var(--color-primary);
  background: rgba(230,0,180,0.12);
}

/* ── FORM - select arrow ──────────────────────── */
.form-input[type="select"],
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ── VALUES GRID ──────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.value-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, background 0.2s;
}
.value-card:hover {
  border-color: rgba(230,0,180,0.30);
  background: rgba(230,0,180,0.05);
}
.value-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.value-card__text { color: #a0a0a0; font-size: 0.875rem; line-height: 1.6; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── METRICS - standalone section background fix ─ */
.case-metrics {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ── CASE CONTENT section bg ──────────────────── */
.case-content { background: var(--color-bg-base); padding: 4rem 0; }

/* ── REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
