/* PETHRAX - Dark Luxury Digital Studio */
:root {
  color-scheme: dark;
  --bg: #040406;
  --surface: #0b0b10;
  --surface-soft: #111117;
  --accent: #D0163C;
  --accent-soft: #3b0b16;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --border: #1f2933;
  --shadow-soft: 0 24px 80px rgba(0,0,0,0.65), 0 0 60px rgba(208,22,60,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-in-up 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.hero .animate-in[data-delay="100"] { animation-delay: 0.1s; }
.hero .animate-in[data-delay="200"] { animation-delay: 0.2s; }
.hero .animate-in[data-delay="350"] { animation-delay: 0.35s; }
.hero .animate-in[data-delay="450"] { animation-delay: 0.45s; }
@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(208, 22, 60, 0.3);
  color: #f9fafb;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050508; }
::-webkit-scrollbar-thumb { background: #20202a; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #2d2d3a; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 0.5rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(208,22,60,0.3); }
.btn:active { transform: scale(0.99); }

.btn-md { padding: 0.6rem 1.25rem; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

.btn-ghost {
  background: rgba(0,0,0,0.4);
  border-color: rgba(31,41,51,0.8);
}
.btn-ghost:hover { border-color: var(--accent); }
.btn-full { width: 100%; }

/* Navbar */
.navbar {
  position: fixed;
  inset: 0 auto auto 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(4,4,6,0.88);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(31,41,51,0.7);
}

.navbar-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .navbar-inner { height: 5rem; }
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 3rem; width: 11rem; object-fit: contain; }
@media (min-width: 1024px) {
  .logo-img { width: 11rem; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(156,163,175,0.8);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: rgba(208,22,60,0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .nav-cta { display: flex; }
}
.nav-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(156,163,175,0.7);
}

.nav-toggle {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(31,41,51,0.7);
  background: rgba(11,11,16,0.6);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle-line {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--text-muted);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(31,41,51,0.7);
  background: rgba(4,4,6,0.95);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: inherit;
  text-decoration: none;
  padding: 0.25rem 0;
}
@media (min-width: 1024px) {
  .nav-mobile { display: none !important; }
}

/* Sections */
.section-shell { position: relative; overflow: hidden; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .section-inner { padding: 0 2rem; }
}

.label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.heading {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .heading { font-size: 1.875rem; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) {
  .hero { padding-top: 6rem; padding-bottom: 5rem; }
}
@media (min-width: 768px) {
  .hero { padding-top: 7rem; padding-bottom: 9rem; }
}
@media (min-width: 1024px) {
  .hero { padding-top: 6rem; }
}

.hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, black, var(--bg), black);
}
.hero-radial {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.6;
}
.hero-radial-soft {
  left: -10rem;
  top: 0;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle at top, rgba(249,250,251,0.06), transparent 55%);
}
.hero-radial-accent {
  right: -5%;
  top: 2rem;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at top, rgba(208,22,60,0.18), transparent 60%);
  opacity: 0.8;
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28%;
  height: 60vh;
  background: linear-gradient(to top, black, var(--bg), transparent);
}
.hero-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.25), transparent 65%),
    radial-gradient(circle at 50% 70%, rgba(208,22,60,0.4), transparent 70%);
  filter: blur(46px);
  animation: hero-smoke 12s ease-in-out infinite alternate;
}
@keyframes hero-smoke {
  0% { transform: translateX(-10%); opacity: 0.4; }
  100% { transform: translateX(10%); opacity: 0.7; }
}

.hero-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}
.hero-content {
  margin: 0 auto;
  max-width: 56rem;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .hero-content { padding: 0 1.5rem; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(31,41,51,0.7);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .hero-pill { margin-bottom: 2rem; padding: 0.375rem 1.25rem; }
}
.hero-title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 480px) { .hero-title { font-size: 2rem; } }
@media (min-width: 640px) { .hero-title { font-size: 2.4rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.4rem; line-height: 1.03; } }
@media (min-width: 1024px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }

