/* ==========================================================================
   GSMTool Store - main stylesheet
   Type + palette follow unlockbase.com
   Bebas Neue (display) / Source Sans 3 (text)
   ========================================================================== */

:root {
  --ink:        #000000;
  --ink-2:      #2e2e2e;
  --ink-3:      #4a4a4a;
  --muted:      #a6a6a6;
  --line:       #d9d9d9;
  --bg:         #ffffff;
  --bg-2:       #f4f4f4;

  --blue:       #34689a;
  --blue-2:     #5488ba;
  --blue-3:     #94c8fa;
  --green:      #258823;
  --green-2:    #45a843;
  --red:        #c0392b;

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body:    "Source Sans 3", "Lato", -apple-system, Segoe UI, sans-serif;

  --wrap:       1200px;
  --gap:        24px;
  --radius:     4px;
  --shadow:     0 2px 10px rgba(0, 0, 0, .08);
  --shadow-lg:  0 8px 28px rgba(0, 0, 0, .14);
  --header-h:   72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-2); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .5px;
  color: var(--ink);
  margin: 0 0 .4em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; position: relative; }
.section--alt { background: var(--bg-2); }

/* Light background pattern ------------------------------------------------- */
.section::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(52, 104, 154, .13) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.section--alt::before {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, .028) 0 1px,
    transparent 1px 11px
  );
  background-size: auto;
}
/* Sections that opt out of the background pattern */
.section--flat::before { display: none; }
.section > .wrap { position: relative; z-index: 1; }
.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;
}

/* Section heading ---------------------------------------------------------- */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head h2 { margin-bottom: .2em; }
.sec-head p { color: var(--ink-3); max-width: 620px; margin: 0 auto; }
.sec-head::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--blue); margin: 18px auto 0;
}

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
/* Only two button colours exist site-wide: blue and green. */
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-2); border-color: var(--blue-2); color: #fff; }
.btn--green { background: var(--green); color: #fff; border-color: var(--green); }
.btn--green:hover { background: var(--green-2); border-color: var(--green-2); color: #fff; }
.btn--sm { padding: 8px 18px; font-size: .95rem; }
.btn--block { display: block; width: 100%; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: #cfcfcf;
  font-size: .85rem;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px; flex-wrap: wrap;
}
.topbar a { color: #cfcfcf; }
.topbar a:hover { color: #fff; }
.topbar__list { display: flex; gap: 20px; flex-wrap: wrap; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header.is-stuck { box-shadow: var(--shadow); }
.header__inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.9rem; letter-spacing: 1px;
  color: var(--ink); line-height: 1; white-space: nowrap;
}
.logo span { color: var(--blue); }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 26px; align-items: center; }
.nav__list a {
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: .8px;
  color: var(--ink-2); padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav__list a:hover,
.nav__list a.is-active { color: var(--blue); border-bottom-color: var(--blue); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink-2); cursor: pointer;
}
.icon-btn:hover { border-color: var(--blue); color: var(--blue); }
.icon-btn__count {
  position: absolute; top: -7px; right: -7px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 700; line-height: 19px;
  border-radius: 10px; text-align: center;
}
.nav-toggle { display: none; }

/* ==========================================================================
   Search band (sits under the stats strip, like the GSM site)
   ========================================================================== */
.searchband {
  position: relative;
  background: var(--bg-2);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
/* same diagonal stripe as the "Shop Products" section */
.searchband::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, .028) 0 1px,
    transparent 1px 11px
  );
}
.searchband .wrap { position: relative; z-index: 1; }

.search { position: relative; max-width: 1000px; margin: 0 auto; }

.search__form {
  display: flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: 6px;
  background: #fff; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.search__form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 136, 35, .16);
}

/* green magnifier block on the left */
.search__icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; flex: 0 0 46px;
  background: var(--green); color: #fff;
}

.search__input {
  flex: 1; min-width: 0;
  border: 0; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink-2);
  padding: 13px 14px;
}
.search__input::placeholder { color: var(--muted); }

.search__clear {
  display: none; border: 0; background: transparent; cursor: pointer;
  color: var(--muted); padding: 0 12px; font-size: 1.3rem; line-height: 1;
}
.search__clear:hover { color: var(--red); }
.search.has-text .search__clear { display: block; }

/* scope dropdown on the right */
.search__scope {
  flex: 0 0 auto;
  border: 0; border-left: 1px solid var(--line);
  background: #fff; cursor: pointer; outline: none;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink-2);
  padding: 0 14px;
}
.search__scope:focus { color: var(--green); }

/* Live results dropdown */
.search__results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 340px; overflow-y: auto;
  display: none; z-index: 60;
}
.search__results.is-open { display: block; animation: fadeUp .2s ease; }
.search__item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-bottom: 1px solid var(--bg-2);
  color: var(--ink-2);
}
.search__item:last-child { border-bottom: 0; }
.search__item:hover,
.search__item.is-cursor { background: var(--bg-2); color: var(--blue); }
.search__item img {
  width: 42px; height: 42px; object-fit: cover;
  border-radius: 3px; flex: 0 0 auto; background: var(--bg-2);
}
.search__item-name {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .4px; line-height: 1.2;
}
.search__item-price { font-size: .85rem; color: var(--blue); }
.search__item-oos { font-size: .78rem; color: var(--red); }
.search__empty { padding: 16px 14px; color: var(--muted); font-size: .92rem; text-align: center; }

/* Mobile-only extras inside the nav drawer */
.nav__extra { display: none; }

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__track { position: relative; height: clamp(420px, 62vh, 620px); }

.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
  display: flex; align-items: center;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.slide.is-active .slide__bg { transform: scale(1); }
.slide__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 55%, rgba(0,0,0,.42) 100%);
}
.slide__inner { position: relative; z-index: 2; width: 100%; }
.slide__content { max-width: 660px; color: #fff; }
.slide__eyebrow {
  display: inline-block;
  font-family: var(--font-display); letter-spacing: 2px;
  font-size: 1rem; color: #fff;
  background: var(--blue); padding: 5px 14px;
  margin-bottom: 16px;
}
.slide__content h1 { color: #fff; margin-bottom: .25em; }
.slide__content h1 em { font-style: normal; color: var(--blue-3); }
.slide__content p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #dcdcdc; max-width: 540px; margin-bottom: 26px;
}
.slide__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.slide--banner .slide__content--banner { max-width: 720px; }
.slide--banner .slide__content--banner h1,
.slide--banner .slide__content--banner h2,
.slide--banner .slide__content--banner h3,
.slide--banner .slide__content--banner h4 { color: #fff; margin-bottom: .35em; }
.slide--banner:not(.slide--banner-has-copy) .slide__bg::after {
  background: rgba(0,0,0,.12);
}
.slide__banner-btn,
.slide--banner .slide__banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
}
.slide__banner-btn:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
  color: #fff;
}

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer; font-size: 1.4rem; line-height: 1;
  transition: background .2s;
}
.hero__arrow:hover { background: var(--blue); border-color: var(--blue); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

.hero__dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 10px;
}
.hero__dot {
  width: 34px; height: 4px; padding: 0; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .2s;
}
.hero__dot.is-active { background: var(--blue-3); }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { background: var(--blue); color: #fff; padding: 26px 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat__num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1; display: block;
}
.stat__label { font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; color: #d7e7f7; }

/* ==========================================================================
   Categories
   ========================================================================== */
.cat-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 18px; min-height: 150px;
  color: var(--ink-2);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cat-card:hover {
  border-color: var(--blue); box-shadow: var(--shadow);
  transform: translateY(-3px); color: var(--blue);
}
.cat-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-2); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.cat-card:hover .cat-card__icon { background: var(--blue); color: #fff; }
.cat-card__name {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: .6px; line-height: 1.2;
}

/* ==========================================================================
   Product grid
   ========================================================================== */
.prod-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.prod-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }

.prod-card__media {
  position: relative; background: var(--bg-2);
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.prod-card:hover .prod-card__media img { transform: scale(1.08); }
.prod-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.14) 100%);
  opacity: 0; transition: opacity .3s;
}
.prod-card:hover .prod-card__media::after { opacity: 1; }
.prod-card__ph {
  font-family: var(--font-display); font-size: 3rem; color: var(--muted);
}

.badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge {
  font-family: var(--font-display); font-size: .85rem; letter-spacing: 1px;
  padding: 3px 10px; color: #fff; border-radius: 2px;
}
.badge--new  { background: var(--green); }
.badge--sale { background: var(--red); }
.badge--oos  { background: var(--ink-2); }

/* --- Card action buttons (wishlist + quick shop) --- */
.prod-card__actions {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
}
.act-btn {
  width: 36px; height: 36px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
  opacity: 0; transform: translateX(12px);
  transition: opacity .28s, transform .28s, background .2s, color .2s, border-color .2s;
}
.prod-card:hover .act-btn { opacity: 1; transform: none; }
.prod-card:hover .act-btn:nth-child(2) { transition-delay: .06s; }
.act-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.act-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.act-btn.is-active svg { fill: currentColor; }

/* Quick shop bar slides up over the image */
.prod-card__quick {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 10px;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.prod-card:hover .prod-card__quick { transform: none; }
.prod-card__quick .btn { width: 100%; }

/* Stock label */
.stock {
  font-size: .82rem; font-weight: 600; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 6px;
}
.stock::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor;
}
.stock--in  { color: var(--green); }
.stock--out { color: var(--red); }

/* Out of stock card treatment */
.prod-card.is-oos .prod-card__media img { filter: grayscale(1); opacity: .55; }
.prod-card.is-oos:hover .prod-card__media img { transform: none; }
.prod-card.is-oos .prod-card__quick { display: none; }
.prod-card.is-oos .price { color: var(--muted); }
/* Disabled keeps the same green - dimmed, so no third colour is introduced */
.btn.is-disabled,
.btn:disabled {
  opacity: .42;
  cursor: not-allowed;
  pointer-events: none;
}

.prod-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.prod-card__cat { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.prod-card__title {
  font-family: var(--font-display); font-size: 1.12rem; letter-spacing: .4px;
  line-height: 1.2; margin: 0; min-height: 2.4em;
}
.prod-card__title a { color: var(--ink); }
.prod-card__title a:hover { color: var(--blue); }
.prod-card__price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-size: 1.4rem; color: var(--blue); }
.price--old { font-size: 1rem; color: var(--muted); text-decoration: line-through; font-family: var(--font-body); }
.prod-card .btn { margin-top: 4px; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.why-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
}
.why-card__icon { font-size: 1.9rem; color: var(--blue); margin-bottom: 10px; }
.why-card h3 { margin-bottom: .35em; }
.why-card p { color: var(--ink-3); margin: 0; font-size: .96rem; }

