/* Theme variables */
:root {
  --primary: #b69738;
  --primary-dark: #8a7427;
  --secondary: #28241e;
  --bg-dark: #0f0d0b;
  --bg-hero: radial-gradient(circle at 15% 20%, rgba(182, 151, 56, 0.3), transparent 35%), radial-gradient(circle at 85% 10%, rgba(182, 151, 56, 0.28), transparent 35%), linear-gradient(180deg, #1b1711 0%, #0f0d0b 60%, #0b0907 100%);
  --text-light: #f6f0e4;
  --text-muted: #c9c3b8;
  --card-bg: #1a1712;
  --card-border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding-top: 78px; /* offset for sticky header (navbar = 16px pad × 2 + 46px logo) */
  transition: padding-top 0.25s ease;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

.navbar {
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.navbar-toggler {
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--primary), #f1d077);
  box-shadow: 0 12px 30px rgba(182, 151, 56, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(182, 151, 56, 0.35);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 238, 230, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.6' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-logo {
  height: 46px;
  width: auto;
  transition: height 0.25s ease, transform 0.25s ease;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light) !important;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 12px 16px !important;
  letter-spacing: 0.15px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary) !important;
}

.dropdown-menu {
  background: #15110d;
  border: 1px solid var(--card-border);
}

.dropdown-item {
  color: var(--text-light);
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
  background: rgba(182, 151, 56, 0.15);
  color: var(--primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #f1d077);
  color: #0b0907;
  border: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(182, 151, 56, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f1d077, var(--primary));
  color: #0b0907;
}

.btn-outline-light {
  border-color: var(--primary);
  color: var(--text-light);
}

.hero {
  position: relative;
  padding: 130px 0 70px;
  background: var(--bg-hero);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(182, 151, 56, 0.4), rgba(182, 151, 56, 0.05) 55%, transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(182, 151, 56, 0.12), transparent 70%),
    radial-gradient(circle, rgba(182, 151, 56, 0.6) 0.8px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 10px 10px;
  opacity: 0.55;
  filter: blur(0.2px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/lines.svg"), linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0.5;
  pointer-events: none;
}

.hero h1,
.hero h2,
.hero p {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.hero p.lead {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--text-muted);
}

.hero-buttons {
  position: relative;
  z-index: 1;
}

.section {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--primary);
  font-size: 12px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
}

.section-heading .section-sub,
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 8px auto 0;
  line-height: 1.65;
}

.gold-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.gold-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(182, 151, 56, 0.6), rgba(255, 255, 255, 0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(182, 151, 56, 0.32), rgba(182, 151, 56, 0.08));
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 26px;
}

.cta-bar {
  padding: 38px 30px;
  background: linear-gradient(90deg, rgba(182, 151, 56, 0.18), rgba(40, 36, 30, 0.8));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.cta-bar strong {
  color: var(--primary);
}

.footer {
  background: #0c0a07;
  border-top: 1px solid var(--card-border);
  padding: 70px 0 0;
  color: var(--text-muted);
}

.footer .brand-logo {
  height: 34px;
}

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

.footer a:hover {
  color: var(--primary);
}

.footer h6 {
  color: #f0ece2;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.footer h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── Footer bottom bar ──────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid var(--card-border);
  margin-top: 50px;
  padding: 18px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
}

.social-links a {
  color: var(--text-muted);
  font-size: 18px;
}

.social-links a:hover {
  color: var(--primary);
}

.placeholder-img {
  width: 100%;
  min-height: 230px;
  background: linear-gradient(135deg, #2a261f, #17130f);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-weight: 600;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(182, 151, 56, 0.12);
  color: var(--primary);
  border-radius: 999px;
  border: 1px solid rgba(182, 151, 56, 0.25);
  font-weight: 600;
  margin-bottom: 16px;
}

.table-custom {
  color: var(--text-light);
  border-color: var(--card-border);
}

.accordion-button {
  background: var(--card-bg);
  color: var(--text-light);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  box-shadow: none;
}

.accordion-item {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}

.badge-soft {
  background: rgba(182, 151, 56, 0.18);
  color: var(--primary);
  border: 1px solid rgba(182, 151, 56, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

.step-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(182, 151, 56, 0.25), rgba(182, 151, 56, 0.08));
  border: 1px solid rgba(182, 151, 56, 0.35);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  margin: 0 auto 12px;
}

.table-split td,
.table-split th {
  padding: 14px 18px;
  border-color: var(--card-border) !important;
}

.form-control,
.form-select {
  background: #12100c;
  border: 1px solid var(--card-border);
  color: var(--text-light);
  border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(182, 151, 56, 0.15);
}

.mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px;
  height: 100%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.step-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(182, 151, 56, 0.5), rgba(182, 151, 56, 0.1), rgba(182, 151, 56, 0.5));
  margin: 0 8px;
  border-radius: 999px;
}

.gold-banner {
  background: linear-gradient(120deg, rgba(182, 151, 56, 0.24), rgba(182, 151, 56, 0.45));
  border: 1px solid rgba(182, 151, 56, 0.35);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.gold-banner .btn {
  min-width: 170px;
}

.warehouse-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(182, 151, 56, 0.05));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
  height: 100%;
}

.machine-stack {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.machine-stack .placeholder-img {
  width: 200px;
  min-height: 320px;
}

.hero-machines {
  max-width: 760px;
  margin: 0 auto;
}

.hero-machines img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.55));
}

.hero-figure {
  position: relative;
  padding: 10px 0 0;
}

.hero-figure::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 26px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.65) 0%, transparent 65%);
  filter: blur(10px);
  opacity: 0.9;
}

.hero-machines-img {
  max-width: 820px;
  width: 100%;
}

.landing-hero {
  position: relative;
  padding: 120px 0 40px;
  background: var(--bg-hero);
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, rgba(182, 151, 56, 0.45), rgba(182, 151, 56, 0.05) 55%, transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(182, 151, 56, 0.16), transparent 70%),
    radial-gradient(circle, rgba(182, 151, 56, 0.6) 0.8px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 10px 10px;
  opacity: 0.65;
  filter: blur(0.2px);
  z-index: 0;
}

.landing-hero::after {
  content: "";
  position: absolute;
  right: -18%;
  top: 0;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(182, 151, 56, 0.22), transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.landing-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.landing-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.landing-hero .lead {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--text-muted);
}

.hero-buttons .btn {
  min-width: 190px;
}

.pill-card {
  background: linear-gradient(140deg, rgba(182, 151, 56, 0.12), rgba(40, 36, 30, 0.75));
  border: 1px solid rgba(182, 151, 56, 0.25);
  border-radius: 18px;
  padding: 18px;
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.divider-vertical {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(182, 151, 56, 0.4), transparent);
}

.icon-ghost {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(182, 151, 56, 0.3), rgba(182, 151, 56, 0.05));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 24px;
}

.warehouse-embed video,
.warehouse-embed img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.process-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid rgba(182, 151, 56, 0.5);
  background: radial-gradient(circle, rgba(182, 151, 56, 0.12), rgba(26, 23, 18, 0.85));
  display: grid;
  place-items: center;
  color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}

.process-ring .step-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
}

.process-ring .step-label {
  font-size: 12px;
  color: var(--text-muted);
}

.process-link {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(182, 151, 56, 0.5), rgba(182, 151, 56, 0.12), rgba(182, 151, 56, 0.5));
}