.text-muted { color: rgba(156,163,175,0.8); }
.text-gradient {
  background: linear-gradient(to right, var(--text), var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
@media (min-width: 640px) { .hero-desc { font-size: 0.95rem; } }
@media (min-width: 768px) { .hero-desc { font-size: 1rem; } }

.hero-btns {
  margin: 2.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-btns { margin-top: 2.5rem; gap: 1.25rem; }
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid rgba(31,41,51,0.7);
  border-bottom: 1px solid rgba(31,41,51,0.7);
  background: rgba(11,11,16,0.8);
  backdrop-filter: blur(8px);
  padding: 1.25rem 0;
}
.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .trust-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.trust-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(156,163,175,0.8);
}

/* Featured Work */
.section-work { padding: 9rem 0; }
.work-header {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .work-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.work-desc {
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.work-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
  }
}

.work-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.9);
  box-shadow: var(--shadow-soft);
}
.work-hero-visual {
  position: relative;
  height: 22rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(249,250,251,0.26), transparent 56%),
    radial-gradient(circle at 90% 100%, rgba(208,22,60,0.55), transparent 62%);
}
@media (min-width: 768px) {
  .work-hero-visual { height: 25rem; }
}
.work-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, rgba(0,0,0,0.4), transparent);
}
.work-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(0,0,0,0.6), transparent 60%);
}
.work-hero-content {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2.5rem;
}
@media (min-width: 768px) {
  .work-hero-content { left: 2.5rem; right: 2.5rem; }
}
.work-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.work-hero-blurb {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.work-hero-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}

.pill {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.work-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

.work-tile {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.8);
  transition: transform 0.2s;
}
.work-tile:hover { transform: translateY(-3px); }
.work-tile-visual {
  position: relative;
  height: 8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .work-tile-visual { height: 9rem; }
}
.work-tile-1 { background: linear-gradient(to bottom right, var(--surface-soft), var(--surface), black); }
.work-tile-1::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0, rgba(208,22,60,0.45), transparent 60%); opacity: 0.8; }
.work-tile-2 { background: linear-gradient(to bottom right, var(--surface-soft), var(--surface), black); }
.work-tile-2::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0, rgba(208,22,60,0.45), transparent 60%); opacity: 0.8; }
.work-tile-3 { background: linear-gradient(to top right, black, var(--surface-soft), var(--surface)); }
.work-tile-3::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0 100%, rgba(249,250,251,0.18), transparent 58%); opacity: 0.8; }
.work-tile-4 { background: linear-gradient(to top right, black, var(--surface-soft), var(--surface)); }
.work-tile-4::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0 100%, rgba(249,250,251,0.18), transparent 58%); opacity: 0.8; }

.work-tile-content {
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.work-tile-content h3 { font-size: 0.875rem; font-weight: 500; margin: 0; }

.work-strip {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31,41,51,0.7);
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.work-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.strip-line {
  width: 1.5rem;
  height: 1px;
  background: rgba(31,41,51,0.8);
}

/* About */
.section-about {
  border-top: 1px solid rgba(31,41,51,0.7);
  border-bottom: 1px solid rgba(31,41,51,0.7);
  background: var(--surface);
  padding: 9rem 0;
}
.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}
.about-media {
  position: relative;
  height: 18rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--surface-soft);
}
@media (min-width: 768px) {
  .about-media { height: 20rem; }
}
.about-media-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(249,250,251,0.2), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(208,22,60,0.45), transparent 60%);
  opacity: 0.8;
}
.about-media-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, black, transparent, rgba(0,0,0,0.8));
}
.about-media-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-media-text { font-size: 0.875rem; margin: 0.25rem 0 0 0; }
.about-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .about-desc { font-size: 0.95rem; }
}
.about-cards {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-cards { grid-template-columns: 1fr 1fr; }
}
.about-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.7);
}
.about-card p:last-child { margin: 0.5rem 0 0 0; font-size: 0.875rem; }

/* Process */
.section-process {
  background: var(--bg);
  padding: 9rem 0;
}
.process-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.process-desc {
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.process-timeline {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(to right, transparent, rgba(31,41,51,0.7), transparent);
}
.timeline-steps {
  position: relative;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
@media (min-width: 768px) {
  .timeline-steps { grid-template-columns: repeat(6, 1fr); }
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.timeline-dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--border);
}
.timeline-step span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(156,163,175,0.8);
}
.timeline-step p {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 768px) {
  .timeline-step p { font-size: 0.875rem; }
}

.process-block {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.8);
}
@media (min-width: 768px) {
  .process-block {
    grid-template-columns: 1.4fr 1fr;
    padding: 2rem;
  }
}
.process-block p { font-size: 0.875rem; color: var(--text-muted); margin: 0.75rem 0 0 0; }
.process-block-secondary { display: flex; flex-direction: column; gap: 0.75rem; }
.process-block-secondary p { font-size: 0.75rem; }
@media (min-width: 768px) {
  .process-block-secondary p { font-size: 0.875rem; }
}

/* Services */
.section-services {
  background: var(--bg);
  padding: 9rem 0 4rem;
}
.services-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1.2fr 1.4fr;
  }
}
.services-desc {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .services-desc { font-size: 0.95rem; }
}

