/* ==========================================================================
   ABS NEXUS ENTERPRISE — Main website styles
   Brand: Golden Yellow (#F2B705) + Black (#0B0B0C)
   ========================================================================== */

:root {
  --gold: #f2b705;
  --gold-dark: #d19a00;
  --gold-light: #ffd34d;
  --black: #0b0b0c;
  --black-2: #141416;
  --black-3: #1e1e22;
  --white: #ffffff;
  --cream: #faf7ef;
  --gray: #5a5a5f;
  --gray-light: #edeae0;
  --border: #e4e0d4;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --shadow: 0 10px 30px rgba(11, 11, 12, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 11, 12, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: #26262a;
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 84px 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--black);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

p {
  color: #4a4a50;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(242, 183, 5, 0.35);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--black-2);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--gold);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--black);
  color: #cfcfd4;
  font-size: 0.82rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-tag {
  color: var(--gold);
  font-weight: 500;
}

.topbar-links {
  display: flex;
  gap: 22px;
}

.topbar-links a {
  color: #cfcfd4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-links a:hover {
  color: var(--gold);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  color: var(--black);
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--gold-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a:not(.btn) {
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #333338;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:not(.btn):hover {
  color: var(--gold-dark);
  background: var(--cream);
}

.site-nav a.active:not(.btn) {
  color: var(--gold-dark);
  background: var(--cream);
  font-weight: 600;
}

.nav-cta {
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--black);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1000px 480px at 85% -10%, rgba(242, 183, 5, 0.16), transparent 60%),
    radial-gradient(800px 420px at 8% 110%, rgba(242, 183, 5, 0.1), transparent 55%),
    var(--black);
  color: var(--white);
  padding: 110px 0 120px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.hero p.lead {
  color: #c6c6cc;
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-points {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #cfcfd4;
  font-size: 0.9rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points svg {
  flex-shrink: 0;
}

/* Hero visual: layered product cards */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  transform: rotate(-2deg);
}

.hero-mini-card {
  background: var(--black-2);
  border: 1px solid rgba(242, 183, 5, 0.28);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-lg);
}

.hero-mini-card .h-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-mini-card .h-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-mini-card .h-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 4px;
}

.hero-mini-card:nth-child(2) {
  transform: translateY(28px);
}

.hero-mini-card:nth-child(3) {
  transform: translateY(-6px);
}

.hero-mini-card:nth-child(4) {
  transform: translateY(22px);
}

.hero-ship-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(242, 183, 5, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card {
  text-align: left;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 14px;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
}

.link-arrow:hover {
  color: var(--gold);
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  background: linear-gradient(160deg, var(--cream), #f3efe3);
  height: 170px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--black);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-badge.gold {
  background: var(--gold);
  color: var(--black);
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.product-body h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
  min-height: 2.6em;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 14px;
}

.product-price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
}

.product-body .btn {
  margin-top: auto;
  padding: 10px 16px;
  font-size: 0.86rem;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--black);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  color: #b9b9c0;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
  transition: all 0.22s ease;
}

.process-step:hover {
  background: var(--black);
  border-color: var(--black);
}

.process-step .step-num {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50%;
}

.process-step p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.process-step:hover p {
  color: var(--white);
}

.process-arrow {
  display: none;
}

/* ---------- Two-col feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  position: relative;
  background: var(--black);
  border-radius: 20px;
  padding: 46px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
}

.split-media .big-emoji {
  position: relative;
  font-size: 6.5rem;
}

.check-list {
  margin: 22px 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.97rem;
  color: #3a3a40;
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--black) 0%, var(--black-2) 60%, #2a2208 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.28), transparent 65%);
  top: -160px;
  right: -120px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-inner p {
  color: #c6c6cc;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  max-width: 820px;
  margin: 0 auto;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}

.acc-head .acc-ic {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.acc-item.open .acc-ic {
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-body-inner {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: #4a4a50;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--black);
}

.form-group label .req {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--gray);
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ---------- Tables (simple) ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

table.data th,
table.data td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

table.data th {
  background: var(--cream);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

table.data tr:last-child td {
  border-bottom: none;
}

table.data tbody tr:hover td {
  background: #fdfaf0;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-gray {
  background: #ececf0;
  color: #55555c;
}

.badge-gold {
  background: rgba(242, 183, 5, 0.16);
  color: #8a6500;
}

.badge-green {
  background: rgba(39, 174, 96, 0.14);
  color: #1e8449;
}

.badge-red {
  background: rgba(192, 57, 43, 0.12);
  color: #b03a2e;
}

.badge-blue {
  background: rgba(41, 128, 185, 0.14);
  color: #2471a3;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.contact-ic {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  border-radius: 12px;
}

.contact-card h4 {
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 0.93rem;
  color: #4a4a50;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--gold-dark);
}

/* ---------- Track order ---------- */
.track-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--black);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
  color: var(--white);
}