.cta-form {
  background: linear-gradient(145deg, rgba(182, 151, 56, 0.22), rgba(182, 151, 56, 0.35));
  border: 1px solid rgba(182, 151, 56, 0.35);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  padding: 22px;
}

.cta-form .form-control {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-form .btn-primary {
  min-width: 140px;
}

.blog-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(10, 9, 8, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.blog-thumb {
  width: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #2c2821, #17130f);
  display: block;
}

.blog-body {
  padding: 18px;
}

.label-amber {
  display: inline-flex;
  padding: 6px 12px;
  background: linear-gradient(135deg, #f1d077, #b69738);
  color: #0b0907;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-light);
  font-weight: 600;
}

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

.success-band {
  background: radial-gradient(circle at 20% 20%, rgba(182, 151, 56, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(31, 29, 25, 0.95), rgba(12, 10, 7, 0.96));
  border-radius: 18px;
  padding: 32px;
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  font-size: 38px;
  color: var(--primary);
  line-height: 1;
}

.suggested-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.suggested-card .placeholder-img {
  min-height: 140px;
}

.highlight-card {
  border: 1px solid rgba(182, 151, 56, 0.35);
  border-radius: 14px;
  padding: 18px;
  background: rgba(20, 18, 15, 0.75);
  box-shadow: var(--shadow-soft);
}

/* Sticky header shrink effect */
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(12, 10, 7, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .brand-logo {
  height: 36px;
  transform: translateY(-1px);
}

/* ── Navbar: 992px – 1200px tight fit ──────────────────────── */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-link {
    padding: 8px 8px !important;
    font-size: 13.5px;
  }
  .brand-logo {
    height: 38px;
  }
  .navbar .btn-primary {
    padding: 8px 14px;
    font-size: 13.5px;
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 90px 0 60px;
  }
  .navbar-brand .brand-logo {
    height: 32px;
  }
  .navbar-collapse {
    background: rgba(15, 13, 11, 0.96);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
  }
  body {
    padding-top: 68px;
  }
}

@media (max-width: 575px) {
  .section {
    padding: 50px 0;
  }
  .section-heading h2 {
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL PAGE HERO BANNER (inner pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 52px 0 52px;
  background: radial-gradient(circle at 20% 30%, rgba(182,151,56,.28) 0%, transparent 40%),
              radial-gradient(circle at 80% 10%, rgba(182,151,56,.22) 0%, transparent 38%),
              linear-gradient(180deg, #1b1711 0%, #0f0d0b 60%, #0b0907 100%);
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
}

/* Dot grid overlay on every page banner */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(182,151,56,.22) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, #000 30%, transparent 100%);
  z-index: 0;
}

.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-hero-glow--left {
  width: 380px;
  height: 380px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(182,151,56,.35) 0%, transparent 70%);
  opacity: .55;
}

.page-hero-glow--right {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, transparent 70%);
  opacity: .45;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(182,151,56,.1);
  border: 1px solid rgba(182,151,56,.25);
  border-radius: 999px;
}

.page-hero-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  max-width: 640px;
  margin: 0 auto 18px;
  color: var(--text-muted);
  font-size: 15px;
}

.page-hero-breadcrumb {
  margin-bottom: 0;
  font-size: 13px;
}

.page-hero-breadcrumb .breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.page-hero-breadcrumb .breadcrumb-item.active {
  color: var(--text-muted);
}

.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(182,151,56,.5);
  content: "/";
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US — WHO WE ARE
═══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-section-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.35;
}

.about-title-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f1d077);
  border-radius: 999px;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Machine image grid */
.about-machine-grid {
  position: relative;
  display: flex;
  gap: 14px;
  height: 100%;
  min-height: 420px;
}

.about-machine-grid__col-left,
.about-machine-grid__col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-machine-grid__col-left {
  flex: 1;
}

.about-machine-grid__col-right {
  flex: 1.1;
}

.about-machine-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: linear-gradient(140deg, #24201a, #131008);
  position: relative;
}

.about-machine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
}

.about-machine-img--sm {
  flex: 1;
  min-height: 180px;
}

.about-machine-img--lg {
  flex: 1;
  min-height: 380px;
}

.about-machine-grid__glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(182,151,56,.3) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US — MISSION & VALUES
═══════════════════════════════════════════════════════════════ */
.about-values-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.1) 0%, transparent 55%);
}

.values-card {
  background: linear-gradient(160deg, rgba(182,151,56,.18) 0%, rgba(26,23,18,.95) 65%);
  border: 1px solid rgba(182,151,56,.32);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 32px rgba(182,151,56,.12), inset 0 1px 0 rgba(182,151,56,.15);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.values-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,151,56,.5), rgba(255,255,255,.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .5;
  transition: opacity .25s;
}

.values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(182,151,56,.2);
  border-color: rgba(182,151,56,.55);
}

.values-card:hover::before {
  opacity: 1;
}

.values-card--featured::before {
  opacity: 1;
}

.values-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(182,151,56,.3) 0%, rgba(182,151,56,.06) 70%);
  border: 1px solid rgba(182,151,56,.25);
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 20px;
}

.values-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.values-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US — 4-STEP PROCESS
═══════════════════════════════════════════════════════════════ */
.about-process-section {
  background: #0e0c08;
  position: relative;
  overflow: hidden;
}

.about-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,   rgba(182,151,56,.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%,  rgba(182,151,56,.07) 0%, transparent 60%);
  pointer-events: none;
}

.about-process-section .section-heading,
.about-process-section .process-steps {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.process-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.process-step__ring {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 2px solid rgba(182,151,56,.55);
  background: linear-gradient(145deg, rgba(182,151,56,.22) 0%, rgba(10,8,5,.92) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px rgba(182,151,56,.07), 0 16px 38px rgba(0,0,0,.55);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}

/* All rings look the same — featured is just brighter */
.process-step__ring--gold {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(182,151,56,.38) 0%, rgba(10,8,5,.9) 70%);
  box-shadow: 0 0 0 8px rgba(182,151,56,.1), 0 18px 44px rgba(182,151,56,.32);
}

.process-step:hover .process-step__ring {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(182,151,56,.2);
}

.process-step__num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.process-step__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px;
  margin-top: 3px;
}

.process-step__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 6px;
}

