/* ========================================
   iBridge Clone – style.css  (Light theme matching original)
   ======================================== */

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

:root {
  --bg:           #ffffff;
  --bg-2:         #f8f8f6;
  --bg-3:         #f2f2f0;
  --border:       #e8e8e4;
  --border-hover: #d0d0c8;
  --text-primary: #1a1a18;
  --text-secondary:#555550;
  --text-muted:   #999990;
  --accent:       #1a1a18;
  --accent-hover: #333330;
  --accent-light: #1a1a18;
  --link-color:   #1a1a18;
  --pill-bg:      #f0f0ec;
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.18s ease;
}

html { scroll-behavior: smooth; }

/* ── FOUC Prevention: body hidden until JS applies styles ── */
body {
  opacity: 0;
  transition: opacity 0.25s ease;
}
body.page-ready {
  opacity: 1;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container.fill { max-width: 100%; }
.space-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ---- NAVBAR ---- */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  min-height: 64px;
}
/* Ensure space-out inside nav stays on one line */
.nav-bar .space-out {
  flex-wrap: nowrap;
  align-items: center;
  min-height: 36px;
}
/* Logo inside nav: fixed height so it never causes line breaks */
.nav-bar .ibridge-logo {
  flex-shrink: 0;
  line-height: 1;
  display: flex !important;
  align-items: center;
}
.nav-bar .ibridge-logo img {
  height: 40px !important;
  max-width: 160px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* ---- LOGO ---- */
.ibridge-logo {
  text-decoration: none;
  visibility: hidden;
  display: inline-flex;
  align-items: center;
}
.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--text-primary); }

/* ---- CTA BUTTON ---- */
.cta-btn {
  display: inline-block;
  background: var(--text-primary);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ---- BUTTON ROW ---- */
.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- AVATAR GROUP ---- */
.x-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-group { display: flex; }
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  overflow: hidden;
  background: #fff;
  background-size: cover;
  background-position: center;
}
.avatar:first-child { margin-left: 0; }
.av1 { background-image: url('https://logo.clearbit.com/evolution.com'); }
.av2 { background-image: url('https://logo.clearbit.com/pragmaticplay.com'); }
.av3 { background-image: url('https://logo.clearbit.com/nuvei.com'); }

.text-mini {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-grad {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: var(--bg-2);
  pointer-events: none;
  z-index: 0;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}


.text-wrap-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 24px 0 20px;
  color: var(--text-primary);
}

.text-wrap-hero p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ======================================================
   HERO VISUAL – ORBITAL NETWORK (v3 Premium)
   ====================================================== */

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 500px;
  height: 460px;
}

/* ---- ORBITAL STAGE (transparent, right portion) ---- */
.provider-feed {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 330px;
  height: 330px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

/* Aurora background glow */
.provider-feed::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(109,40,217,0.14) 0%, rgba(79,70,229,0.07) 45%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  animation: auroraBreath 4.5s ease-in-out infinite;
}
.provider-feed::after { display: none; }

@keyframes auroraBreath {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}

/* ---- ORBIT RINGS ---- */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-ring-1 {
  width: 168px; height: 168px;
  border: 1px dashed rgba(109,40,217,0.28);
  animation: ringRotate 40s linear infinite;
}
.orbit-ring-2 {
  width: 248px; height: 248px;
  border: 1px solid rgba(79,70,229,0.15);
  animation: ringRotate 70s linear infinite reverse;
}
.orbit-ring-3 {
  width: 328px; height: 328px;
  border: 1px dashed rgba(14,165,233,0.12);
  animation: ringRotate 100s linear infinite;
}
@keyframes ringRotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* ---- ORBIT NODES (provider badges on rings) ---- */
.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  animation: orbitMove var(--dur, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
  z-index: 4;
}

@keyframes orbitMove {
  from { transform: rotate(0deg) translateX(var(--radius, 84px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--radius, 84px)) rotate(-360deg); }
}

.orbit-badge {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.18) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
/* glass sheen on top half */
.orbit-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.22), transparent);
  border-radius: 13px 13px 0 0;
  pointer-events: none;
}
.orbit-badge img {
  width: 82% !important;
  height: 82% !important;
  position: absolute !important;
  inset: 9% !important;
  object-fit: contain !important;
  border-radius: 4px !important;
}
.orbit-badge .provider-logo-fallback {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.58rem !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
}
.orbit-node:hover .orbit-badge {
  transform: scale(1.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32), 0 0 0 3px rgba(255,255,255,0.2);
}

/* Tooltip */
.orbit-tooltip {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,10,35,0.94);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  z-index: 20;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.orbit-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(15,10,35,0.94);
}
.orbit-node:hover .orbit-tooltip { opacity: 1; }

