/* ══════════════════════════════════════════════
   HOMEPAGE STYLES
   ══════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  background: var(--cream); padding: 10rem 4rem 8rem 5rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  opacity: 0; animation: fadeSlideUp 1s ease 0.2s forwards;
}
.hero-right {
  background: var(--ink); padding: 10rem 5rem 8rem 5rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; overflow: hidden;
  opacity: 0; animation: fadeSlideUp 1s ease 0.45s forwards;
}
.hero-right::before {
  content: ''; position: absolute; top: 0; left: -2px;
  width: 60px; height: 100%; background: var(--ink);
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%); z-index: 1;
}
.hero-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag::before {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--pink);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 600;
  line-height: 1.07; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--pink); }
.hero-body {
  font-size: 0.8rem; line-height: 1.9; color: var(--text-muted);
  max-width: 340px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; margin-top: auto; }
.btn-primary {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; background: var(--pink); color: #fff;
  text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-ghost {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s;
}
.btn-ghost::after { content: '\2192'; }
.btn-ghost:hover { color: var(--ink); }
.hero-right .hero-tag { color: var(--pink-light); }
.hero-right .hero-tag::before { background: var(--pink-light); }
.hero-right .hero-title { color: var(--cream); }
.hero-right .hero-title em { color: var(--pink); }
.hero-right .hero-body { color: var(--text-light); }
/* btn-gold and pc-btn-ghost-light are defined globally in style.css */
.btn-ghost-light {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s;
}
.btn-ghost-light::after { content: '\2192'; }
.btn-ghost-light:hover { color: var(--pink-light); }
.hero-deco {
  position: absolute; right: 3.5rem; top: 50%; transform: translateY(-50%);
  opacity: 0.07; z-index: 0;
}

/* ── Stats Bar ── */
.stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  opacity: 0; animation: fadeIn 1s ease 1s forwards;
}
.stat-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(3), .stat-item:nth-child(4) {
  background: var(--ink); border-color: rgba(240,63,122,0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 0.2rem;
}
.stat-item:nth-child(3) .stat-num, .stat-item:nth-child(4) .stat-num { color: var(--pink); }
.stat-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.stat-item:nth-child(3) .stat-label, .stat-item:nth-child(4) .stat-label { color: var(--text-light); }

/* ── Marquee ── */
.marquee-wrap {
  background: var(--ink); padding: 0.9rem 0; overflow: hidden;
  border-top: 1px solid rgba(240,63,122,0.25);
  border-bottom: 1px solid rgba(240,63,122,0.25);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); padding: 0 2.5rem;
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee-item::after { content: '\25C6'; color: var(--pink); font-size: 0.38rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── About Strip ── */
.about-strip { display: grid; grid-template-columns: 1fr 1.6fr; min-height: 500px; }
.about-visual {
  background: #F03F7A; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px
  );
}
.about-content {
  background: #f9f4f7; padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── Section Helpers ── */
.section-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before {
  content: ''; display: inline-block; width: 20px; height: 1px; background: var(--pink);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1.5rem;
}
.section-body {
  font-size: 0.8rem; line-height: 1.9; color: var(--text-muted);
  max-width: 440px; margin-bottom: 2rem;
}

/* ── Products ── */
.products-section { padding: 7rem 5rem; background: #fafafa; }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem;
}
.see-all {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s;
  padding-bottom: 0.25rem; border-bottom: 1px solid var(--border);
}
.see-all::after { content: '\2192'; }
.see-all:hover { color: var(--pink); border-color: var(--pink); }
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--border);
}
.product-card {
  background: var(--cream); padding: 2rem; cursor: pointer;
  transition: background 0.3s; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.product-card:hover { background: #fdf0f5; }
.product-card:hover .product-arrow { opacity: 1; transform: translate(0, 0); }
.product-type {
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.product-type.quote::before {
  content: 'QUOTE'; font-size: 0.52rem; letter-spacing: 0.1em;
  padding: 0.12rem 0.45rem; background: var(--ink); color: var(--cream);
}
.product-type.purchase::before {
  content: 'BUY'; font-size: 0.52rem; letter-spacing: 0.1em;
  padding: 0.12rem 0.45rem; background: var(--pink); color: #fff;
}
.product-icon { width: 56px; height: 56px; margin-bottom: 1.5rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600; line-height: 1.2;
  color: var(--ink); margin-bottom: 0.5rem;
}
.product-desc { font-size: 0.7rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 1.5rem; }
.product-price { font-size: 0.68rem; letter-spacing: 0.05em; color: var(--pink); font-weight: 600; }
.product-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-size: 1.1rem; color: var(--pink);
  opacity: 0; transform: translate(-4px, 4px);
  transition: opacity 0.3s, transform 0.3s;
}

/* ── Premium ── */
.premium-section {
  background: var(--ink); padding: 8rem 5rem;
  position: relative; overflow: hidden;
}
.premium-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,63,122,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.premium-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-bottom: 5rem; align-items: end;
}
.premium-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem); font-weight: 600;
  line-height: 1.07; letter-spacing: -0.025em; color: var(--cream);
}
.premium-title em { font-style: italic; color: var(--pink); }
.premium-body { font-size: 0.8rem; line-height: 1.9; color: var(--text-light); margin-bottom: 1.25rem; }
.premium-view-all {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); text-decoration: none; font-weight: 500;
  transition: color .2s; display: inline-flex; align-items: center; gap: .4rem;
}
.premium-view-all:hover { color: var(--pink); }

