/* ═══════════════════════════════════════════════════════
   ALLOVION — Shared Design System
   One CSS file used by every page in the site.
   ═══════════════════════════════════════════════════════ */

:root {
  --primary: #7c6b5a;
  --gold: #b08d57;
  --gold-light: #c99a5e;
  --blue: #4e7fa8;
  --bg-primary: #f4f2ef;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eceae6;
  --text-primary: #1a1815;
  --text-secondary: #5a5550;
  --text-tertiary: #8c8782;
  --accent: var(--primary);
  --accent-hover: #6a5a4b;
  --accent-soft: rgba(124,107,90,.08);
  --accent-glow: rgba(124,107,90,.15);
  --gold-soft: rgba(176,141,87,.12);
  --gold-soft-strong: rgba(176,141,87,.20);
  --border: rgba(0,0,0,.06);
  --border-strong: rgba(0,0,0,.12);
  --glass: rgba(255,255,255,.70);
  --glass-heavy: rgba(255,255,255,.92);
  /* Layered elevation shadows — soft ambient + tighter key shadow,
     modeled on Material/Fluent elevation scales. */
  --sh-xs: 0 1px 2px rgba(20,18,15,.05), 0 1px 1px rgba(20,18,15,.04);
  --sh-sm: 0 1px 2px rgba(20,18,15,.06), 0 4px 10px rgba(20,18,15,.05);
  --sh-md: 0 2px 6px rgba(20,18,15,.06), 0 8px 20px rgba(20,18,15,.07);
  --sh-lg: 0 4px 10px rgba(20,18,15,.06), 0 14px 34px rgba(20,18,15,.09);
  --sh-xl: 0 8px 16px rgba(20,18,15,.07), 0 24px 56px rgba(20,18,15,.12);
  --blur: blur(20px) saturate(180%);
  --hh: 60px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  /* Standard + emphasized motion curves (Material-style easing) */
  --ease: .45s cubic-bezier(.2, 0, 0, 1);
  --ease-emph: .5s cubic-bezier(.3, 0, 0, 1);
  --ease-fast: .18s cubic-bezier(.2, 0, 0, 1);
  --logo-g: linear-gradient(135deg,#7c6b5a,#b08d57);
  --success: #2d9e56;
  --danger: #dc2626;
  --focus-ring: 0 0 0 3px var(--gold-soft-strong);
}
[data-theme="dark"] {
  --bg-primary: #111009;
  --bg-secondary: #1d1b18;
  --bg-tertiary: #26231e;
  --text-primary: #ede9e3;
  --text-secondary: #9a948c;
  --text-tertiary: #6a6560;
  --accent: #c4b09a;
  --accent-hover: #d4c3b3;
  --accent-soft: rgba(196,176,154,.08);
  --accent-glow: rgba(196,176,154,.15);
  --gold-soft: rgba(176,141,87,.15);
  --gold-soft-strong: rgba(176,141,87,.28);
  --border: rgba(255,255,255,.07);
  --border-strong: rgba(255,255,255,.13);
  --glass: rgba(29,27,24,.70);
  --glass-heavy: rgba(29,27,24,.92);
  --sh-xs: 0 1px 2px rgba(0,0,0,.3), 0 1px 1px rgba(0,0,0,.25);
  --sh-sm: 0 1px 2px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.3);
  --sh-md: 0 2px 6px rgba(0,0,0,.32), 0 8px 20px rgba(0,0,0,.35);
  --sh-lg: 0 4px 10px rgba(0,0,0,.34), 0 14px 34px rgba(0,0,0,.4);
  --sh-xl: 0 8px 16px rgba(0,0,0,.4), 0 24px 56px rgba(0,0,0,.5);
  --focus-ring: 0 0 0 3px var(--gold-soft-strong);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  letter-spacing: -.012em;
  min-height: 100vh;
  transition: background var(--ease), color var(--ease);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold-soft); color: var(--text-primary); }
img { max-width: 100%; display: block; }

/* Consistent, accessible focus state across every interactive element */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.btn:focus-visible { outline-offset: 3px; }

/* Consistent heading rhythm */
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; color: var(--text-primary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}


