/* ==========================================================================
   Umang Telecom — site styles
   Dark theme: near-black and deep maroon surfaces with the company-profile
   crimson, orange and magenta as accents.
   ========================================================================== */
:root {
  --bg: #0e090b;
  --bg-2: #150d10;
  --panel: #1b1115;
  --panel-2: #22151b;
  --line: rgba(251, 113, 133, 0.12);
  --line-strong: rgba(251, 113, 133, 0.24);
  --text: #f8eef1;
  --text-2: #dccbd1;
  --muted: #a8939c;
  --red: #f43f5e;
  --red-600: #fb7185;
  --maroon: #7a0f1f;
  --maroon-text: #fda4af;
  --magenta: #f472b6;
  --orange: #fb923c;
  --violet: #a78bfa;
  --ok: #4ade80;
  --warn: #fbbf24;
  --danger: #f87171;
  --tone: var(--red);
  --tone-soft: rgba(244, 63, 94, 0.15);
  --tint: rgba(244, 63, 94, 0.10);
  --tint-2: rgba(244, 63, 94, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 26px 56px -20px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(251, 113, 133, 0.06);
  --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Poppins', var(--font);
  --header-h: 72px;
  --grad-accent: linear-gradient(100deg, #fb923c 0%, #f43f5e 45%, #d946ef 100%);
  --grad-btn: linear-gradient(100deg, #e11d48 0%, #db2777 100%);
  --grad-deep: linear-gradient(125deg, #4a0812 0%, #7f0f24 40%, #b3163f 75%, #e0592a 110%);
}

.tone-0 { --tone: #fb7185; --tone-soft: rgba(251, 113, 133, .15); }
.tone-1 { --tone: #fb923c; --tone-soft: rgba(251, 146, 60, .15); }
.tone-2 { --tone: #a78bfa; --tone-soft: rgba(167, 139, 250, .16); }
.tone-3 { --tone: #38bdf8; --tone-soft: rgba(56, 189, 248, .14); }
.tone-4 { --tone: #f472b6; --tone-soft: rgba(244, 114, 182, .15); }
.tone-5 { --tone: #fbbf24; --tone-soft: rgba(251, 191, 36, .14); }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-600); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -0.015em; color: var(--text); }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 600; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }
main:focus { outline: none; }

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

.muted { color: var(--muted); }
.small { font-size: .875rem; }
.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; }
.grad-text { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 .78rem/1 var(--font); letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 3px; border-radius: 3px; background: var(--grad-accent); }
.center .eyebrow, .section-head.center .eyebrow { justify-content: center; }
.lead { font-size: 1.12rem; color: var(--text-2); max-width: 60ch; }
.ic { width: 1.25em; height: 1.25em; flex: none; }

.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--red); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 10px; color: #fff; }

/* ---------- Background pattern: the profile's fine grid + colour glows ---------- */
.pattern-bg {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 88% 12%, rgba(249, 115, 22, .18), transparent 38%),
    radial-gradient(circle at 70% 85%, rgba(124, 58, 237, .16), transparent 40%),
    radial-gradient(circle at 6% 70%, rgba(225, 29, 72, .20), transparent 42%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, auto, auto, 34px 34px, 34px 34px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  font: 600 .95rem/1 var(--font); cursor: pointer; transition: background .15s, border-color .15s, transform .15s, color .15s, box-shadow .15s;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: 0 10px 24px -8px rgba(225, 29, 72, .55); }
.btn-primary:hover { color: #fff; box-shadow: 0 14px 30px -8px rgba(225, 29, 72, .65); transform: translateY(-1px); }
.btn-ghost { background: rgba(255, 255, 255, .03); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-light { background: #fff; color: var(--maroon); }
.btn-light:hover { background: #ffe4e6; color: var(--maroon); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: #fff; }
.btn-wa { background: #25d366; color: #053d1d; }
.btn-wa:hover { background: #1fbf5b; color: #053d1d; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.link-arrow { font-weight: 700; display: inline-flex; gap: 6px; align-items: center; }
.link-arrow::after { content: '→'; transition: transform .15s; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--grad-deep); color: #ffe4e6; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 36px; }
.topbar-lines { letter-spacing: .04em; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-lines i { width: 4px; height: 4px; border-radius: 50%; background: #fdba74; display: inline-block; }
.topbar-contact { display: inline-flex; gap: 20px; }
.topbar-contact a { color: #fff; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar-contact a:hover { color: #fed7aa; }
.topbar-contact .ic { width: 14px; height: 14px; }
@media (max-width: 860px) { .topbar-lines { display: none; } .topbar-inner { justify-content: center; } }
@media (max-width: 420px) { .topbar-contact a:last-child { display: none; } }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(14, 9, 11, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-family: var(--font-head); font-size: 1.12rem; }
.brand:hover { color: var(--text); }
.brand .logo { width: 42px; height: 42px; filter: drop-shadow(0 6px 10px rgba(225, 29, 72, .3)); }
.brand-text { white-space: nowrap; letter-spacing: .08em; }
.brand-text strong { font-weight: 800; }
.brand-text em { font-style: normal; font-weight: 800; color: var(--red); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a:not(.btn), .dd-trigger {
  color: var(--text-2); font-size: .94rem; font-weight: 600; padding: 8px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
}
.nav > a:not(.btn):hover, .dd-trigger:hover { color: var(--red); background: var(--tint); }
.nav a.active, .dropdown.active > .dd-trigger { color: var(--red); background: var(--tint); }
.nav .nav-cta { margin-left: 10px; }
.caret { width: 0; height: 0; border: 4px solid transparent; border-top-color: currentColor; margin-top: 4px; }
.dropdown { position: relative; }
.dd-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px; padding: 8px; margin-top: 8px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: .15s;
}
.dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.dropdown:hover .dd-menu, .dropdown:focus-within .dd-menu { opacity: 1; visibility: visible; transform: none; }
.dd-menu a { display: block; padding: 10px 12px; color: var(--text-2); border-radius: 10px; font-size: .92rem; font-weight: 500; }
.dd-menu a:hover { background: var(--tint); color: var(--red); }
.cart-link { position: relative; }
.badge {
  display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px;
  font: 700 .7rem/1 var(--font); background: var(--orange); color: #fff; border-radius: 99px;
}
.badge[hidden] { display: none; }
.cart-link .badge, .icon-btn .badge { position: absolute; top: 0; right: -2px; }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: 12px; color: var(--text); cursor: pointer;
}
.nav-actions-mobile { display: none; gap: 8px; align-items: center; }
.bars, .bars::before, .bars::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: .2s; }
.bars::before, .bars::after { content: ''; position: absolute; left: 0; }
.bars::before { top: -6px; } .bars::after { top: 6px; }
.nav-open .bars { background: transparent; }
.nav-open .bars::before { top: 0; transform: rotate(45deg); }
.nav-open .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-actions-mobile { display: flex; }
  .desktop-only { display: none !important; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - var(--header-h)); flex-direction: column; align-items: stretch; gap: 2px;
    padding: 16px; background: var(--panel); overflow-y: auto; display: none; border-top: 1px solid var(--line);
  }
  .nav-open .nav { display: flex; }
  .nav > a:not(.btn), .dd-trigger { padding: 14px 14px; font-size: 1rem; width: 100%; border-radius: 12px; }
  .nav .nav-cta { margin: 14px 0 0; min-height: 50px; }
  .caret { display: none; }
  .dd-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 0 16px; margin: 0; }
  .dd-menu a { padding: 12px; }
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
@media (max-width: 640px) { .section { padding: 56px 0; } .section-head { margin-bottom: 28px; } }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: border-color .2s, transform .2s, box-shadow .2s; position: relative;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.icon-tile {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  color: var(--tone); background: var(--tone-soft);
}
.icon-tile .ic { width: 26px; height: 26px; }
.check-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-2); font-size: .96rem; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: .3em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--tone-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb7185' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.service-card { display: flex; flex-direction: column; overflow: hidden; padding-top: 34px; }
.service-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--tone); }
.service-card.tone-0::before { background: linear-gradient(90deg, #e11d48, #db2777); }
.service-card.tone-1::before { background: linear-gradient(90deg, #f97316, #f59e0b); }
.service-card.tone-2::before { background: linear-gradient(90deg, #7c3aed, #c026d3); }
.service-card .check-list { flex: 1; }
.service-card .link-arrow { color: var(--tone); }
.svc-num { position: absolute; right: 22px; top: 18px; font: 800 2.6rem/1 var(--font-head); color: var(--tone); opacity: .14; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 110px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 20px; }
.hero-tags span {
  padding: 7px 16px; border-radius: 999px; font: 600 .82rem/1 var(--font); letter-spacing: .06em; text-transform: uppercase;
  background: var(--panel); border: 1px solid rgba(225, 29, 72, .35); color: var(--red);
}
.hero-tags span:nth-child(2) { border-color: rgba(234, 88, 12, .4); color: #fb923c; }
.hero-tags span:nth-child(3) { border-color: rgba(124, 58, 237, .4); color: var(--violet); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--text-2); font-size: .93rem; font-weight: 500; }
.hero-points li { display: inline-flex; gap: 8px; align-items: center; }
.hero-points .ic { color: #fff; background: var(--grad-btn); border-radius: 50%; padding: 3px; width: 20px; height: 20px; }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; overflow: visible; }
@media (max-width: 900px) {
  .hero { padding: 40px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) { .cta-row .btn { flex: 1 1 100%; } }

.flow { stroke-dasharray: 4 7; animation: flow 1.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -22; } }
.pulse { animation: pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }
.spin-slow { animation: spin 70s linear infinite; transform-origin: 240px 208px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .flow, .pulse, .spin-slow { animation: none; } }

/* ---------- Category strip (overlaps the hero) ---------- */
.cat-strip { position: relative; z-index: 2; margin-top: -64px; }
.cat-tiles { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.cat-tile {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 22px 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  color: var(--text); font-weight: 600; font-size: .93rem; line-height: 1.3; transition: transform .2s, box-shadow .2s;
  border-bottom: 3px solid var(--tone);
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--tone); }
.cat-ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--tone-soft); color: var(--tone); }
.cat-ic .ic { width: 28px; height: 28px; }
@media (max-width: 960px) { .cat-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .cat-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .cat-tile { padding: 16px 8px; } }

/* ---------- Why Umang ---------- */
.why { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; gap: 28px; } }
.why-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; padding: 16px 20px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: transform .2s, border-color .2s; }
.why-list li:hover { transform: translateX(4px); border-color: var(--line-strong); }
.why-num { font: 800 1.5rem/1 var(--font-head); background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 38px; padding-top: 2px; }
.why-list h3 { margin: 0 0 2px; font-size: 1.02rem; }
.why-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.partner-card { position: relative; overflow: hidden; border-radius: 24px; padding: 36px 32px; background: var(--grad-deep); color: #fff; box-shadow: var(--shadow-lg); }
.partner-card::before {
  content: ''; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, .08);
}
.partner-card > * { position: relative; }
.partner-card .eyebrow { color: #fed7aa; }
.partner-card .eyebrow::before { background: #fed7aa; }
.partner-card p { color: #ffe4e6; font-size: .95rem; margin: 20px 0; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner-grid span {
  display: grid; place-items: center; min-height: 64px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 14px;
  font: 700 .9rem var(--font-head); letter-spacing: .14em; text-transform: uppercase; background: rgba(255, 255, 255, .06);
}

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 960px) { .ind-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .ind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ind-tile { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 24px 12px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; color: var(--maroon-text); }
.ind-ic { color: var(--red); }
.ind-ic .ic { width: 32px; height: 32px; }
.ind-tile:nth-child(2) .ind-ic { color: var(--orange); }
.ind-tile:nth-child(3) .ind-ic { color: var(--violet); }
.ind-tile:nth-child(4) .ind-ic { color: #38bdf8; }
.ind-tile:nth-child(5) .ind-ic { color: var(--magenta); }
.rental-uses { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; margin: 28px 0 0; }
.rental-uses strong { color: var(--maroon-text); margin-right: 6px; }
.rental-uses span { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--panel); font-size: .86rem; color: var(--red-600); font-weight: 500; }

/* ---------- Feature rows ---------- */
.feature { display: flex; gap: 16px; }
.feature .icon-tile { margin: 0; width: 48px; height: 48px; }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Brand tiles ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 860px) { .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.brand-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center;
  min-height: 96px; padding: 16px 12px; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--panel); color: var(--text); transition: .2s;
}
.brand-tile:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); color: var(--text); }
.wordmark { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.01em; color: var(--maroon-text); transition: color .2s; }
.brand-tile:hover .wordmark { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-tile .muted { font-size: .84rem; line-height: 1.45; }
.brand-tile.lg { min-height: 190px; align-items: flex-start; text-align: left; padding: 24px; }
.brand-tile.lg .link-arrow { font-size: .86rem; margin-top: auto; color: var(--red); }
.partner-badge { font: 700 .68rem/1 var(--font); letter-spacing: .08em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; background: var(--grad-btn); color: #fff; }

/* ---------- CTA panel ---------- */
.cta-panel {
  border-radius: 28px; padding: 48px; background: var(--grad-deep); display: flex; gap: 24px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; position: relative; overflow: hidden; color: #fff; box-shadow: var(--shadow-lg);
}
.cta-panel::before, .cta-panel::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-panel::before { width: 320px; height: 320px; right: -90px; top: -150px; background: radial-gradient(circle, rgba(253, 186, 116, .45), transparent 70%); }
.cta-panel::after { width: 220px; height: 220px; left: 30%; bottom: -150px; border: 36px solid rgba(255, 255, 255, .07); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin-bottom: 8px; color: #fff; }
.cta-panel p { margin: 0; color: #ffe4e6; max-width: 56ch; }
.cta-panel .cta-row { margin: 0; }
@media (max-width: 640px) { .cta-panel { padding: 30px 22px; border-radius: 22px; } }

/* ---------- Page hero ---------- */
.page-hero { padding: 60px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.page-hero .lead { margin-bottom: 0; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }
@media (max-width: 640px) { .page-hero { padding: 38px 0 30px; } }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field .label { font-size: .86rem; font-weight: 600; color: var(--text-2); }
.field .hint { font-size: .78rem; color: var(--muted); }
.req { color: var(--red); }
input, select, textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--text); background: var(--panel);
  border: 1px solid var(--line-strong); border-radius: 12px; padding: 12px 14px; min-height: 48px;
  transition: border-color .15s, box-shadow .15s;
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(225, 29, 72, .14); }
input[type="file"] { padding: 10px; }
input[type="checkbox"], input[type="radio"] { width: 18px; height: 18px; min-height: 0; accent-color: var(--red); margin: 0; flex: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field .err { color: var(--danger); font-size: .8rem; display: none; }
.field.invalid .err { display: block; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text-2); }

/* ---------- Catalogue ---------- */
.cart-grid > *, .contact-page > *, .pd > *, .rfq-shell > * { min-width: 0; }
.cat-pills { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 18px; scrollbar-width: thin; }
.pill {
  flex: none; min-height: 38px; padding: 0 16px; border-radius: 99px; border: 1px solid var(--line-strong); background: var(--panel);
  color: var(--text-2); font: 600 .86rem/1 var(--font); cursor: pointer; white-space: nowrap;
}
.pill:hover { border-color: var(--red); color: var(--red); }
.pill[aria-pressed="true"] { background: var(--grad-btn); border-color: transparent; color: #fff; }

.brand-tag { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red-600); }
.sku { font: 500 .78rem/1.3 ui-monospace, 'Cascadia Code', Consolas, monospace; color: var(--muted); margin: 0; }
.cond-list { display: inline-flex; flex-wrap: wrap; gap: 4px; }
.price { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }

.cond { font: 700 .7rem/1 var(--font); letter-spacing: .05em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; white-space: nowrap; }
.cond-new { background: rgba(74, 222, 128, .14); color: var(--ok); }
.cond-refurbished { background: rgba(167, 139, 250, .16); color: #c4b5fd; }
.cond-eol-certified { background: rgba(251, 191, 36, .14); color: var(--warn); }
.cond-service { background: rgba(244, 114, 182, .15); color: var(--magenta); }

.empty { text-align: center; padding: 56px 20px; border: 2px dashed var(--line-strong); border-radius: var(--radius); color: var(--muted); background: var(--panel); }
.empty h3 { color: var(--text); }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; gap: 24px; } }
.pd-media {
  border: 1px solid var(--line); border-radius: 24px; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 30% 25%, #2b1a21, #1a1014 60%, #140c10 100%);
}
.pd-media svg { width: 70%; }
@media (max-width: 900px) { .pd-media { aspect-ratio: 16 / 9; max-height: 240px; } .pd-media svg { width: 55%; } }
.pd h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; background: var(--panel); }
.qty button { width: 44px; height: 46px; background: transparent; border: 0; color: var(--text); font-size: 1.2rem; cursor: pointer; }
.qty button:hover { background: var(--tint); color: var(--red); }
.qty input { width: 56px; border: 0; border-radius: 0; text-align: center; padding: 0; min-height: 46px; background: transparent; -moz-appearance: textfield; }
.qty input:focus { box-shadow: none; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.buy-row .btn { flex: 1 1 180px; }
.notice {
  display: flex; gap: 12px; padding: 14px 16px; border-radius: 14px; font-size: .9rem; color: var(--text-2);
  background: rgba(249, 115, 22, .08); border: 1px solid rgba(249, 115, 22, .3);
}
.notice .ic { color: var(--orange); margin-top: 2px; }
.notice.warn { background: rgba(251, 191, 36, .08); border-color: rgba(251, 191, 36, .3); }
.notice.warn .ic { color: var(--warn); }
.notice.ok { background: rgba(74, 222, 128, .07); border-color: rgba(74, 222, 128, .3); }
.notice.ok .ic { color: var(--ok); }

.spec-table, .data-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { color: var(--muted); font-weight: 500; width: 40%; }

/* ---------- Matrix ---------- */
.toolbar { display: grid; grid-template-columns: 1fr 200px 200px; gap: 12px; margin-bottom: 18px; }
@media (max-width: 760px) { .toolbar { grid-template-columns: 1fr 1fr; } .toolbar .search { grid-column: 1 / -1; } }
.search { position: relative; }
.search .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--red); pointer-events: none; }
.search input { padding-left: 46px; }
.table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); box-shadow: var(--shadow); }
.data-table th, .data-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--grad-deep); font-weight: 600; }
.data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .025); }
.data-table tbody tr:hover { background: var(--tint); }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .oem { font-weight: 700; white-space: nowrap; color: var(--maroon-text); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--tint-2); color: var(--red-600); }
@media (max-width: 760px) {
  .data-table thead { display: none; }
  .data-table tr { display: block; padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .data-table td { display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 4px 0; border: 0; }
  .data-table td::before { content: attr(data-label); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding-top: 2px; }
}

/* ---------- Service detail ---------- */
.svc-detail { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
@media (max-width: 900px) { .svc-detail { grid-template-columns: 1fr; gap: 24px; } }
.svc-detail .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; }
@media (max-width: 640px) { .svc-detail .check-list { grid-template-columns: 1fr; } }
.side-card h3 { font-size: 1rem; }
.side-card ul { margin: 0 0 20px; color: var(--text-2); font-size: .95rem; }
.svc-anchor { scroll-margin-top: calc(var(--header-h) + 16px); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; counter-reset: s; }
.steps div { counter-increment: s; border: 1px solid var(--line); border-radius: 14px; padding: 14px; font-size: .88rem; color: var(--text-2); background: var(--panel); }
.steps div::before { content: counter(s, decimal-leading-zero); display: block; font: 800 .95rem var(--font-head); margin-bottom: 6px; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Contact ---------- */
.contact-list { display: grid; gap: 12px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); color: var(--text); }
a.contact-item:hover { border-color: var(--red); color: var(--text); }
.contact-item .icon-tile { width: 44px; height: 44px; margin: 0; border-radius: 12px; }
.contact-item .icon-tile .ic { width: 20px; height: 20px; }
.contact-item small { display: block; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-item span { font-weight: 600; font-size: .95rem; word-break: break-word; }
.map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--panel); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 100%; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.7) brightness(.95); }
.success { text-align: center; padding: 40px 24px; }
.ref { font: 700 1.1rem ui-monospace, Consolas, monospace; color: var(--red); }

/* ---------- Quote list ---------- */
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
@media (max-width: 960px) { .cart-grid { grid-template-columns: 1fr; } }
.cart-line { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; align-items: center; padding: 16px; border-bottom: 1px solid var(--line); }
.cart-line:last-child { border-bottom: 0; }
.cart-thumb { width: 88px; aspect-ratio: 1; border-radius: 14px; background: radial-gradient(circle, #2b1a21, #160d11); display: grid; place-items: center; }
.cart-thumb svg { width: 75%; }
.cart-line h3 { font: 600 .95rem/1.35 var(--font); margin: 0 0 4px; }
.cart-line h3 a { color: var(--text); }
.cart-line-end { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-line .qty button { width: 36px; height: 38px; }
.cart-line .qty input { width: 44px; min-height: 38px; }
.remove { background: none; border: 0; color: var(--muted); font-size: .82rem; cursor: pointer; padding: 4px; }
.remove:hover { color: var(--danger); }
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-thumb { width: 64px; }
  .cart-line-end { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}
.summary { position: sticky; top: calc(var(--header-h) + 16px); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--text-2); font-size: .95rem; }
.summary .btn { margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: linear-gradient(160deg, #0a0607 0%, #2a0710 55%, #4a0812 100%); color: #ffe4e6; padding: 60px 0 0; }
.site-footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--grad-accent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 32px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:nth-child(4) { grid-column: 1 / -1; } }
.site-footer .brand, .site-footer .brand:hover { color: #fff; }
.site-footer .brand-text em { color: #fdba74; }
.site-footer .brand .logo { filter: none; box-shadow: 0 0 0 2px rgba(255, 255, 255, .25); border-radius: 12px; }
.footer-brand p { font-size: .92rem; margin: 16px 0 20px; color: rgba(255, 228, 230, .82); max-width: 44ch; }
.footer-h { font: 600 .78rem var(--font); text-transform: uppercase; letter-spacing: .16em; color: #fdba74; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .93rem; }
.footer-links a { color: #ffe4e6; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact { font-style: normal; font-size: .92rem; color: #ffe4e6; display: grid; gap: 10px; }
.footer-contact a { color: #fff; display: inline-flex; gap: 8px; align-items: center; }
.footer-contact a:hover { color: #fed7aa; }
.footer-contact .ic { color: #fdba74; width: 16px; height: 16px; }
.footer-brands { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; padding: 26px 16px; margin-top: 44px; border-top: 1px solid rgba(255, 255, 255, .14); }
.footer-brands a { font: 700 .95rem var(--font-head); color: rgba(255, 228, 230, .6); letter-spacing: .04em; }
.footer-brands a:hover { color: #fff; }
.footer-base { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; padding: 20px 16px 28px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .82rem; color: rgba(255, 228, 230, .7); }
@media (max-width: 1080px) { .site-footer { padding-bottom: 64px; } }

/* ---------- Floating / mobile ---------- */
/* Raised clear of the bottom-right corner, where the hosting badge sits. */
.float-actions {
  position: fixed; right: 20px; bottom: 96px; z-index: 40;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-float {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float .ic { width: 30px; height: 30px; }
.quote-float {
  display: inline-flex; align-items: center; gap: 8px; min-height: 50px; padding: 0 22px; border-radius: 99px;
  background: var(--grad-btn); color: #fff; font: 600 .95rem var(--font-head); box-shadow: 0 12px 30px -6px rgba(225, 29, 72, .55);
  transition: transform .2s;
}
.quote-float:hover { color: #fff; transform: translateY(-2px); }
.quote-float .ic { width: 18px; height: 18px; }
.on-quote-page .quote-float { display: none; }
.mobile-bar { display: none; }
@media (max-width: 1080px) {
  .float-actions { display: none; }
  .mobile-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    background: rgba(14, 9, 11, .96); backdrop-filter: blur(10px); border-top: 1px solid var(--line-strong);
    padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, .7);
  }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 4px; font-size: .72rem; font-weight: 600; color: var(--text-2); min-height: 56px; justify-content: center; }
  .mobile-bar a:nth-child(2) { color: #4ade80; }
  .mobile-bar .mobile-quote { background: var(--grad-btn); color: #fff; }
  .mobile-bar .ic { width: 22px; height: 22px; }
  .toast { bottom: 76px; }
}

.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 60; opacity: 0; pointer-events: none;
  background: #2a0d15; border: 1px solid var(--line-strong); color: #fff; padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow-lg); font-size: .92rem; transition: .25s; max-width: calc(100% - 32px); display: flex; gap: 10px; align-items: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast a { font-weight: 700; white-space: nowrap; color: #fdba74; }

.stack > * + * { margin-top: 16px; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.row-between { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; }
.center { text-align: center; }

/* ---------- Catalogue (part-number based) ---------- */
.life { font: 700 .7rem/1 var(--font); letter-spacing: .05em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; white-space: nowrap; }
.life-current { background: rgba(74, 222, 128, .14); color: var(--ok); }
.m-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }

.part-search { display: flex; gap: 10px; max-width: 720px; margin-top: 24px; }
.part-search .search { flex: 1; }
.part-search input { min-height: 54px; font-size: 1.05rem; border-radius: 999px; box-shadow: var(--shadow); }
.part-search .btn { min-height: 54px; }
@media (max-width: 560px) { .part-search { flex-direction: column; } }
.pc-media img, .s-media img, .pd-media img, .cart-thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }

/* ---------- Catalogue page: gradient banner, category tabs, brand rail, card grid ---------- */
.cat-hero { position: relative; padding: 44px 0 0; background: var(--grad-deep); color: #fff; }
.cat-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 34px 34px; mask-image: linear-gradient(180deg, #000, transparent 90%); -webkit-mask-image: linear-gradient(180deg, #000, transparent 90%);
}
.cat-hero::after { content: ''; position: absolute; right: 0; top: 0; width: min(460px, 70%); height: 320px; background: radial-gradient(circle at 100% 0%, rgba(253, 186, 116, .45), transparent 70%); pointer-events: none; }
.cat-hero .container { position: relative; z-index: 1; }
.cat-hero .crumbs, .cat-hero .crumbs a { color: rgba(255, 228, 230, .8); }
.cat-hero .crumbs a:hover { color: #fff; }
.cat-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cat-hero .lead { color: #ffe4e6; margin-bottom: 0; }
.cat-hero .eyebrow { color: #fed7aa; }
.cat-hero .eyebrow::before { background: #fed7aa; }
.cat-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: end; }
.cat-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.cat-stat { padding: 16px 18px; border-radius: 16px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); backdrop-filter: blur(6px); }
.cat-stat strong { display: block; font: 800 1.7rem/1.1 var(--font-head); color: #fff; }
.cat-stat span { font-size: .82rem; color: #ffe4e6; }
.cat-stat.tone-1 strong { color: #fed7aa; }
.cat-stat.tone-2 strong { color: #f5d0fe; }
.cat-stat.tone-3 strong { color: #bae6fd; }
@media (max-width: 860px) { .cat-hero-grid { grid-template-columns: 1fr; } .cat-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } .cat-stat { padding: 12px; } .cat-stat strong { font-size: 1.3rem; } }
@media (max-width: 520px) { .cat-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.big-search { position: relative; margin: 32px 0 -34px; }
.big-search label { position: relative; display: block; }
.big-search .ic { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; color: var(--red); pointer-events: none; }
.big-search input { min-height: 68px; padding-left: 62px; font-size: 1.08rem; border-radius: 20px; border: 0; box-shadow: 0 20px 44px -16px rgba(74, 8, 18, .55), 0 0 0 1px var(--line); }
.big-search input:focus { box-shadow: 0 20px 44px -16px rgba(74, 8, 18, .55), 0 0 0 4px rgba(249, 115, 22, .35); }
@media (max-width: 560px) { .big-search input { min-height: 58px; font-size: 1rem; padding-left: 54px; } .big-search .ic { left: 20px; } }
.catalog { padding-top: 68px; }

.cat-tabs { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 10px; margin-bottom: 20px; }
@media (max-width: 1100px) { .cat-tabs { display: flex; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; } .cat-tab { flex: 0 0 118px; } }
.cat-tab {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 8px 12px; text-align: center; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; color: var(--text-2); font: 600 .8rem/1.25 var(--font); transition: .2s;
}
.cat-tab small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; margin-top: 2px; }
.cat-tab:hover { border-color: var(--tone); color: var(--tone); transform: translateY(-2px); }
.ct-ic { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--tone-soft); color: var(--tone); transition: .2s; }
.ct-ic .ic { width: 22px; height: 22px; }
.cat-tab[aria-pressed="true"] { background: var(--tone); border-color: var(--tone); color: #150b0f; box-shadow: 0 12px 28px -12px var(--tone); }
.cat-tab[aria-pressed="true"] small { color: rgba(21, 11, 15, .75); }
.cat-tab[aria-pressed="true"] .ct-ic { background: rgba(21, 11, 15, .15); color: #150b0f; }

.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 14px 24px; flex-wrap: wrap; padding: 14px 16px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; margin-bottom: 14px; }
.brand-rail { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; flex: 1 1 520px; }
.fb-label { font: 700 .72rem var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.brand-chip { border: 1px solid var(--line-strong); background: var(--panel); color: var(--text-2); border-radius: 999px; padding: 7px 12px; font: 600 .82rem/1 var(--font); cursor: pointer; }
.brand-chip small { color: var(--muted); font-weight: 500; margin-left: 2px; }
.brand-chip:hover { border-color: var(--red); color: var(--maroon-text); }
.brand-chip[aria-pressed="true"] { background: #be123c; border-color: #be123c; color: #fff; }
.brand-chip[aria-pressed="true"] small { color: #fecdd3; }
.fb-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fb-right .seg { min-width: 280px; }
.switch-row { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: var(--text-2); cursor: pointer; }
@media (max-width: 640px) { .brand-rail { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; } .brand-chip { flex: none; } .fb-right, .fb-right .seg { width: 100%; min-width: 0; } }

.series-chips { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 12px 16px; margin-bottom: 14px; border-radius: 16px; background: linear-gradient(120deg, rgba(249, 115, 22, .08), rgba(225, 29, 72, .06)); border: 1px dashed rgba(234, 88, 12, .35); }
.series-chips:empty { display: none; }
.series-chip { border: 1px solid transparent; background: var(--panel); color: var(--text-2); border-radius: 10px; padding: 6px 10px; font: 500 .8rem/1.2 var(--font); cursor: pointer; box-shadow: 0 1px 0 var(--line); }
.series-chip:hover { border-color: var(--orange); color: #fb923c; }
.series-chip[aria-pressed="true"] { background: var(--orange); color: #fff; }
@media (max-width: 640px) {
  .series-chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; }
  .series-chip { flex: none; white-space: nowrap; }
}

.results-bar { display: flex; align-items: center; gap: 10px 14px; margin: 6px 0 16px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.results-bar #count strong { color: var(--text); font-family: var(--font-head); font-size: 1.05rem; }
.results-bar .chips-row { margin: 0; }
.link-btn { background: none; border: 0; padding: 0; color: var(--red); font: 600 .86rem var(--font); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.link-btn[hidden] { display: none; }

.pc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)); gap: 18px; }
.pc { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.pc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pc-media { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 10; background: radial-gradient(circle at 50% 38%, #2e1b23 0%, #1c1116 60%, #150d11 100%); }
.pc-media svg { width: 64%; transition: transform .3s; }
.pc:hover .pc-media svg { transform: scale(1.06); }
.pc-cat { position: absolute; left: 12px; top: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(14, 9, 11, .75); border: 1px solid var(--line); font: 600 .7rem var(--font); color: var(--maroon-text); }
.pc-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pc-top { display: flex; justify-content: space-between; align-items: center; gap: 6px; flex-wrap: wrap; }
.pc-part { margin: 4px 0 0; font: 700 1rem/1.3 ui-monospace, 'Cascadia Code', Consolas, monospace; letter-spacing: 0; word-break: break-all; }
.pc-part a { color: var(--text); }
.pc-part a:hover { color: var(--red); }
.pc-series { margin: 0; color: var(--muted); font-size: .84rem; }
.pc-specs { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-wrap: wrap; gap: 5px; }
.pc-specs li { font-size: .74rem; padding: 3px 8px; border-radius: 8px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); color: var(--text-2); }
.pc-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; }
.pc-actions .btn:first-child { flex: 1; }
.pc-wa { padding: 0 12px; color: #4ade80; }

.quote-dock {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 44;
  display: inline-flex; align-items: center; gap: 12px; padding: 10px 10px 10px 18px; border-radius: 999px;
  background: #2a0d15; border: 1px solid var(--line-strong); color: #fff; box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .8); font-size: .92rem; white-space: nowrap;
}
.quote-dock[hidden] { display: none; }
.quote-dock:hover { color: #fff; }
.quote-dock .ic { color: #fdba74; }
.qd-go { padding: 8px 14px; border-radius: 999px; background: var(--grad-btn); font-weight: 700; }
@media (max-width: 1080px) { .quote-dock { bottom: 70px; } }
@media (max-width: 420px) { .quote-dock { font-size: .82rem; gap: 8px; } }

.s-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.s-grid.one { grid-template-columns: 1fr; margin-top: 12px; }
.s-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; color: var(--text); transition: border-color .2s, transform .2s, box-shadow .2s; }
.s-card:hover { border-color: transparent; color: var(--text); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.s-media { display: grid; place-items: center; aspect-ratio: 16 / 9; background: radial-gradient(circle at 50% 35%, #2e1b23, #1c1116 60%, #150d11); border-bottom: 1px solid var(--line); }
.s-media svg { width: 62%; }
.s-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.s-body strong { font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1.3; }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.seg button { background: transparent; border: 0; border-right: 1px solid var(--line-strong); color: var(--text-2); font: 600 .8rem var(--font); padding: 10px 4px; cursor: pointer; }
.seg button:last-child { border-right: 0; }
.seg button[aria-pressed="true"] { background: var(--grad-btn); color: #fff; }

.chips-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.chips-row:empty { display: none; }
.chip-x { background: var(--tint-2); border: 1px solid transparent; color: var(--red-600); border-radius: 99px; padding: 6px 12px; font: 600 .8rem var(--font); cursor: pointer; }
.chip-x:hover { border-color: var(--red); }
.series-head { display: flex; justify-content: space-between; align-items: center; gap: 16px 28px; flex-wrap: wrap; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); border-left: 6px solid var(--orange); padding: 18px 22px; margin-bottom: 16px; box-shadow: var(--shadow); }
.series-head > div:first-child { flex: 1 1 360px; }
.series-head h2 { font-size: 1.3rem; margin: 6px 0 4px; }
.series-head p { margin: 0; font-size: .92rem; }
.part-h1 { font-family: ui-monospace, 'Cascadia Code', Consolas, monospace; font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin: 12px 0 4px; word-break: break-all; letter-spacing: 0; }
.data-table.compare td.oem a { font-family: ui-monospace, Consolas, monospace; }
.data-table.compare td { font-size: .88rem; }
.q-cond { width: auto; min-height: 38px; padding: 6px 32px 6px 12px; font-size: .85rem; }

/* ---------- Stock ---------- */
.stock-badge { font: 700 .7rem/1 var(--font); letter-spacing: .05em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; white-space: nowrap; background: var(--ok); color: #fff; }
.stock-text { color: var(--ok); font-weight: 600; }
.stock-line { display: flex; gap: 8px; align-items: center; color: var(--ok); font-weight: 600; font-size: .92rem; margin: 10px 0 0; }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: 290px 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; gap: 24px; } }
.founder-photo { margin: 0; }
.founder-photo img {
  width: 100%; max-width: 290px; height: auto; border-radius: 22px; padding: 5px;
  background: var(--grad-accent); box-shadow: var(--shadow-lg);
}
.founder-photo figcaption { margin-top: 16px; display: flex; flex-direction: column; }
.founder-photo figcaption strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--maroon-text); }
.founder-photo figcaption span { color: var(--red); font-size: .92rem; font-weight: 500; }
.founder-creds { list-style: none; padding: 0; margin: 12px 0 0; }
.founder-tags-h { font-weight: 700; color: var(--maroon-text); margin: 22px 0 10px; font-size: .95rem; }
.founder-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.founder-tags li { padding: 6px 12px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); font-size: .85rem; color: var(--maroon-text); font-weight: 500; }
@media (max-width: 800px) {
  .founder-photo { display: grid; grid-template-columns: 130px 1fr; gap: 0 18px; align-items: center; }
  .founder-photo img { grid-row: span 2; }
  .founder-creds, .founder-tags-h, .founder-tags { grid-column: 1 / -1; }
}
.founder-text p { color: var(--text-2); }
.founder-text h2 { margin-bottom: 18px; }
.founder-text blockquote { margin: 0 0 18px; padding: 6px 0 6px 22px; border-left: 4px solid; border-image: var(--grad-accent) 1; }
.founder-text blockquote p { font: 600 1.35rem/1.5 var(--font-head); color: var(--maroon-text); margin: 0; }
.founder-greet { font-weight: 700; color: var(--maroon-text) !important; }
.founder-band { margin: 24px 0 !important; padding: 20px 24px; border-radius: 16px; background: var(--grad-deep); color: #fff !important; font: 600 1.02rem/1.5 var(--font-head); }
.founder-sign { margin-top: 20px; line-height: 1.6; }
.founder-sign strong { color: var(--maroon-text); font-size: 1.1rem; }

/* ---------- Company profile preview ---------- */
.brochure { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: center; }
@media (max-width: 860px) { .brochure { grid-template-columns: 1fr; gap: 32px; } .booklet { max-width: 320px; margin: 0 auto; width: 100%; } }
.booklet {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; aspect-ratio: 210 / 297;
  padding: 22px 20px 0; border-radius: 14px; overflow: hidden; color: #23101a; transform: rotate(2deg);
  background-color: #fff;
  background-image: linear-gradient(rgba(159, 18, 57, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(159, 18, 57, .05) 1px, transparent 1px);
  background-size: 20px 20px; box-shadow: var(--shadow-lg), 0 0 0 1px var(--line); transition: transform .25s;
}
.booklet:hover { transform: rotate(0deg) translateY(-4px); color: #23101a; }
.booklet-top { display: flex; justify-content: space-between; width: 100%; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: #735c68; }
.booklet-top span:first-child { color: #be123c; font-weight: 700; }
.booklet-logo { margin: 34px 0 20px; padding: 14px; border-radius: 50%; border: 1px dashed rgba(225, 29, 72, .3); }
.booklet-logo .logo { width: 92px; height: 92px; filter: drop-shadow(0 12px 18px rgba(190, 18, 60, .35)); }
.booklet-name { font: 800 1.45rem/1 var(--font-head); letter-spacing: .08em; }
.booklet-name em { font-style: normal; color: #e11d48; }
.booklet-sub { font-size: .62rem; color: #7a0f1f; margin-top: 10px; letter-spacing: .04em; }
.booklet-foot { margin-top: auto; width: calc(100% + 40px); padding: 18px 14px 44px; background: var(--grad-deep); color: #fff; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; border-top: 4px solid var(--red); }
.brochure-tag { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: #fff; color: var(--maroon); font: 700 .74rem var(--font); }
.brochure-tag .ic { width: 14px; height: 14px; }
@media (prefers-reduced-motion: reduce) { .booklet { transform: none; } }

/* ---------- Contact & quote pages ---------- */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-page .map { aspect-ratio: auto; min-height: 360px; }
@media (max-width: 860px) { .contact-page { grid-template-columns: 1fr; } .contact-page .map { min-height: 280px; } }
.contact-next { display: flex; flex-direction: column; color: var(--text); }
.contact-next:hover { color: var(--text); }
.contact-next .link-arrow { margin-top: auto; color: var(--red); }

/* ---------- Get a Quote: three-step wizard ---------- */
.rfq-hero { padding: 48px 0 40px; background-color: var(--bg);
  background-image: radial-gradient(circle at 92% 0%, rgba(249, 115, 22, .22), transparent 40%), radial-gradient(circle at 0% 100%, rgba(124, 58, 237, .14), transparent 45%);
}
.rfq-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.rfq-hero .lead { margin-bottom: 0; }
.rfq-steps { list-style: none; padding: 0; margin: 30px 0 0; display: flex; gap: 0; max-width: 680px; counter-reset: none; }
.rfq-steps li { flex: 1; display: flex; align-items: center; gap: 10px; position: relative; color: var(--muted); font-weight: 600; font-size: .9rem; }
.rfq-steps li:not(:last-child)::after { content: ''; flex: 1; height: 3px; border-radius: 3px; background: var(--line-strong); margin: 0 12px; }
.rfq-steps li.done::after { background: var(--grad-accent); }
.rs-num { width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--panel); border: 2px solid var(--line-strong); font: 700 .95rem var(--font-head); color: var(--muted); transition: .2s; }
.rfq-steps li.current { color: var(--text); }
.rfq-steps li.current .rs-num { background: var(--grad-btn); border-color: transparent; color: #fff; box-shadow: 0 0 0 6px rgba(225, 29, 72, .15); }
.rfq-steps li.done { color: var(--red-600); cursor: pointer; }
.rfq-steps li.done .rs-num { background: var(--tint-2); border-color: var(--red); color: var(--red); }
.rs-label { white-space: nowrap; }
@media (max-width: 640px) { .rs-label { display: none; } .rfq-steps li.current .rs-label { display: inline; } }

.rfq-section { padding-top: 12px; }
.rfq-shell { display: grid; grid-template-columns: 1fr 350px; gap: 28px; align-items: start; }
@media (max-width: 960px) { .rfq-shell { grid-template-columns: 1fr; } }
.rfq-card { background: var(--panel); border: 1px solid var(--line); border-radius: 26px; padding: 36px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.rfq-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--grad-accent); }
@media (max-width: 640px) { .rfq-card { padding: 26px 18px; border-radius: 20px; } }
.rfq-kicker { font: 700 .74rem var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.rfq-step h2 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin-bottom: 22px; }
.rfq-step[hidden] { display: none; }
.rfq-step { animation: stepIn .3s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rfq-step { animation: none; } }
fieldset.field { border: 0; padding: 0; margin: 0; min-width: 0; }
fieldset.field + fieldset.field { margin-top: 28px; }
fieldset.field legend { padding: 0; margin-bottom: 12px; }

.svc-choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
@media (max-width: 520px) { .svc-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .svc-choice { padding: 14px 12px 12px; } .sc-s { display: none; } }
.svc-choice {
  position: relative; display: flex; flex-direction: column; gap: 4px; padding: 18px 16px 16px; cursor: pointer;
  border: 2px solid var(--line); border-radius: 18px; background: var(--panel); transition: border-color .15s, background .15s, transform .15s;
}
.svc-choice:hover { border-color: var(--tone); transform: translateY(-2px); }
.svc-choice input { position: absolute; opacity: 0; pointer-events: none; }
.sc-ic { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--tone-soft); color: var(--tone); margin-bottom: 8px; }
.sc-ic .ic { width: 22px; height: 22px; }
.sc-t { font-weight: 700; font-size: .95rem; color: var(--text); }
.sc-s { font-size: .8rem; color: var(--muted); line-height: 1.35; }
.sc-tick { position: absolute; right: 12px; top: 12px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--tone); color: #150b0f; transform: scale(0); transition: transform .15s; }
.sc-tick .ic { width: 14px; height: 14px; }
.svc-choice:has(input:checked) { border-color: var(--tone); background: var(--tone-soft); }
.svc-choice:has(input:checked) .sc-ic { background: var(--tone); color: #150b0f; }
.svc-choice:has(input:checked) .sc-tick { transform: scale(1); }
.svc-choice:has(input:focus-visible), .pill-choice:has(input:focus-visible) { outline: 2px solid var(--red); outline-offset: 2px; }
.pill-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-choice { position: relative; cursor: pointer; }
.pill-choice input { position: absolute; opacity: 0; pointer-events: none; }
.pill-choice span { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--panel); font-size: .9rem; font-weight: 600; color: var(--text-2); transition: .15s; }
.pill-choice:hover span { border-color: var(--red); color: var(--maroon-text); }
.pill-choice input:checked + span { background: #be123c; border-color: #be123c; color: #fff; }
.choice-group.invalid .svc-choice, .choice-group.invalid .pill-choice span { border-color: rgba(220, 38, 38, .5); }

.dropzone {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; padding: 28px 16px;
  border: 2px dashed var(--line-strong); border-radius: 18px; background: rgba(255, 255, 255, .025); cursor: pointer; transition: .15s;
}
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; min-height: 0; }
.dropzone:hover, .dropzone.drag { border-color: var(--orange); background: rgba(249, 115, 22, .1); }
.dropzone.has-file { border-style: solid; border-color: var(--ok); background: rgba(74, 222, 128, .07); }
.dz-ic { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(249, 115, 22, .15); color: #fb923c; }
.dropzone.has-file .dz-ic { background: rgba(74, 222, 128, .14); color: var(--ok); }
.dz-t { font-size: .95rem; color: var(--text-2); word-break: break-all; }
.dz-t strong { color: var(--red); }
.dropzone.has-file .dz-t strong { color: var(--ok); }
.dz-s { font-size: .78rem; color: var(--muted); }
.field.invalid .dropzone { border-color: var(--danger); }
.consent { padding: 14px 16px; border-radius: 14px; background: rgba(249, 115, 22, .08); border: 1px solid rgba(249, 115, 22, .3); }

.rfq-nav { display: flex; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.rfq-nav #rfqNext, .rfq-nav #rfqSubmit { margin-left: auto; min-width: 180px; }
.rfq-nav [hidden] { display: none; }
@media (max-width: 480px) { .rfq-nav .btn { flex: 1; min-width: 0 !important; } }

.rfq-side { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 960px) { .rfq-side { position: static; } }
.rfq-side-card { border-radius: 22px; padding: 26px; background: var(--grad-deep); color: #fff; box-shadow: var(--shadow-lg); }
.rfq-side-card h3 { color: #fff; margin-bottom: 4px; }
.rfq-side-card > p { color: #ffe4e6; font-size: .9rem; }
.side-link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; margin-top: 10px; border-radius: 14px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: #fff; font-weight: 600; font-size: .92rem; word-break: break-word; }
.side-link:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.side-link .ic { color: #fdba74; flex: none; }
.side-link small { display: block; font-weight: 500; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #fecdd3; }
.rfq-side-card.light { background: var(--panel); color: var(--text); border: 1px solid var(--line); box-shadow: var(--shadow); }
.rfq-side-card.light h3 { color: var(--text); margin-bottom: 14px; }
.next-timeline { list-style: none; padding: 0; margin: 0 0 12px; counter-reset: t; }
.next-timeline li { position: relative; padding: 0 0 18px 42px; counter-increment: t; }
.next-timeline li::before { content: counter(t); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-btn); color: #fff; font: 700 .8rem var(--font-head); }
.next-timeline li:not(:last-child)::after { content: ''; position: absolute; left: 13px; top: 30px; bottom: 2px; width: 2px; background: var(--line-strong); }
.next-timeline strong { display: block; font-size: .93rem; }
.next-timeline span { font-size: .85rem; color: var(--muted); }
.success-badge { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-btn); color: #fff; box-shadow: 0 0 0 10px rgba(244, 63, 94, .18); }
.success-badge .ic { width: 38px; height: 38px; }