.process-step__connector {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(182,151,56,.5), rgba(182,151,56,.15), rgba(182,151,56,.5));
  align-self: center;
  margin-bottom: 48px; /* visually align with ring midpoint */
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US — CTA BANNER
═══════════════════════════════════════════════════════════════ */
.about-cta-section {
  position: relative;
  padding: 110px 0;
  background-image: url("../img/warehouse-thumbnail.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.about-cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.78);
  z-index: 1;
}

.about-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-heading {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-cta-heading em {
  font-style: italic;
  color: var(--primary);
}

.about-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 38px;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cta-btn-primary {
  background: linear-gradient(135deg, var(--primary), #f1d077);
  color: #0b0907;
  border: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(182,151,56,.35);
  transition: background .25s, box-shadow .25s, transform .2s;
}

.about-cta-btn-primary:hover {
  background: linear-gradient(135deg, #f1d077, var(--primary));
  color: #0b0907;
  box-shadow: 0 14px 40px rgba(182,151,56,.5);
  transform: translateY(-2px);
}

.about-cta-btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,.3);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
}

.about-cta-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(182,151,56,.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .page-hero {
    padding: 40px 0 40px;
  }

  .about-machine-grid {
    min-height: 320px;
  }

  .about-machine-img--lg {
    min-height: 260px;
  }

  .about-machine-img--sm {
    min-height: 120px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .process-step {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }

  .process-step__connector {
    display: none;
  }

  .about-cta-section {
    background-attachment: scroll;
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .page-hero {
    padding: 32px 0 32px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .about-machine-grid {
    min-height: 240px;
  }

  .about-machine-img--lg {
    min-height: 200px;
  }

  .about-machine-img--sm {
    min-height: 90px;
  }

  .process-step {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .process-step__ring {
    width: 90px;
    height: 90px;
  }

  .about-cta-section {
    padding: 64px 0;
  }

  .about-cta-heading {
    font-size: 26px;
  }

  .about-cta-btn-primary,
  .about-cta-btn-outline {
    width: 100%;
    text-align: center;
  }

  .values-card {
    padding: 24px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG CARD V2 — thumbnails + card body
═══════════════════════════════════════════════════════════════ */
.blog-card-v2 {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.blog-card-v2:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0,0,0,.55);
}

/* Thumbnail base */
.blog-card-v2__thumb {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

/* 6 distinct thumbnail gradients */
.blog-card-v2__thumb--thumb-1 {
  background: linear-gradient(145deg, #0d1f35 0%, #1a3a5c 50%, #0b1520 100%);
}
.blog-card-v2__thumb--thumb-2 {
  background: linear-gradient(145deg, #1c1004 0%, #3d2a08 50%, #251700 100%);
}
.blog-card-v2__thumb--thumb-3 {
  background: linear-gradient(145deg, #150d20 0%, #2e1a50 50%, #0e0815 100%);
}
.blog-card-v2__thumb--thumb-4 {
  background: linear-gradient(145deg, #051812 0%, #0d3326 50%, #030f0b 100%);
}
.blog-card-v2__thumb--thumb-5 {
  background: linear-gradient(145deg, #1a0a0a 0%, #3a1212 50%, #100505 100%);
}
.blog-card-v2__thumb--thumb-6 {
  background: linear-gradient(145deg, #0a0f1a 0%, #1a2a45 50%, #05090f 100%);
}

/* Gold mesh overlay on every thumb */
.blog-card-v2__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(182,151,56,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 70%, rgba(182,151,56,.1) 0%, transparent 50%);
}

/* Bottom fade */
.blog-card-v2__thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(10,8,5,.85) 0%, transparent 100%);
}

/* Real thumbnail photo */
.blog-card-v2__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity .35s ease, transform .45s ease;
}
.blog-card-v2:hover .blog-card-v2__thumb img {
  opacity: 0.92;
  transform: scale(1.06);
}

/* Center icon inside thumb */
.blog-card-v2__thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(182,151,56,.15);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 28px;
  z-index: 1;
  backdrop-filter: blur(4px);
}

/* Category pill on thumb */
.blog-card-v2__category {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #f1d077, #b69738);
  color: #0b0907;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
}

/* Card body */
.blog-card-v2__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-v2__date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  opacity: .8;
}

.blog-card-v2__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.45;
  margin-bottom: 10px;
}

.blog-card-v2__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.blog-card-v2__title a:hover {
  color: var(--primary);
}

.blog-card-v2__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card-v2__readmore {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(182,151,56,.4);
  border-radius: 8px;
  padding: 9px 18px;
  align-self: flex-start;
  transition: background .2s, border-color .2s, color .2s;
}

.blog-card-v2__readmore:hover {
  background: rgba(182,151,56,.12);
  border-color: var(--primary);
  color: var(--primary);
}

/* Load More button */
.blogs-load-more {
  background: transparent;
  border: 1px solid rgba(182,151,56,.5);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 44px;
  border-radius: 8px;
  letter-spacing: .3px;
  transition: background .2s, border-color .2s;
}

.blogs-load-more:hover {
  background: rgba(182,151,56,.12);
  border-color: var(--primary);
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   BLOGS — SUCCESS STORIES SECTION
═══════════════════════════════════════════════════════════════ */
.blogs-success-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../img/warehouse-thumbnail.png");
  background-size: cover;
  background-position: center;
}

.blogs-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 3, 0.82);
  z-index: 1;
}

.blogs-success-inner {
  max-width: 700px;
  margin: 0 auto;
}

.blogs-success-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  padding: 5px 16px;
  background: rgba(182,151,56,.1);
  border: 1px solid rgba(182,151,56,.25);
  border-radius: 999px;
}

.blogs-success-heading {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
}

.blogs-success-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f1d077);
  border-radius: 999px;
  margin: 0 auto 24px;
}

.blogs-success-quote-mark {
  font-size: 72px;
  line-height: .8;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.blogs-success-quote {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  border: none;
  padding: 0;
  margin-bottom: 28px;
}

.blogs-success-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.blogs-success-author__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(182,151,56,.18);
  border: 1px solid rgba(182,151,56,.35);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 18px;
}

.blogs-success-author__name {
  display: block;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
}

.blogs-success-author__loc {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.blogs-success-btn {
  background: transparent;
  border: 1px solid rgba(182,151,56,.5);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 36px;
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}

.blogs-success-btn:hover {
  background: rgba(182,151,56,.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   BLOG DETAIL — Article
═══════════════════════════════════════════════════════════════ */
.blog-detail-featured {
  margin-bottom: 36px;
}

.blog-detail-featured__img {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-featured__img--hero {
  background: linear-gradient(145deg, #150d20 0%, #2e1a50 40%, #0e0815 100%);
}

.blog-detail-featured__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 45%, rgba(182,151,56,.22) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 65%, rgba(182,151,56,.12) 0%, transparent 50%);
}

.blog-detail-featured__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,8,5,.75) 0%, transparent 100%);
}

/* Real hero photo */
.blog-detail-featured__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.blog-detail-featured__overlay {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
}

.blog-detail-featured__icon {
  font-size: 80px;
  color: rgba(182,151,56,.35);
  z-index: 1;
}

/* Article header */
.blog-detail-header {
  margin-bottom: 28px;
}

.blog-detail-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.blog-detail-meta__sep {
  opacity: .4;
}

.blog-detail-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.25;
}

/* Article body */
.blog-detail-body {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.blog-detail-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 24px;
}

.blog-detail-body p {
  margin-bottom: 20px;
}

/* Key Highlights */
.blog-highlights {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--primary);
  border-radius: 14px;
  padding: 30px 28px;
  margin: 32px 0;
}

.blog-highlights__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-highlights__intro {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.blog-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-highlights__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.blog-highlights__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG DETAIL — Suggested Reading
═══════════════════════════════════════════════════════════════ */
.blog-suggested-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.08) 0%, transparent 55%);
}

.blog-suggested-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-suggested-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin: 0;
}

.blog-suggested-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(182,151,56,.35);
  padding: 7px 18px;
  border-radius: 999px;
  transition: background .2s;
}

.blog-suggested-all:hover {
  background: rgba(182,151,56,.1);
  color: var(--primary);
}

/* Suggested card */
.blog-sug-card {
  display: block;
  text-decoration: none;
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.blog-sug-card:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,.5);
}

.blog-sug-card__thumb {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-sug-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 45%, rgba(182,151,56,.18) 0%, transparent 60%);
}