.why-choose-us { padding: 56px 0; background: var(--bg-alt, #f7f9fc); }
.why-choose-us-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.why-choose-us-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border-top: 3px solid var(--blue);
  box-shadow: var(--shadow); text-align: center;
}
.why-choose-us-icon {
  width: 80px; height: 80px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(52,104,154,.08); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.why-choose-us-icon img { max-width: 80px; max-height: 80px; object-fit: contain; }
.why-choose-us-card h3 { margin-bottom: .35em; }
.why-choose-us-card p { color: var(--ink-3); margin: 0; font-size: .96rem; line-height: 1.65; }

/* Homepage features showcase (below Why Choose Us) */
.np-home-features {
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 45%),
    linear-gradient(160deg, #2b9fe8 0%, #1f7ec4 42%, #1869a8 100%);
  color: #fff;
  overflow: hidden;
}
.np-home-features__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 36px 48px;
  align-items: center;
}
.np-home-features__stage { max-width: 620px; margin: 0 auto; width: 100%; }
.np-laptop--home .np-laptop__screen { box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.np-home-features__content { max-width: 560px; }
.np-home-features__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.np-home-features__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.np-home-features__text {
  margin: 0 0 24px;
  color: rgba(255,255,255,.92);
  font-size: 1.02rem;
  line-height: 1.7;
}
.np-home-features__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.np-home-features__arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.np-home-features__arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.np-home-features__cta {
  padding: 14px 24px;
  font-size: .92rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.np-home-features__cta:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
  color: #fff;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tst-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.tst-stars { color: #f0a500; letter-spacing: 2px; }
.tst-card p { font-size: .96rem; color: var(--ink-3); margin: 0; flex: 1; }
.tst-who { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .5px; color: var(--ink); }
.tst-who small { display: block; font-family: var(--font-body); font-size: .8rem; color: var(--muted); letter-spacing: 0; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta {
  position: relative;
  background: var(--ink) center/cover no-repeat;
  color: #fff; text-align: center; padding: 92px 0;
  overflow: hidden;
}
/* darkening wash so the copy stays readable over the photo */
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.86));
}
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: #d5d5d5; max-width: 620px; margin: 0 auto 24px; }

/* ==========================================================================
   Payments
   ========================================================================== */
.pay-strip {
  display: flex; flex-wrap: wrap; gap: 20px 56px;
  align-items: flex-start; justify-content: center;
}
.pay-method {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  width: 210px; text-align: center;
}
/* The circle is drawn inside the SVG so each mark keeps its own ring */
.pay-method__badge {
  width: 104px; height: 104px; border-radius: 50%;
  display: block;
  transition: transform .25s, filter .25s;
}
.pay-method__badge svg { width: 100%; height: 100%; display: block; }
.pay-method:hover .pay-method__badge {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

.pay-method__name {
  font-weight: 700; font-size: .96rem;
  color: var(--ink-2); line-height: 1.35;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink-2); color: #dddddd;
  padding: 56px 0 0; font-size: .95rem;
  position: relative; overflow: hidden;
}
/* same diagonal stripe used on the alt sections, lightened for a dark background */
.footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, .025) 0 1px,
    transparent 1px 11px
  );
}
.footer .wrap { position: relative; z-index: 1; }

.footer h4 {
  color: #fff; font-size: 1.25rem; letter-spacing: 1px;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; background: var(--blue);
  transition: width .35s ease;
}
.footer__col:hover h4::after { width: 62px; }

.footer__grid { display: grid; gap: 32px; grid-template-columns: 1.25fr .8fr .8fr 1.3fr; }
.footer a { color: #dddddd; transition: color .25s; }
.footer a:hover { color: #fff; }

/* Link slide-in animation */
.footer__links li { margin-bottom: 9px; }
.footer__links a {
  display: inline-block; position: relative;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), color .25s;
}
.footer__links a::before {
  content: "\203A";
  position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  color: var(--blue-3); opacity: 0;
  transition: opacity .28s, left .28s;
  font-size: 1.1em; line-height: 1;
}
.footer__links a:hover { transform: translateX(15px); color: #fff; }
.footer__links a:hover::before { opacity: 1; left: -13px; }

.footer__brand .logo { color: #fff; display: inline-block; margin-bottom: 12px; }
.footer__brand .logo:hover span { color: var(--blue-3); }

/* Contact rows */
.footer__contact li {
  margin-bottom: 12px; display: flex; align-items: flex-start; gap: 11px;
}
.footer__contact svg {
  flex: 0 0 auto; color: var(--blue-3); margin-top: 3px;
  transition: transform .3s ease;
}
.footer__contact li:hover svg { transform: scale(1.2) rotate(-8deg); }

/* Still Need Help form */
.help-form { display: flex; flex-direction: column; gap: 10px; }
.help-form input,
.help-form textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  color: #fff; background: rgba(255,255,255,.06);
  border: 1px solid #4e4e4e; border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.help-form textarea { resize: vertical; min-height: 84px; }
.help-form input::placeholder,
.help-form textarea::placeholder { color: #8e8e8e; }
.help-form input:focus,
.help-form textarea:focus {
  outline: none; border-color: var(--blue-2);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(84,136,186,.18);
}
.help-form .btn { position: relative; overflow: hidden; align-self: flex-start; }
.help-form .btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: translateX(-100%);
}
.help-form .btn:hover::after { animation: sheen .7s ease; }
@keyframes sheen { to { transform: translateX(100%); } }

.form-note { font-size: .85rem; color: #dddddd; margin: 0 0 5px; }
.form-msg {
  display: none; font-size: .9rem; padding: 9px 12px; border-radius: var(--radius);
  background: rgba(37,136,35,.18); border: 1px solid var(--green-2); color: #b6e8b4;
}
.form-msg.is-shown { display: block; animation: fadeUp .35s ease; margin-bottom: 9px; }
/* same component on the light auth pages */
.auth-card .form-msg { text-align: center; padding: 12px 14px; margin-bottom: 18px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.footer__bottom {
  margin-top: 44px; border-top: 1px solid #454545; padding: 18px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  align-items: center; font-size: .88rem; color: #949494;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid #555; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background .3s, border-color .3s, box-shadow .3s;
}
.footer__social a:hover {
  background: var(--blue); border-color: var(--blue); color: #fff;
  transform: translateY(-5px) rotate(-8deg);
  box-shadow: 0 8px 16px rgba(52,104,154,.4);
}

/* ==========================================================================
   Cart
   ========================================================================== */
.cart { padding: 64px 0; }
.cart__layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start;
}

.cart-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: var(--shadow); overflow: hidden;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ink-3); font-weight: 700;
  padding: 20px 14px; border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.cart-table td { padding: 18px 14px; border-bottom: 1px solid var(--bg-2); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: 0; }
.cart-table tbody tr { transition: background .2s; }
.cart-table tbody tr:hover { background: #fbfbfb; }
.cart-table th:first-child, .cart-table td:first-child { padding-left: 22px; }
.cart-table th:last-child,  .cart-table td:last-child  { padding-right: 22px; text-align: center; }
.cart-table th:not(:first-child), .cart-table td:not(:first-child) { text-align: center; }

/* product cell */
.cart-prod { display: flex; align-items: center; gap: 16px; text-align: left; }
.cart-prod__img {
  width: 74px; height: 74px; flex: 0 0 74px;
  border: 1px solid var(--line); border-radius: 6px;
  background: var(--bg-2); object-fit: cover;
}
.cart-prod__name {
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .5px;
  line-height: 1.2; color: var(--ink);
}
.cart-prod__name:hover { color: var(--blue); }
.cart-prod__cat { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

/* quantity + update */
.qty-group { display: inline-flex; align-items: stretch; }
.qty-group input {
  width: 62px; text-align: center;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink-2);
  border: 1px solid var(--line); border-right: 0;
  border-radius: 4px 0 0 4px; padding: 9px 4px; outline: none;
  -moz-appearance: textfield;
}
.qty-group input::-webkit-outer-spin-button,
.qty-group input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-group input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(37,136,35,.14); }
.qty-update {
  font-family: var(--font-body); font-size: .88rem; white-space: nowrap;
  background: #fff; color: var(--green);
  border: 1px solid var(--green); border-radius: 0 4px 4px 0;
  padding: 9px 14px; cursor: pointer;
  transition: background .2s, color .2s;
}
.qty-update:hover { background: var(--green); color: #fff; }
.qty-update.is-done { background: var(--green); color: #fff; }

.cell-price { font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.cell-total { font-weight: 700; color: var(--ink); white-space: nowrap; }

/* remove */
.cart-remove {
  width: 40px; height: 40px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  border: 0; border-radius: 5px; cursor: pointer;
  transition: background .2s, transform .15s;
}
.cart-remove:hover { background: #a5342a; }
.cart-remove:active { transform: translateY(1px); }

/* summary */
.cart-summary {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: var(--shadow); padding: 22px;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.summary-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.summary-row__label { font-weight: 600; color: var(--ink-2); }
.summary-row__value {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--blue);
}
.summary-sub {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .92rem; color: var(--ink-3); margin-bottom: 8px;
}
.cart-summary .btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; }
.cart-summary .btn + .btn { margin-top: 12px; }

/* outline variant - still the same green, no new colour */
.btn--outline {
  background: #fff; color: var(--green); border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: #fff; }

/* empty state */
.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty svg { color: var(--muted); margin: 0 auto 14px; }
.cart-empty p { color: var(--ink-3); }

@media (max-width: 980px) {
  .cart__layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

/* stacked rows on phones */
@media (max-width: 720px) {
  .cart { padding: 40px 0; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    border-bottom: 1px solid var(--line); padding: 16px 0;
  }
  .cart-table tr:last-child { border-bottom: 0; }
  .cart-table td {
    border: 0; padding: 7px 18px !important; text-align: right !important;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
  }
  .cart-table td::before {
    content: attr(data-label);
    font-size: .74rem; letter-spacing: 1.1px; text-transform: uppercase;
    color: var(--muted); font-weight: 700;
  }
  .cart-table td:first-child { display: block; }
  .cart-table td:first-child::before { display: none; }
}

/* ==========================================================================
   Auth pages (login / register)
   ========================================================================== */
.auth { padding: 64px 0; }

/* Full-bleed variant: photo behind, frosted card on top (login / forgot) */
.auth--media {
  position: relative;
  padding: 80px 0;
  background: #122334 center/cover no-repeat;
  overflow: hidden;
}
.auth--media::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg,
      rgba(18, 40, 62, .80) 0%,
      rgba(38, 82, 126, .80) 45%,
      rgba(84, 136, 186, .80) 100%);
}
.auth--media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 11px);
}
.auth--media > .wrap { position: relative; z-index: 2; }

/* frosted backdrop on the card itself */
.auth--media .auth-card {
  background: rgba(255, 255, 255, .93);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, .6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

/* the stripe lives inside the form card, not behind the whole section */
.auth-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 40px;
  margin: 0 auto;
}
.auth-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg, rgba(0, 0, 0, .028) 0 1px, transparent 1px 11px);
}
.auth-card > * { position: relative; z-index: 1; }
.auth-card--sm { max-width: 560px; }
.auth-card--lg { max-width: 860px; }

.auth-title { text-align: center; margin-bottom: 34px; }
.auth-title h2 { margin-bottom: .15em; }
.auth-title h2 sup { color: var(--green); font-size: .5em; top: -.6em; }
.auth-title p { color: var(--ink-3); margin: 0; }
.auth-title::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--blue); margin: 16px auto 0;
}