/* ---- CENTER HUB (glowing orb) ---- */
.hub-center {
  position: absolute;
  top: 50%;
  right: 155px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}
.hub-ring.ring-1 {
  width: 76px; height: 76px;
  border-top-color: rgba(109,40,217,0.6);
  border-right-color: rgba(109,40,217,0.2);
  animation: hubSpin1 3.2s linear infinite;
}
.hub-ring.ring-2 {
  width: 98px; height: 98px;
  border-bottom-color: rgba(79,70,229,0.5);
  border-left-color: rgba(79,70,229,0.15);
  animation: hubSpin2 5s linear infinite;
}
@keyframes hubSpin1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hubSpin2 { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hub-logo {
  width: 56px; height: 56px;
  border-radius: 17px;
  background: linear-gradient(145deg, #7c3aed 0%, #4f46e5 50%, #2563eb 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(109,40,217,0.18),
    0 12px 48px rgba(109,40,217,0.5),
    0 1px 0 rgba(255,255,255,0.15) inset;
  animation: hubGlow 3.5s ease-in-out infinite;
}
.hub-logo > span { color: #fff; }
.hub-logo > span > span { color: rgba(210,195,255,0.85); }
@keyframes hubGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(109,40,217,0.18), 0 12px 48px rgba(109,40,217,0.5), 0 1px 0 rgba(255,255,255,0.15) inset; }
  50%       { box-shadow: 0 0 0 8px rgba(109,40,217,0.10), 0 18px 70px rgba(109,40,217,0.7), 0 1px 0 rgba(255,255,255,0.15) inset; }
}

/* ---- FLOATING CATEGORY PILLS ---- */
.cat-pill {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.69rem;
  font-weight: 700;
  color: #1e1b4b;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09), 0 1px 0 rgba(255,255,255,1) inset;
  white-space: nowrap;
  animation: pillFloat 3s ease-in-out infinite;
  letter-spacing: -0.01em;
  cursor: default;
  z-index: 5;
  transition: box-shadow 0.3s ease;
}
.cat-pill:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 2px rgba(109,40,217,0.2);
}
.cat-pill::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
  margin-top: -1px;
}
.pill-a::before { background: #0ea5e9; box-shadow: 0 0 4px rgba(14,165,233,0.6); }
.pill-b::before { background: #e11d48; box-shadow: 0 0 4px rgba(225,29,72,0.6); }
.pill-c::before { background: #7c3aed; box-shadow: 0 0 4px rgba(124,58,237,0.6); }
.pill-d::before { background: #059669; box-shadow: 0 0 4px rgba(5,150,105,0.6); }
.pill-e::before { background: #d97706; box-shadow: 0 0 4px rgba(217,119,6,0.6); }

.pill-a { top: 18px;  left: -12px; animation-delay: 0s;   animation-duration: 3.3s; }
.pill-b { top: 88px;  left: 0px;   animation-delay: 0.7s; animation-duration: 3.9s; }
.pill-c { top: 162px; left: -8px;  animation-delay: 1.4s; animation-duration: 3.6s; }
.pill-d { top: 236px; left: 4px;   animation-delay: 2.1s; animation-duration: 4.1s; }
.pill-e { top: 310px; left: -4px;  animation-delay: 0.5s; animation-duration: 3.7s; }

@keyframes pillFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33%       { transform: translateY(-7px) translateX(5px); }
  66%       { transform: translateY(5px) translateX(-3px); }
}

/* ---- STATS BADGE (deep dark + shimmer) ---- */
.hero-badge {
  position: absolute;
  bottom: 16px;
  right: 340px;
  background: linear-gradient(140deg, #150d2e 0%, #24184a 100%);
  border-radius: 18px;
  padding: 16px 26px;
  text-align: center;
  border: 1px solid rgba(124,58,237,0.28);
  box-shadow:
    0 14px 56px rgba(109,40,217,0.28),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmerBadge 4.5s ease-in-out infinite;
  transform: skewX(-20deg);
}
@keyframes shimmerBadge {
  0%   { left: -70%; }
  100% { left: 140%; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-6px) scale(1.02); }
}

.badge-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 10%, rgba(190,165,255,0.95) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}
.badge-label {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.38);
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- PROVIDERS SECTION ---- */
.section {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.text-wrap-main { margin-bottom: 40px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.text-wrap-main h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  max-width: 580px;
}

/* ---- FILTER + SEARCH ROW ---- */
.filter-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.filters-menu {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filter-link {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-link:hover {
  color: var(--text-primary);
  background: var(--bg-3);
}
.filter-link.active {
  color: var(--text-primary);
  background: var(--text-primary);
  color: #fff;
}

/* ---- SEARCH ---- */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  transition: border-color var(--transition);
}
.search-wrap:focus-within { border-color: var(--text-primary); }
.search-icon { color: var(--text-muted); display: flex; }
.search-field {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  width: 180px;
}
.search-field::placeholder { color: var(--text-muted); }

/* ---- PROVIDER LIST ---- */
.list-wrap {
  display: flex;
  flex-direction: column;
}

.list-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: default;
}
.list-cell:hover { background: var(--bg-2); }
.list-cell:last-child { border-bottom: none; }

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.brand-category {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.category-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-right: 10px;
  background: var(--pill-bg);
  color: var(--text-secondary);
}
/* All pills same neutral style matching original */
.pill-PSPs,
.pill-License,
.pill-Slots,
.pill-CRM,
.pill-LiveCasino,
.pill-Sportsbook,
.pill-FullPlatform {
  background: var(--bg-3);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.indent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}
.text-link:hover { opacity: 0.6; }

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
}
.contact-columns { gap: 80px; }
.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.contact .text-wrap-hero p { margin-bottom: 32px; }

/* ---- FORM ---- */
.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 14px;
  margin-bottom: 6px;
  display: block;
}
.field-label:first-child { margin-top: 0; }

.text-field {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}
.text-field:focus { border-color: var(--text-primary); background: #fff; }
.text-field::placeholder { color: var(--text-muted); }
.textarea-field { min-height: 100px; resize: vertical; }

.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 18px;
}
.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.checkbox-wrap input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--text-primary);
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 13px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success.visible { display: block; }
.success-icon {
  width: 52px; height: 52px;
  background: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 16px;
}
.form-success p { color: var(--text-secondary); font-size: 0.9rem; }

/* ---- FOOTER ---- */
.footer {
  padding: 24px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer .text-mini { color: var(--text-muted); font-size: 0.78rem; }

/* ---- RESPONSIVE ---- */

/* ===== Tablet (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .hero-columns { gap: 32px; }
  .contact-columns { gap: 40px !important; }
  .hero-visual { width: 320px; height: 320px; }
  .hero-badge { right: 160px; }
}

/* ===== Mobile (≤ 768px) ===== */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Navbar */
  .nav-bar { padding: 0 16px; min-height: 56px; }
  .nav-bar .space-out { height: 56px; flex-wrap: nowrap; overflow: hidden; }
  /* Keep logo visible on mobile (it has the site logo image) */
  .nav-bar .ibridge-logo {
    display: flex !important;
    flex-shrink: 0;
    visibility: visible !important;
  }
  .nav-bar .ibridge-logo img { height: 34px !important; max-width: 110px !important; }
  .nav-bar .button-row { gap: 8px; flex-wrap: nowrap; }
  .nav-bar .x-wrap { display: none; }
  .nav-bar .cta-btn { font-size: 0.75rem; padding: 8px 14px; white-space: nowrap; }
  .nav-bar .site-lang-selector-wrap { flex-shrink: 0; }

  /* Hero */
  .hero { padding: 40px 0 48px; }
  .hero-bg-grad { display: none; }
  .hero-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 15px !important;
  }
  .hero-visual {
    width: 500px !important;
    height: 460px !important;
    transform: scale(0.7) !important;
    transform-origin: center !important;
    margin: -50px auto -40px !important;
  }
  .text-wrap-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .text-wrap-hero p  { font-size: 0.9rem; }
  .button-row { flex-wrap: wrap; gap: 10px; }
  .x-wrap { gap: 8px; }
  .experience-badge { font-size: 0.68rem; }

  /* Providers section */
  .section { padding: 48px 0; }
  .text-wrap-main { margin-bottom: 24px; }

  /* Filter + Search Row */
  .filter-search-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .filters-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .filter-link { font-size: 0.75rem; padding: 6px 12px; }
  .search-wrap { width: 100%; box-sizing: border-box; }
  .search-field { width: 100%; }

  /* Provider list cells */
  .list-cell {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 4px;
  }
  .brand-wrap { flex: 1 1 auto; }
  .indent { flex: 0 0 auto; }
  .category-pill { display: none; }

  /* Contact section */
  .contact { padding: 48px 0 60px; }
  .contact-columns {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Form */
  .form-wrap { padding: 20px 16px; }
  .form-columns { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 20px 16px; }
}

/* ===== Small Mobile (≤ 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .nav-bar { padding: 10px 12px; }
  .cta-btn { font-size: 0.75rem; padding: 8px 14px; }
  .text-wrap-hero h1 { font-size: clamp(1.4rem, 8vw, 1.9rem); }
  .filter-link { font-size: 0.72rem; padding: 5px 10px; }
  .form-wrap { padding: 16px 12px; }
  .list-cell { padding: 12px 2px; }
  .logo-wrap { width: 34px; height: 34px; }
}

/* Prevent text selection globally except form inputs */
body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
input, textarea, [contenteditable="true"] {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