.blog-sug-card__thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,8,5,.75) 0%, transparent 100%);
}

/* Real thumbnail photo for suggested cards */
.blog-sug-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity .3s ease, transform .4s ease;
}
.blog-sug-card:hover .blog-sug-card__thumb img {
  opacity: 0.9;
  transform: scale(1.05);
}

.blog-sug-card__icon {
  font-size: 36px;
  color: rgba(182,151,56,.5);
  z-index: 1;
}

.blog-sug-card__body {
  padding: 16px 18px 18px;
}

.blog-sug-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.blog-sug-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   REVENUE CALCULATOR
═══════════════════════════════════════════════════════════════ */
.calc-section {
  background: radial-gradient(circle at 20% 30%, rgba(182,151,56,.09) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(182,151,56,.07) 0%, transparent 45%);
}

/* ── Input card ── */
.calc-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.calc-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(182,151,56,.18), rgba(182,151,56,.06));
  border-bottom: 1px solid var(--card-border);
}

.calc-card__head-icon {
  font-size: 20px;
  color: var(--primary);
}

.calc-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.calc-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Fields ── */
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .2px;
  margin: 0;
  line-height: 1.5;
}

.calc-inline-val {
  color: var(--primary);
  font-weight: 700;
}

/* Select */
.calc-select-wrap {
  position: relative;
}

.calc-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #1a1712;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 44px 13px 16px;
  cursor: pointer;
  transition: border-color .2s;
  outline: none;
}

.calc-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(182,151,56,.15);
}

.calc-select option {
  background: #1a1712;
  color: var(--text-light);
}

.calc-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 13px;
  pointer-events: none;
}

/* Slider */
.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary) var(--fill, 24%),
    rgba(255,255,255,.1) var(--fill, 24%),
    rgba(255,255,255,.1) 100%
  );
  outline: none;
  cursor: pointer;
  transition: background .05s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1d077, var(--primary));
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 14px rgba(182,151,56,.55);
  transition: transform .15s, box-shadow .15s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(182,151,56,.7);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1d077, var(--primary));
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 14px rgba(182,151,56,.55);
}

.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  opacity: .65;
  padding: 0 2px;
}

/* ── Tip box ── */
.calc-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(182,151,56,.22), rgba(182,151,56,.12));
  border: 1px solid rgba(182,151,56,.3);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.calc-tip .fa-lightbulb {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Results card ── */
.calc-results-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 30px 28px;
}

.calc-results-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}

.calc-stat {
  background: #1a1712;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
}

.calc-stat--gold {
  background: linear-gradient(145deg, rgba(182,151,56,.14), rgba(182,151,56,.04));
  border-color: rgba(182,151,56,.3);
}

.calc-stat__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.calc-stat__value {
  display: block;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.calc-stat__total {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* What This Means */
.calc-means {
  background: rgba(182,151,56,.06);
  border: 1px solid rgba(182,151,56,.18);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.calc-means__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: .2px;
}

.calc-means__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-means__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.calc-means__icon {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 15px;
  margin-top: 1px;
}

/* ── Potential By Type ── */
.calc-potential-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.08) 0%, transparent 55%);
}

.potential-card {
  background: linear-gradient(160deg, rgba(182,151,56,.18) 0%, #13110e 65%);
  border: 1px solid rgba(182,151,56,.38);
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(182,151,56,.12), 0 4px 16px rgba(0,0,0,.4);
}

.potential-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,151,56,.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 1;
  transition: opacity .25s;
}

.potential-card:hover {
  border-color: rgba(182,151,56,.55);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(182,151,56,.2), 0 20px 48px rgba(0,0,0,.5);
}

.potential-card:hover::before,
.potential-card--active::before {
  opacity: 1;
}

.potential-card--active {
  border-color: rgba(182,151,56,.65);
  box-shadow: 0 0 0 2px rgba(182,151,56,.3), 0 24px 52px rgba(0,0,0,.55);
  transform: translateY(-5px);
}

.potential-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.2);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

.potential-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 12px;
}

.potential-card__range {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.5px;
  margin-bottom: 14px;
}

.potential-card__range span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.potential-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.potential-card__traffic {
  font-size: 12px;
  color: var(--text-muted);
}

.potential-card__traffic strong {
  color: var(--text-light);
}

.potential-card__stars {
  display: flex;
  gap: 2px;
}

.potential-card__stars .fa-star {
  font-size: 11px;
  color: rgba(255,255,255,.15);
}

.potential-card__stars .fa-star.active {
  color: var(--primary);
}

/* ── Mini CTA ── */
.calc-mini-cta-section {
  padding: 0 0 70px;
}

.calc-mini-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(182,151,56,.2) 0%, rgba(182,151,56,.1) 50%, rgba(26,23,18,.9) 100%);
  border: 1px solid rgba(182,151,56,.3);
  border-radius: 18px;
  padding: 38px 40px;
  overflow: hidden;
}

.calc-mini-cta__glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(182,151,56,.3) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.calc-mini-cta__heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 6px;
}

.calc-mini-cta__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.calc-mini-cta__btn {
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ── Calculator responsive ── */
@media (max-width: 991px) {
  .calc-card {
    position: static;
  }

  .calc-mini-cta {
    padding: 28px 24px;
    text-align: center;
  }

  .calc-mini-cta__btn {
    margin-top: 8px;
  }

  .calc-results-card {
    padding: 26px 22px;
  }
}

@media (max-width: 575px) {
  .calc-results-card {
    padding: 22px 18px;
  }

  .calc-results-title {
    font-size: 18px;
  }

  .calc-stat__value {
    font-size: 32px;
  }

  .potential-card {
    padding: 20px 18px;
  }

  .calc-mini-cta {
    padding: 24px 18px;
  }

  .calc-tip {
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOME — HERO v2  (viewport-filling two-column)
═══════════════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  /* body already has padding-top:78px for navbar, so subtract it */
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #131008 0%, #0f0d0b 50%, #0a0805 100%);
  overflow: hidden;
  padding: 40px 0;
}

/* ── Background layers ─────────────────────────────────────── */
.hero-v2__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(182,151,56,.18) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .55;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
}

.hero-v2__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.hero-v2__glow--l {
  width: 540px;
  height: 540px;
  top: -80px;
  left: -140px;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, transparent 70%);
}

.hero-v2__glow--r {
  width: 620px;
  height: 620px;
  bottom: -120px;
  right: -160px;
  background: radial-gradient(circle, rgba(182,151,56,.18) 0%, transparent 70%);
}

.hero-v2__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(182,151,56,.18) 30%, rgba(182,151,56,.18) 70%, transparent);
  pointer-events: none;
}

/* ── Two-column wrapper ────────────────────────────────────── */
.hero-v2__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* ── LEFT — Copy ───────────────────────────────────────────── */
.hero-v2__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Animated badge */
.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(182,151,56,.1);
  border: 1px solid rgba(182,151,56,.28);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-v2__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182,151,56,.6); }
  50%       { box-shadow: 0 0 0 5px rgba(182,151,56,0); }
}

/* Heading */
.hero-v2__h1 {
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.12;
  letter-spacing: -.5px;
  margin: 0 0 16px;
}

.hero-v2__highlight {
  background: linear-gradient(120deg, #fce080 0%, var(--primary) 55%, #9a7a30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2__h1-sub {
  color: rgba(255,255,255,.55);
  font-weight: 700;
}

/* Lead */
.hero-v2__lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}

