:root{
  --wine:#6B1F2B;
  --wine-2:#4E1520;
  --ivory:#F7F2E7;
  --bg:#F5F6F8;
  --bg-2:#EEF0F4;

  --text:#151A22;
  --muted:#4A5565;

  --border: rgba(21,26,34,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.12);
  --shadow-soft: 0 12px 36px rgba(0,0,0,.08);

  --radius:20px;
}

body{
  background:#fff;
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color: var(--wine); text-decoration:none; }
a:hover{ color: var(--wine-2); text-decoration:none; }

:focus-visible{
  outline: 3px solid rgba(107,31,43,.35);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Sections */
.section{ padding:72px 0; background:#fff; }
.section-muted{ padding:72px 0; background:var(--bg); }
.section-title{ font-weight:950; letter-spacing:-0.01em; }
.section-sub{ color:var(--muted); opacity:.92; }

/* Buttons */
.btn-deep{
  display:inline-block;
  background: var(--wine);
  color:#fff !important;
  border:none;
  padding:12px 20px;
  border-radius:12px;
  font-weight:900;
  box-shadow: 0 10px 34px rgba(107,31,43,.25);
  transition: transform .05s ease, background .2s ease, box-shadow .2s ease;
}
.btn-deep:hover{
  background: var(--wine-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 44px rgba(107,31,43,.28);
}

.pill-link{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background: rgba(107,31,43,.08);
  border:1px solid rgba(107,31,43,.14);
  color: var(--wine);
  font-weight:900;
  transition: background .2s ease;
}
.pill-link:hover{
  background: rgba(107,31,43,.12);
  color: var(--wine);
}

/* Cards */
.card-qeld{
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.chip{
  display:inline-block;
  background: rgba(107,31,43,.10);
  border: 1px solid rgba(107,31,43,.18);
  color: var(--wine);
  padding:4px 10px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:900;
  margin-bottom:10px;
}

.icon-wrap{
  width:42px;height:42px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(107,31,43,.10);
  border:1px solid rgba(107,31,43,.16);
  color: var(--wine);
  margin-bottom:10px;
  font-size:1.2rem;
}

/* Hero */
.hero-waitersub{
  position:relative;
  padding:72px 0 84px;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 55%, #fff 100%);
  overflow:hidden;
}
.hero-waitersub::before{
  content:"";
  position:absolute;
  inset:auto -10% 0 -10%;
  height:240px;
  background: radial-gradient(40% 60% at 70% 30%, rgba(107,31,43,.16) 0%, rgba(107,31,43,0) 70%);
  filter: blur(26px);
  pointer-events:none;
}
.hero-title{
  font-size: clamp(2.2rem, 2.4rem + 1.6vw, 4rem);
  line-height:1.05;
  font-weight:950;
  margin-bottom:14px;
  letter-spacing:-0.02em;
}
.hero-sub{
  color: var(--muted);
  font-size:1.1rem;
  margin-bottom:18px;
  max-width:720px;
}
.hero-list{ list-style:none; padding:0; margin:0 0 22px 0; }
.hero-list li{ display:flex; align-items:flex-start; gap:.6rem; margin:.4rem 0; }
.hero-list .check{
  display:inline-grid; place-items:center;
  width:26px; height:26px; border-radius:50%;
  background: rgba(107,31,43,.10);
  border:1px solid rgba(107,31,43,.16);
  color: var(--wine);
  font-weight:900;
  flex: 0 0 auto;
  margin-top:1px;
}

/* Hero card (right column) */
.hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px;
  box-shadow: var(--shadow);
}
.hero-card .card-title{ font-weight:950; }

/* Slider */
.range-wrap input[type="range"]{
  width:100%;
  -webkit-appearance:none;
  appearance:none;
  height:4px;
  border-radius:999px;
  background: rgba(21,26,34,.18);
  outline:none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:28px;height:28px;border-radius:50%;
  background: var(--wine);
  border:3px solid rgba(107,31,43,.20);
  cursor:pointer;
}
.range-wrap input[type="range"]::-moz-range-thumb{
  width:28px;height:28px;border-radius:50%;
  background: var(--wine);
  border:3px solid rgba(107,31,43,.20);
  cursor:pointer;
}

.display-pair{ display:flex; justify-content:space-between; gap:12px; }
.big-number{ font-size: clamp(1.8rem, 1.6rem + 1.2vw, 3rem); font-weight:950; color: var(--wine); }
.label{ color: var(--muted); opacity:.9; font-size:.9rem; }

/* Navbar (if you use same markup) */
.navbar-nav .nav-link{
  color: var(--wine) !important;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  background: rgba(107,31,43,.08);
  color: var(--wine) !important;
}

/* Mobile */
@media (max-width: 991.98px){
  .hero-waitersub{ padding:56px 0 64px; }
  .hero-card{ margin-top: 10px; }
}