/* ── Overlapping fan layout ── */
.premium-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem 0 3.5rem;
  position: relative;
}

.gallery-item {
  position: relative;
  width: 230px;
  height: 340px;
  flex-shrink: 0;
  margin-left: -85px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
  transition: transform .45s cubic-bezier(.22,.68,0,1.15), box-shadow .35s ease;
  will-change: transform;
  backface-visibility: hidden;
}
.gallery-item:first-child { margin-left: 0; }

/* Fan rotations — 8 cards */
.gallery-item:nth-child(1) { transform: rotate(-10.5deg) translateY(24px); z-index: 1; }
.gallery-item:nth-child(2) { transform: rotate(-7.5deg)  translateY(14px); z-index: 2; }
.gallery-item:nth-child(3) { transform: rotate(-4.5deg)  translateY(7px);  z-index: 3; }
.gallery-item:nth-child(4) { transform: rotate(-1.5deg)  translateY(2px);  z-index: 4; }
.gallery-item:nth-child(5) { transform: rotate(1.5deg)   translateY(2px);  z-index: 4; }
.gallery-item:nth-child(6) { transform: rotate(4.5deg)   translateY(7px);  z-index: 3; }
.gallery-item:nth-child(7) { transform: rotate(7.5deg)   translateY(14px); z-index: 2; }
.gallery-item:nth-child(8) { transform: rotate(10.5deg)  translateY(24px); z-index: 1; }