/* CTA buttons */
.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-v2__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--primary);
  color: #0a0805;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(182,151,56,.35);
}

.hero-v2__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(182,151,56,.45);
  color: #0a0805;
}

.hero-v2__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}

.hero-v2__btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(182,151,56,.06);
}

/* Trust row */
.hero-v2__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-v2__trust .fa-circle-check {
  color: var(--primary);
  margin-right: 5px;
}

/* ── RIGHT — Visual ────────────────────────────────────────── */
.hero-v2__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* cap height so image never pushes out of viewport */
  max-height: calc(100vh - 86px - 80px);
}

.hero-v2__img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}

.hero-v2__img {
  width: 100%;
  /* hard cap: never taller than remaining viewport */
  max-height: calc(100vh - 86px - 80px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.7));
  display: block;
}

.hero-v2__img-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 70px;
  background: radial-gradient(ellipse, rgba(182,151,56,.5) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

/* ── Floating stat cards ───────────────────────────────────── */
.hero-v2__stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(16,14,10,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(182,151,56,.25);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 3;
  white-space: nowrap;
  animation: hero-float 4s ease-in-out infinite;
}

.hero-v2__stat:nth-child(odd) {
  animation-delay: -2s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-v2__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(182,151,56,.18);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}

.hero-v2__stat strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.hero-v2__stat span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .2px;
}

/* stat positions */
.hero-v2__stat--tl { top: 6%;  left: -8%; }
.hero-v2__stat--br { bottom: 12%; right: -6%; }
.hero-v2__stat--ml { top: 42%; left: -12%; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-v2 {
    min-height: unset;
    padding: 36px 0 48px;
  }

  .hero-v2__wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-v2__badge { margin-left: auto; margin-right: auto; }
  .hero-v2__lead  { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-v2__actions { justify-content: center; }
  .hero-v2__trust   { justify-content: center; }
  .hero-v2__line    { display: none; }

  .hero-v2__visual {
    max-height: 380px;
  }

  .hero-v2__img {
    max-height: 340px;
  }

  .hero-v2__stat--ml { display: none; }
  .hero-v2__stat--tl { top: 2%;  left: 1%; }
  .hero-v2__stat--br { bottom: 2%; right: 1%; }
}

@media (max-width: 575px) {
  .hero-v2__h1 { font-size: 28px; }

  .hero-v2__btn-primary,
  .hero-v2__btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-v2__visual  { max-height: 280px; }
  .hero-v2__img     { max-height: 260px; }

  .hero-v2__stat {
    padding: 8px 12px;
    border-radius: 10px;
  }

  .hero-v2__stat strong { font-size: 13px; }
  .hero-v2__stat span   { font-size: 10px; }
  .hero-v2__stat--tl { top: 2%; left: 0; }
  .hero-v2__stat--br { bottom: 2%; right: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   HOME — WHY PARTNER WITH US
═══════════════════════════════════════════════════════════════ */
.home-why-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.1) 0%, transparent 55%);
}

.home-why-card {
  background: linear-gradient(160deg, rgba(182,151,56,.22) 0%, #13110e 65%);
  border: 1px solid rgba(182,151,56,.38);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(182,151,56,.15), 0 2px 12px rgba(0,0,0,.5), inset 0 1px 0 rgba(182,151,56,.18);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.home-why-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,151,56,.55), rgba(255,255,255,.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .6;
  transition: opacity .25s;
}

.home-why-card:hover {
  border-color: rgba(182,151,56,.6);
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(182,151,56,.22), 0 4px 16px rgba(0,0,0,.5);
}

.home-why-card:hover::before {
  opacity: 1;
}

.home-why-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.28) 0%, rgba(182,151,56,.06) 70%);
  border: 1px solid rgba(182,151,56,.25);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 18px;
}

.home-why-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.35;
}

.home-why-card__text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — TARGET LOCATIONS
═══════════════════════════════════════════════════════════════ */
.home-locations-section {
  background: radial-gradient(circle at 80% 50%, rgba(182,151,56,.08) 0%, transparent 50%);
}

.home-locations-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
}

.home-location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  cursor: default;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}

.home-location-card:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.home-location-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.22);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
}

.home-location-card__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .2px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — WAREHOUSE
═══════════════════════════════════════════════════════════════ */
.home-warehouse-section {
  background: radial-gradient(circle at 20% 60%, rgba(182,151,56,.07) 0%, transparent 50%);
}

.home-warehouse-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

/* Video side */
.home-warehouse-video {
  position: relative;
  height: 100%;
  min-height: 320px;
  background: #0a0805;
  overflow: hidden;
}

.home-warehouse-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.home-warehouse-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  cursor: pointer;
}

.home-warehouse-video__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #f1d077);
  border: none;
  color: #0b0907;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(182,151,56,.55);
  transition: transform .2s, box-shadow .2s;
}

.home-warehouse-video__play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 50px rgba(182,151,56,.7);
}

/* Content side */
.home-warehouse-content {
  padding: 40px 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-warehouse-content__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.22);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 20px;
}

.home-warehouse-content__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 14px;
}

.home-warehouse-content__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.home-warehouse-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-warehouse-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.home-warehouse-list .fa-circle-check {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — PROCESS SECTION
═══════════════════════════════════════════════════════════════ */
.home-process-section {
  background: #0e0c08;
  position: relative;
  overflow: hidden;
}

.home-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%,   rgba(182,151,56,.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%,  rgba(182,151,56,.07) 0%, transparent 60%);
  pointer-events: none;
}

.home-process-section .section-heading {
  position: relative;
  z-index: 1;
}

.home-process-section .process-steps {
  position: relative;
  z-index: 1;
}

.home-process-section .process-step__ring {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(182,151,56,.5);
  background: linear-gradient(145deg, rgba(182,151,56,.18) 0%, rgba(10,8,5,.9) 70%);
  box-shadow: 0 0 0 1px rgba(182,151,56,.08), 0 18px 44px rgba(0,0,0,.55);
}

.home-process-section .process-step__ring--gold {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(182,151,56,.38) 0%, rgba(10,8,5,.9) 70%);
  box-shadow: 0 0 0 1px rgba(182,151,56,.2), 0 18px 48px rgba(182,151,56,.28);
}

.home-process-section .process-step__num {
  font-size: 26px;
}

/* ═══════════════════════════════════════════════════════════════
   BECOME A PARTNER PAGE
═══════════════════════════════════════════════════════════════ */
.bp-main-section {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(182,151,56,.07) 0%, transparent 60%);
}

/* Benefit list */
.bp-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bp-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bp-benefit-list__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(182,151,56,.12);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 13px;
  margin-top: 2px;
}

.bp-benefit-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2px;
}

.bp-benefit-list li p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Stat strip */
.bp-stat-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 14px;
}

.bp-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bp-stat__val {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.bp-stat__lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .3px;
}

.bp-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--card-border);
  flex-shrink: 0;
}

/* Privacy note */
.bp-form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* Business type cards */
.bp-types-section {
  background: #0e0c08;
}

.bp-type-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 16px 20px;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}

.bp-type-card:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.bp-type-card--active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(182,151,56,.15), 0 18px 40px rgba(182,151,56,.18);
}

.bp-type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
  margin: 0 auto 14px;
}

.bp-type-card__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — BECOME A PARTNER BAR
═══════════════════════════════════════════════════════════════ */
.home-partner-section {
  padding: 0 0 70px;
}

