:root {
  --bg: #08090f;
  --surface: #0f1120;
  --surface2: #151829;
  --border: rgba(255,255,255,0.07);
  --accent: #ff3d8a;
  --accent2: #ff85c2;
  --accent-glow: rgba(255,61,138,0.25);
  --accent-blue: #0077ff;
  --text: #e8eaf0;
  --muted: #7a7f9a;
  --white: #ffffff;
  --success: #00e5a0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,9,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.nav-brand { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--white); line-height: 1.1; }
.nav-brand span { display: block; font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #fff !important;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600 !important; font-size: 13px !important;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px; z-index: 200;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav open — !important overrides display:none set by media query */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  gap: 14px;
  z-index: 999;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.nav-links.open a { font-size: 15px; color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; }
.hero-orb-1 {
  width: clamp(260px, 50vw, 600px); height: clamp(260px, 50vw, 600px);
  background: var(--accent); top: -150px; left: -100px;
  animation: float1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: clamp(160px, 32vw, 350px); height: clamp(160px, 32vw, 350px);
  background: var(--accent2); bottom: -60px; right: -60px;
  animation: float2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: clamp(100px, 20vw, 250px); height: clamp(100px, 20vw, 250px);
  background: var(--accent-blue); top: 40%; right: 5%; opacity: 0.1;
  animation: float1 14s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,61,138,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,61,138,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
@keyframes float1 { 0%,100%{transform:translate(0,0)scale(1)} 50%{transform:translate(30px,20px)scale(1.05)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)scale(1)} 50%{transform:translate(-20px,-30px)scale(1.03)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,61,138,0.1); border: 1px solid rgba(255,61,138,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; color: var(--accent2); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--accent2); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.hero h1 {
  font-size: clamp(32px, 6vw, 78px); font-weight: 800;
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px); color: var(--muted);
  max-width: 600px; margin: 0 auto 40px; font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both; margin-bottom: 60px;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 500; font-size: 15px; text-decoration: none;
  border: 1px solid var(--border); transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.stats-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both; width: 100%;
}
.stat-item { padding: 16px 28px; border-left: 1px solid var(--border); text-align: center; min-width: 0; }
.stat-item:first-child { border-left: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); font-weight: 600; margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 18px; }
.section-desc { font-size: 16px; color: var(--muted); max-width: 560px; font-weight: 300; line-height: 1.7; }

/* ── BRAND STATEMENT ── */
.brand-statement { background: var(--surface); }
.brand-statement .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.brand-feature { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 22px; transition: border-color 0.2s; }
.brand-feature:hover { border-color: rgba(255,61,138,0.3); }
.brand-feature-icon { font-size: 22px; margin-bottom: 10px; }
.brand-feature h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.brand-feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 26px; position: relative; overflow: hidden; transition: all 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 18px 18px 0 0;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(255,61,138,0.2); box-shadow: 0 16px 50px rgba(0,0,0,0.4); }
.service-icon {
  width: 46px; height: 46px; background: rgba(255,61,138,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.service-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-weight: 300; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── PROCESS ── */
.process { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.process-step { padding: 26px; background: var(--bg); border: 1px solid var(--border); border-radius: 18px; transition: all 0.3s; }
.process-step:hover { border-color: rgba(255,61,138,0.25); transform: translateY(-4px); }
.process-num {
  font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 12px; opacity: 0.4;
}
.process-step h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── VALUE PROP ── */
.value-wrap {
  background: linear-gradient(135deg, rgba(255,61,138,0.08), rgba(255,133,194,0.04));
  border: 1px solid rgba(255,61,138,0.2);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.value-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-check {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; color: #fff; margin-top: 2px;
}
.value-item-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.value-item-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.value-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value-metric {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 12px; text-align: center; min-width: 0;
}
.value-metric-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px; word-break: break-word;
}
.value-metric p { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ── FAQ ── */
.faq { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 44px; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 22px; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(255,61,138,0.25); }
.faq-item h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 9px; }
.faq-item h4::before {
  content: 'Q'; width: 20px; height: 20px;
  background: rgba(255,61,138,0.15); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--accent2); font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.faq-item p { font-size: 13px; color: var(--muted); line-height: 1.7; padding-left: 29px; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.contact-channel {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; transition: border-color 0.2s;
}
.contact-channel:hover { border-color: rgba(255,61,138,0.3); }
.channel-icon {
  width: 38px; height: 38px; background: rgba(255,61,138,0.1);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.channel-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 3px; }
.channel-value { font-size: 14px; font-weight: 600; color: var(--white); }
.channel-value a { color: var(--accent2); text-decoration: none; }
.channel-value a:hover { text-decoration: underline; }
.channel-note { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── FORM ── */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.form-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 9px;
  padding: 11px 13px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7f9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
select option { background: var(--surface2); }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
textarea { resize: vertical; min-height: 100px; }
.captcha-box {
  background: var(--bg); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px; padding: 11px 14px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 16px;
}
.captcha-label { font-size: 13px; color: var(--muted); white-space: nowrap; }
.captcha-nums { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: 2px; }
.captcha-field {
  width: 60px; background: var(--surface2); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px; padding: 7px 9px; color: var(--white);
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  text-align: center; outline: none; -moz-appearance: textfield;
  -webkit-appearance: none; appearance: textfield; transition: border-color 0.2s, box-shadow 0.2s;
}
.captcha-field::-webkit-outer-spin-button, .captcha-field::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.captcha-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.captcha-status { font-size: 18px; min-width: 20px; }
.btn-submit {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none; border-radius: 9px;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; box-shadow: 0 0 28px var(--accent-glow);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--accent-glow); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.form-msg { display: none; padding: 12px 15px; border-radius: 9px; font-size: 13px; margin-top: 12px; text-align: center; }
.form-msg.success { background: rgba(0,229,160,0.1); border: 1px solid rgba(0,229,160,0.3); color: var(--success); display: block; }
.form-msg.error { background: rgba(255,50,50,0.1); border: 1px solid rgba(255,50,50,0.3); color: #ff6b6b; display: block; }

/* ── CTA ── */
.cta-inner {
  background: linear-gradient(135deg, rgba(255,61,138,0.1), rgba(255,133,194,0.04));
  border: 1px solid rgba(255,61,138,0.2);
  border-radius: 22px; padding: clamp(32px, 6vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; background: var(--accent);
  border-radius: 50%; filter: blur(100px); opacity: 0.07;
}
.cta-inner h2 { font-size: clamp(22px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; position: relative; }
.cta-inner p { font-size: 15px; color: var(--muted); margin-bottom: 32px; position: relative; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 52px 5% 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 250px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 18px; list-style: none; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--muted); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ══════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════ */
@media (max-width: 960px) {
  .brand-statement .container { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .value-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .brand-right { grid-template-columns: 1fr 1fr; }
  .value-wrap { grid-template-columns: 1fr; gap: 26px; }
  .value-right { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 92px 5% 56px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; max-width: 300px; }
  section { padding: 56px 5%; }
  .contact-form { padding: 22px 18px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; max-width: 300px; }
  .stat-item { padding: 11px 14px; }
  .stat-num { font-size: 24px; }
}

@media (max-width: 480px) {
  nav { padding: 0 4%; }
  .nav-brand { font-size: 14px; }
  .brand-right { grid-template-columns: 1fr; }
  .value-right { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 9px 10px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 9px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── HAPPY CLIENTS BANNER ── */
.clients-banner { padding-top: 60px; padding-bottom: 60px; }
.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: clients-scroll 32s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.client-logo {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.client-logo:hover { border-color: rgba(255,61,138,0.3); transform: translateY(-3px); }
.client-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(1.7) contrast(0.75);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logo:hover img { filter: grayscale(0) brightness(1) contrast(1); opacity: 1; }

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

@media (max-width: 768px) {
  .clients-banner { padding-top: 44px; padding-bottom: 44px; }
  .client-logo { width: 72px; height: 72px; }
  .clients-track { gap: 32px; }
}