/* Backgrounds */
.gallery-item:nth-child(1) .gallery-bg { background: #13091a; }
.gallery-item:nth-child(2) .gallery-bg { background: #0c0f1a; }
.gallery-item:nth-child(3) .gallery-bg { background: #0f0a18; }
.gallery-item:nth-child(4) .gallery-bg { background: #0a1218; }
.gallery-item:nth-child(5) .gallery-bg { background: #12100a; }
.gallery-item:nth-child(6) .gallery-bg { background: #100f18; }
.gallery-item:nth-child(7) .gallery-bg { background: #0a1210; }
.gallery-item:nth-child(8) .gallery-bg { background: #14090f; }

/* Hover: card lifts flat — no scale on card or image to prevent pixelation */
.gallery-item:hover {
  transform: rotate(0deg) translateY(-28px) !important;
  z-index: 10 !important;
  box-shadow: 0 28px 72px rgba(0,0,0,0.7), 0 0 0 1px rgba(240,63,122,0.2);
}

.gallery-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gallery-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.22,.68,0,1.15);
  will-change: transform;
  backface-visibility: hidden;
}
.gallery-item:hover .gallery-bg img { transform: scale(1.03); }

/* Info overlay */
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 1.25rem 1.35rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  pointer-events: none;
}
.gallery-client {
  display: block;
  font-size: .55rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink); font-weight: 700; margin-bottom: .35rem;
}
.gallery-name {
  font-family: var(--font-display); font-size: .92rem; font-weight: 600;
  color: #fff; line-height: 1.3; margin: 0 0 .7rem;
}
.gallery-tags {
  display: flex; gap: .35rem; flex-wrap: wrap;
  transform: translateY(6px); opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-tags { opacity: 1; transform: translateY(0); }
.gallery-tags span {
  font-size: .55rem; padding: .18rem .5rem;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 100px;
  color: rgba(255,255,255,0.6); letter-spacing: .04em; white-space: nowrap;
}

/* ── Pride CTA button ── */
.premium-footer { margin-top: 1rem; text-align: center; }

.premium-gallery-btn {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .2s;
}
.premium-gallery-btn:hover {
  border-color: var(--pink);
  background: rgba(240,63,122,0.08);
  transform: translateY(-2px);
}
.pgb-stat {
  display: flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.pgb-stat svg { color: #F5B800; flex-shrink: 0; }
.pgb-num {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.pgb-label {
  font-size: .62rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 500; line-height: 1.3;
}
.pgb-divider { display: none; }
.pgb-cta {
  display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.premium-gallery-btn:hover .pgb-cta { color: #fff; }
.pgb-cta svg { transition: transform .2s; }
.premium-gallery-btn:hover .pgb-cta svg { transform: translateX(3px); }

/* ── Quote ── */
.quote-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.quote-content {
  background: #F5B800; padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.quote-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.8rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; color: #111111; margin-bottom: 1rem;
}
.quote-body {
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(17,17,17,0.65); margin-bottom: 2rem; max-width: 360px;
}
.check-item {
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 0.85rem; color: rgba(17,17,17,0.6); letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.quote-form-side {
  background: #f9f4f7; padding: 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.72rem 0.9rem;
  background: var(--cream); border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.76rem;
  color: var(--ink); outline: none; transition: border-color 0.3s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(240,63,122,0.08); }
.form-textarea { min-height: 88px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 0.9rem 2rem;
  background: var(--pink); color: #fff; border: none;
  font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s, transform 0.2s; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* ── Process ── */
.process-section { padding: 8rem 5rem; background: var(--ink); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid rgba(240,63,122,0.15);
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(240,63,122,0.15);
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(240,63,122,0.3); line-height: 1; margin-bottom: 1.5rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem;
}
.step-body { font-size: 0.7rem; line-height: 1.9; color: var(--text-light); }

/* ── Responsive ── */
/* Fan gallery — smallest phones */
.hero { grid-template-columns: 1fr; min-height: auto; }
.hero-left, .hero-right { padding: 6rem 1.25rem 3rem; }
.hero-right::before { display: none; }
.stats-bar { position: static; grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 1.25rem; }
.stat-num { font-size: 1.4rem; }
.product-grid { grid-template-columns: 1fr; }
.premium-header, .quote-section, .about-strip { grid-template-columns: 1fr; }
.premium-gallery { padding: .5rem 0 1.5rem; overflow: hidden; }
.gallery-item { width: 80px; height: 152px; margin-left: -32px; }
.gallery-item:nth-child(n+6) { display: none; }
.gallery-info { padding: 2rem .6rem .85rem; }
.gallery-name { font-size: .65rem; }
.gallery-client { display: none; }
.gallery-tags { display: none; }
.process-grid { grid-template-columns: 1fr; }
.products-section, .premium-section, .process-section { padding: 3rem 1.25rem; }
.quote-content, .quote-form-side { padding: 2.5rem 1.25rem; }
.about-content { padding: 3rem 1.25rem; }
.about-visual { min-height: 220px; }
.hero-actions { flex-wrap: wrap; gap: .75rem; }
.form-row { grid-template-columns: 1fr; }
/* Pride CTA button — stacked on mobile */
.premium-gallery-btn { flex-direction: column; border-radius: 14px; text-align: center; }
.pgb-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); justify-content: center; padding: .7rem 1.5rem; }
.pgb-cta { justify-content: center; padding: .7rem 1.5rem; }
.pgb-num { font-size: .95rem; }
.pgb-label { font-size: .55rem; }

@media (min-width: 380px) {
  /* Further grow the fan for screens above 380px */
  .gallery-item { width: 108px; height: 185px; margin-left: -46px; }
  .gallery-info { padding: 3rem 1.25rem 1.35rem; }
  .gallery-name { font-size: .78rem; }
  .gallery-client { display: block; font-size: .48rem; }
  .gallery-tags { display: flex; }
  .premium-gallery { padding: 1rem 0 2rem; }
  .pgb-num { font-size: 1.1rem; }
  .pgb-label { font-size: .62rem; }
  .stat-num { font-size: 1.6rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 520px) {
  .hero-left, .hero-right { padding: 7rem 2rem 3.5rem; }
  .hero-actions { flex-wrap: initial; gap: 1rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .products-section, .premium-section, .process-section { padding: 4rem 1.5rem; }
  .quote-content, .quote-form-side { padding: 3.5rem 1.5rem; }
  .about-content { padding: 4rem 2rem; }
  .about-visual { min-height: initial; }
  .stats-bar { gap: 0; padding: 0; }
  .stat-num { font-size: 2rem; }
  /* Fan gallery — full size for mid-range phones */
  .gallery-item { width: 180px; height: 280px; margin-left: -70px; }
  .gallery-item:nth-child(n+6) { display: block; }
  .gallery-name { font-size: .92rem; }
  .gallery-client { font-size: .55rem; }
  .premium-gallery { padding: 2rem 0 3.5rem; overflow: visible; }
  .gallery-tags { opacity: 1; transform: translateY(0); }
  /* Pride CTA button — inline on wider screens */
  .premium-gallery-btn { flex-direction: row; border-radius: 100px; text-align: left; }
  .pgb-stat { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; justify-content: initial; padding: .85rem 1.5rem; }
  .pgb-cta { justify-content: initial; padding: .85rem 1.5rem; }
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 100vh; }
  .hero-left { padding: 10rem 4rem 8rem 5rem; }
  .hero-right { padding: 10rem 5rem 8rem 5rem; }
  .hero-right::before { display: block; }
  .stats-bar { position: absolute; grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .premium-header { grid-template-columns: 1fr 1fr; }
  .quote-section { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr 1.6fr; }
  .gallery-item { width: 230px; height: 340px; margin-left: -85px; }
  .gallery-tags { opacity: 0; transform: translateY(6px); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .products-section { padding: 7rem 5rem; }
  .premium-section { padding: 8rem 5rem; }
  .process-section { padding: 8rem 5rem; }
  .quote-content { padding: 6rem 5rem; }
  .quote-form-side { padding: 5rem; }
  .about-content { padding: 6rem 5rem; }
}

/* ══════════════════════════════════════════════
   CLIENTELE CAROUSEL
   ══════════════════════════════════════════════ */

.pc-clients {
  background: #fff;
  padding: 4rem 0 4.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.pc-clients-inner {
  text-align: center;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  max-width: 800px;
}
.pc-clients-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #F03F7A;
  margin: 0 0 .85rem;
  font-weight: 500;
}
.pc-clients-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -.015em;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}
.pc-clients-headline em {
  font-style: italic;
  color: #F03F7A;
  font-weight: 600;
}

.pc-clients-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.pc-clients-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: max-content !important;
  animation: pc-clients-scroll 28s linear infinite !important;
  will-change: transform;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.pc-clients:hover .pc-clients-track {
  animation-play-state: paused !important;
}
.pc-clients-item {
  flex: 0 0 auto !important;
  width: 200px !important;
  height: 70px !important;
  padding: 0 1.5rem !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1a1a1a;
  box-sizing: border-box;
}
.pc-clients-item img {
  display: block !important;
  width: auto !important;
  height: 38px !important;
  max-width: 160px !important;
  max-height: 38px !important;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .45;
  transition: filter .4s ease, opacity .4s ease, transform .4s ease;
}
.pc-clients-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
@keyframes pc-clients-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .pc-clients-track { animation: none !important; }
}
.pc-clients { padding: 3rem 0 3.5rem; }
.pc-clients-inner { margin-bottom: 1.75rem; padding: 0 1.25rem; }
.pc-clients-item { width: 150px !important; height: 60px !important; padding: 0 1rem !important; }
.pc-clients-item img { height: 30px !important; max-width: 130px !important; max-height: 30px !important; }

@media (min-width: 700px) {
  .pc-clients { padding: 4rem 0 4.5rem; }
  .pc-clients-inner { margin-bottom: 2.5rem; padding: 0 2rem; }
  .pc-clients-item { width: 200px !important; height: 70px !important; padding: 0 1.5rem !important; }
  .pc-clients-item img { height: 38px !important; max-width: 160px !important; max-height: 38px !important; }
}
