/* Big Red Banana — Cleaned, mobile-first global styles */
/* Latest variables (kept the final :root block from file) */
:root {
  --card-radius: 20px;
  --card-shadow: 0 4px 20px rgba(0,0,0,.05);
  --card-shadow-hover: 0 20px 60px rgba(0,0,0,.15);
  --brand-yellow: #f9c300;
  --brand-red: #e53935;
  --text: #121212;
  --text-light: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #fff;
  --bg-subtle: #f8fafc;
  --gradient-primary: linear-gradient(135deg, var(--brand-yellow) 0%, #ffd54f 100%);
  --gradient-accent: linear-gradient(135deg, var(--brand-red) 0%, #ff5722 100%);
  --shadow: 0 6px 18px rgba(0,0,0,.08);
  --brb-yellow: #f9c300;
  --brb-red: #e53935;
  --brb-black: #111111;
  --brb-text: #1a1a1a;
  --brb-muted: #5a5a5a;
  --brb-card: #fff8db;
}

/* Fonts & resets */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

* { box-sizing: border-box; transition: box-shadow 0.2s ease; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-subtle);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .brands-scroller { animation: none !important; }
  .brands-track img { transition: none !important; }
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0e0e10;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; letter-spacing: 0.1px; }
.brand .brand-text .line1, .brand .brand-text .line2 { font-weight: 800; font-size: 14px; }

/* Mobile Navigation */
.nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0f0f10;
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-bottom: 1px solid #262626;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav a {
  color: #e5e7eb; text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 14px 12px; border-radius: 8px; transition: all 0.2s ease; display: block;
}
.nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid #333;
  background: #141414; color: #fff; font-size: 18px; cursor: pointer;
}
.nav-toggle:hover { background: #1f1f1f; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 12px; font-weight: 700;
  text-decoration: none; border: 2px solid transparent; font-size: 15px;
  transition: all 0.2s ease; cursor: pointer; text-align: center; min-height: 48px;
}
.btn-primary {
  background: #fff; color: #111; border: 2px solid var(--brand-yellow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,195,0,0.3); }
.btn-primary-cta {
  background: var(--gradient-primary); color: var(--text); padding: 10px 20px;
  border-radius: 50px; font-weight: 700; border: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,195,0,0.3); color: var(--text); }