.home-partner-bar {
  position: relative;
  background: linear-gradient(120deg, rgba(182,151,56,.25) 0%, rgba(182,151,56,.15) 50%, rgba(26,23,18,.95) 100%);
  border: 1px solid rgba(182,151,56,.35);
  border-radius: 20px;
  padding: 40px 44px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.home-partner-bar__glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(182,151,56,.35) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.home-partner-bar__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.home-partner-bar__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 6px;
}

.home-partner-bar__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.home-partner-form {
  width: 100%;
}

.home-partner-input {
  width: 100%;
  background: rgba(10,8,5,.55);
  border: 1px solid rgba(182,151,56,.3);
  border-radius: 10px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.home-partner-input::placeholder {
  color: rgba(201,195,184,.35);
}

.home-partner-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(182,151,56,.15);
}

.home-partner-submit {
  height: 100%;
  padding: 13px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
}

/* ── Home page responsive ── */
@media (max-width: 991px) {
  .home-warehouse-content {
    padding: 28px 26px;
  }

  .home-partner-bar {
    padding: 28px 26px;
  }
}

@media (max-width: 575px) {

  .home-warehouse-video {
    min-height: 220px;
  }

  .home-warehouse-video__player {
    min-height: 220px;
  }

  .home-warehouse-content {
    padding: 22px 20px;
  }

  .home-partner-bar {
    padding: 24px 20px;
  }

  .home-location-card {
    padding: 18px 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GAMES — HERO "CUSTOMERS LOVE" SECTION
═══════════════════════════════════════════════════════════════ */
.games-hero-section {
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(182,151,56,.1) 0%, transparent 60%);
}

.games-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1608 0%, #0e0c08 100%);
  border: 1px solid rgba(182,151,56,.25);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 32px 72px rgba(0,0,0,.55), inset 0 1px 0 rgba(182,151,56,.15);
}

.games-hero-visual__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(182,151,56,.2) 0%, transparent 60%),
    radial-gradient(circle, rgba(182,151,56,.12) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px;
  opacity: .8;
}

.games-hero-visual__glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(182,151,56,.55) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.games-hero-visual__img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7));
}

.games-hero-heading {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 16px;
}

.games-hero-heading__gold {
  background: linear-gradient(120deg, #fce080, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-hero-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 500px;
}

.games-hero-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.games-hero-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.games-hero-point .fa-circle-check {
  color: var(--primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   GAMES & FEATURES — FEATURED SERIES CARDS
═══════════════════════════════════════════════════════════════ */
.games-section {
  background: radial-gradient(circle at 20% 20%, rgba(182,151,56,.09) 0%, transparent 45%);
}

.section-heading-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Tag pill */
.games-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d077, var(--primary));
  color: #0b0907;
}

/* Featured horizontal card */
.games-feature-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transition: border-color .25s, box-shadow .25s;
}

.games-feature-card:hover {
  border-color: rgba(182,151,56,.38);
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
}

.games-feature-card--reverse {
  flex-direction: row-reverse;
}

/* Image block */
.games-feature-card__images {
  flex: 0 0 340px;
  position: relative;
  background: linear-gradient(145deg, #1a1410 0%, #0d0a06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px;
  overflow: hidden;
  min-height: 340px;
}

.games-feature-card__images::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(182,151,56,.18) 0%, transparent 65%);
}

.games-feature-card__img-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(182,151,56,.35) 0%, transparent 70%);
  filter: blur(22px);
}

.games-feature-card__img-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.games-feature-card__img-main img,
.games-feature-card__img-secondary img {
  max-height: 280px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
  display: block;
}

.games-feature-card__img-secondary {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.games-feature-card__img-secondary img {
  max-height: 220px;
  opacity: .85;
}

.img-fallback {
  min-height: 220px;
  background: linear-gradient(145deg, #201c14, #130f08);
}

/* Content block */
.games-feature-card__content {
  flex: 1;
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.games-feature-card__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.2;
}

.games-feature-card__subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: .2px;
}

.games-feature-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.games-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.games-feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.games-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   GAMES & FEATURES — LIGHTNING SERIES SHOWCASE
═══════════════════════════════════════════════════════════════ */
.games-lightning-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.08) 0%, transparent 55%);
}

.games-model-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.games-model-card:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0,0,0,.55);
}

.games-model-card__img-wrap {
  position: relative;
  background: linear-gradient(145deg, #1a1410, #0d0a06);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 20px 0;
  min-height: 220px;
  overflow: hidden;
}

.games-model-card__img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(182,151,56,.18) 0%, transparent 65%);
}

.games-model-card__img-wrap img {
  position: relative;
  z-index: 1;
  max-height: 190px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.65));
}

.games-model-card__img-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(182,151,56,.3) 0%, transparent 70%);
  filter: blur(18px);
}

.games-model-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.games-model-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.35;
}

.games-model-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.games-model-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.games-model-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   GAMES & FEATURES — STATS
═══════════════════════════════════════════════════════════════ */
.games-stats-section {
  background: radial-gradient(circle at 50% 50%, rgba(182,151,56,.07) 0%, transparent 60%);
}

.games-stat-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.games-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f1d077);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transition: opacity .25s;
}

.games-stat-card:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,.5);
}

.games-stat-card:hover::after {
  opacity: 1;
}

.games-stat-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.2);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 18px;
  margin: 0 auto 16px;
}

.games-stat-card__value {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}

.games-stat-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   GAMES & FEATURES — WHY CUSTOMERS WILL LOVE
═══════════════════════════════════════════════════════════════ */
.games-why-section {
  padding-bottom: 80px;
}

.games-why-card {
  position: relative;
  background: linear-gradient(140deg, rgba(182,151,56,.14) 0%, rgba(26,23,18,.9) 60%);
  border: 1px solid rgba(182,151,56,.28);
  border-radius: 22px;
  padding: 50px 48px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.games-why-card__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(182,151,56,.3) 0%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}

.games-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.games-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.games-why-list__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(182,151,56,.15);
  border: 1px solid rgba(182,151,56,.28);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 10px;
  margin-top: 1px;
}

/* ── Games responsive ── */
@media (max-width: 1100px) {
  .games-feature-card__images {
    flex: 0 0 280px;
  }

  .games-feature-card__content {
    padding: 28px 28px;
  }
}

@media (max-width: 991px) {
  .games-feature-card,
  .games-feature-card--reverse {
    flex-direction: column;
  }

  .games-feature-card__images {
    flex: none;
    min-height: 240px;
    padding: 24px;
  }

  .games-feature-card__img-main img {
    max-height: 200px;
  }

  .games-feature-card__img-secondary img {
    max-height: 160px;
  }

  .games-feature-card__content {
    padding: 24px 24px 28px;
  }

  .games-why-card {
    padding: 36px 28px;
  }
}

@media (max-width: 575px) {
  .games-feature-card__images {
    min-height: 200px;
    padding: 20px;
  }

  .games-feature-card__img-main img {
    max-height: 160px;
  }

  .games-feature-card__img-secondary {
    display: none;
  }

  .games-feature-card__content {
    padding: 20px;
  }

  .games-stat-card {
    padding: 22px 16px;
  }

  .games-why-card {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT US — INFO CARDS
═══════════════════════════════════════════════════════════════ */
.contact-info-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.1) 0%, transparent 55%);
}

