:root {
  --bg: #0e0f12;
  --surface: #16181d;
  --surface-soft: #1b1f26;
  --text: #f3f4f6;
  --muted: #c2c8d2;
  --gold: #c9a96a;
  --gold-strong: #e1bb78;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: grid;
  place-items: center;
  z-index: 1100;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  letter-spacing: 0.35em;
  font-weight: 800;
  color: var(--gold);
  animation: pulse 1.4s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(14, 15, 18, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.1rem;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #161616;
  box-shadow: 0 8px 18px rgba(201, 169, 106, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(201, 169, 106, 0.42);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url("assets/homepage image.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 11, 14, 0.9), rgba(10, 11, 14, 0.62) 45%, rgba(10, 11, 14, 0.72));
}

.engraving-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.engraving-line {
  position: absolute;
  height: 1px;
  width: 46%;
  left: -50%;
  background: linear-gradient(90deg, transparent, rgba(225, 187, 120, 0.95), transparent);
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(201, 169, 106, 0.55));
  animation: engravingScan 4.6s linear infinite;
}

.engraving-line:nth-child(1) {
  top: 28%;
  animation-delay: 0s;
}

.engraving-line:nth-child(2) {
  top: 40%;
  animation-delay: 0.8s;
}

.engraving-line:nth-child(3) {
  top: 52%;
  animation-delay: 1.6s;
}

.engraving-line:nth-child(4) {
  top: 64%;
  animation-delay: 2.4s;
}

@keyframes engravingScan {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(320%);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
  padding: 1.8rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.subheadline {
  max-width: 58ch;
  color: #e8eaf0;
  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 7.5rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 72ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

.six-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.product-card,
.feature-item,
.cta-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.product-card:hover,
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 106, 0.5);
}

.feature {
  background: radial-gradient(circle at top left, #1a1e25, transparent 70%);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.cta-card {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.subpage-main {
  min-height: 75vh;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card img {
  border-radius: 0;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1rem 1rem 1.3rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #101319;
  color: var(--text);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.map-placeholder {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px dashed var(--border);
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  background: #0b0c10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  color: var(--text);
  border-color: rgba(201, 169, 106, 0.5);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  color: #8a93a0;
  padding: 1.1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-section {
  padding-top: 3.2rem;
}

.trust-card h3 {
  margin-bottom: 0.4rem;
}

.feature-check {
  font-weight: 600;
}

#why-us .three-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-assist {
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.product-assist h3 {
  margin-bottom: 0.5rem;
}

.product-assist p {
  color: var(--muted);
  margin: 0 auto 1.1rem;
  max-width: 64ch;
}


.hero-badges {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  color: #dbe0e8;
  font-size: 0.92rem;
}

.featured-card {
  padding: 1.5rem;
  border-radius: 18px;
  gap: 0.9rem;
  display: grid;
}

.featured-card h3 {
  margin-bottom: 0.2rem;
}

.process-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.process-card span {
  color: var(--gold-strong);
  font-weight: 700;
  font-size: 0.95rem;
}

.b2b-compact .cta-card,
.trust-card,
.site-footer {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.site-footer {
  padding-top: 3.4rem;
}

.footer-grid h4 {
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}

.footer-grid p,
.footer-grid li {
  color: #b5bdc9;
}
@media (max-width: 960px) {
  .six-col,
  .three-col,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .footer-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  #why-us .three-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #101217;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4%;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .btn-nav {
    margin-top: 0.3rem;
  }

  .six-col,
  .three-col,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82vh;
  }

  #why-us .three-col {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0.8rem 0;
  }
}

/* --- Shop enhancements --- */
.shop-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.shop-subtitle {
  color: var(--muted);
  margin-top: -0.35rem;
}

.shop-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.shop-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.filter-label {
  font-size: 0.92rem;
  color: var(--muted);
  margin-right: 0.25rem;
}

.btn-filter {
  border-color: var(--border);
  color: var(--muted);
  background: transparent;
  padding: 0.5rem 0.9rem;
}

.btn-filter.active {
  color: #121212;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  border-color: transparent;
}

.product-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.product-card.is-hidden {
  display: none;
}

.product-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.checkout-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 11, 0.8);
  backdrop-filter: blur(3px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: linear-gradient(180deg, #1a1d23, #12151d);
  border: 1px solid rgba(201, 169, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.modal-backdrop.open .product-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #10131a;
  color: var(--text);
  width: 34px;
  height: 34px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.modal-image-wrap {
  position: relative;
  min-height: 260px;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.engraving-overlay {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(80%, 330px);
  min-height: 130px;
  background: rgba(8, 10, 13, 0.35);
  border: 1px dashed rgba(201, 169, 106, 0.65);
  border-radius: 10px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 0.7rem;
  gap: 0.35rem;
}

.engraving-overlay p {
  margin: 0;
  color: rgba(241, 242, 245, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.03em;
  mix-blend-mode: screen;
}

#previewLogo {
  max-width: 90px;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(0.2);
}

.modal-description {
  color: var(--muted);
}

.modal-price {
  font-size: 1.25rem;
  color: var(--gold-strong);
  margin-top: -0.3rem;
}

.customization-panel {
  display: grid;
  gap: 0.52rem;
  margin-top: 0.8rem;
}

select,
input[type="range"] {
  width: 100%;
  padding: 0.62rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #101319;
  color: var(--text);
  font-family: inherit;
}

input[type="range"] {
  padding: 0.3rem;
}

.customization-actions {
  margin-top: 0.35rem;
}

@media (max-width: 960px) {
  .shop-topbar,
  .modal-grid {
    grid-template-columns: 1fr;
    display: grid;
    align-items: stretch;
  }

  .shop-cta-wrap {
    justify-content: flex-start;
  }
}

.shop-toolbar { display: grid; gap: 0.7rem; margin-bottom: 1rem; }
#filterButtons { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.shop-search-label { color: var(--muted); font-size: 0.9rem; }
.shop-search { width: 100%; padding: 0.7rem 0.9rem; border-radius: 10px; border: 1px solid var(--border); background: #101319; color: var(--text); }
.shop-section { margin-bottom: 2rem; }
.products-empty { color: var(--muted); }


.section-compact { padding: 3rem 0; }
.trust-card h3 { margin-bottom: 0.35rem; font-size: 1.08rem; }
.trust-card p { margin: 0; color: var(--muted); }
.feature-check { font-weight: 600; text-align: center; }
.custom-order .cta-card p { margin: 0; color: var(--muted); max-width: 62ch; }
.custom-product-note { margin: 0.4rem 0 1.6rem; padding: 1rem 1.1rem; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: space-between; gap: 0.9rem; flex-wrap: wrap; }
.custom-product-note p { margin: 0; color: var(--muted); }
.product-content h3 { margin-bottom: 0.35rem; }
.product-content p { color: var(--gold-strong); margin-top: 0; font-weight: 600; }
.product-actions .btn { flex: 1 1 180px; }
.footer-grid p { color: var(--muted); margin: 0.35rem 0; }
@media (max-width: 760px) { .section-compact { padding: 2.2rem 0; } .custom-product-note { align-items: flex-start; } }

.shop-toolbar {
  display: grid;
  gap: 1rem;
}

.product-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.04); }

.product-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.5rem; }
.tag { font-size: 0.72rem; padding: 0.2rem 0.55rem; border-radius: 999px; border: 1px solid var(--border); }
.tag-material { color: var(--gold-strong); }
.tag-custom { color: #9be3c0; }
.tag-badge { color: #b6d4ff; }
.product-description { color: var(--muted); min-height: 3.1em; }
.product-price { font-weight: 700; font-size: 1.05rem; margin-top: 0.4rem; }

.custom-product-note h3 { margin: 0 0 0.3rem; }

@media (max-width: 768px) {
  .shop-toolbar { grid-template-columns: 1fr; }
}


/* incremental shop polish */
.section { padding: clamp(3.2rem, 6vw, 5rem) 0; }
.section-heading h1, .section-heading h2 { font-weight: 800; letter-spacing: -0.01em; }
.product-content h3 { font-size: 1.08rem; line-height: 1.35; }
#productGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-content { display: flex; flex-direction: column; flex: 1; }
.product-description { flex: 1; }
.product-card:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34); }
.shop-benefits { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0.8rem; margin: 0 0 1.5rem; }
.shop-benefit { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 0.7rem 0.9rem; font-size: 0.9rem; color: var(--muted); }
.tag-material { background: rgba(201,169,106,0.12); }
@media (max-width: 960px) { #productGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .shop-benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { #productGrid { grid-template-columns: 1fr; } .shop-benefits { grid-template-columns: 1fr; } }

.tag-material-wood { color: #d8ba89; }
.tag-material-metal { color: #c2d3e5; }
.tag-material-crystal { color: #b9e6f2; }

/* SHOP REBUILD */
.shop-page { background: var(--bg); color: var(--text); }
.shop-page .site-header { background: rgba(14, 15, 18, 0.85); border-bottom: 1px solid var(--border); }
.shop-page .logo, .shop-page .nav a { color: var(--muted); }
.shop-page .nav a.active { color: var(--text); }
.shop-shell { padding: 2rem 0 4rem; }
.shop-hero { padding: 2rem 0 1rem; }
.shop-hero h1 { font-size: clamp(2rem,5vw,3rem); margin: 0; }
.shop-lead { color: var(--muted); margin-top: .6rem; font-size: 1.1rem; }
.sticky-panel { position: sticky; top: 88px; z-index: 20; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 14px; padding: 1rem; display: grid; gap: .8rem; grid-template-columns: 1fr 1fr 220px; margin-bottom: 1.5rem; }
.filter-group { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-filter { border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); }
.btn-filter.active { background: var(--gold); color: #161616; border-color: var(--gold); }
#searchInput,#sortSelect { border: 1px solid var(--border); border-radius: 12px; padding: .72rem .9rem; font: inherit; background: #101319; color: var(--text); }
.shop-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; }
.shop-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.shop-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38); }
.shop-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 0; }

.shop-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.shop-card-link:focus-visible {
  outline: 2px solid var(--primary, #0f766e);
  outline-offset: 4px;
  border-radius: 1rem;
}

.shop-card-body { padding: 1rem; }
.shop-card h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.shop-card p { margin: 0 0 .6rem; color: var(--muted); font-size: .95rem; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--gold-strong); margin-bottom: .7rem; }
.empty-state { text-align: center; color: var(--muted); margin-top: 2rem; }
.shop-modal { background: var(--surface); color: var(--text); width: min(900px,92%); border-radius: 18px; padding: 1rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem; }
.shop-modal img { width: 100%; height: 100%; object-fit: cover; max-height: 460px; }
.modal-category { color: var(--muted); font-weight: 600; margin-bottom: .35rem; }
.modal-price { font-size: 1.35rem; font-weight: 800; margin: .9rem 0 1rem; }
@media (max-width: 1080px) { .shop-grid { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (max-width: 840px) { .sticky-panel { grid-template-columns: 1fr; top: 78px; } .shop-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .shop-modal { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } }

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  color: var(--muted);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.02);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-journey {
  position: relative;
  gap: 1rem;
}

.process-journey::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 169, 106, 0.1), rgba(201, 169, 106, 0.95), rgba(201, 169, 106, 0.1));
  transform-origin: left;
  animation: processLinePulse 3.4s ease-in-out infinite;
  z-index: 0;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 106, 0.5);
  margin-bottom: 0.7rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.process-card {
  position: relative;
  z-index: 1;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-card span {
  background: rgba(14, 15, 18, 0.95);
  box-shadow: 0 0 0 6px rgba(201, 169, 106, 0.08);
  animation: processDotGlow 2.6s ease-in-out infinite;
}

.process-card:nth-child(2) span { animation-delay: 0.2s; }
.process-card:nth-child(3) span { animation-delay: 0.4s; }
.process-card:nth-child(4) span { animation-delay: 0.6s; }

@keyframes processDotGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 106, 0.26); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(201, 169, 106, 0); }
}

@keyframes processLinePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.78); }
  50% { opacity: 0.95; transform: scaleX(1); }
}

.process-card h3,
.trust-card h3 {
  margin: 0;
  font-size: 1rem;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-card {
  display: grid;
  gap: 0.9rem;
}

.featured-card .btn {
  justify-self: start;
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2b-compact .cta-card {
  text-align: left;
  justify-items: start;
}

.footer-grid {
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 1.4rem;
}


.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.footer-grid p strong {
  color: var(--text);
  font-weight: 600;
}
@media (max-width: 960px) {
  .process-grid,
  .featured-grid,
  .four-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-journey::before {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 760px) {
  .process-grid,
  .featured-grid,
  .four-col {
    grid-template-columns: 1fr;
  }

  .process-journey::before {
    display: none;
  }
}