.btn-outline { border-color: #333; color: #fff; background: #111; }
.btn-outline:hover { background: #181818; border-color: #555; }

/* CTA helper */
.cta { margin-top: 12px; width: 100%; }
@media (min-width: 900px) { .cta { margin-top: 0; width: auto; } }

/* Desktop Navigation */
@media (min-width: 900px) {
  .site-header .row { height: 72px; }
  .brand .brand-text .line1, .brand .brand-text .line2 { font-size: 18px; }
  .brand { gap: 12px; }
  .nav {
    position: static; transform: none; opacity: 1; visibility: visible; background: none;
    padding: 0; border: none; flex-direction: row; align-items: center; gap: 20px;
    max-height: none; overflow: visible;
  }
  .nav a { padding: 8px 12px; font-size: 15px; }
  .nav-toggle { display: none; }
}

/* HERO */
.hero {
  position: relative; background: var(--brand-yellow); padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hero .wrap { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.hero h1 {
  font-size: 32px; line-height: 1.1; margin: 0 0 16px; font-weight: 900;
  letter-spacing: -0.5px; max-width: 16ch; margin-left: auto; margin-right: auto;
}
.hero .accent { color: var(--brand-red); }
.hero p { color: #222; font-size: 18px; margin: 0 0 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero .actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.hero .actions .btn { width: 100%; max-width: 280px; }
.hero .banana { width: 80%; max-width: 360px; margin: 0 auto; display: block; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 14px; font-size: 13px; color: #111; }
.hero-badges span { background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.08); padding: 6px 10px; border-radius: 999px; }

@media (min-width: 768px) {
  .hero { padding: 60px 0; }
  .hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; text-align: left; }
  .hero h1 { font-size: 48px; margin-bottom: 12px; max-width: 18ch; margin-left: 0; }
  .hero .actions { flex-direction: row; justify-content: flex-start; }
  .hero .actions .btn { width: auto; }
  .hero .banana { max-width: 520px; margin: 0; }
}
@media (min-width: 1024px) {
  .hero { padding: 96px 0; min-height: 88vh; }
  .hero h1 { font-size: 62px; letter-spacing: -1px; }
  .hero p { font-size: 20px; max-width: 640px; }
  .hero .banana { max-width: 600px; transform: translateY(10px); }
  .hero-badges { justify-content: flex-start; }
}
/* Decorative wave under hero (desktop only) */
.hero-wave { display: none; position: absolute; bottom: -1px; left: 0; right: 0; width: 100%; height: 80px; fill: #0e0e10; }
@media (min-width: 1024px) { .hero-wave { display: block; } }

/* Clients */
.clients { background: #0e0e10; color: #fff; padding: 18px 0; }
.clients .row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; opacity: 0.9; }
.clients img { height: 20px; filter: invert(1) contrast(90%); opacity: 0.8; }
@media (min-width: 768px) { .clients { padding: 22px 0; } .clients .row { gap: 40px; } .clients img { height: 28px; } }

/* Sections */
.section { padding: 48px 0; }
.section .title { font-size: 28px; margin: 0 0 12px; font-weight: 900; line-height: 1.2; }
.lead {
  color: #4b5563; max-width: 720px; font-size: 18px; line-height: 1; margin: 0 auto 12px; text-align: center;
}
@media (min-width: 768px) { .section { padding: 64px 0; } .section .title { font-size: 36px; margin-bottom: 8px; } .lead { font-size: 18px; } }
@media (min-width: 1024px) { .section { padding: 72px 0; } }

/* Cards */
.cards { display: flex; flex-direction: column; gap: 16px; }
.card {
  border: 1px solid var(--border); border-radius: 16px; padding: 20px; background: #fff; box-shadow: var(--card-shadow);
  transition: all 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card h3 { margin: 0 0 12px; font-size: 18px; font-weight: 700; color: var(--text); }
.card p { color: #4b5563; font-size: 15px; margin: 0; line-height: 1.5; }
@media (min-width: 640px) { .cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3,1fr); } }

/* CTA band */
.cta-band { text-align: center; background: #f8fafc; padding: 72px 20px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-actions .btn { min-width: 220px; }
.fineprint { font-size: 14px; color: #6b7280; margin-top: 12px; text-align: center; line-height: 1.5; }

/* Reviews */
.review {
  border: 1px solid #eee; border-radius: 16px; padding: 20px; margin-bottom: 16px; background: #fff; box-shadow: var(--card-shadow);
}
.review .who { font-weight: 800; margin-bottom: 8px; color: var(--text); font-size: 16px; }
.review div:last-child { color: #4b5563; font-size: 15px; line-height: 1.5; }

/* Footer */
.site-footer {
  background: #0e0e10; color: #d1d5db; padding: 40px 0 24px; margin-top: 48px; border-top: 1px solid #1f2937;
}
.site-footer .grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.site-footer p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; }
.site-footer a { color: #d1d5db; text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer .credits { margin-top: 32px; border-top: 1px dashed #30363d; padding-top: 20px; font-size: 13px; color: #9ca3af; text-align: center; }
@media (min-width: 640px) { .site-footer .grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .site-footer { padding: 48px 0 32px; margin-top: 64px; } .site-footer .grid { grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr; } }

/* Forms */
form { display: flex; flex-direction: column; gap: 16px; }
input, textarea {
  padding: 14px 16px; border-radius: 12px; border: 1px solid #e5e7eb; font-size: 16px; font-family: inherit; transition: border-color 0.2s ease; width: 100%;
}
input:focus, textarea:focus { outline: none; border-color: var(--brand-yellow); box-shadow: 0 0 0 3px rgba(249,195,0,0.1); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Iframe wrapper */
.iframe-wrapper { position: relative; padding-top: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--card-shadow); }
.iframe-wrapper iframe { width: 100%; height: 70vh; border: 0; background: #fff; }
@media (min-width: 768px) { .iframe-wrapper iframe { height: 80vh; } }

/* Utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus */
.btn:focus, button:focus, a:focus { outline: 2px solid var(--brand-yellow); outline-offset: 2px; }

/* Better mobile touch targets */
@media (max-width: 767px) { .btn, button, a { min-height: 44px; min-width: 44px; } }

/* Cards / Work (portfolio) - Enhanced Portfolio */
.section-portfolio { padding: 80px 0 120px; position: relative; }
.portfolio-intro { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.portfolio-title { font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -0.03em; margin: 0 0 16px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.portfolio-lead { color: var(--muted); font-size: 18px; line-height: 1.6; margin-bottom: 40px; }

.filters {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px;
  background: white; padding: 8px; border-radius: 50px; box-shadow: var(--card-shadow); max-width: fit-content; margin-left: auto; margin-right: auto;
}
.filter-btn {
  appearance: none; border: none; background: transparent; color: var(--muted); padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.filter-btn:hover { color: var(--text); background: rgba(249,195,0,0.1); }
.filter-btn.is-active { background: var(--gradient-primary); color: var(--text); transform: scale(1.05); box-shadow: 0 4px 15px rgba(249,195,0,0.3); }

.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px,1fr)); gap: 30px; opacity: 0; animation: fadeInUp 0.6s ease forwards 0.2s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0); } }

.work-card {
  background: white; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; cursor: pointer;
}
.work-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease;
}
.work-card:hover::before { opacity: 1; }
.work-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--card-shadow-hover); }
.work-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.4s ease; border: none !important; outline: none !important; }
.work-card:hover .work-cover { transform: scale(1.05); }

.work-body { padding: 24px; position: relative; }
.work-title { margin: 0 0 8px; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); }
.work-meta { margin: 0 0 16px; color: var(--muted); font-size: 14px; font-weight: 500; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: linear-gradient(135deg, #fff9db 0%, #fef3c7 100%); border: 1px solid rgba(249,195,0,0.2);
  padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; color: #92400e;
}

/* Video play button & modal */
.play-wrap { position: relative; display: block; overflow: hidden; border-radius: var(--card-radius) var(--card-radius) 0 0; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: 0; font-size: 20px; cursor: pointer; box-shadow: 0 8px 25px rgba(0,0,0,0.2); transition: all 0.3s ease; display:flex; align-items:center; justify-content:center; backdrop-filter: blur(10px);
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); background: white; }

.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 999; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal.is-open { display: flex; }
.modal-card { width: min(1080px,95vw); background: #000; border-radius: 16px; overflow: hidden; position: relative; animation: scaleIn 0.3s cubic-bezier(0.4,0,0.2,1); }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-img { width: 100%; height: auto; display: block; }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border: 0; border-radius: 50px; width: 44px; height: 44px; font-size: 20px; font-weight: 400; cursor: pointer; display:flex; align-items:center; justify-content:center; transition: all 0.2s ease;
}
.modal-close:hover { background: white; transform: scale(1.1); }
.modal-iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

/* Case Study link */
.case-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--brand-red); text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s ease; }
.case-link:hover { color: var(--text); transform: translateX(4px); }