/* ── HEADER ── */
.hdr {
  margin: 0.45rem 0.85rem;
  height: var(--hh);
  padding: 0 1.2rem;
  background: var(--glass-heavy);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  box-shadow: var(--sh-sm);
  position: sticky;
  top: 0.45rem;
  z-index: 950;
  transition: all var(--ease);
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.045em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.hdr-brand .logo-ico {
  width: 34px;
  height: 34px;
  background: var(--logo-g);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .4s ease;
  flex-shrink: 0;
}
.hdr-brand:hover .logo-ico { transform: scale(1.05) rotate(-2deg); }

.hdr-nav { display: flex; align-items: center; gap: 0.2rem; }
.hdr-nav a {
  padding: 0.42rem 0.95rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: background var(--ease-fast), color var(--ease-fast);
  white-space: nowrap;
  position: relative;
}
.hdr-nav a:not(.btn):hover { color: var(--text-primary); background: var(--bg-tertiary); }
.hdr-nav a.active:not(.btn) { color: var(--text-primary); background: var(--gold-soft); font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), border-color var(--ease-fast), background var(--ease-fast);
  border: none;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 50px;
  padding: .6rem 1.5rem;
  font-size: .88rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--ease-fast);
  pointer-events: none;
  z-index: -1;
}
.btn:hover::after { opacity: .07; }
.btn:active::after { opacity: .14; }
.btn:active { transform: scale(.97); }
.btn i { transition: transform var(--ease-fast); }
.btn:hover i { transform: translateX(4px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  box-shadow: var(--sh-sm), 0 2px 10px rgba(176,141,87,0.28);
  font-weight: 700;
}
.btn-gold::after { background: #fff; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md), 0 6px 20px rgba(176,141,87,0.4);
  color: #fff;
}
.btn-gold:active { transform: scale(.97); box-shadow: var(--sh-xs), 0 2px 8px rgba(176,141,87,0.3); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
  font-weight: 600;
}
[data-theme="dark"] .btn-outline { color: var(--text-secondary); border-color: var(--border-strong); }
.btn-outline::after { background: var(--gold); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: var(--sh-xs); }
.btn-outline:active { transform: scale(.97); }
.btn-sm { padding: .35rem 1rem; font-size: .78rem; border-radius: 40px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn:disabled::after { display: none; }

/* ── Hamburger Toggle (Mobile) ── */
.hdr-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  padding: 0.3rem;
  border-radius: 8px;
  transition: all .2s;
  line-height: 1;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.hdr-menu-toggle:hover { background: var(--accent-soft); color: var(--accent); }
.hdr-menu-toggle .bi-x { display: none; }
.hdr-menu-toggle.open .bi-list { display: none; }
.hdr-menu-toggle.open .bi-x { display: inline; }

/* ── Mobile Dropdown Menu ── */
.mobile-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0.85rem;
  right: 0.85rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 0.8rem 0.6rem;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 1000;
  animation: slideDown .3s ease;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all .2s;
  border-left: 3px solid transparent;
}
.mobile-menu a:not(.btn):hover { background: var(--bg-tertiary); color: var(--text-primary); border-left-color: var(--gold); }
.mobile-menu a:not(.btn) i { font-size: 1.1rem; color: var(--text-tertiary); width: 1.2rem; text-align: center; transition: color .2s; }
.mobile-menu a:not(.btn):hover i { color: var(--gold); }
.mobile-menu a.active:not(.btn) { background: var(--bg-tertiary); color: var(--text-primary); border-left-color: var(--gold); }
.mobile-menu-divider { height: 1px; background: var(--border-strong); margin: 0.4rem 0.5rem; }
.mobile-menu .btn { justify-content: center; margin-top: 0.2rem; border-radius: var(--r-md); width: 100%; padding: 0.6rem; font-size: 0.9rem; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Theme Toggle ── */
.th-tog {
  width: 34px; height: 34px; border-radius: 9px; border: none;
  background: var(--bg-tertiary); color: var(--text-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  transition: all .2s; position: relative; overflow: hidden; flex-shrink: 0;
}
.th-tog:hover { background: var(--accent-soft); color: var(--accent); }
.th-tog .is, .th-tog .im { position: absolute; transition: all .4s ease; }
[data-theme="dark"] .th-tog .is { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .th-tog .im { opacity: 0; transform: rotate(-90deg) scale(.5); }
.th-tog .is { opacity: 0; transform: rotate(90deg) scale(.5); }
.th-tog .im { opacity: 1; transform: rotate(0) scale(1); }

.hdr-div { width: 1px; height: 18px; background: var(--border-strong); margin: 0 0.18rem; flex-shrink: 0; }
.hdr-right { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }

@media (max-width: 992px) {
  .hdr-nav a:not(.btn) { display: none; }
  .hdr-menu-toggle { display: flex; }
  .hdr-nav .btn-outline, .hdr-nav .btn-gold { display: none; }
  .hdr-div.d-none { display: none !important; }
}
@media (min-width: 993px) { .mobile-menu { display: none !important; } }
@media (max-width: 576px) {
  .hdr { padding: 0 0.8rem; margin: 0.3rem 0.5rem; height: 56px; border-radius: var(--r-lg); }
  .hdr-brand { font-size: 1.05rem; }
  .hdr-brand .logo-ico { width: 30px; height: 30px; font-size: 0.8rem; }
  .hdr-menu-toggle { font-size: 1.2rem; width: 34px; height: 34px; }
  .th-tog { width: 30px; height: 30px; font-size: 0.95rem; }
  .mobile-menu { left: 0.5rem; right: 0.5rem; top: calc(100% + 0.3rem); padding: 0.6rem 0.4rem; border-radius: var(--r-md); }
  .mobile-menu a:not(.btn) { padding: 0.5rem 0.7rem; font-size: 0.85rem; }
  .mobile-menu .btn { padding: 0.5rem; font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .hdr-brand span { font-size: 0.9rem; }
  .hdr-brand .logo-ico { width: 26px; height: 26px; font-size: 0.7rem; }
  .hdr { height: 50px; padding: 0 0.6rem; }
}

/* ── MAIN ── */
.main { margin: 1rem 0.85rem 1rem; padding: 0; }
.breadcrumb-nav a { color: var(--text-tertiary); transition: color var(--ease-fast); }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav span[aria-current] { color: var(--text-secondary); font-weight: 600; }

/* ── HERO (home) ── */
.hero {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  padding: 4rem 3rem;
  margin-bottom: 2.5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero-visual {
  position: relative; width: 100%; height: 100%; min-height: 420px;
  display: flex; align-items: center; justify-content: center; z-index: 1;
  animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0;
}
.hero-orb {
  position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  border-radius: 50%; filter: blur(50px);
  animation: floatBlob 8s ease-in-out infinite alternate;
}
.hero-ring {
  position: absolute; width: 260px; height: 260px;
  border: 1px solid var(--border-strong); border-radius: 50%;
  animation: spinRing 24s linear infinite;
}
.hero-ring::after {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 30px var(--gold-light);
}
.hero-dots { position: absolute; width: 100%; height: 100%; }
.hero-dot {
  position: absolute; width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 30px rgba(176,141,87,0.25); animation: floatDot 7s ease-in-out infinite alternate;
}
.hero-dot:nth-child(1) { top: 12%; left: 22%; animation-delay: 0s; }
.hero-dot:nth-child(2) { bottom: 22%; right: 18%; animation-delay: 2.5s; width: 18px; height: 18px; }
.hero-dot:nth-child(3) { top: 42%; right: 32%; animation-delay: 4.5s; width: 10px; height: 10px; }

@keyframes floatBlob { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-20px) scale(1.05); } }
@keyframes spinRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes floatDot { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-35px) scale(1.1); } }

.hero-content { position: relative; z-index: 2; animation: fadeInUp 0.8s ease forwards; }
.hero-content .tag {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft);
  padding: 0.25rem 0.8rem; border-radius: 20px; border: 1px solid rgba(176,141,87,0.1); margin-bottom: 1.2rem;
}
.hero-content .tag i { font-size: 0.45rem; color: var(--success); }
.hero-content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 800; letter-spacing: -0.045em;
  line-height: 1.05; color: var(--text-primary); margin-bottom: 1rem;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light), #a87d4a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p { font-size: 1.1rem; color: var(--text-secondary); max-width: 480px; line-height: 1.7; margin-bottom: 2rem; font-weight: 400; }