.track-box h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.track-box p {
  color: #b9b9c0;
  margin-bottom: 26px;
}

.track-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.track-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.track-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.track-form input::placeholder {
  color: #8f8f97;
}

.track-result {
  display: none;
  margin-top: 60px;
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  position: relative;
  margin: 34px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 4%;
  right: 4%;
  height: 3px;
  background: var(--gray-light);
  z-index: 0;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 4%;
  height: 3px;
  width: 0;
  background: var(--gold);
  z-index: 1;
  transition: width 0.5s ease;
}

.tl-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.tl-dot {
  width: 33px;
  height: 33px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-light);
  font-size: 0.78rem;
  font-weight: 700;
  color: #9a9aa2;
}

.tl-step.done .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.tl-step.current .tl-dot {
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 0 0 6px rgba(242, 183, 5, 0.22);
}

.tl-step p {
  font-size: 0.66rem;
  font-weight: 600;
  color: #9a9aa2;
  line-height: 1.25;
  max-width: 90px;
  margin: 0 auto;
}

.tl-step.done p,
.tl-step.current p {
  color: var(--black);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.order-summary .os-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.order-summary .os-item .os-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

.order-summary .os-item .os-val {
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  margin-top: 4px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--black);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  transition: transform 0.35s ease;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  transform: translate(-50%, 0);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #b9b9c0;
  padding: 70px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}

.site-footer .brand-name {
  color: var(--white);
}

.site-footer p {
  color: #9d9da5;
  font-size: 0.92rem;
  margin: 16px 0 20px;
}

.footer-grid h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul a {
  color: #b9b9c0;
  font-size: 0.92rem;
}

.footer-grid ul a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  color: #b9b9c0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.84rem;
  color: #84848c;
  text-align: center;
}

.footer-bottom a {
  color: var(--gold);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(900px 400px at 90% -20%, rgba(242, 183, 5, 0.18), transparent 60%), var(--black);
  color: var(--white);
  padding: 76px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  color: #b9b9c0;
  font-size: 0.88rem;
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

/* ---------- Utilities ---------- */
.bg-cream {
  background: var(--cream);
}

.bg-black-section {
  background: var(--black);
}

.bg-black-section h2,
.bg-black-section h3 {
  color: var(--white);
}

.bg-black-section .kicker {
  color: var(--gold);
}

.bg-black-section p {
  color: #b9b9c0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 24px;
}

.mt-3 {
  margin-top: 36px;
}

.mb-2 {
  margin-bottom: 24px;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Floating WhatsApp Button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: #06281A;
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 88px 22px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 70;
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }

  .site-nav a:not(.btn) {
    color: #d5d5db;
    padding: 13px 14px;
    font-size: 1rem;
  }

  .site-nav a:not(.btn):hover,
  .site-nav a.active:not(.btn) {
    color: var(--gold);
    background: rgba(242, 183, 5, 0.08);
  }

  .nav-cta {
    margin: 12px 0 0;
  }

  .nav-toggle {
    display: block;
    z-index: 80;
    position: relative;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .timeline::before,
  .timeline::after {
    display: none;
  }

  .tl-step {
    display: flex;
    gap: 14px;
    align-items: center;
    text-align: left;
    padding: 8px 0;
  }

  .tl-dot {
    margin: 0;
    flex-shrink: 0;
  }

  .tl-step p {
    margin: 0;
    max-width: none;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .topbar-links {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .track-form {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 76px 0 96px;
  }
}
