@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

:root {
  --gold: #c9922a;
  --gold-l: #e8b84a;
  --gold-pale: #fff8e8;
  --pink-accent: #f472b6;
  --sky-accent: #38bdf8;
  --teal-accent: #14b8a6;
  --coral-accent: #fb7185;
  --violet-accent: #a78bfa;
  --ink: #1e293b;
  --muted: #64748b;
  --border: rgba(201, 146, 42, 0.22);
  --card-shadow: 0 16px 48px rgba(251, 191, 36, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
}

body.site-body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  position: relative;
  -webkit-tap-highlight-color: rgba(201, 146, 42, 0.15);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.font-display { font-family: 'Playfair Display', Georgia, serif; }

/* Bright, airy page background */
.site-bg {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(251, 191, 36, 0.38), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(244, 114, 182, 0.3), transparent 48%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(56, 189, 248, 0.26), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fffbeb 30%, #fdf4ff 60%, #f0f9ff 100%);
}

.site-bg-blobs {
  max-width: 100%;
  overflow: hidden;
}
.site-bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  max-width: 100vw;
}
.site-bg-blobs .blob-a { top: -6rem; right: -4rem; width: 18rem; height: 18rem; background: rgba(251, 191, 36, 0.35); }
.site-bg-blobs .blob-b { bottom: -6rem; left: -4rem; width: 20rem; height: 20rem; background: rgba(244, 114, 182, 0.28); }
.site-bg-blobs .blob-c { top: 40%; left: 50%; width: 14rem; height: 14rem; background: rgba(56, 189, 248, 0.2); transform: translateX(-50%); }

.glass-card,
.glass-effect {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.25rem;
  box-shadow: var(--card-shadow);
}

.glass-effect .text-slate-300,
.glass-effect .text-slate-400,
.form-label {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  display: block;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.btn-gold,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e293b;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 45%, #f472b6 100%);
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.45);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  text-decoration: none;
}
.btn-gold:hover,
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(244, 114, 182, 0.35);
  filter: brightness(1.03);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.35rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--gold-l);
  color: #b45309;
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-outline-gold:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}

.input-field {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--ink);
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input-field:focus {
  outline: none;
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.25);
}