.hero-content .btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-content .btn-group .btn { font-size: 1rem; padding: 0.8rem 2.2rem; border-radius: 50px; font-weight: 700; }
.hero-content .btn-group .btn-gold { box-shadow: 0 4px 25px rgba(176,141,87,0.4); }
.hero-content .btn-group .btn-gold:hover { transform: translateY(-2px); box-shadow: var(--sh-md), 0 6px 24px rgba(176,141,87,0.42); }
.hero-content .btn-group .btn-outline:hover { transform: translateY(-2px); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 991px) {
  .hero { padding: 2.5rem 1.8rem; min-height: auto; }
  .hero-content h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
  .hero-visual { min-height: 320px; }
  .hero-orb { width: 300px; height: 300px; }
  .hero-ring { width: 200px; height: 200px; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 2rem 1.2rem; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-content .btn-group { justify-content: center; }
  .hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .hero-content p { font-size: 1rem; max-width: 100%; }
  .hero-content .btn-group .btn { font-size: 0.9rem; padding: 0.6rem 1.6rem; min-width: 160px; }
  .hero-visual { min-height: 200px; margin-top: 2rem; }
  .hero-orb { width: 200px; height: 200px; }
  .hero-ring { width: 150px; height: 150px; }
  .hero-dot { width: 10px; height: 10px; }
  .hero-dot:nth-child(2) { width: 14px; height: 14px; }
}
@media (max-width: 576px) {
  .hero { padding: 1.8rem 1rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.9rem; }
  .hero-content .btn-group .btn { font-size: 0.82rem; padding: 0.5rem 1.2rem; min-width: 140px; }
  .hero-visual { min-height: 160px; }
  .hero-orb { width: 160px; height: 160px; }
  .hero-ring { width: 120px; height: 120px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot:nth-child(2) { width: 12px; height: 12px; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  padding: 3.2rem 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .tag {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft);
  padding: 0.25rem 0.8rem; border-radius: 20px; border: 1px solid rgba(176,141,87,0.1); margin-bottom: 1.2rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 0.8rem; }
.page-hero p { font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── FEATURES / PRODUCTS ── */
.features { padding: 2rem 0; }
.features h2 { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 2.2rem; letter-spacing: -0.03em; }
.card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 1.8rem 1.5rem; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast);
  height: 100%; text-align: center;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.card i {
  width: 56px; height: 56px; font-size: 1.5rem; color: var(--gold);
  background: var(--gold-soft); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; transition: transform var(--ease-fast), background var(--ease-fast), color var(--ease-fast);
}
.card:hover i { background: var(--gold); color: #fff; transform: scale(1.06); }
.card h5 { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--text-primary); }
.card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.card .btn { margin-top: 1rem; }

/* ── PRODUCT DETAIL (products page) ── */
.product-detail {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-sm); padding: 2.8rem; margin-bottom: 1.8rem; display: flex; gap: 2.5rem;
  align-items: center; flex-wrap: wrap; transition: box-shadow var(--ease-fast);
}
.product-detail:hover { box-shadow: var(--sh-md); }
.product-detail .pd-icon {
  width: 88px; height: 88px; border-radius: var(--r-lg); background: var(--gold-soft);
  color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 2.4rem;
  flex-shrink: 0;
}
.product-detail .pd-body { flex: 1; min-width: 260px; }
.product-detail h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -.03em; }
.product-detail .pd-tagline { color: var(--gold); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.6rem; display: block; }
.product-detail p.pd-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.pd-features { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 0.5rem 1rem; margin-bottom: 1.2rem; }
.pd-features li { color: var(--text-secondary); font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem; }
.pd-features li i { color: var(--success); }
@media (max-width: 768px) { .product-detail { padding: 1.8rem; text-align: center; justify-content: center; } .pd-features { text-align: left; } }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 2rem 0; }
.how-it-works h2 { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 0.6rem; letter-spacing: -0.03em; }
.how-it-works .subhead { text-align: center; color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; }
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem; background: var(--gold-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--gold);
  transition: all .3s ease;
}
.step-card:hover .step-icon { background: var(--gold); color: #fff; transform: scale(1.06); box-shadow: var(--sh-md), 0 6px 18px rgba(176,141,87,0.28); }
.step-card h5 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ── WHY ALLOVION / BENEFITS ── */
.why-allovion { padding: 2.5rem 0; background: var(--bg-tertiary); border-radius: var(--r-xl); margin: 2rem 0; }
.why-allovion h2 { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 2.5rem; letter-spacing: -0.03em; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.5rem 0; }
.benefit-item i {
  width: 40px; height: 40px; font-size: 1.15rem; color: var(--gold); background: var(--gold-soft);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-item h6 { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.benefit-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 2rem 0; }
.testimonials h2 { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 2.2rem; letter-spacing: -0.03em; }
.testimonial-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 1.8rem 1.5rem; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast);
  height: 100%; text-align: left;
}
.testimonial-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 0.6rem; }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.6; color: var(--text-primary); margin-bottom: 1rem; font-weight: 500; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-card .author .avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--logo-g);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.8rem;
}
.testimonial-card .author .info { font-size: 0.85rem; }
.testimonial-card .author .info .name { font-weight: 700; }
.testimonial-card .author .info .role { color: var(--text-tertiary); font-size: 0.75rem; }