.contact-info-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,151,56,.5), rgba(255,255,255,.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s;
}

.contact-info-card:hover,
.contact-info-card--featured {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0,0,0,.5);
}

.contact-info-card:hover::before,
.contact-info-card--featured::before {
  opacity: 1;
}

.contact-info-card--featured {
  background: linear-gradient(160deg, rgba(182,151,56,.15) 0%, #13110e 60%);
}

.contact-info-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.28) 0%, rgba(182,151,56,.06) 70%);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 24px;
  margin: 0 auto 18px;
}

.contact-info-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info-card__value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.5;
  transition: color .2s;
}

.contact-info-card__value:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT US — OUR MISSION
═══════════════════════════════════════════════════════════════ */
.contact-mission-section {
  background: radial-gradient(circle at 80% 50%, rgba(182,151,56,.07) 0%, transparent 50%);
}

.contact-mission-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.contact-mission-card:hover {
  border-color: rgba(182,151,56,.35);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
}

.contact-mission-card--featured {
  background: linear-gradient(160deg, rgba(182,151,56,.14) 0%, #13110e 65%);
  border-color: rgba(182,151,56,.28);
}

.contact-mission-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.25) 0%, rgba(182,151,56,.06) 70%);
  border: 1px solid rgba(182,151,56,.25);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 18px;
}

.contact-mission-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact-mission-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT US — FORM
═══════════════════════════════════════════════════════════════ */
.contact-form-section {
  background: radial-gradient(circle at 30% 60%, rgba(182,151,56,.07) 0%, transparent 50%);
}

.contact-form-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.contact-form-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(182,151,56,.2), rgba(182,151,56,.06));
  border-bottom: 1px solid var(--card-border);
}

.contact-form-card__head-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.3) 0%, rgba(182,151,56,.07) 70%);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 20px;
}

.contact-form-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin: 0 0 4px;
}

.contact-form-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Success banner */
.contact-success-msg {
  display: flex;
  align-items: center;
  margin: 28px 36px 0;
  padding: 16px 20px;
  background: rgba(182,151,56,.12);
  border: 1px solid rgba(182,151,56,.35);
  border-radius: 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

/* Form body */
.contact-form {
  padding: 32px 36px 36px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .2px;
  margin: 0;
}

.contact-form__label span {
  color: var(--primary);
}

.contact-form__input {
  background: #1a1712;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}

.contact-form__input::placeholder {
  color: rgba(201,195,184,.35);
}

.contact-form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(182,151,56,.14);
}

.contact-form__textarea {
  min-height: 130px;
}

.contact-form__submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: .3px;
}

/* ── Contact responsive ── */
@media (max-width: 991px) {
  .contact-form-card__head {
    padding: 22px 24px;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .contact-info-card {
    padding: 24px 20px;
  }

  .contact-form-card__head {
    padding: 18px 20px;
    gap: 12px;
  }

  .contact-form-card__title {
    font-size: 18px;
  }

  .contact-form {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INSTALLATION PROCESS — TIMELINE STEPS
═══════════════════════════════════════════════════════════════ */
.ip-timeline-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.09) 0%, transparent 55%);
}

.ip-step-card {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.ip-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--primary), #f1d077);
  opacity: 0;
  transition: opacity .25s;
}

.ip-step-card:hover {
  border-color: rgba(182,151,56,.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0,0,0,.5);
}

.ip-step-card:hover::before {
  opacity: 1;
}

/* Colour accent variants — top border glow */
.step-color-1 { --step-accent: rgba(182,151,56,1);   }
.step-color-2 { --step-accent: rgba(182,151,56,.85);  }
.step-color-3 { --step-accent: rgba(241,208,119,1);   }
.step-color-4 { --step-accent: rgba(182,151,56,.9);   }
.step-color-5 { --step-accent: rgba(241,208,119,.85); }
.step-color-6 { --step-accent: rgba(182,151,56,.75);  }

.ip-step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ip-step-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.28);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
}

.ip-step-card__day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(182,151,56,.1);
  border: 1px solid rgba(182,151,56,.25);
  padding: 5px 12px;
  border-radius: 999px;
}

.ip-step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.3;
}

.ip-step-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ip-step-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.ip-step-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   INSTALLATION PROCESS — WHAT WE/YOU PROVIDE
═══════════════════════════════════════════════════════════════ */
.ip-handle-section {
  background: radial-gradient(circle at 80% 50%, rgba(182,151,56,.07) 0%, transparent 50%);
}

/* Grid with centre divider */
.ip-handle-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;   /* columns all same height */
}

.ip-handle-col {
  padding: 0 24px;
}

/* Vertical divider — full height */
.ip-handle-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 0;
}

.ip-handle-divider__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(182,151,56,.55) 8%,
    rgba(182,151,56,.55) 92%,
    transparent 100%
  );
  border-radius: 2px;
}

.ip-handle-divider__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(182,151,56,.15);
  border: 1px solid rgba(182,151,56,.45);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin: 14px 0;
  box-shadow: 0 0 0 6px rgba(182,151,56,.07), 0 4px 12px rgba(0,0,0,.4);
}

/* Col headers */
.ip-col-head__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ip-col-head__icon--light {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-muted);
}

/* Mobile: stack columns, hide vertical divider */
@media (max-width: 767px) {
  .ip-handle-grid {
    grid-template-columns: 1fr;
  }

  .ip-handle-col {
    padding: 0;
  }

  .ip-handle-divider {
    flex-direction: row;
    padding: 24px 0;
    gap: 0;
  }

  .ip-handle-divider__line {
    flex: 1;
    min-height: 1px;
    height: 1px;
    width: auto;
    background: linear-gradient(90deg, transparent, rgba(182,151,56,.4), rgba(182,151,56,.4), transparent);
  }
}

.ip-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.ip-col-head--gold {
  background: linear-gradient(135deg, rgba(182,151,56,.22), rgba(182,151,56,.08));
  border: 1px solid rgba(182,151,56,.3);
  color: var(--primary);
}

.ip-col-head--light {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--card-border);
  color: var(--text-light);
}

.ip-provide-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 14px;
  padding: 20px 20px;
  transition: border-color .2s, transform .2s;
}

.ip-provide-card:hover {
  transform: translateX(4px);
}

.ip-provide-card--dark {
  background: #13110e;
  border: 1px solid var(--card-border);
}

.ip-provide-card--dark:hover {
  border-color: rgba(182,151,56,.35);
}

.ip-provide-card--light {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
}

.ip-provide-card--light:hover {
  border-color: rgba(255,255,255,.14);
}

.ip-provide-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(182,151,56,.22) 0%, rgba(182,151,56,.05) 70%);
  border: 1px solid rgba(182,151,56,.2);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 18px;
}

.ip-provide-card__icon--light {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-muted);
}