/* Mobile optimizations for portfolio */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-portfolio { padding: 40px 0 80px; }
  .portfolio-intro { margin-bottom: 40px; }
  .work-grid { grid-template-columns: 1fr; gap: 20px; }
  .filters { padding: 6px; gap: 4px; }
  .filter-btn { padding: 10px 16px; font-size: 13px; }
  .brand-text { font-size: 12px; }
}

/* Loading states */
.work-card.loading { opacity: 0.7; pointer-events: none; }

/* Accessibility outlines */
.work-card:focus { outline: 2px solid var(--brand-yellow); outline-offset: 2px; }
.filter-btn:focus { outline: 2px solid var(--brand-yellow); outline-offset: 2px; }

/* Pricing / tiers */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 12px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.tier {
  position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; box-shadow: 0 6px 22px rgba(0,0,0,.06);
  padding: 22px 22px 20px; display:flex; flex-direction:column; gap:16px; transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.10); }
.tier.is-popular { border-color: #111; box-shadow: 0 18px 44px rgba(0,0,0,.12); }
.badge { position: absolute; top: 14px; right: 14px; background: #111; color: #fff; font-weight: 800; font-size: 12px; letter-spacing: .2px; padding: 6px 10px; border-radius: 999px; }
.badge-gold { background: linear-gradient(135deg,#f59e0b,#fbbf24); color: #111; }

.tier-head { display:flex; flex-direction:column; gap:4px; }
.tier-name { margin:0; font-size:18px; font-weight:900; letter-spacing:-.2px; color:#111; }
.tier-sub { margin:0; color:#6b7280; font-size:14px; }

.tier-price { display:flex; align-items:flex-end; gap:4px; line-height:1; margin-top:6px; }
.currency { font-weight:800; font-size:16px; color:#111; transform:translateY(-2px); }
.amount { font-weight:900; font-size:34px; color:#111; letter-spacing:-.5px; }
.period { color:#6b7280; font-size:14px; margin-left:2px; }

.tier-features { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; color:#374151; font-size:14px; }
.tier-features .tick { font-weight:900; display:inline-block; width:18px; }

.tier-meta { margin-top:auto; font-size:13px; color:#6b7280; background:#f8fafc; border:1px dashed #e5e7eb; border-radius:12px; padding:10px 12px; }

.btn-pricing { margin-top:10px; border-radius:10px; font-weight:800; background:#111; color:#fff; padding:12px 14px; text-decoration:none; text-align:center; }
.btn-pricing:hover { filter:brightness(1.05); transform:translateY(-1px); }

/* Pills */
.plans-pills { gap:12px; padding:8px 10px; border-radius:999px; box-shadow:0 8px 22px rgba(0,0,0,0.06); }
.pill { font-weight:700; padding:10px 14px; }
.pill.is-active { background:#ffd34d; }

/* FAQ styling */
.faq-section { max-width: 800px; margin: auto; }
.faq-title { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.faq-item { margin-bottom: 10px; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question {
  width: 100%; background: #fff; border: none; outline: none; text-align: left; padding: 15px 20px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.3s;
  position: relative; padding-right: 48px;
}
.faq-question:hover { background: #f9f9f9; }
.faq-answer { max-height: 0; overflow: hidden; background: #fff; transition: max-height 0.3s ease; padding: 0 20px; }
.faq-answer p { margin: 15px 0; }

/* Chevron arrow on question */
.faq-question::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid #9aa3b2; border-bottom: 2px solid #9aa3b2; transform: translateY(-50%) rotate(-45deg); transition: transform .25s ease, border-color .25s ease;
}
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg) scale(1.2); border-color: #F2C94C; transition: transform .3s cubic-bezier(.68,-0.55,.27,1.55);
}
.faq-question { background: #fff; transition: background .3s ease; }

/* Custom builder */
.custom-builder { max-width: 1200px; margin: 0 auto; }
.builder-head { text-align: center; margin-bottom: 40px; }
.builder-head h2 { font-size: 2.5rem; font-weight: 900; color: #111827; margin-bottom: 12px; }
.builder-head p { font-size: 1.1rem; color: #6b7280; }
.builder-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .builder-grid { grid-template-columns: 2fr 1fr; } }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.service-card {
  position: relative; display: block; cursor: pointer; background: white; border: 2px solid #f3f4f6; border-radius: 20px; overflow: hidden; transition: all 0.2s ease; padding: 0;
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.service-card.selected { border-color: #fbbf24; box-shadow: 0 8px 25px rgba(251,191,36,0.2); }
.service-card input[type="checkbox"] { position: absolute; top: 20px; left: 20px; width: 20px; height: 20px; accent-color: #fbbf24; cursor: pointer; }

.svc-body { padding: 24px 24px 20px 56px; }
.svc-top { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:12px; }
.svc-top h3 { font-size:1.1rem; font-weight:700; color:#111827; margin:0; }
.price { font-weight:900; color:#111827; font-size:1.1rem; }
.svc-body p { color:#6b7280; font-size:14px; line-height:1.4; margin-bottom:16px; }

.qty { display:flex; align-items:center; gap:12px; }
.qty button {
  width:36px; height:36px; border-radius:10px; border:2px solid #e5e7eb; background: white; cursor:pointer; font-weight:700; font-size:16px;
  display:flex; align-items:center; justify-content:center; transition: all 0.2s ease;
}
.qty button:hover { border-color: #fbbf24; background: #fef3c7; }
.qty button:disabled { opacity: 0.5; cursor: not-allowed; }
.qty-input {
  width:60px; padding:10px 8px; border-radius:10px; border:2px solid #e5e7eb; text-align:center; font-weight:700; font-size:14px;
}
.qty-input:disabled { background: #f9fafb; color: #9ca3af; }
.qty-unit { color:#6b7280; font-size:12px; font-weight:600; }

/* Summary */
.summary {
  background: white; border: 2px solid #f3f4f6; border-radius: 24px; padding: 32px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); position: sticky; top: 100px; height: fit-content;
}
.summary h4 { font-size: 1.3rem; font-weight: 900; color: #111827; margin-bottom: 20px; }
.summary-list { list-style: none; margin-bottom: 24px; }
.summary-list li { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; padding:12px 0; border-bottom:1px solid #f3f4f6; font-size:14px; }
.summary-list li:last-child { border-bottom: none; }
.summary-list .empty { color: #9ca3af; text-align: center; padding: 20px 0; font-style: italic; }
.summary-list .line strong { color: #111827; }
.total { background: #f9fafb; padding: 20px; border-radius: 16px; margin-bottom: 24px; }
.total-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.total-row:last-child { margin-bottom:0; padding-top:12px; border-top:2px solid #e5e7eb; }
.total-row strong { font-size:1.5rem; color:#111827; }
.summary-actions { display:flex; flex-direction:column; gap:12px; }

/* BRB Process (kept original #brb-process block) */
#brb-process {
  font-family: system-ui,-apple-system,Segoe UI,Inter,Roboto,Arial,sans-serif;
  background: linear-gradient(180deg,var(--brb-yellow) 0%, #ffe27a 100%);
  color: var(--brb-text);
  position: relative;
  overflow: hidden;
  padding: 72px 20px 84px;
}
#brb-process .container { max-width: 1160px; margin: 0 auto; position: relative; }
#process-title {
  font-size: clamp(28px,4vw,40px); line-height: 1.05; margin: 0 0 28px; font-weight: 900; color: var(--brb-black);
  letter-spacing: -0.5px; text-transform: uppercase;
}
#brb-process .subtitle { margin: 0 0 40px; color: var(--brb-black); font-weight: 600; opacity:.85; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px 26px; position: relative; }
.step {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 18px; position: relative; isolation: isolate;
  min-height: 158px; border: 2px solid #00000010;
}
.step .badge {
  width:44px; height:44px; border-radius:999px; display:grid; place-items:center; font-weight:800; color: var(--brb-black);
  background:#fff; border:4px solid var(--brb-yellow); box-shadow: 0 6px 0 #00000020; position:absolute; top:-22px; left:-12px; z-index:2;
}
.step h3 { margin: 22px 0 6px 0; font-size:18px; line-height:1.2; font-weight:900; color: var(--brb-black); }
.step h3 .dot { color: var(--brb-red); }
.step p { margin: 0; font-size: 14.5px; line-height: 1.45; color: var(--brb-text); }

.chip {
  display: inline-block; background: var(--brb-card); border: 1.5px dashed var(--brb-black);
  padding: 4px 10px; border-radius: 999px; font-size:12px; font-weight:700; margin-top:10px;
}

/* Dashed decorative path */
.path { position:absolute; inset:0; pointer-events:none; z-index:0; opacity:.6; }
.path svg { width:100%; height:100%; display:block; }
.path path { fill:none; stroke:#000; stroke-opacity:.25; stroke-width:3; stroke-dasharray:6 10; stroke-linecap:round; }

@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) {
  #brb-process { padding: 56px 16px 72px; }
  .process-grid { grid-template-columns: 1fr; gap: 22px; }
  .step { min-height: auto; }
  .step h3 { font-size: 17px; }
}




.brands-wrap {
  background: #0e0e0e;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.brands-scroller {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.brands-scroller::before,
.brands-scroller::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.brands-scroller::before {
  left: 0;
  background: linear-gradient(to right, #0e0e0e 0%, transparent 100%);
}

.brands-scroller::after {
  right: 0;
  background: linear-gradient(to left, #0e0e0e 0%, transparent 100%);
}

/* Animation wrapper */
.scroller-track {
  display: flex;
  animation: scroll-rtl 30s linear infinite;
  gap: 80px;
  align-items: center;
  will-change: transform;
}

/* Pause animation on hover */
.brands-wrap:hover .scroller-track {
  animation-play-state: paused;
}

/* Logo items */
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 60px;
  max-width: 150px;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
}

/* Color on individual logo hover only */
.logo-item img:hover {
  filter: none;
  transform: scale(1.1);
}

/* Animation keyframes - Right to Left */
@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile responsive */
@media (max-width: 640px) {
  .scroller-track {
    gap: 60px;
  }
  
  .logo-item img {
    height: 40px;
  }
  
  .brands-scroller::before,
  .brands-scroller::after {
    width: 60px;
  }
}

/* Target all Closera images that follow Xolvit */
.logo-item img[alt="Closera"] {
  margin-left: 40px;
}

/* But remove margin from the very first Closera */
.logo-item:first-child img[alt="Closera"] {
  margin-left: 0;
}