/* ── FAQ ── */
.faq { padding: 2rem 0; }
.faq h2 { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.faq .subhead { text-align: center; color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 0.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 0;
  font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; gap: 1rem; transition: color .2s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f282'; font-family: 'bootstrap-icons'; font-size: 1.2rem; color: var(--text-tertiary);
  transition: transform .3s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .answer { padding: 0 0 1rem; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ── PRICING ── */
.pricing { padding: 2rem 0; }
.pricing h2 { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.pricing .subhead { text-align: center; color: var(--text-secondary); font-size: 1rem; max-width: 520px; margin: 0 auto 2.5rem; }
.pricing-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2rem 1.6rem; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast);
  height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: transparent; }
.pricing-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--gold-soft-strong); box-shadow: var(--sh-lg); }
.pricing-card.featured::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }
.pricing-card.featured:hover { transform: translateY(-3px); box-shadow: var(--sh-xl); }
.pricing-card .p-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; font-size: 0.68rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 20px;
  box-shadow: 0 4px 14px rgba(176,141,87,0.35);
}
.pricing-card .p-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.pricing-card .p-price { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.2rem; }
.pricing-card .p-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-tertiary); }
.pricing-card .p-desc { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1.4rem; }
.pricing-card ul { list-style: none; margin-bottom: 1.6rem; flex: 1; }
.pricing-card ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); padding: 0.35rem 0; }
.pricing-card ul li i { color: var(--success); margin-top: 0.15rem; flex-shrink: 0; }