.marquee-band {
  overflow: hidden;
  background: linear-gradient(90deg, #fef3c7, #fde68a, #fbcfe8, #bae6fd);
  color: #92400e;
  padding: 0.7rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item { padding: 0 1.25rem; white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Customer portal feature tiles */
.portal-hub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .portal-hub { grid-template-columns: repeat(3, 1fr); }
}
.portal-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.35rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, #ffffff 0%, #fffbeb 100%);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.portal-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2);
}
.portal-tile.complaint-tile {
  background: linear-gradient(145deg, #ffffff 0%, #fff1f2 100%);
}
.portal-tile.track-tile {
  background: linear-gradient(145deg, #ffffff 0%, #ecfdf5 100%);
}
.portal-tile-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.portal-tile.register-tile .portal-tile-icon { background: linear-gradient(135deg, #fde68a, #f59e0b); color: #78350f; }
.portal-tile.complaint-tile .portal-tile-icon { background: linear-gradient(135deg, #fecaca, #ef4444); color: #fff; }
.portal-tile.track-tile .portal-tile-icon { background: linear-gradient(135deg, #bbf7d0, #22c55e); color: #14532d; }
.portal-tile h3 { font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.35rem; }
.portal-tile p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.portal-tile .tile-link { margin-top: auto; padding-top: 0.75rem; font-size: 0.75rem; font-weight: 700; color: #b45309; text-transform: uppercase; letter-spacing: 0.08em; }

/* Bright brand cards (not dark) */
.brand-card {
  background: linear-gradient(160deg, #ffffff 0%, #fffbeb 55%, #fef3c7 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--card-shadow);
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(251, 191, 36, 0.22);
}
.brand-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #92400e;
}
.brand-card p { color: var(--muted); }
.brand-logo-wrap {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
}
.brand-card img {
  max-height: 120px;
  width: auto;
  max-width: 88%;
  object-fit: contain;
}

.brand-card-soon {
  filter: saturate(0.92);
}
.brand-soon-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #78350f;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  border: 1px solid rgba(251, 191, 36, 0.6);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35);
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s;
}
.stat-card:hover { transform: scale(1.02); }
.stat-card .stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-mobile-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 72px);
  max-height: min(75vh, 440px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-bottom: 2px solid var(--gold-pale);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  z-index: 49;
  padding: 0.5rem 0.75rem 1rem;
}
.nav-mobile-panel.is-open { display: block; }
.nav-mobile-panel a {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.nav-mobile-panel a:hover { background: var(--gold-pale); color: #b45309; }

.nav-menu-btn {
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border-radius: 0.65rem;
  border: 2px solid var(--gold-l);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
}

.copy-ref-btn {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.contact-email-link {
  color: #b45309;
  font-weight: 600;
  word-break: break-all;
}

.site-footer {
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

/* Full-width footer band — flat white strip, not a card */
.site-footer-band {
  width: calc(100% + env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px));
  max-width: none;
  margin-left: calc(-1 * env(safe-area-inset-left, 0px));
  margin-right: calc(-1 * env(safe-area-inset-right, 0px));
  margin-top: 2.5rem;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  padding: 2.5rem max(1.25rem, env(safe-area-inset-left, 0px)) calc(2.25rem + env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-right, 0px));
}

.site-footer-band-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.page-hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgba(244, 114, 182, 0.35);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #db2777;
  box-shadow: 0 4px 12px rgba(244, 114, 182, 0.15);
}

.animate-fade-in-up {
  animation: fadeInUp 0.55s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 380px) {
  .nav-logo-text { max-width: 9rem; }
}

/* Shared page layout (portal + inner pages) */
.page-shell {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}
.page-main { padding-bottom: 2rem; }
.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b45309;
  text-decoration: none;
  margin-bottom: 1rem;
}
.page-back-link:hover { text-decoration: underline; }
.page-card {
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--card-shadow);
}
@media (min-width: 1024px) {
  .page-card { padding: 2.5rem 3rem; }
}
.page-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .page-title { font-size: 2rem; }
}
.page-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.page-icon-register { background: linear-gradient(135deg, #fde68a, #f59e0b); color: #78350f; }
.page-icon-complaint { background: linear-gradient(135deg, #fecaca, #ef4444); }
.page-icon-track { background: linear-gradient(135deg, #bbf7d0, #22c55e); color: #14532d; }
.page-icon-verify { background: linear-gradient(135deg, #a5f3fc, #0ea5e9); color: #0c4a6e; }

.section-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.section-kicker-gold { color: #d97706; }
.section-kicker-pink { color: #db2777; }
.section-kicker-sky { color: #0284c7; }
.section-kicker-teal { color: #0d9488; }
.section-kicker-coral { color: #e11d48; }

.nav-link { transition: color 0.15s; }
.nav-link:hover { color: #b45309; }
.nav-link.is-active { color: #b45309; text-decoration: underline; text-underline-offset: 4px; }

.product-pill {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 114, 182, 0.15);
}
.product-pill h3 { font-weight: 700; color: var(--ink); font-size: 0.9rem; margin-bottom: 0.25rem; }
.product-pill p { font-size: 0.75rem; color: var(--muted); line-height: 1.45; }

.product-range-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-range-grid { grid-template-columns: repeat(2, 1fr); }
}
.product-range-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 1rem;
  padding: 1.1rem 1.15rem;
}
.product-range-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.product-range-card .range-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 0.35rem;
}
.product-range-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.model-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.model-chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: var(--gold-pale);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #92400e;
}
.feature-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, #f0f9ff 0%, #fffbeb 100%);
}
.feature-strip strong { color: var(--ink); font-size: 0.95rem; }
.feature-strip p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }

.advantage-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .advantage-grid { grid-template-columns: repeat(4, 1fr); }
}
.advantage-card {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(244, 114, 182, 0.2);
  background: rgba(255, 255, 255, 0.92);
}
.advantage-card .adv-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.advantage-card h3 { font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.35rem; }
.advantage-card p { font-size: 0.72rem; color: var(--muted); line-height: 1.45; }

.portal-tip {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #92400e;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
}
.portal-tip strong { color: #78350f; }

.churn-banner {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: linear-gradient(135deg, #fff1f2 0%, #fffbeb 100%);
  font-size: 0.85rem;
  color: #7f1d1d;
  line-height: 1.55;
}
.churn-banner strong { color: #991b1b; }
.row-at-risk { background: rgba(254, 226, 226, 0.35) !important; }
.churn-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background: #fecaca;
  color: #991b1b;
  margin-left: 0.35rem;
}
.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.admin-filter-bar label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  color: var(--muted);
}

.form-stepper-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-stepper-bar [data-step-label] {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: var(--muted);
  background: #fff;
}
.form-stepper-bar [data-step-label].is-active {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #78350f;
  border-color: transparent;
}
.form-stepper-bar [data-step-label].is-done {
  background: #ecfdf5;
  color: #166534;
  border-color: rgba(34, 197, 94, 0.35);
}
.form-step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.admin-btn-sm {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: #fffbeb;
  color: #92400e;
  cursor: pointer;
}
.admin-btn-sm:hover { background: #fef3c7; }
.admin-trend-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 7rem;
  margin-top: 0.75rem;
}
.admin-trend-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  color: var(--muted);
}
.admin-trend-bar {
  width: 100%;
  max-width: 2.5rem;
  border-radius: 0.35rem 0.35rem 0 0;
  background: linear-gradient(180deg, #fbbf24, #f472b6);
  min-height: 4px;
}
.sla-warn { color: #b45309; font-weight: 700; }
.sla-critical { color: #dc2626; font-weight: 700; }

.product-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(244, 114, 182, 0.25);
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.product-slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  touch-action: pan-y pinch-zoom;
}
#product-slides,
[data-slider-track] {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
#product-slides.slider-no-transition,
[data-slider-track].slider-no-transition {
  transition: none !important;
}
#product-slides > div,
#product-slides > article {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.product-slide {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 55%);
  padding: 0.65rem 0.75rem 0.85rem;
}
.product-slide-header {
  text-align: center;
  padding: 0.45rem 0.5rem 0.55rem;
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  margin-bottom: 0.5rem;
}
.product-slide-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #be185d;
  margin: 0;
}
.product-slide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.2rem 0 0;
  line-height: 1.2;
}
.product-slide-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 0.25rem;
}
.product-slide-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}
.product-slide-img-wrap--crop {
  overflow: hidden;
  max-height: 300px;
  align-items: flex-start;
}
.product-slide-img-wrap--crop .product-slide-img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  max-height: 280px;
}
.product-slide-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.product-slide-caption strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--gold-l);
  background: rgba(255, 255, 255, 0.95);
  color: #b45309;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
  transition: background 0.15s, transform 0.15s;
}
.slider-btn:hover { background: var(--gold-pale); transform: translateY(-50%) scale(1.05); }
.slider-btn-prev { left: 0.5rem; }
.slider-btn-next { right: 0.5rem; }
.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
}
.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  background: rgba(244, 114, 182, 0.35);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.slider-dot.is-active {
  background: linear-gradient(135deg, #f472b6, #f59e0b);
  transform: scale(1.25);
}

/* Products section + slider — mobile */
@media (max-width: 1023px) {
  #products {
    padding: 1.25rem !important;
  }
  #products .product-slider-col {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  #products > .flex {
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .product-slide {
    padding: 0.5rem 0.5rem 0.65rem;
  }
  .product-slide-title {
    font-size: 1.05rem;
  }
  .product-slide-img-wrap {
    min-height: 180px;
  }
  .product-slide-img {
    max-height: 220px;
  }
  .product-slide-img-wrap--crop .product-slide-img {
    object-fit: contain;
    object-position: center center;
    max-height: 220px;
  }
  .slider-btn {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1rem;
  }
  .slider-btn-prev { left: 0.25rem; }
  .slider-btn-next { right: 0.25rem; }
  .slider-dots {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    padding: 0.5rem 2.75rem;
    gap: 0.3rem;
    scrollbar-width: none;
  }
  .slider-dots::-webkit-scrollbar {
    display: none;
  }
  .slider-dot {
    flex-shrink: 0;
  }
  main.max-w-6xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.hero-gradient-text {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 40%, #f472b6 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Home hero — full-width slideshow (no 100vw breakout — avoids mobile horizontal overflow) */
.home-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: clamp(28rem, 78vh, 42rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.home-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  transform: scale(1.06);
  will-change: opacity, transform;
}
.home-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 251, 235, 0.92) 0%, rgba(253, 244, 255, 0.82) 42%, rgba(240, 249, 255, 0.78) 100%),
    linear-gradient(to bottom, rgba(30, 41, 59, 0.12) 0%, rgba(30, 41, 59, 0.28) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.home-hero-badge {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(244, 114, 182, 0.45);
  color: #be185d;
  backdrop-filter: blur(8px);
}
.home-hero-badge-icon {
  color: #d97706;
  font-size: 0.55rem;
}
.home-hero-title {
  filter: drop-shadow(0 2px 16px rgba(255, 255, 255, 0.85));
}
.home-hero-lead,
.home-hero-sub {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.75);
}
.home-hero-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}
.home-hero-icons li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.home-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}
.home-hero-icon-gold {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  color: #78350f;
}
.home-hero-icon-pink {
  background: linear-gradient(135deg, #fecaca, #f472b6);
  color: #fff;
}
.home-hero-icon-teal {
  background: linear-gradient(135deg, #99f6e4, #14b8a6);
  color: #134e4a;
}
.home-hero-cta {
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.35), 0 4px 12px rgba(15, 23, 42, 0.12);
}
.home-hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
}
.home-hero-dots button {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(100, 116, 139, 0.35);
  transition: transform 0.2s, background 0.2s;
}
.home-hero-dots button.is-active,
.home-hero-dots button:hover {
  background: linear-gradient(135deg, #f472b6, #f59e0b);
  transform: scale(1.2);
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-slide { transition: none; animation: none; }
  .home-hero-slide.is-active { transform: none; }
}

/* Admin / verify — bright shell with readable cards */
.admin-theme .glass-effect,
.verify-theme .glass-effect {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(251, 191, 36, 0.2);
}
.admin-theme .text-slate-100,
.admin-theme .text-slate-300,
.admin-theme .text-slate-400 {
  color: var(--muted);
}
.admin-theme .text-amber-400 { color: #d97706; }
.admin-theme header.glass-effect { background: rgba(255,255,255,0.95); }
.admin-theme .input-field,
.verify-theme .input-field {
  background: #fff;
  color: var(--ink);
}
.status-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-pill-new { background: #dbeafe; color: #1d4ed8; }
.status-pill-progress { background: #fef3c7; color: #b45309; }
.status-pill-resolved { background: #dcfce7; color: #15803d; }

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(251, 191, 36, 0.35); }
  50% { box-shadow: 0 0 36px rgba(244, 114, 182, 0.45); }
}

/* ========== Mobile polish (all narrow / thin screens) ========== */
html {
  scroll-behavior: smooth;
}

img,
video,
picture {
  max-width: 100%;
  height: auto;
}

.input-field,
select.input-field,
textarea.input-field {
  font-size: 16px;
  max-width: 100%;
}

.glass-effect,
.page-card {
  max-width: 100%;
}

@media (hover: none) and (pointer: coarse) {
  .stat-card:hover,
  .portal-tile:hover,
  .brand-card:hover,
  .product-range-card:hover {
    transform: none;
  }
}

@media (max-width: 1023px) {
  #portal,
  section.max-w-6xl,
  section.max-w-7xl,
  main.max-w-6xl {
    padding-left: max(0.875rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(0.875rem, env(safe-area-inset-right, 0px)) !important;
  }

  .product-range-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .home-hero {
    min-height: clamp(22rem, 70vh, 36rem);
  }

  .home-hero-content {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 640px) {
  .home-hero-title {
    font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
    line-height: 1.15 !important;
  }

  .home-hero-lead {
    font-size: 0.95rem !important;
  }

  .home-hero-sub {
    font-size: 0.85rem !important;
  }

  .home-hero-badge {
    max-width: calc(100% - 1rem);
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .home-hero-badge p {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .home-hero-icons {
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .home-hero-icons li {
    font-size: 0.68rem;
    padding: 0.3rem 0.55rem;
  }

  .marquee-item {
    padding: 0 0.65rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .stat-card {
    padding: 1.15rem 0.85rem;
  }

  .stat-card .stat-num {
    font-size: 2rem;
  }

  .portal-tile h3 {
    font-size: 0.95rem;
  }

  .portal-tile p {
    font-size: 0.75rem;
  }

  .page-title,
  .page-card .page-title {
    font-size: 1.35rem;
  }

  .form-stepper-bar {
    gap: 0.35rem;
  }

  .form-stepper-bar [data-step-label] {
    font-size: 0.62rem;
    padding: 0.3rem 0.5rem;
    letter-spacing: 0.06em;
  }

  .form-step-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .form-step-nav .btn-outline-gold,
  .form-step-nav .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .model-chip-list {
    gap: 0.3rem;
  }

  .model-chip {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
  }

  #products .text-2xl {
    font-size: 1.35rem;
  }

  .feature-strip {
    padding: 0.85rem;
  }

  .product-slider-wrap {
    border-radius: 1rem;
  }
}

@media (max-width: 380px) {
  .nav-logo-text .font-display {
    font-size: 0.8rem !important;
  }

  .nav-logo-text p {
    font-size: 0.58rem !important;
    letter-spacing: 0.06em !important;
  }

  .site-header .max-w-7xl {
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }

  .home-hero-icons li span.home-hero-icon {
    width: 1.15rem;
    height: 1.15rem;
    font-size: 0.55rem;
  }

  .slider-dots {
    padding-left: 2.35rem;
    padding-right: 2.35rem;
  }

  .product-slide-category {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 320px) {
  .home-hero-title {
    font-size: 1.5rem !important;
  }

  .hero-gradient-text {
    padding: 0 0.15rem;
  }

  .cta-btn,
  .btn-gold {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.85rem;
  }
}