.services-panel {
  border-radius: 1rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.9);
}
.service-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(31,41,51,0.6);
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.service-item:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .service-item { padding: 1.25rem 1.5rem; }
}
.service-item:hover .service-arrow { border-color: var(--accent); color: var(--accent); }
.service-title { margin: 0.25rem 0 0 0; font-size: 0.875rem; font-weight: 500; }
@media (min-width: 768px) { .service-title { font-size: 1rem; } }
.service-sub { margin: 0.25rem 0 0 0; font-size: 0.75rem; color: var(--text-muted); }
@media (min-width: 768px) { .service-sub { font-size: 0.875rem; } }
.service-arrow {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(31,41,51,0.8);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

/* Testimonials */
.section-testimonials {
  background: var(--bg);
  padding: 4rem 0 9rem;
}
.testimonials-scroll {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.5rem 0;
}
.testimonials-fade {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 1;
}
.testimonials-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(4,4,6,0.9), transparent);
}
.testimonials-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(4,4,6,0.9), transparent);
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonials-row {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 1.5rem;
  padding: 0 1.5rem;
  min-width: max-content;
}
.testimonial-card {
  min-width: 260px;
  max-width: 20rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(31,41,51,0.9);
  background: rgba(0,0,0,0.7);
  text-align: left;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--surface-soft), var(--surface), black);
  margin-bottom: 0.75rem;
}
.testimonial-name { font-size: 0.875rem; font-weight: 500; margin: 0; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); margin: 0.25rem 0 0 0; }
.testimonial-card blockquote {
  margin: 0.75rem 0 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.testimonial-rating {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testimonial-rating .stars { color: var(--accent); }

.stats-block {
  margin: 0 auto;
  max-width: 56rem;
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  background: rgba(0,0,0,0.8);
}
@media (min-width: 768px) {
  .stats-block {
    padding: 2rem 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
  }
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.stat-number {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.stat-value, .stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .stat-value, .stat-suffix { font-size: 1.875rem; }
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
@media (min-width: 768px) {
  .stat-label { font-size: 0.875rem; }
}

/* FAQ */
.section-faq {
  border-top: 1px solid rgba(31,41,51,0.7);
  border-bottom: 1px solid rgba(31,41,51,0.7);
  background: var(--surface);
  padding: 9rem 0;
}
.faq-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1.1fr 1.1fr;
  }
}
.faq-desc {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.faq-list {
  border-radius: 1rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.9);
  padding: 0.75rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .faq-list { padding: 1rem; }
}
.faq-item {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.8);
  margin-bottom: 0.75rem;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
@media (min-width: 768px) {
  .faq-trigger { padding: 1rem 1.25rem; }
}
.faq-trigger span {
  flex-shrink: 0;
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(31,41,51,0.8);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
.faq-content.open { max-height: 200px; }
.faq-content p {
  padding: 0 1rem 1rem;
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .faq-content p { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; }
}

/* Final CTA */
.section-cta {
  background: var(--bg);
  padding: 9rem 0;
  position: relative;
}
.cta-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.cta-bg::before {
  content: '';
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -35%;
  height: 60vh;
  background: radial-gradient(circle at top, rgba(208,22,60,0.18), transparent 60%);
  opacity: 0.8;
  filter: blur(48px);
}
.cta-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10rem;
  background: linear-gradient(to bottom, black, transparent, transparent);
}
.cta-card {
  margin: 0 auto;
  max-width: 48rem;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(17,17,23,0.95);
  box-shadow: var(--shadow-soft);
  position: relative;
}
@media (min-width: 768px) {
  .cta-card { padding: 2.5rem; }
}
.cta-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .cta-desc { font-size: 0.95rem; }
}
.cta-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.cta-form > div {
  display: flex;
  flex-direction: column;
}
.cta-form .form-full { grid-column: 1 / -1; }
.cta-form label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(31,41,51,0.8);
  background: rgba(0,0,0,0.4);
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(208,22,60,0.6);
}
.cta-form textarea { resize: vertical; min-height: 6rem; }
.cta-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .cta-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-footer p { font-size: 0.7rem; color: var(--text-muted); margin: 0; }

/* Footer */
.footer {
  border-top: 1px solid rgba(31,41,51,0.8);
  background: black;
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-logo { height: 2.25rem; width: 10rem; object-fit: contain; }
.footer-brand p {
  margin: 0.75rem 0 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.footer-nav a {
  color: inherit;
  text-decoration: none;
}
.footer-nav a:hover { text-decoration: underline; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-right { align-items: flex-end; }
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-social a:hover { text-decoration: underline; }
.footer-right > p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