/* ── BLOG ── */
.blog-grid-section { padding: 2rem 0; }
.blog-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast); height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.blog-card .b-thumb {
  height: 150px; background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 2.4rem;
}
.blog-card .b-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .b-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; flex: 1; margin-bottom: 0.8rem; }
.blog-card .b-meta { font-size: 0.75rem; color: var(--text-tertiary); display: flex; justify-content: space-between; align-items: center; }

/* ── TEAM ── */
.team-grid-section { padding: 2rem 0; }
.team-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.8rem 1.4rem; text-align: center; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast); height: 100%; }
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.team-card .t-avatar {
  width: 76px; height: 76px; border-radius: 50%; background: var(--logo-g); color: #fff; font-weight: 800;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.team-card h6 { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.team-card .t-role { color: var(--gold); font-size: 0.78rem; font-weight: 600; margin-bottom: 0.6rem; }
.team-card p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; }

/* ── VALUES (about) ── */
.values-section { padding: 2rem 0; }
.value-card { text-align: center; padding: 1.2rem; }
.value-card i {
  width: 52px; height: 52px; font-size: 1.4rem; color: var(--gold); background: var(--gold-soft);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem;
  transition: transform var(--ease-fast), background var(--ease-fast), color var(--ease-fast);
}
.value-card:hover i { background: var(--gold); color: #fff; transform: scale(1.06); }
.value-card h6 { font-weight: 700; margin-bottom: 0.4rem; }
.value-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; }