.ip-provide-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.ip-provide-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Installation responsive ── */
@media (max-width: 575px) {
  .ip-step-card {
    padding: 22px 18px;
  }

  .ip-step-card__icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .ip-col-head {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — ACCORDION
═══════════════════════════════════════════════════════════════ */
.faq-section {
  background: radial-gradient(circle at 50% 0%, rgba(182,151,56,.09) 0%, transparent 55%);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #13110e;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item--open,
.faq-item:has(.faq-question:not(.collapsed)) {
  border-color: rgba(182,151,56,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}

.faq-question:not(.collapsed) {
  color: var(--primary);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(182,151,56,.35);
  background: rgba(182,151,56,.08);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 12px;
  transition: transform .3s, background .2s;
}

.faq-question:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
  background: rgba(182,151,56,.18);
  border-color: var(--primary);
}

.faq-answer {
  padding: 0 24px 22px 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
  border-top: 1px solid var(--card-border);
  padding-top: 18px;
  margin: 0 24px;
  padding-left: 0;
  padding-right: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — WHY DIFFERENT SECTION
═══════════════════════════════════════════════════════════════ */
.faq-why-section {
  background: radial-gradient(circle at 80% 50%, rgba(182,151,56,.08) 0%, transparent 50%);
}

.faq-why-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 14px;
}

.faq-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-why-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-why-list__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(182,151,56,.15);
  border: 1px solid rgba(182,151,56,.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 11px;
  margin-top: 1px;
}

/* Machine visual */
.faq-machine-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-machine-visual__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,151,56,.28) 0%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}

.faq-machine-visual__img {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
}

.faq-machine-visual__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.65));
}

/* ═══════════════════════════════════════════════════════════════
   BLOG RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .blogs-success-section {
    padding: 70px 0;
  }

  .blog-detail-featured__img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .blog-card-v2__thumb {
    height: 180px;
  }

  .blog-detail-featured__img {
    height: 220px;
  }

  .blog-highlights {
    padding: 22px 18px;
  }

  .blog-highlights__title {
    font-size: 18px;
  }

  .blogs-success-quote {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-answer {
    margin: 0 18px;
    padding-bottom: 18px;
  }

  .faq-why-title {
    font-size: 22px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════════════════════ */
.notfound-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.notfound-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.notfound-glow--tl {
  width: 420px;
  height: 420px;
  top: -100px;
  left: -120px;
  background: radial-gradient(circle, rgba(182,151,56,.18) 0%, transparent 70%);
}

.notfound-glow--br {
  width: 360px;
  height: 360px;
  bottom: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(182,151,56,.12) 0%, transparent 70%);
}

.notfound-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Large 404 digits */
.notfound-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #f1d077 0%, var(--primary) 50%, #8a6e28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  letter-spacing: -4px;
  user-select: none;
}

.notfound-code__zero {
  color: transparent;
  background: linear-gradient(135deg, #f1d077, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: .72em;
  display: flex;
  align-items: center;
}

.notfound-heading {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}

.notfound-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}

.notfound-btn {
  min-width: 180px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
}

.notfound-btn-outline {
  min-width: 180px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.notfound-btn-outline:hover {
  background: var(--primary);
  color: #0a0805;
}

/* Quick links row */
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  font-size: 13px;
}

.notfound-links__label {
  color: var(--text-muted);
  font-weight: 600;
}

.notfound-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}

.notfound-links a:hover {
  opacity: .75;
}

@media (max-width: 575px) {
  .notfound-code {
    letter-spacing: -2px;
  }

  .notfound-btn,
  .notfound-btn-outline {
    width: 100%;
    min-width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   360px MICRO-SCREEN FIXES
═══════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  body { font-size: 14px; }

  .hero-v2__h1    { font-size: 24px; letter-spacing: -.3px; }
  .hero-v2__badge { font-size: 9.5px; padding: 5px 10px; }
  .hero-v2__lead  { font-size: 13px; }
  .hero-v2__stat  { padding: 6px 10px; gap: 8px; }
  .hero-v2__stat-icon { width: 28px; height: 28px; font-size: 12px; }
  .hero-v2__stat strong { font-size: 12px; }
  .hero-v2__stat span   { font-size: 9px; }

  .page-hero-title   { font-size: 24px; }
  .page-hero-subtitle { font-size: 13px; }

  .process-step__ring { width: 80px; height: 80px; }
  .process-step__num  { font-size: 18px; }
  .process-step__label { font-size: 9px; }
  .process-step__connector { max-width: 30px; }

  .home-why-card  { padding: 20px 16px; }
  .calc-card      { padding: 20px 16px; }
  .contact-form   { padding: 20px 16px; }

  .about-cta-heading { font-size: 24px; }

  .section { padding: 48px 0; }

  .bp-stat-strip { flex-direction: column; gap: 12px; }
  .bp-stat-divider { width: 40px; height: 1px; }

  .hero-v2__btn-primary,
  .hero-v2__btn-ghost { font-size: 13px; padding: 11px 18px; }
}


/* ═══════════════════════════════════════════════════════════════
   FORM VALIDATION — fields, feedback, spinner, toasts
═══════════════════════════════════════════════════════════════ */

/* Field state classes intentionally suppressed — toast-only UX */

/* Spinner inside button */
.gca-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gca-spin .7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes gca-spin {
  to { transform: rotate(360deg); }
}

.gca-btn--loading {
  opacity: .85;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Toast container ─────────────────────────────────────────── */
#gca-toast-wrap {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: min(380px, calc(100vw - 32px));
}

/* Individual toast */
.gca-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  background: #1a1712;
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  pointer-events: all;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transition: opacity .28s ease, transform .28s ease;
  position: relative;
}

.gca-toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gca-toast--success {
  background: #0f1f14;
  border-color: rgba(76,175,125,.4);
}

.gca-toast--error {
  background: #1f0f0f;
  border-color: rgba(224,92,92,.4);
}

.gca-toast--info {
  background: #111420;
  border-color: rgba(182,151,56,.35);
}

.gca-toast__icon {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.gca-toast--success .gca-toast__icon { color: #4caf7d; }
.gca-toast--error   .gca-toast__icon { color: #e05c5c; }
.gca-toast--info    .gca-toast__icon { color: var(--primary); }

.gca-toast__msg {
  flex: 1;
  color: var(--text-light);
}

.gca-toast__close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  padding: 0 0 0 6px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .15s;
}

.gca-toast__close:hover { color: var(--text-light); }

@media (max-width: 480px) {
  #gca-toast-wrap {
    bottom: 90px;
    left: 12px;
    right: 12px;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP STICKY BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-sticky {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}

.whatsapp-sticky:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65), 0 4px 14px rgba(0,0,0,.35);
}

@media (max-width: 480px) {
  .whatsapp-sticky {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy / Compliance / Copyright)
═══════════════════════════════════════════════════════════════ */
.legal-doc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.legal-doc__effective {
  display: inline-block;
  background: rgba(182,151,56,.12);
  border: 1px solid rgba(182,151,56,.28);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.legal-doc h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}

.legal-doc h2:first-of-type {
  margin-top: 28px;
}

.legal-doc p {
  margin-bottom: 16px;
}

.legal-doc ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-doc ul li {
  margin-bottom: 6px;
}

.legal-doc address {
  font-style: normal;
  background: rgba(182,151,56,.07);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 20px 24px;
  line-height: 2;
  margin-top: 8px;
}

.legal-doc address a {
  color: var(--primary);
  text-decoration: none;
}

.legal-doc address a:hover {
  text-decoration: underline;
}

.legal-doc strong {
  color: var(--text-light);
  font-weight: 600;
}

.legal-doc a {
  color: var(--primary);
  text-decoration: none;
}

.legal-doc a:hover {
  text-decoration: underline;
}

/* Footer bottom legal links */
.footer-bottom__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom__legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}

.footer-bottom__legal a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom__legal {
    justify-content: center;
    gap: 14px;
  }
}