/* fieldset heading */
.form-legend {
  font-family: var(--font-display);
  font-size: 1.45rem; letter-spacing: .8px;
  color: var(--blue);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.form-block { border: 0; padding: 0; margin: 0 0 30px; }

/* two-column field grid */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-grid .is-full { grid-column: 1 / -1; }

.field { position: relative; }
.field input,
.field select {
  width: 100%;
  font-family: var(--font-body); font-size: .97rem; color: var(--ink-2);
  background: #fafafa;
  border: 1px solid var(--line); border-radius: 4px;
  padding: 14px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field--icon input { padding-left: 44px; }
.field select { cursor: pointer; appearance: none; padding-right: 40px; }
.field input::placeholder { color: #8c8c8c; }
.field input:focus,
.field select:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(84, 136, 186, .16);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--red); }

.field__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none; display: flex;
}
.field input:focus ~ .field__icon { color: var(--blue); }

/* select chevron */
.field--select::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px; margin-top: -6px;
  border-right: 2px solid var(--ink-2);
  border-bottom: 2px solid var(--ink-2);
  transform: rotate(45deg); pointer-events: none;
}

/* remember me / forgot password row */
.form-row-between {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  margin: 18px 0 26px;
}
.check { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-size: .95rem; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  width: 20px; height: 20px; flex: 0 0 20px;
  border: 2px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s, border-color .2s;
}
.check__box svg { opacity: 0; transition: opacity .15s; }
.check input:checked + .check__box { background: var(--green); border-color: var(--green); }
.check input:checked + .check__box svg { opacity: 1; }
.check input:focus-visible + .check__box { box-shadow: 0 0 0 3px rgba(37, 136, 35, .22); }

.auth-actions { text-align: center; border-top: 1px solid var(--line); padding-top: 28px; }
.auth-actions .btn { min-width: 200px; border-radius: 999px; }
.auth-alt { margin: 18px 0 0; font-size: .95rem; color: var(--ink-3); }
.auth-alt a { font-weight: 700; }

.req-note { text-align: center; font-size: .85rem; color: var(--muted); margin: 14px 0 0; }

@media (max-width: 720px) {
  .auth { padding: 40px 0; }
  .auth-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .auth-actions .btn { width: 100%; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 46px; height: 46px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  border: 0; border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .28s, transform .28s, visibility .28s, background .2s;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-2); }
.to-top:active { transform: translateY(2px); }
.to-top svg { display: block; }

@media (max-width: 720px) {
  .to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

/* ==========================================================================
   Stub page (placeholder pages)
   ========================================================================== */
.page-head {
  position: relative; overflow: hidden;
  padding: 74px 0 66px;
  background: #122334 center/cover no-repeat;
}
/* blue gradient wash over the photo */
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg,
      rgba(18, 40, 62, 0.90) 0%,
      rgba(38, 82, 126, .90) 45%,
      rgba(84, 136, 186, .90) 100%);
}
/* the same diagonal stripe, so it ties into the rest of the site */
.page-head::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, .02) 0 1px,
    transparent 1px 11px
  );
}
.page-head .wrap { position: relative; z-index: 2; text-align: center; }
.page-head h1 {
  margin: 0; color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.page-head h1::after {
  content: ""; display: block; width: 64px; height: 3px;
  background: var(--blue-3); margin: 16px auto 0;
}

/* Breadcrumbs -------------------------------------------------------------- */
.crumbs {
  display: inline-flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 4px;
  margin-bottom: 16px; padding: 7px 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  backdrop-filter: blur(3px);
  font-size: .88rem;
}
.crumbs a,
.crumbs span { display: inline-flex; align-items: center; gap: 6px; }
.crumbs a { color: #dfeaf5; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs .crumbs__sep { color: rgba(255, 255, 255, .5); padding: 0 2px; }
.crumbs [aria-current] { color: #fff; font-weight: 600; }
.stub {
  text-align: center; padding: 90px 20px;
  border: 2px dashed var(--line); border-radius: var(--radius);
  margin: 56px auto; max-width: 720px;
}
.stub__icon { font-size: 2.6rem; color: var(--blue); margin-bottom: 8px; }
.stub p { color: var(--ink-3); }

/* ==========================================================================
   Retail Services page - card grid layout
   ========================================================================== */

/* Main content wrapper top spacing */
.rs-main { padding-top: 36px; padding-bottom: 60px; }

/* Filter bar */
.rs-filterbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.rs-filterbar__search-wrap {
  position: relative; display: flex; align-items: center;
}
.rs-filterbar__search-wrap svg {
  position: absolute; left: 11px; color: var(--muted); pointer-events: none;
}
.rs-filterbar__search {
  padding: 9px 14px 9px 34px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .93rem;
  background: var(--bg); color: var(--ink-2);
  width: 220px;
  transition: border-color .2s;
}
.rs-filterbar__search:focus { outline: none; border-color: var(--blue); }

.rs-filterbar__cats {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.rs-cat-btn {
  padding: 7px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg); color: var(--ink-3);
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.rs-cat-btn:hover { border-color: var(--blue); color: var(--blue); }
.rs-cat-btn.is-active {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

/* Cards grid */
.rs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.rs-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.rs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: #b8d4ee;
}

.rs-card__header {
  background: var(--ink);
  padding: 10px 16px;
}
.rs-card__cat {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--blue-3);
}

.rs-card__body {
  padding: 18px 16px 14px;
  flex: 1; display: flex; flex-direction: column; gap: 12px;
}
.rs-card__name {
  font-family: var(--font-body);
  font-size: .97rem; font-weight: 700;
  color: var(--ink); margin: 0;
  line-height: 1.35;
}

.rs-card__divider {
  height: 1px; background: var(--line);
}

.rs-card__meta {
  display: flex; align-items: stretch; gap: 0;
}
.rs-card__meta-item {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.rs-card__meta-sep {
  width: 1px; background: var(--line); margin: 0 14px;
  flex: 0 0 1px;
}
.rs-card__meta-label {
  font-size: .73rem; text-transform: uppercase; letter-spacing: .6px;
  color: var(--muted); font-weight: 600;
}
.rs-card__price {
  font-size: 1.35rem; font-weight: 700;
  color: var(--blue); line-height: 1.1;
}
.rs-card__time {
  font-size: .92rem; font-weight: 600;
  color: var(--ink-2);
}

.rs-card__footer {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
}
.rs-card__footer .btn {
  width: 100%; justify-content: center;
}

/* Empty state */
.rs-empty {
  text-align: center; padding: 64px 20px;
  color: var(--muted);
  grid-column: 1 / -1;
}
.rs-empty svg { margin: 0 auto 12px; display: block; }
.rs-empty p { font-size: .95rem; margin: 0; }

/* ==========================================================================
   Buy Now Modal
   ========================================================================== */
.rs-modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
  animation: fadeIn .18s ease;
}
.rs-modal-overlay[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.rs-modal {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 480px;
  padding: 32px 28px;
  position: relative;
  animation: slideUp .22s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.rs-modal__close {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-3);
  transition: background .15s;
}
.rs-modal__close:hover { background: var(--line); }

.rs-modal__cat-tag {
  display: inline-block; margin-bottom: 10px;
  padding: 3px 10px; border-radius: 999px;
  background: var(--ink); color: var(--blue-3);
  font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
}
.rs-modal__title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--ink); margin: 0 0 10px;
  line-height: 1.3;
  font-family: var(--font-body);
}
.rs-modal__desc {
  font-size: .93rem; color: var(--ink-3);
  margin: 0 0 20px; line-height: 1.6;
}

.rs-modal__pricing {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
}
.rs-modal__price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .93rem;
}
.rs-modal__price-row span  { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: .8rem; letter-spacing: .5px; }
.rs-modal__price-row strong { color: var(--blue); font-size: 1.1rem; }

.rs-modal__actions {
  display: flex; gap: 10px;
}
.rs-modal__actions .btn { flex: 1; justify-content: center; display: flex; align-items: center; gap: 7px; }
.rs-modal__cancel {
  background: var(--bg-2); color: var(--ink-3); border: 1px solid var(--line);
}
.rs-modal__cancel:hover { background: var(--line); }

/* ==========================================================================
   Responsive - retail services
   ========================================================================== */
@media (max-width: 1100px) {
  .rs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .rs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .rs-filterbar { flex-direction: column; align-items: flex-start; }
  .rs-filterbar__search { width: 100%; }
}
@media (max-width: 480px) {
  .rs-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services page - How It Works
   ========================================================================== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 40px;
}
.how-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}
.how-step--arrow {
  background: none; border: none; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  padding: 0; color: var(--blue); margin-top: 52px;
}
.how-step__num {
  width: 36px; height: 36px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  font-family: var(--font-display); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.how-step__icon {
  color: var(--blue); margin-bottom: 12px;
}
.how-step h3 { font-size: 1.2rem; margin-bottom: .4em; }
.how-step p  { font-size: .92rem; color: var(--ink-3); margin: 0; }

/* Service category grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.svc-card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue);
  color: inherit;
}
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex: 0 0 auto;
}
.svc-card__icon--blue   { background: #e8f2fb; color: var(--blue); }
.svc-card__icon--green  { background: #dcfce7; color: #166534; }
.svc-card__icon--red    { background: #fee2e2; color: #991b1b; }
.svc-card__icon--purple { background: #f3e8ff; color: #6b21a8; }
.svc-card__icon--orange { background: #fff7ed; color: #9a3412; }
.svc-card__icon--teal   { background: #ccfbf1; color: #0f766e; }

.svc-card h3  { font-size: 1.1rem; margin-bottom: .4em; }
.svc-card p   { font-size: .89rem; color: var(--ink-3); flex: 1; margin: 0 0 14px; }
.svc-card__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .86rem; font-weight: 600; color: var(--blue);
  margin-top: auto;
}
.svc-card:hover .svc-card__cta { color: var(--blue-2); }

/* Why section - split layout */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.svc-split__text h2 { margin-bottom: .5em; }
.svc-split__text > p { color: var(--ink-3); margin-bottom: 1.4em; }

.svc-reasons {
  display: flex; flex-direction: column; gap: 22px;
}
.svc-reasons li {
  display: flex; gap: 16px; align-items: flex-start;
}
.svc-reasons__icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  background: #e8f2fb; color: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.svc-reasons li > div p { margin: 2px 0 0; font-size: .9rem; color: var(--ink-3); }

/* Stat cards (right column) */
.svc-split__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.svc-stat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.svc-stat-card--rating { grid-column: 1 / -1; }
.svc-stat-card__num {
  display: block;
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--blue); line-height: 1;
  margin-bottom: 4px;
}
.svc-stat-card__label {
  font-size: .82rem; color: var(--ink-3); font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
}
.svc-stars {
  display: flex; justify-content: center; gap: 3px;
  color: #f59e0b; margin-bottom: 6px;
}

/* Testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.tst-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.tst-card__stars { display: flex; gap: 3px; }
.tst-card__text {
  font-size: .95rem; color: var(--ink-3);
  font-style: italic; flex: 1; margin: 0;
  line-height: 1.65;
}
.tst-card__author {
  display: flex; align-items: center; gap: 12px;
}
.tst-card__avatar {
  width: 40px; height: 40px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem;
  flex: 0 0 auto;
}
.tst-card__author strong { display: block; font-size: .93rem; }
.tst-card__author span   { font-size: .82rem; color: var(--muted); }

/* FAQ */
.svc-faq { max-width: 820px; margin: 0 auto; }
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 600;
  color: var(--ink); text-align: left;
  gap: 12px;
}
.faq-q:hover { color: var(--blue); }
.faq-chevron { flex: 0 0 auto; transition: transform .25s; color: var(--muted); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.is-open .faq-a { max-height: 300px; padding-bottom: 16px; }
.faq-a p { font-size: .95rem; color: var(--ink-3); margin: 0; }

/* CTA Banner */
.svc-cta-banner {
  background: var(--blue);
  padding: 56px 0;
}
.svc-cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.svc-cta-banner h2 { color: #fff; margin-bottom: .2em; }
.svc-cta-banner p  { color: rgba(255,255,255,.8); margin: 0; }
.svc-cta-banner__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* ==========================================================================
   Track Order page
   ========================================================================== */
.track-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Form card */
.track-form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.track-form-card__icon {
  width: 56px; height: 56px;
  background: #e8f2fb; color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.track-form-card h2 { margin-bottom: .3em; font-size: clamp(1.4rem,3vw,1.9rem); }
.track-form-card > p { color: var(--ink-3); margin-bottom: 28px; }

.track-form { display: flex; flex-direction: column; gap: 18px; }
.track-form__field label {
  display: block; font-weight: 600; font-size: .9rem;
  color: var(--ink-2); margin-bottom: 7px;
}
.track-form__optional { font-weight: 400; color: var(--muted); }
.track-form__input-wrap {
  position: relative;
}
.track-form__input-wrap svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.track-form__input-wrap input {
  width: 100%; padding: 12px 14px 12px 42px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink-2);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.track-form__input-wrap input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(52,104,154,.14);
}
.btn--full { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }

.track-form__msg {
  font-size: .9rem; border-radius: var(--radius); padding: 0;
}
.track-form__msg:not(:empty) { padding: 10px 14px; }
.track-form__msg--error { background: #fee2e2; color: #991b1b; }
.track-form__msg--ok    { background: #dcfce7; color: #166534; }

/* Result card */
.track-result {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.track-result__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--ink); color: #fff;
}
.track-result__label { font-size: .78rem; opacity: .65; display: block; }
.track-result__id    { font-size: 1.05rem; font-family: monospace; }
.track-result__status-badge {
  display: inline-block; padding: 4px 12px;
  border-radius: 999px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.track-result__meta { padding: 16px 24px; display: flex; flex-direction: column; gap: 8px; }
.ro-meta-row { display: flex; justify-content: space-between; font-size: .9rem; gap: 12px; }
.ro-meta-row span { color: var(--muted); white-space: nowrap; }
.ro-meta-row strong { text-align: right; }

/* Progress steps */
.track-progress {
  display: flex; align-items: flex-start;
  padding: 20px 24px 24px;
  gap: 0;
  border-top: 1px solid var(--line);
}
.track-progress__step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative; text-align: center;
}
.track-progress__dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  z-index: 1; position: relative;
  transition: background .3s, border-color .3s;
}
.track-progress__step.is-done .track-progress__dot {
  background: var(--green); border-color: var(--green); color: #fff;
}
.track-progress__step.is-current .track-progress__dot {
  background: var(--blue); border-color: var(--blue); color: #fff;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,104,154,.4); }
  50%       { box-shadow: 0 0 0 7px rgba(52,104,154,0); }
}
.track-progress__line {
  position: absolute; top: 14px; left: calc(50% + 15px);
  width: calc(100% - 30px); height: 2px;
  background: var(--line);
}
.track-progress__step.is-done .track-progress__line { background: var(--green); }
.track-progress__step:last-child .track-progress__line { display: none; }
.track-progress__step span {
  margin-top: 8px; font-size: .8rem;
  color: var(--muted); font-weight: 600;
}
.track-progress__step.is-done span,
.track-progress__step.is-current span { color: var(--ink-2); }

.track-result__actions {
  display: flex; gap: 10px; padding: 0 24px 20px;
}
.track-result__reset {
  background: var(--bg-2); color: var(--ink-3);
  border: 1px solid var(--line);
}
.track-result__reset:hover { background: var(--line); }

/* Info cards (right column) */
.track-info-col { display: flex; flex-direction: column; gap: 20px; }
.track-info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.track-info-card h3,
.track-info-card h4 { margin-bottom: .6em; }
.track-info-card h4 { font-size: 1rem; }

.track-status-guide { display: flex; flex-direction: column; gap: 14px; }
.track-status-guide li {
  display: flex; align-items: flex-start; gap: 12px;
}
.tsg-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex: 0 0 12px; margin-top: 5px;
}
.tsg-dot--pending    { background: #f59e0b; }
.tsg-dot--processing { background: var(--blue); }
.tsg-dot--completed  { background: var(--green); }
.tsg-dot--rejected   { background: var(--red); }
.track-status-guide li > div strong { font-size: .93rem; display: block; }
.track-status-guide li > div p { font-size: .84rem; color: var(--ink-3); margin: 2px 0 0; }

.track-info-card--tip { background: #f0f7ff; border-color: #b8d4ee; }
.track-tip-icon { color: var(--blue); margin-bottom: 10px; }
.track-info-card--tip p { font-size: .9rem; color: var(--ink-3); }

.track-info-card--contact h4 { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.track-contact-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.track-contact-list li { display: flex; align-items: center; gap: 10px; font-size: .93rem; }
.track-contact-list svg { color: var(--blue); flex: 0 0 auto; }

/* Recent orders table */
.recent-orders {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.recent-orders__head,
.recent-orders__row {
  display: grid;
  grid-template-columns: 160px 1fr 130px 130px 80px;
  gap: 0;
  align-items: center;
}
.recent-orders__head {
  background: var(--ink); color: #fff;
  padding: 11px 20px;
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .6px;
}
.recent-orders__row {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  transition: background .15s;
}
.recent-orders__row:last-child { border-bottom: 0; }
.recent-orders__row:nth-child(even) { background: var(--bg-2); }
.recent-orders__row:hover { background: #e8f2fb; }
.ro-id   { font-family: monospace; font-size: .88rem; color: var(--blue); font-weight: 600; }
.ro-svc  { color: var(--ink-2); }
.ro-date { color: var(--muted); font-size: .86rem; }

/* extra status variants */
.status-badge--processing { background: #dbeafe; color: #1e40af; }
.status-badge--pending    { background: #fef9c3; color: #854d0e; }
.status-badge--rejected   { background: #fee2e2; color: #991b1b; }

.track-login-note {
  display: flex; align-items: center; gap: 7px;
  margin-top: 14px; font-size: .88rem; color: var(--ink-3);
}
.track-login-note svg { color: var(--blue); flex: 0 0 auto; }

/* ==========================================================================
   Responsive - services + track order
   ========================================================================== */
@media (max-width: 1024px) {
  .svc-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-split  { grid-template-columns: 1fr; gap: 36px; }
  .svc-split__stats { grid-template-columns: repeat(4, 1fr); }
  .svc-stat-card--rating { grid-column: auto; }
  .track-layout { grid-template-columns: 1fr; }
  .track-info-col { display: grid; grid-template-columns: 1fr 1fr; }
  .recent-orders__head,
  .recent-orders__row { grid-template-columns: 140px 1fr 110px 110px 70px; }
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-step--arrow { display: none; }
  .tst-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .svc-grid  { grid-template-columns: 1fr; }
  .tst-grid  { grid-template-columns: 1fr; }
  .svc-split__stats { grid-template-columns: 1fr 1fr; }
  .svc-cta-banner__inner { flex-direction: column; text-align: center; }
  .svc-cta-banner__btns { justify-content: center; }
  .track-info-col { grid-template-columns: 1fr; }
  .recent-orders { overflow-x: auto; }
  .recent-orders__head,
  .recent-orders__row { min-width: 620px; }
}

/* ==========================================================================
   Pricing page - page-head subtitle
   ========================================================================== */
.page-head__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Tier Intro
   ========================================================================== */
.tier-intro {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.tier-intro__text h2 { margin-bottom: .55em; }
.tier-intro__text p  { color: var(--ink-3); margin-bottom: 1.4em; }

.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tier-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.tier-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.tier-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.tier-card--bronze::before { background: #cd7f32; }
.tier-card--silver::before { background: #a8a9ad; }
.tier-card--gold::before   { background: #d4af37; }

.tier-card__badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.tier-card--bronze .tier-card__badge { background: #fdf3e7; color: #cd7f32; }
.tier-card--silver .tier-card__badge { background: #f4f4f5; color: #6b7280; }
.tier-card--gold   .tier-card__badge { background: #fefce8; color: #b8900f; }

.tier-card h3 { font-size: 1.5rem; margin-bottom: .15em; }
.tier-card p  { font-size: .93rem; color: var(--ink-3); margin: 0; }

.tier-card__req {
  font-size: .85rem !important;
  font-family: var(--font-body);
  color: var(--muted) !important;
  margin-bottom: .7em !important;
  letter-spacing: 0;
}
.tier-card__req strong { color: var(--ink-2); }


/* ==========================================================================
   Latest Posts
   ========================================================================== */
.post-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.post-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}
.post-card__meta {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px;
}
.post-card__title {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.35;
}
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--blue); }
.post-card p {
  color: var(--ink-3);
  font-size: .92rem;
  margin: 0 0 14px;
  flex: 1;
}
.post-card__more {
  color: var(--blue);
  font-weight: 700;
  font-size: .88rem;
}
.post-card__more:hover { color: var(--blue-2); text-decoration: underline; }

/* ==========================================================================
   Order Now page - service tabs + table
   ========================================================================== */
.order-main { padding-top: 36px; padding-bottom: 56px; }

.order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 0;
}
.order-tab {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 14px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  text-align: center;
  white-space: nowrap;
}
.order-tab:hover { color: var(--blue); background: var(--bg-2); }
.order-tab.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: #fff;
}

.order-panel { display: none; padding-top: 24px; }
.order-panel.is-active { display: block; }

.order-table { min-width: 640px; }
.order-table__link {
  color: var(--ink-2);
  font-weight: 500;
  transition: color .15s;
}
.order-table__link:hover { color: var(--blue); text-decoration: underline; }

.order-page .ptable-wrap {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (max-width: 720px) {
  .order-tab {
    flex: 1 1 50%;
    min-width: 0;
    font-size: .88rem;
    padding: 12px 10px;
  }
}

/* ==========================================================================
   Info pages - about / contact / FAQ / legal
   ========================================================================== */
.info-lead {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--ink-3);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-intro__text p { color: var(--ink-3); margin-bottom: 1em; }
.about-intro__text p:last-child { margin-bottom: 0; }
.about-intro__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  color: var(--ink-3);
  font-size: .98rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(52, 104, 154, .1);
  color: var(--blue);
  display: grid; place-items: center;
}
.contact-card h2 { font-size: 1.5rem; margin-bottom: .2em; }
.contact-card__role { color: var(--muted); font-size: .92rem; margin-bottom: 1.2em; }
.contact-card__mail {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--blue);
}
.contact-card__mail:hover { color: var(--blue-2); text-decoration: underline; }

.contact-address {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.contact-address__icon {
  width: 52px; height: 52px; flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
}
.contact-address__body { flex: 1 1 220px; }
.contact-address__label {
  display: block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-address address {
  font-style: normal; color: var(--ink-2); line-height: 1.55;
}
.contact-address address span { display: block; }

/* FAQ */
.faq-bar {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.faq-search {
  position: relative; flex: 1 1 280px; max-width: 420px;
}
.faq-search svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.faq-search input {
  width: 100%; padding: 11px 40px 11px 38px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
  background: #fff; color: var(--ink-2);
}
.faq-search input:focus { outline: none; border-color: var(--blue); }
.faq-search__clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: 0; background: transparent;
  color: var(--muted); cursor: pointer; display: none;
  font-size: 1.2rem; line-height: 1;
}
.faq-search.has-value .faq-search__clear { display: grid; place-items: center; }
.faq-bar__side { display: flex; align-items: center; gap: 14px; }
.faq-count { font-size: .9rem; color: var(--muted); }
.faq-toggle-all {
  border: 1px solid var(--line); background: #fff;
  padding: 8px 14px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  color: var(--blue); cursor: pointer;
}
.faq-toggle-all:hover { border-color: var(--blue); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q { margin: 0; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; padding: 16px 18px;
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--ink); line-height: 1.35;
}
.faq-trigger:hover { color: var(--blue); }
.faq-icon {
  flex: 0 0 auto; width: 22px; height: 22px; position: relative;
  border-radius: 50%; border: 1.5px solid var(--line);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--blue);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: transform .2s; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item.is-open .faq-trigger { color: var(--blue); }

.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a__inner {
  overflow: hidden; padding: 0 18px;
  color: var(--ink-3); font-size: .95rem; line-height: 1.65;
}
.faq-item.is-open .faq-a__inner { padding-bottom: 18px; }
.faq-a__inner p { margin: 0 0 .8em; }
.faq-a__inner p:last-child { margin-bottom: 0; }
.faq-dashlist { margin: .6em 0 0; padding-left: 1.1em; list-style: disc; }
.faq-dashlist li { margin-bottom: .25em; }
.faq-spec { background: var(--bg-2); padding: 12px 14px; border-radius: var(--radius); font-size: .9rem; }
.faq-brandmsgs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px; margin-top: 12px;
}
.faq-brandmsg {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px; background: var(--bg-2); font-size: .86rem;
}
.faq-brandmsg__name {
  display: block; font-weight: 700; color: var(--blue); margin-bottom: 6px;
}
.faq-brandmsg p { margin: 0; }
.faq-empty {
  text-align: center; color: var(--muted); padding: 28px 12px;
}
.faq-help {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 36px; padding: 24px 26px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.faq-help__icon {
  width: 48px; height: 48px; flex: 0 0 auto;
  border-radius: 50%; background: rgba(52, 104, 154, .1);
  color: var(--blue); display: grid; place-items: center;
}
.faq-help__body { flex: 1 1 220px; }
.faq-help__body h2 { font-size: 1.35rem; margin-bottom: .2em; }
.faq-help__body p { margin: 0; color: var(--ink-3); font-size: .95rem; }

/* Legal documents */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}
.legal-toc {
  position: sticky; top: calc(var(--header-h) + 16px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 16px;
  box-shadow: var(--shadow);
}
.legal-toc__title {
  display: block; font-weight: 700; font-size: .82rem;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--ink); margin-bottom: 12px;
}
.legal-toc__list { display: flex; flex-direction: column; gap: 6px; }
.legal-toc__list a {
  display: block; font-size: .88rem; color: var(--ink-3);
  padding: 4px 0; border-bottom: 1px solid transparent;
}
.legal-toc__list a:hover,
.legal-toc__list a.is-active { color: var(--blue); }

.legal-doc {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 34px;
  box-shadow: var(--shadow); color: var(--ink-3); font-size: .96rem; line-height: 1.7;
}
.legal-doc__effective { margin-bottom: 1.2em; color: var(--ink-2); }
.legal-doc h2 {
  font-size: 1.45rem; margin: 1.6em 0 .6em; scroll-margin-top: 100px;
}
.legal-doc h3 { font-size: 1.15rem; margin: 1.2em 0 .4em; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.legal-doc h4 { font-size: 1rem; margin: 1em 0 .35em; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.legal-doc p { margin: 0 0 1em; }
.legal-doc a { color: var(--blue); }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc blockquote {
  margin: 0 0 1em; padding: 14px 18px;
  background: var(--bg-2); border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-doc blockquote ol { padding-left: 1.2em; list-style: decimal; }
.legal-doc blockquote li { margin-bottom: .55em; }
.legal-doc hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0 16px; }
.legal-doc .note { font-size: .88rem; color: var(--muted); margin: 0; }
.legal-doc .note.right { text-align: right; margin-bottom: .4em; }

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* ==========================================================================
   Responsive - pricing page
   ========================================================================== */
@media (max-width: 1024px) {
  .tier-intro { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .tier-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .cat-grid  { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__help { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  /* Top bar is hidden - its links move into the nav drawer */
  .topbar { display: none; }

  .searchband { padding: 18px 0; }
  .search__scope { display: none; }

  .nav__extra {
    display: block;
    border-top: 1px solid var(--line);
    margin-top: 6px; padding: 6px 20px 16px;
  }
  .nav__extra li { border-bottom: 1px solid var(--bg-2); }
  .nav__extra li:last-child { border-bottom: 0; }
  .nav__extra a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 0; color: var(--ink-3);
    font-family: var(--font-body); font-size: .98rem; letter-spacing: 0;
  }
  .nav__extra a:hover { color: var(--blue); }
  .nav__extra svg { color: var(--blue); flex: 0 0 auto; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
    margin-left: 0;
  }
  /* Fill the space left under the header and scroll inside the drawer,
     so the last items are always reachable on short screens. */
  .nav.is-open {
    max-height: calc(100vh - var(--header-h) - 8px);
    max-height: calc(100dvh - var(--header-h) - 8px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav__list { padding-bottom: 0; }
  .nav__extra { padding-bottom: 18px; }
  .nav__list { flex-direction: column; gap: 0; padding: 4px 20px 0; }
  .nav__list li { width: 100%; border-bottom: 1px solid var(--bg-2); }
  .nav__list li:last-child { border-bottom: 0; }
  .nav__list a { display: block; padding: 11px 0; border-bottom: 0; font-size: 1.2rem; }
  .nav-toggle { display: inline-flex; margin-left: auto; order: 3; }
  .header__actions { order: 2; margin-left: auto; }
  .why-grid, .why-choose-us-grid, .tst-grid { grid-template-columns: 1fr 1fr; }
  .np-home-features__grid { grid-template-columns: 1fr; gap: 28px; }
  .np-home-features__content { max-width: none; text-align: center; }
  .np-home-features__actions { justify-content: center; }
  .np-home-features__cta { margin-left: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

@media (max-width: 720px) {
  .section { padding: 46px 0; }
  .hero__track { height: clamp(400px, 78vh, 520px); }
  .slide__bg::after { background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.82) 100%); }
  .slide__content { max-width: none; text-align: center; }
  .slide__content p { margin-left: auto; margin-right: auto; }
  .slide__cta { justify-content: center; }
  .hero__arrow { display: none; }
  .cat-grid  { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .post-grid { grid-template-columns: 1fr; }
  .why-grid, .why-choose-us-grid, .tst-grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; }
  .topbar__list { gap: 14px; font-size: .8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .prod-grid { grid-template-columns: 1fr; }
  .cat-grid  { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .slide__cta { flex-direction: column; }
}

/* Touch devices have no hover - reveal card actions permanently.
   The quick-shop bar must stay absolutely positioned: .prod-card__media is a
   flex container, so a static child becomes a flex item and shoots out sideways. */
@media (hover: none) {
  .act-btn { opacity: 1; transform: none; }
  .prod-card__quick { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .slide__bg { transform: none; }
}

/* ==========================================================================
   Nav dropdown (desktop hover / mobile open class)
   ========================================================================== */
.nav__drop { position: relative; }
.nav__drop-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: .8px; color: var(--ink-2);
  padding: 6px 0; border-bottom: 2px solid transparent;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s, border-color .2s;
}
.nav__drop:hover .nav__drop-toggle,
.nav__drop.is-open .nav__drop-toggle { color: var(--blue); border-bottom-color: var(--blue); }
.nav__drop-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 190px; padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 120;
  list-style: none;
  pointer-events: none;
}
/* Invisible bridge so the pointer can reach the menu without losing hover */
.nav__drop-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -12px;
  height: 12px;
}
.nav__drop:hover .nav__drop-menu,
.nav__drop.is-open .nav__drop-menu {
  opacity: 1; visibility: visible; transform: none;
  pointer-events: auto;
}
.nav__drop-menu a {
  display: block; padding: 9px 18px;
  color: var(--ink-2); border-bottom: 0;
  font-size: 1.05rem; font-family: var(--font-display); letter-spacing: .6px;
  transition: background .15s, color .15s;
}
.nav__drop-menu a:hover { color: var(--blue); background: var(--bg-2); }

/* Mobile: dropdown becomes inline list */
@media (max-width: 900px) {
  .nav__drop-toggle { padding: 11px 0; font-size: 1.2rem; display: block; }
  .nav__drop-menu {
    position: static; background: transparent; border: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; padding: 0 0 0 16px;
    display: none;
  }
  .nav__drop.is-open .nav__drop-menu { display: block; }
  .nav__drop-menu a { padding: 8px 0; font-size: 1.05rem; }
}

/* ==========================================================================
   Dark mode
   ========================================================================== */
.t17-dm-toggle {
  background: none; border: none; cursor: pointer;
  font-size: 18px; padding: 4px 8px; border-radius: var(--radius);
  line-height: 1; transition: background .15s; flex-shrink: 0;
}
.t17-dm-toggle:hover { background: rgba(0,0,0,.07); }

/* Tokens live on html so they revert cleanly when data-t17-dm is removed */
html[data-t17-dm="dark"] {
  color-scheme: dark;
  --bg:    #0e1117;
  --bg-2:  #161c24;
  --ink:   #e2e8f2;
  --ink-2: #b8c4d0;
  --ink-3: #8895a4;
  --muted: #5c6b79;
  --line:  #1f2a36;
  --line-2:#283545;
}
html:not([data-t17-dm="dark"]) {
  color-scheme: light;
}

/* topbar uses background:var(--ink) which is now light — override it */
body.dark .topbar { background: #060b12 !important; color: #7a8898; }
body.dark .topbar a { color: #7a8898; }
body.dark .topbar a:hover { color: #fff; }

body.dark .header { background: #0e1117; border-color: var(--line); }
body.dark .header.is-stuck { box-shadow: 0 2px 14px rgba(0,0,0,.5); }

/* Mobile nav drawer */
body.dark .nav { background: #0e1117; border-color: var(--line); }
body.dark .nav__drop-menu { background: #161c24; border-color: var(--line); }
body.dark .nav__drop-menu a:hover { background: #1f2a36; }

/* White cards */
body.dark .why-card,
body.dark .tst-card,
body.dark .post-card,
body.dark .cat-card,
body.dark .rs-card,
body.dark .rs-modal,
body.dark .auth-card,
body.dark .cart-panel,
body.dark .cart-summary,
body.dark .track-form-card,
body.dark .track-result,
body.dark .track-info-card { background: #161c24; border-color: var(--line); }

/* Dark header rows in tables */
body.dark .rs-card__header,
body.dark .recent-orders__head,
body.dark .track-result__header { background: #060b12; }

/* Product cards */
body.dark .prod-card { background: #161c24; border-color: var(--line); }
body.dark .prod-card__media { background: #1f2a36; }
body.dark .prod-card__title a { color: var(--ink); }

/* Search */
body.dark .searchband { background: var(--bg-2); border-color: var(--line); }
body.dark .search__form { background: var(--bg-2); border-color: var(--line); }
body.dark .search__input { color: var(--ink-2); background: transparent; }
body.dark .search__results { background: #161c24; border-color: var(--line); }
body.dark .search__item { color: var(--ink-2); border-color: var(--line); }
body.dark .search__item:hover,
body.dark .search__item.is-cursor { background: #1f2a36; color: var(--blue); }
body.dark .search__scope { background: #1f2a36; color: var(--ink-2); border-color: var(--line); }

/* Footer gets slightly darker */
body.dark .footer { background: #060b12; }
body.dark .footer__bottom { border-color: #1a2330; }
body.dark .help-form input,
body.dark .help-form textarea { background: rgba(255,255,255,.04); border-color: #2a3a4a; }

/* Section alt */
body.dark .section--alt { background: var(--bg-2); }

/* FAQ */
body.dark .faq-item { background: #161c24; border-color: var(--line); }
body.dark .faq-trigger { color: var(--ink); }

/* Contact / info cards */
body.dark .track-info-card--tip { background: #0f1d2b; border-color: #1e3a52; }
body.dark .contact-card,
body.dark .contact-address,
body.dark .about-intro__panel,
body.dark .legal-doc,
body.dark .legal-toc { background: #161c24; border-color: var(--line); }

/* Hero arrows */
body.dark .hero__arrow { background: rgba(0,0,0,.4); border-color: rgba(255,255,255,.25); }
body.dark .hero__arrow:hover { background: var(--blue); border-color: var(--blue); }

/* Step/how */
body.dark .how-step { background: #161c24; border-color: var(--line); }

/* Dm toggle hover in dark mode */
body.dark .t17-dm-toggle:hover { background: rgba(255,255,255,.1); }

/* Stat counter strip stays blue - ok */
/* CTA banner stays blue with white text - ok */
/* Footer stays dark - ok */

/* Recent orders stripe */
body.dark .recent-orders { border-color: var(--line); }
body.dark .recent-orders__row { border-color: var(--line); }
body.dark .recent-orders__row:nth-child(even) { background: #1a2330; }
body.dark .recent-orders__row:hover { background: #1f2a36; }

body.dark .order-tab { color: var(--ink-3); }
body.dark .order-tab:hover { background: var(--bg-2); color: var(--blue); }
body.dark .order-tab.is-active { background: #0e1117; color: var(--blue); }

/* forms */
body.dark .field input,
body.dark .field select { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
body.dark .field input:focus,
body.dark .field select:focus { background: #1f2a36; border-color: var(--blue); }
body.dark .rs-filterbar__search { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
body.dark .track-form__input-wrap input { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
body.dark .rs-modal__pricing { background: #1f2a36; border-color: var(--line); }
body.dark .rs-modal__close { background: #1f2a36; border-color: var(--line); }


/* ==========================================================================
   ==========================================================================
   NEW PAGES - added block (Pricing / Register / Contact Us / Features)
   Everything below this line was added for the 4 new pages.
   Any older duplicate of these rules was removed from above so nothing
   conflicts. Keep new page styles inside this block only.
   ==========================================================================
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PRICING PAGE - table controls
   -------------------------------------------------------------------------- */
.ptable-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ptable-title    { margin: 0; }
.ptable-subtitle { font-size: .93rem; color: var(--ink-3); margin: .3em 0 0; }

.ptable-controls__right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ptable-search-wrap { position: relative; display: flex; align-items: center; }
.ptable-search-wrap svg { position: absolute; left: 11px; color: var(--muted); pointer-events: none; }
.ptable-search {
  padding: 9px 14px 9px 36px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .93rem;
  background: var(--bg); color: var(--ink-2);
  width: 220px;
  transition: border-color .2s;
}
.ptable-search:focus { outline: none; border-color: var(--blue); }

.ptable-cat-select {
  padding: 9px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .93rem;
  background: var(--bg); color: var(--ink-2);
  cursor: pointer;
  transition: border-color .2s;
}
.ptable-cat-select:focus { outline: none; border-color: var(--blue); }

/* --------------------------------------------------------------------------
   2. PRICING PAGE - the price table
   -------------------------------------------------------------------------- */
.ptable-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  min-width: 760px;
}
.ptable thead { background: var(--ink); color: #fff; }
.ptable thead th {
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .7px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ptable__th--cat    { width: 130px; }
.ptable__th--price  { text-align: center; width: 96px; }
.ptable__th--status { text-align: center; width: 80px; }

.ptable tbody tr { border-bottom: 1px solid var(--line); transition: background .15s; }
.ptable tbody tr:last-child { border-bottom: 0; }
.ptable tbody tr:nth-child(even) { background: var(--bg-2); }
.ptable tbody tr:hover { background: #e8f2fb; }

.ptable td { padding: 11px 16px; vertical-align: middle; }

.ptable__cat-cell { font-weight: 600; color: var(--blue); font-size: .85rem; white-space: nowrap; }
.ptable__time     { color: var(--ink-3); font-size: .86rem; white-space: nowrap; }
.ptable__price    { text-align: center; font-weight: 600; white-space: nowrap; color: var(--ink-2); }
.ptable__price--best { color: var(--green); }
.ptable__status   { text-align: center; }

/* Tier-tinted price cells - each tier column carries a light wash of its own
   colour so Bronze / Silver / Gold read as columns at a glance. */
.ptable__price--bronze { background: #fdf3e7; color: #7c4a0b; }
.ptable__price--silver { background: #f1f1f3; color: #45454d; }
.ptable__price--gold   { background: #fdf8dd; color: #6f4108; }

/* keep the tint visible on striped + hovered rows */
.ptable tbody tr:nth-child(even) .ptable__price--bronze { background: #fbecd9; }
.ptable tbody tr:nth-child(even) .ptable__price--silver { background: #e9e9ec; }
.ptable tbody tr:nth-child(even) .ptable__price--gold   { background: #faf2cd; }
.ptable tbody tr:hover .ptable__price--bronze { background: #f7e2c4; }
.ptable tbody tr:hover .ptable__price--silver { background: #e0e0e5; }
.ptable tbody tr:hover .ptable__price--gold   { background: #f6ebb6; }

/* thead cells get the same wash over the black header */
.ptable__th--bronze { background: rgba(212, 145, 45, .30); }
.ptable__th--silver { background: rgba(200, 200, 210, .26); }
.ptable__th--gold   { background: rgba(212, 175, 55, .30); }

/* Tier header pills */
.tier-pill {
  display: inline-block;
  padding: 3px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
}
.tier-pill--bronze { background: #fdf3e7; color: #92560d; border: 1px solid #e6c492; }
.tier-pill--silver { background: #f4f4f5; color: #52525b; border: 1px solid #c4c4c4; }
.tier-pill--gold   { background: #fefce8; color: #854d0e; border: 1px solid #d4af37; }

/* Status badge */
.status-badge {
  display: inline-block; padding: 3px 9px;
  border-radius: 999px; font-size: .78rem; font-weight: 600;
  letter-spacing: .4px; text-transform: uppercase;
}
.status-badge--active   { background: #dcfce7; color: #166534; }
.status-badge--inactive { background: #fee2e2; color: #991b1b; }

/* Table note */
.ptable-note {
  display: flex; align-items: center; gap: 7px;
  margin-top: 16px;
  font-size: .88rem; color: var(--ink-3);
}
.ptable-note svg { flex: 0 0 auto; color: var(--blue); }

/* --------------------------------------------------------------------------
   3. PRICING PAGE - retail CTA band
   -------------------------------------------------------------------------- */
.retail-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.retail-cta__icon {
  width: 64px; height: 64px; flex: 0 0 64px;
  background: #e8f2fb; color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.retail-cta__body { flex: 1 1 260px; }
.retail-cta__body h3 { margin-bottom: .2em; font-size: 1.4rem; }
.retail-cta__body p  { margin: 0; color: var(--ink-3); font-size: .95rem; }
.retail-cta .btn { flex: 0 0 auto; white-space: nowrap; }

/* --------------------------------------------------------------------------
   4. SHARED - form controls used by Register + Contact
   -------------------------------------------------------------------------- */
.np-field { margin-bottom: 16px; }
.np-label {
  display: block;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .3px;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.np-label .req { color: var(--red); }
.np-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .18s, box-shadow .18s;
}
.np-input::placeholder { color: var(--muted); }
.np-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(52, 104, 154, .14);
}
textarea.np-input { resize: vertical; min-height: 130px; }

/* Select2 on registration dropdowns */
.np-reg .select2-container { width: 100% !important; }
.np-reg .select2-container--default .select2-selection--single {
  height: auto;
  min-height: 46px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  align-items: center;
  transition: border-color .18s, box-shadow .18s;
}
.np-reg .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ink);
  line-height: 1.4;
  padding: 10px 36px 10px 14px;
  font-size: .95rem;
}
.np-reg .select2-container--default .select2-selection--single .select2-selection__placeholder { color: var(--muted); }
.np-reg .select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; right: 10px; }
.np-reg .select2-container--default.select2-container--open .select2-selection--single,
.np-reg .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(52, 104, 154, .14);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: .95rem;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--blue); }
.select2-dropdown { border: 1.5px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 9999; }
body.dark .np-reg .select2-container--default .select2-selection--single { background: var(--bg-2); border-color: var(--line); }
body.dark .select2-dropdown { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
body.dark .select2-container--default .select2-search--dropdown .select2-search__field { background: var(--bg); border-color: var(--line); color: var(--ink-2); }

.np-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.np-hint  { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }
.np-alert {
  padding: 12px 16px; border-radius: var(--radius);
  margin-bottom: 18px; font-size: .92rem;
}
.np-alert--ok  { background: #dcfce7; color: #166534; border: 1px solid #a7dcb8; }
.np-alert--err { background: #fee2e2; color: #991b1b; border: 1px solid #f0b4b4; }

/* --------------------------------------------------------------------------
   5. REGISTER PAGE
   -------------------------------------------------------------------------- */
.np-reg { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }

.np-reg-intro { margin: 0 auto 36px; max-width: 920px; text-align: center; }
.np-reg-intro__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-2);
  line-height: 1.1;
}
.np-reg-intro__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-3);
}

/* Client groups section (registration) */
.cg-section { position: relative; max-width: 1080px; margin: 32px auto 0; padding: 0; }
.cg-head { max-width: 640px; margin-bottom: 28px; }
.cg-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #8C5A2B; margin-bottom: 8px; }
.cg-title { font-family: inherit; text-transform: uppercase; font-size: clamp(22px, 3.5vw, 32px); line-height: 1.05; margin: 0 0 10px; color: var(--ink); }
.cg-intro { font-size: 17px; line-height: 1.65; color: var(--ink-3); margin: 0; }
.cg-grid { position: relative; display: grid; gap: 18px; align-items: stretch; }
.cg-grid--1 { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
.cg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cg-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cg-rail { position: absolute; left: 8%; right: 8%; top: 48px; height: 2px; background: linear-gradient(90deg, #C98F4F, #B7BEC7, #E6B637); opacity: .35; pointer-events: none; }
.cg-card { position: relative; background: var(--bg); border: 1px solid #E8E5DE; border-radius: 12px; padding: 22px 20px 20px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .18s ease, box-shadow .18s ease; }
.cg-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(20, 15, 5, .07); }
.cg-gold { border-color: #E6B637; box-shadow: 0 8px 20px rgba(180, 131, 26, .1); }
.cg-flag { position: absolute; top: -11px; right: 16px; background: #111; color: #F7D269; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.cg-section svg.cg-medal { display: block; width: 48px; height: 48px; max-width: 48px; max-height: 48px; margin-bottom: 12px; flex-shrink: 0; }
.cg-card-name { font-family: inherit; text-transform: uppercase; font-size: 17px; letter-spacing: .03em; margin: 0 0 8px; color: var(--ink); }
.cg-threshold { margin: 0 0 12px; display: flex; flex-direction: column; gap: 2px; }
.cg-threshold strong { font-size: 22px; color: var(--ink); font-weight: 700; line-height: 1.15; }
.cg-threshold span { font-size: 12px; color: var(--muted); }
.cg-benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cg-benefits li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.45; color: var(--ink-2); }
.cg-benefits li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 3px; background: #999; opacity: .4; }
.cg-bronze .cg-benefits li::before { background: #B4763B; opacity: .55; }
.cg-silver .cg-benefits li::before { background: #8B939D; opacity: .55; }
.cg-gold .cg-benefits li::before { background: #D9A521; opacity: .65; }
.cg-cta { margin-top: 28px; text-align: center; }
.cg-btn { display: inline-block; background: var(--ink); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; padding: 12px 28px; border-radius: 10px; text-decoration: none; transition: background .15s ease; }
.cg-btn:hover { background: #8C5A2B; color: #fff; }
.cg-btn:focus-visible { outline: 3px solid #D9A521; outline-offset: 3px; }
.cg-note { margin: 10px 0 0; font-size: 12px; color: var(--muted); max-width: 520px; margin-left: auto; margin-right: auto; }
.cg-note a { color: var(--blue); text-decoration: underline; }

@media (max-width: 860px) {
  .cg-grid--2,
  .cg-grid--3,
  .cg-grid--4 { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .cg-rail { display: none; }
  .cg-card--top { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .cg-card, .cg-btn { transition: none; }
  .cg-card:hover { transform: none; }
}

/* Client groups — sidebar beside registration form */
.np-reg-aside--tiers { position: sticky; top: calc(var(--header-h) + 20px); }
.cg-section--aside { margin: 0; max-width: none; }
.cg-section--aside .cg-head { max-width: none; margin-bottom: 14px; }
.cg-section--aside .cg-head .cg-intro { margin: 0; }
.cg-section--aside .cg-title { font-size: clamp(20px, 2.5vw, 28px); }
.cg-section--aside .cg-intro { font-size: 16px; line-height: 1.6; }
.cg-section--aside .cg-grid { grid-template-columns: 1fr !important; max-width: none; gap: 12px; }
.cg-section--aside .cg-rail { display: none; }
.cg-section--aside .cg-card { display: grid; grid-template-columns: 36px 1fr; column-gap: 12px; row-gap: 2px; padding: 14px 16px; align-items: start; }
.cg-section--aside .cg-card--top { order: 0; }
.cg-section--aside .cg-card:hover { transform: none; }
.cg-section--aside svg.cg-medal { grid-row: 1 / span 2; width: 36px; height: 36px; max-width: 36px; max-height: 36px; margin: 0; }
.cg-section--aside .cg-card-name { grid-column: 2; margin: 0; font-size: 14px; }
.cg-section--aside .cg-threshold { grid-column: 2; margin: 0 0 4px; }
.cg-section--aside .cg-threshold strong { font-size: 16px; }
.cg-section--aside .cg-threshold span { font-size: 11px; }
.cg-section--aside .cg-benefits { grid-column: 1 / -1; margin-top: 4px; gap: 4px; }
.cg-section--aside .cg-benefits li { font-size: 12.5px; padding-left: 16px; }
.cg-section--aside .cg-flag { top: -9px; right: 10px; font-size: 9px; padding: 3px 8px; }
.cg-section--aside .cg-cta { margin-top: 14px; text-align: left; }
.cg-section--aside .cg-note { margin: 0; max-width: none; text-align: left; font-size: 12px; }

.np-reg-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px 34px 36px;
}
.np-reg-card__head { margin-bottom: 26px; }
.np-reg-card__head h2 { margin: 0 0 .25em; font-size: 2rem; }
.np-reg-card__head p  { margin: 0; color: var(--ink-3); font-size: .93rem; }

.np-reg-submit { margin-top: 8px; }

/* Registration — customer type checkboxes + currency row */
.np-reg-type-row { align-items: start; }
.np-reg-checkgroup__head,
.np-reg-currency-block__head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.np-reg-checkgroup__icon,
.np-reg-currency-block__icon { flex: 0 0 28px; color: var(--blue); margin-top: 2px; }
.np-reg-checkgroup__title,
.np-reg-currency-block__title { margin: 0; font-size: 1rem; font-weight: 700; color: var(--ink); font-family: var(--font-body); letter-spacing: 0; text-transform: none; }
.np-reg-checkgroup__sub,
.np-reg-currency-block__sub { margin: 2px 0 0; font-size: 12px; color: var(--muted); }
.np-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.np-check-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); cursor: pointer; margin: 0; }
.np-check-item input { width: 15px; height: 15px; margin: 0; accent-color: var(--blue); flex-shrink: 0; }
.np-currency-note { display: flex; gap: 8px; align-items: flex-start; margin: 10px 0 0; font-size: 12px; line-height: 1.5; color: var(--ink-3); }
.np-currency-note svg { flex: 0 0 14px; color: var(--blue); margin-top: 2px; }
.np-currency-note em { display: block; color: var(--blue-2); font-style: normal; margin-top: 2px; }
.np-radio-group { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.np-radio-item { display: flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; margin: 0; }

.np-reg-foot {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--ink-3); text-align: center;
}

/* Selling points column */
.np-reg-aside__title { font-size: 1.7rem; margin-bottom: .5em; }
.np-reg-aside > p { color: var(--ink-3); font-size: .96rem; }

.np-deposit-tiers {
	margin: 22px 0 0;
	padding: 0;
	background: transparent;
	border: 0;
}
.np-deposit-tiers__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.np-deposit-tier {
	display: flex;
	gap: 14px;
	align-items: center;
}
.np-deposit-tier__badge {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.np-deposit-tier__seal { display: block; }
.np-deposit-tier__text {
	margin: 0;
	font-size: .92rem;
	color: #666;
	line-height: 1.5;
}
.np-deposit-tier__name {
	font-weight: 700;
	color: #333;
}

.np-perks { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 0; }
.np-perk {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color .18s, transform .18s;
}
.np-perk:hover { border-color: var(--blue); transform: translateX(3px); }
.np-perk__icon {
  flex: 0 0 40px; width: 40px; height: 40px;
  border-radius: 50%;
  background: #e8f2fb; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.np-perk h4 { margin: 0 0 .15em; font-size: 1.15rem; }
.np-perk p  { margin: 0; font-size: .88rem; color: var(--ink-3); }

.np-reg-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.np-reg-stat { background: var(--bg); padding: 18px 12px; text-align: center; }
.np-reg-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem; line-height: 1;
  color: var(--blue);
}
.np-reg-stat span { font-size: .78rem; color: var(--ink-3); letter-spacing: .4px; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   6. CONTACT US PAGE
   -------------------------------------------------------------------------- */
.np-contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }

.np-contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px;
}
.np-contact-card__head { margin-bottom: 24px; }
.np-contact-card__head h2 { margin: 0 0 .25em; font-size: 2rem; }
.np-contact-card__head p  { margin: 0; color: var(--ink-3); font-size: .93rem; }

.np-contact-intro { color: var(--ink-3); line-height: 1.7; margin-bottom: 26px; }

.np-info {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.np-info__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.np-info__item:last-child { border-bottom: 0; }
.np-info__icon {
  flex: 0 0 42px; width: 42px; height: 42px;
  border-radius: 50%;
  background: #e8f2fb; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.np-info__label {
  margin: 0 0 3px;
  font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: .5px; color: var(--ink);
}
.np-info__value { margin: 0; font-size: .92rem; color: var(--ink-3); word-break: break-word; }
.np-info__value a { color: var(--blue); }

.np-support {
  margin-top: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}
.np-support h3 { color: #fff; margin-bottom: .3em; }
.np-support p  { color: #dfeaf5; font-size: .92rem; margin: 0 0 16px; }
.np-support .btn--white { background: #fff; color: var(--blue); border-color: #fff; }
.np-support .btn--white:hover { background: #e8f2fb; color: var(--blue); border-color: #e8f2fb; }

/* --------------------------------------------------------------------------
   7. FEATURES PAGE - laptop mockup slider (image on top)
   -------------------------------------------------------------------------- */
.np-fp-stage { max-width: 860px; margin: 0 auto; }

.np-laptop { position: relative; }
.np-laptop__screen {
  position: relative;
  background: #10151c;
  border: 10px solid #10151c;
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.np-laptop__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s ease;
}
.np-laptop__slide.is-active { opacity: 1; }
.np-laptop__hinge {
  height: 12px;
  background: linear-gradient(#c8ccd2, #9aa1aa);
  border-radius: 0 0 4px 4px;
}
.np-laptop__base {
  height: 12px;
  width: 116%;
  margin: 0 -8%;
  background: linear-gradient(#b6bcc4, #8e959e);
  border-radius: 0 0 14px 14px;
  position: relative;
}
.np-laptop__base::after {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 5px;
  background: #7b828b; border-radius: 0 0 6px 6px;
}

/* Content under the laptop */
.np-fp-body { max-width: 800px; margin: 34px auto 0; text-align: center; }
.np-fp-body__num {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: .95rem;
  color: var(--blue);
  background: #e8f2fb;
  border-radius: 999px;
  padding: 3px 14px;
  margin-bottom: 12px;
}
.np-fp-body h2 { margin-bottom: .3em; }
.np-fp-body p  { color: var(--ink-3); font-size: 1.02rem; margin: 0 auto; max-width: 720px; }

/* Arrows + counter */
.np-fp-arrows {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin: 26px 0 22px;
}
.np-fp-arrow {
  width: 42px; height: 42px;
  border: 2px solid var(--line);
  background: var(--bg);
  border-radius: 50%;
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.np-fp-arrow:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.np-fp-count { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 1px; color: var(--ink-3); }
.np-fp-count strong { color: var(--blue); }

/* Tabbing at the bottom */
.np-fp-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.np-fp-tab {
  font-family: var(--font-body);
  font-size: .86rem; font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-3);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.np-fp-tab:hover { border-color: var(--blue); color: var(--blue); }
.np-fp-tab.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Promise / mission strips on the features page */
.np-promise {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 34px; align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 38px;
}
.np-promise__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); background: #e8f2fb;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.np-promise h2 { margin-bottom: .3em; }
.np-promise p  { color: var(--ink-3); margin-bottom: 20px; }
.np-promise__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.np-promise__media {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
}
.np-promise__media strong {
  display: block; font-family: var(--font-display);
  font-size: 2.6rem; line-height: 1;
}
.np-promise__media span { font-size: .85rem; color: #dfeaf5; letter-spacing: .5px; text-transform: uppercase; }

.np-mission {
  background: var(--ink);
  color: #d8d8d8;
  border-radius: var(--radius);
  padding: 46px 40px;
  text-align: center;
}
.np-mission h2 { color: #fff; }
.np-mission p  { max-width: 780px; margin: 0 auto; font-size: 1.02rem; }

/* --------------------------------------------------------------------------
   8. NEW PAGES - responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .np-reg,
  .np-contact { grid-template-columns: 1fr; gap: 32px; }
  .np-reg-aside--tiers { position: static; }
  .np-promise { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ptable-controls { flex-direction: column; align-items: flex-start; }
  .ptable-search   { width: 100%; }
  .np-check-grid { grid-template-columns: 1fr; }
  .ptable-controls__right { width: 100%; }
  .ptable-cat-select { width: 100%; }
  .retail-cta { flex-direction: column; text-align: center; }
  .retail-cta__icon { margin: 0 auto; }
  .retail-cta .btn  { width: 100%; }
  .np-row-2 { grid-template-columns: 1fr; }
  .np-reg-card,
  .np-contact-card { padding: 26px 20px; }
  .np-reg-stats { grid-template-columns: 1fr; }
  .np-fp-tab { font-size: .8rem; padding: 7px 11px; }
  .np-mission { padding: 34px 22px; }
  .np-promise { padding: 26px 20px; }
}

/* --------------------------------------------------------------------------
   9. NEW PAGES - dark mode
   -------------------------------------------------------------------------- */
body.dark .ptable thead { background: #060b12; }
body.dark .ptable-wrap { border-color: var(--line); }
body.dark .ptable tbody tr:nth-child(even) { background: #1a2330; }
body.dark .ptable tbody tr:hover { background: #1f2a36; }
body.dark .ptable-search,
body.dark .ptable-cat-select { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }

body.dark .ptable__price--bronze { background: rgba(212, 145, 45, .16); color: #e6b878; }
body.dark .ptable__price--silver { background: rgba(200, 200, 210, .13); color: #d2d2da; }
body.dark .ptable__price--gold   { background: rgba(212, 175, 55, .17); color: #e8d183; }
body.dark .ptable tbody tr:nth-child(even) .ptable__price--bronze { background: rgba(212, 145, 45, .22); }
body.dark .ptable tbody tr:nth-child(even) .ptable__price--silver { background: rgba(200, 200, 210, .18); }
body.dark .ptable tbody tr:nth-child(even) .ptable__price--gold   { background: rgba(212, 175, 55, .23); }
body.dark .ptable tbody tr:hover .ptable__price--bronze { background: rgba(212, 145, 45, .28); }
body.dark .ptable tbody tr:hover .ptable__price--silver { background: rgba(200, 200, 210, .24); }
body.dark .ptable tbody tr:hover .ptable__price--gold   { background: rgba(212, 175, 55, .29); }

body.dark .retail-cta,
body.dark .np-reg-card,
body.dark .np-contact-card,
body.dark .np-perk,
body.dark .cg-card,
body.dark .np-deposit-tiers,
body.dark .np-info,
body.dark .np-reg-stat,
body.dark .np-promise,
body.dark .np-fp-arrow,
body.dark .np-fp-tab { background: #161c24; border-color: var(--line); }
body.dark .np-reg-stats { background: var(--line); border-color: var(--line); }
body.dark .np-input { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
body.dark .np-input:focus { background: #1f2a36; border-color: var(--blue); }
body.dark .np-info__item { border-color: var(--line); }
body.dark .np-fp-tabs { border-color: var(--line); }
body.dark .np-mission { background: #060b12; }
body.dark .retail-cta__icon,
body.dark .np-perk__icon,
body.dark .np-info__icon,
body.dark .np-fp-body__num,
body.dark .np-promise__eyebrow { background: rgba(52, 104, 154, .22); color: var(--blue-3); }

/* ==========================================================================
   END - NEW PAGES block
   ========================================================================== */