.stats-section { padding: 2rem 0; }
.stat-item { text-align: center; padding: 1rem; }
.stat-item .num { font-size: 2.4rem; font-weight: 800; color: var(--gold); letter-spacing: -.03em; }
.stat-item .lbl { color: var(--text-secondary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* ── FORMS (contact / login / signup) ── */
.form-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2.4rem; box-shadow: var(--sh-sm); max-width: 620px; margin: 0 auto;
}
.auth-card { max-width: 440px; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.form-control {
  width: 100%; padding: 0.72rem 1rem; border-radius: var(--r-md); border: 1.5px solid transparent;
  background: var(--bg-tertiary); color: var(--text-primary); font-family: inherit; font-size: 0.9rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-fast);
}
.form-control:hover { border-color: var(--border-strong); }
.form-control:focus { outline: none; border-color: var(--gold); background: var(--bg-secondary); box-shadow: var(--focus-ring); }
.form-control::placeholder { color: var(--text-tertiary); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 0.78rem; color: var(--text-tertiary); margin-top: 0.3rem; }
.form-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.2rem; }
.form-check input { width: 16px; height: 16px; accent-color: var(--gold); }
.form-foot-link { text-align: center; margin-top: 1.4rem; font-size: 0.88rem; color: var(--text-secondary); }
.form-foot-link a { color: var(--gold); font-weight: 600; }
.divider-text { display: flex; align-items: center; gap: 0.8rem; margin: 1.4rem 0; color: var(--text-tertiary); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em; }
.divider-text::before, .divider-text::after { content: ''; flex: 1; height: 1px; background: var(--border-strong); }
.social-btns { display: flex; gap: 0.8rem; }
.social-btns .btn { flex: 1; }

/* ── HELP CENTER ── */
.help-search {
  max-width: 560px; margin: 0 auto 2.5rem; display: flex; gap: 0.6rem;
}
.help-search .form-control { flex: 1; }
.help-grid-section { padding: 1rem 0 2rem; }
.help-topic-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 1.6rem; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast); height: 100%;
}
.help-topic-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.help-topic-card i {
  width: 48px; height: 48px; font-size: 1.3rem; color: var(--gold); background: var(--gold-soft);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 0.8rem;
}
.help-topic-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.help-topic-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.8rem; }
.help-topic-card ul { list-style: none; }
.help-topic-card ul li { font-size: 0.82rem; padding: 0.25rem 0; }
.help-topic-card ul li a { color: var(--text-secondary); transition: color .2s; }
.help-topic-card ul li a:hover { color: var(--gold); }

/* ── CAREERS ── */
.careers-grid-section { padding: 1rem 0 2rem; }
.job-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem; box-shadow: var(--sh-xs); transition: box-shadow var(--ease-fast), transform var(--ease-fast);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.job-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.job-card .job-info h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.job-card .job-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.job-card .job-meta span {
  font-size: 0.72rem; font-weight: 600; color: var(--text-tertiary); background: var(--bg-tertiary);
  padding: 0.2rem 0.7rem; border-radius: 20px;
}

/* ── LEGAL PAGES (Terms / Privacy) ── */
.legal-content {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2.6rem; box-shadow: var(--sh-sm); max-width: 820px; margin: 0 auto;
}
.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin: 1.6rem 0 0.6rem; letter-spacing: -.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.8rem; }
.legal-content ul { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; margin: 0 0 0.8rem 1.2rem; }
.legal-content .legal-updated { color: var(--text-tertiary); font-size: 0.8rem; margin-bottom: 1.6rem; display: block; }

/* ── 404 ── */
.error-section {
  text-align: center; padding: 4rem 2rem; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-sm);
}
.error-section .error-code {
  font-size: clamp(4rem, 12vw, 7rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}
.error-section h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.6rem; }
.error-section p { color: var(--text-secondary); max-width: 420px; margin: 0 auto 1.8rem; }

/* ── CONTACT INFO CARDS ── */
.contact-info { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); margin-bottom: 2rem; }
.contact-info-card {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.4rem; text-align: center; box-shadow: var(--sh-xs);
}
.contact-info-card i {
  width: 44px; height: 44px; font-size: 1.2rem; color: var(--gold); background: var(--gold-soft);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.7rem;
}
.contact-info-card h6 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact-info-card p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; }

/* ── CTA ── */
.cta-section {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 3.5rem 2rem; margin: 2rem 0; text-align: center; box-shadow: var(--sh-sm); transition: all var(--ease);
}
.cta-section h2 { font-weight: 800; font-size: clamp(1.7rem, 3.2vw, 2.2rem); letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.cta-section p { color: var(--text-secondary); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2rem; }
.cta-section .btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.cta-section .btn-group .btn { font-size: 1rem; padding: 0.8rem 2.2rem; border-radius: 50px; font-weight: 700; }
.cta-section .btn-group .btn-gold { box-shadow: 0 4px 25px rgba(176,141,87,0.4); }
.cta-section .btn-group .btn-gold:hover { transform: translateY(-2px); box-shadow: var(--sh-md), 0 6px 24px rgba(176,141,87,0.42); }
.cta-section .btn-group .btn-outline:hover { transform: translateY(-2px); }
@media (max-width: 576px) { .cta-section .btn-group .btn { font-size: 0.85rem; padding: 0.5rem 1.2rem; min-width: 140px; } }

/* ── FOOTER ── */
.ftr {
  margin: 1.5rem 0.85rem 0.65rem; padding: 2rem 1.2rem 1.2rem; border: 1px solid var(--border);
  border-radius: var(--r-xl); background: var(--glass-heavy); backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur); box-shadow: var(--sh-xs);
}
.ftr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem 1.5rem; margin-bottom: 1.5rem; }
.ftr-col h3 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 0.8rem; }
.ftr-col ul { list-style: none; padding: 0; margin: 0; }
.ftr-col ul li { margin-bottom: 0.4rem; }
.ftr-col ul a { color: var(--text-secondary); font-size: 0.8rem; transition: color .2s; }
.ftr-col ul a:hover { color: var(--accent); }
.ftr-bottom { border-top: 1px solid var(--border); padding-top: 0.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.7rem; color: var(--text-tertiary); }
.ftr-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2.5s infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(45,158,86,.3); } 50% { box-shadow: 0 0 0 6px transparent; } }
.badge { display: inline-flex; align-items: center; gap: 3px; font-size: .64rem; font-weight: 700; padding: 3px 8px; border-radius: 14px; letter-spacing: .02em; white-space: nowrap; }
.b-ok { background: rgba(45,158,86,.08); color: var(--success); }
.b-warn { background: rgba(217,119,6,.1); color: #d97706; }
.b-dot::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; margin-right: 4px; }

/* ── Toast ── */
.toast-con { position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 5000; display: flex; flex-direction: column; gap: .42rem; pointer-events: none; }
.toast {
  background: var(--glass-heavy); backdrop-filter: var(--blur); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: .68rem .95rem; box-shadow: var(--sh-xl); display: flex; align-items: center; gap: .65rem;
  min-width: 240px; max-width: 320px; pointer-events: all; transform: translateX(110%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1); font-size: .79rem; font-weight: 500;
}
.toast.show { transform: translateX(0); }
.toast i { font-size: .9rem; flex-shrink: 0; }
.toast .tm { flex: 1; color: var(--text-primary); }
.t-ok i { color: var(--success); }
.t-err i { color: #dc2626; }
.t-warn i { color: #d97706; }
.t-info i { color: #3b7fc4; }

.mt-6 { margin-top: 4rem; }

/* Generic section heading used stand-alone (no h2 wrapper needed) */
.section-title { text-align: center; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 2.2rem; letter-spacing: -0.03em; }
