/* =====================================================
   GLOBAL DESIGN SYSTEM — BOLD / HARD UI
===================================================== */

:root {
  /* ================= BRAND ================= */
  --primary: #ffb703; /* ATTENTION / POWER */
  --primary-dark: #e09f00;

  --accent: #00e5ff; /* CYAN STRIKE */
  --danger: #e11d48;
  --success: #16a34a;

  /* ================= BASE ================= */
  --bg: #0b0b0b; /* DEEP BLACK */
  --surface: #121212;
  --card: #161616;
  --border: #262626;

  /* ================= TEXT ================= */
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  /* ================= RADII ================= */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* ================= SHADOWS ================= */
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 40px 80px rgba(0, 0, 0, 0.85);

  /* ================= MOTION ================= */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

.container-wide {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 15px;
}

strong {
  color: var(--text);
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =====================================================
   BUTTONS — HARD STYLE
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* OUTLINE */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: #000;
}

/* DANGER */
.btn-danger {
  background: var(--danger);
  color: #fff;
}

/* =====================================================
   CARDS — SHARP
===================================================== */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   FORMS — INDUSTRIAL
===================================================== */

input,
textarea,
select {
  width: 100%;
  background: #0f0f0f;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;
  border-radius: var(--radius-xs);
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: #0b0b0b;
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.w-100 {
  width: 100%;
}

/* =====================================================
   DIVIDERS / EMPHASIS
===================================================== */

.hr-bold {
  height: 4px;
  width: 60px;
  background: var(--primary);
  margin: 20px 0;
}

a {
  text-decoration: none !important;
}

.text-white {
  color: white !important;
}

.text-black {
  color: black !important;
}

/* =====================================================
   HEADER — HARD / ENTERPRISE
===================================================== */

.header-soft {
  background: #000000;
  border-bottom: 2px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-soft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* ================= LOGO ================= */

.logo-soft img {
  height: 60px;
  width: auto;
  display: block;
}

/* ================= NAV (DESKTOP) ================= */

.nav-soft {
  display: flex;
  gap: 34px;
}

.nav-soft a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 6px 0;
}

/* HARD UNDERLINE EFFECT */
.nav-soft a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-soft a:hover::after {
  width: 100%;
}

/* ================= ACTIONS ================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ICON BUTTONS — HARD */
.icon-btn {
  width: 42px;
  height: 42px;
  border: 2px solid #1f1f1f;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.icon-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

/* CART BADGE */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 999px;
}

/* ================= SEARCH ================= */

.search-soft {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #1f1f1f;
  padding: 8px 14px;
  background: #0b0b0b;
}

.search-soft i {
  color: var(--primary);
  font-size: 14px;
}

.search-soft input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  width: 180px;
}

.search-soft input::placeholder {
  color: #6b7280;
}

.search-soft input:focus {
  outline: none;
}

/* ================= MENU TOGGLE ================= */

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 2px solid #1f1f1f;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

/* =====================================================
   MOBILE MENU — FULLSCREEN HARD PANEL
===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 2000;
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.mobile-menu-header img {
  height: 48px;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;
  border: 2px solid #1f1f1f;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
}

/* NAV */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav a {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  width: fit-content;
}

/* SLASH EFFECT */
.mobile-nav a::before {
  content: "/";
  margin-right: 10px;
  color: var(--primary);
  font-weight: 900;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .nav-soft {
    display: none;
  }

  .search-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* =====================================================
   HERO — HARD BUSINESS IMAGE HERO
===================================================== */

.hero-soft {
  background: #000;
  padding: 140px 0 100px;
  border-bottom: 2px solid #1f1f1f;
}

.hero-soft-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================= CONTENT ================= */

.hero-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

.hero-heading {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-heading span {
  color: var(--primary);
}

.hero-text {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.75;
  color: #9ca3af;
  margin-bottom: 36px;
}

/* ACTIONS */

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

/* HIGHLIGHTS */

.hero-highlights {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.hero-highlight i {
  color: var(--primary);
  font-size: 14px;
}

/* ================= VISUAL ================= */

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  background: #0b0b0b;
  border: 2px solid #1f1f1f;
  padding: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.9);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid var(--primary);
  opacity: 0.2;
}

.hero-visual-card img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-soft-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero-soft {
    padding: 110px 0 80px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   FEATURED PRODUCTS — HARD PREMIUM
===================================================== */

.featured-hard {
  background: #ffffff;
  padding: 120px 0;
  border-top: 2px solid #e5e7eb;
}

.featured-hard-head {
  text-align: center;
  margin-bottom: 70px;
}

.featured-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.featured-hard-head h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #020617;
}

.featured-hard-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* ================= GRID ================= */

.featured-hard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.featured-product-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.featured-product-card:hover {
  transform: translateY(-6px);
  border-color: #020617;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* ================= IMAGE ================= */

.featured-product-image {
  position: relative;
  padding: 26px;
  border-bottom: 2px solid #f1f5f9;
  background: #ffffff;
}

.featured-product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* STOCK LABEL */

.stock-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stock-label.in {
  background: #16a34a;
  color: #ffffff;
}

.stock-label.out {
  background: #fee2e2;
  color: #7f1d1d;
}

/* ================= INFO ================= */

.featured-product-info {
  padding: 22px;
  flex-grow: 1;
}

.featured-product-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #020617;
}

/* RATING */

.featured-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 12px;
  color: #f59e0b;
}

.featured-rating span {
  color: #64748b;
  font-weight: 600;
}

/* DESCRIPTION */

.featured-product-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* ================= FOOTER ================= */

.featured-product-footer {
  padding: 18px 22px;
  border-top: 2px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-product-footer strong {
  font-size: 18px;
  font-weight: 800;
  color: #020617;
}

.view-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

/* ================= OUT OF STOCK ================= */

.featured-product-card.out {
  opacity: 0.75;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .featured-hard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-hard {
    padding: 90px 0;
  }

  .featured-hard-head h2 {
    font-size: 32px;
  }

  .featured-hard-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US — HARD BUSINESS STATEMENT
===================================================== */

.about-hard {
  background: #0b0b0b;
  padding: 140px 0;
  border-top: 2px solid #1f1f1f;
}

.about-hard-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

/* ================= VISUAL ================= */

.about-hard-visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #1f1f1f;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.9);
}

/* ================= CONTENT ================= */

.about-hard-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-hard-content h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 26px;
  color: #ffffff;
}

.about-hard-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #9ca3af;
  margin-bottom: 18px;
  max-width: 560px;
}

/* ================= ACTIONS ================= */

.about-hard-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-hard-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-hard {
    padding: 100px 0;
  }

  .about-hard-content h2 {
    font-size: 32px;
  }

  .about-hard-actions {
    flex-direction: column;
  }

  .about-hard-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   CATEGORIES — HARD USE-CASE GRID
===================================================== */

.categories-hard {
  background: #ffffff;
  padding: 130px 0;
  border-top: 2px solid #e5e7eb;
}

.categories-hard-head {
  text-align: center;
  margin-bottom: 80px;
}

.categories-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.categories-hard-head h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #020617;
}

.categories-hard-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* ================= GRID ================= */

.categories-hard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */

.category-hard-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  padding: 40px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.category-hard-card:hover {
  transform: translateY(-8px);
  border-color: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

/* ================= ICON ================= */

.category-hard-icon {
  width: 58px;
  height: 58px;
  border: 2px solid #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  color: #020617;
}

/* ================= TEXT ================= */

.category-hard-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #020617;
}

.category-hard-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: auto;
}

/* ================= LINK ================= */

.category-hard-link {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .categories-hard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-hard {
    padding: 90px 0;
  }

  .categories-hard-head h2 {
    font-size: 32px;
  }

  .categories-hard-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   WHY CHOOSE US — HARD ENTERPRISE TRUST
===================================================== */

.why-hard {
  background: #0b0b0b;
  padding: 140px 0;
  border-top: 2px solid #1f1f1f;
}

.why-hard-head {
  text-align: center;
  margin-bottom: 90px;
}

.why-hard-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.why-hard-head h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;
}

.why-hard-head p {
  font-size: 16px;
  line-height: 1.75;
  color: #9ca3af;
}

/* ================= GRID ================= */

.why-hard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ================= CARD ================= */

.why-hard-card {
  background: #000000;
  border: 2px solid #1f1f1f;
  padding: 42px 34px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.why-hard-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
}

/* ================= ICON ================= */

.why-hard-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 22px;
  color: var(--primary);
}

/* ================= TEXT ================= */

.why-hard-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.why-hard-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #9ca3af;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .why-hard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-hard {
    padding: 100px 0;
  }

  .why-hard-head h2 {
    font-size: 32px;
  }

  .why-hard-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TESTIMONIALS — HARD PROFESSIONAL TRUST
===================================================== */

.testimonials-hard {
  background: #ffffff;
  padding: 140px 0;
  border-top: 2px solid #e5e7eb;
}

.testimonials-hard-head {
  text-align: center;
  margin-bottom: 90px;
}

.testimonials-hard-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.testimonials-hard-head h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #020617;
}

.testimonials-hard-head p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
}

/* ================= GRID ================= */

.testimonials-hard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ================= CARD ================= */

.testimonial-hard-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.testimonial-hard-card:hover {
  transform: translateY(-8px);
  border-color: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

/* ================= RATING ================= */

.testimonial-hard-rating {
  font-size: 15px;
  color: #f59e0b;
  margin-bottom: 22px;
}

/* ================= MESSAGE ================= */

.testimonial-hard-message {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
  flex-grow: 1;
}

/* ================= USER ================= */

.testimonial-hard-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-hard-avatar {
  width: 46px;
  height: 46px;
  border: 2px solid #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #020617;
}

.testimonial-hard-user strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #020617;
}

.testimonial-hard-user span {
  font-size: 13px;
  color: #64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonials-hard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-hard {
    padding: 100px 0;
  }

  .testimonials-hard-head h2 {
    font-size: 32px;
  }

  .testimonials-hard-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FOOTER — HARD ENTERPRISE
===================================================== */

.footer-hard {
  background: #000000;
  color: #ffffff;
  border-top: 2px solid #1f1f1f;
}

/* ================= TOP ================= */

.footer-hard-top {
  padding: 90px 0;
  border-bottom: 1px solid #1f1f1f;
}

.footer-hard-top-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 70px;
}

/* BRAND */

.footer-hard-brand img {
  height: 80px;
  margin-bottom: 18px;
}

.footer-hard-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: #9ca3af;
  max-width: 420px;
}

/* LINKS */

.footer-hard-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-address {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ================= BOTTOM ================= */

.footer-hard-bottom {
  padding: 36px 0 26px;
}

.footer-hard-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.footer-hard-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 6px;
}

.footer-hard-meta span {
  font-size: 13px;
  color: #9ca3af;
}

.footer-hard-copy {
  text-align: right;
  font-size: 13px;
  color: #9ca3af;
}

/* DISCLAIMER */

.footer-hard-disclaimer {
  max-width: 1100px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid #1f1f1f;
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-hard-top-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-hard-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-hard-copy {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer-hard-links {
    grid-template-columns: 1fr;
  }

  .footer-hard-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-hard-copy {
    text-align: center;
  }
}

/* =====================================================
   SHOP PAGE — HARD ENTERPRISE
===================================================== */

.shop-hard {
  background: #ffffff;
}

/* ================= HERO ================= */

.shop-hard-hero {
  background: #0b0b0b;
  padding: 140px 0 110px;
  border-bottom: 2px solid #1f1f1f;
}

.shop-hard-hero-inner {
  max-width: 900px;
}

.shop-hard-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.shop-hard-hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 14px;
  color: #ffffff;
}

.shop-hard-hero p {
  font-size: 17px;
  line-height: 1.75;
  color: #9ca3af;
  max-width: 720px;
}

.shop-hard-result {
  margin-top: 18px;
  font-size: 14px;
  color: #d1d5db;
}

/* ================= BODY ================= */

.shop-hard-body {
  padding: 90px 0 120px;
}

/* EMPTY STATE */

.shop-hard-empty {
  max-width: 520px;
  padding: 46px;
  border: 2px solid #020617;
  margin-bottom: 60px;
}

.shop-hard-empty strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.shop-hard-empty p {
  font-size: 15px;
  color: #475569;
}

/* ================= GRID ================= */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ================= CARD ================= */

.shop-product-card {
  border: 2px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  border-color: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.shop-product-card.out {
  opacity: 0.7;
}

/* ================= IMAGE ================= */

.shop-product-image {
  position: relative;
  padding: 28px;
  border-bottom: 2px solid #f1f5f9;
  background: #ffffff;
}

.shop-product-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

/* STOCK */

.shop-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-stock.in {
  background: #16a34a;
  color: #ffffff;
}

.shop-stock.out {
  background: #fee2e2;
  color: #7f1d1d;
}

/* ================= INFO ================= */

.shop-product-info {
  padding: 24px;
  flex-grow: 1;
}

.shop-product-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #020617;
}

.shop-product-info p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
}

/* ================= FOOTER ================= */

.shop-product-footer {
  padding: 20px 24px;
  border-top: 2px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-price {
  font-size: 18px;
  font-weight: 900;
  color: #020617;
}

/* BUTTONS */

.shop-add-btn {
  background: #020617;
  color: #ffffff;
  padding: 10px 18px;
  border: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-add-btn:hover {
  background: var(--primary);
  color: #000;
}

.shop-disabled-btn {
  background: #e5e7eb;
  color: #6b7280;
  padding: 10px 18px;
  border: none;
  font-size: 13px;
  font-weight: 800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .shop-hard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .shop-hard-hero {
    padding: 110px 0 90px;
  }

  .shop-hard-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT PAGE — MODERN HARD SYSTEM
===================================================== */

.about-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.about-x-hero {
  background: #0b0b0b;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f1f1f;
}

.about-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.about-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-x-hero h1 span {
  color: var(--primary);
}

.about-x-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #9ca3af;
  max-width: 620px;
}

/* RIGHT PANEL */

.about-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-x-stat strong {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

.about-x-stat span {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.about-x-body {
  padding: 110px 0 130px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

/* SECTION */

.about-x-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

.about-x-section.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.about-x-section.subtle {
  background: #f8fafc;
  padding: 60px;
}

.about-x-text h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #020617;
}

.about-x-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 14px;
}

/* SIDE CARD */

.about-x-side-card {
  border: 2px solid #020617;
  padding: 36px;
}

.about-x-side-card.dark {
  background: #020617;
  color: #ffffff;
}

.about-x-side-card.notice {
  border-left: 6px solid var(--primary);
}

.about-x-side-card h4 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 14px;
  color: black;
}

.about-x-side-card ul {
  padding-left: 18px;
  color: black;
}

.about-x-side-card li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* WIDE SECTION */

.about-x-wide.notice {
  border-left: 6px solid #cbd5f5;
  padding-left: 26px;
}

.about-x-wide h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 22px;
}

/* GRID */

.about-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-x-box {
  border: 2px solid #e5e7eb;
  padding: 28px;
}

.about-x-box strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
}

/* LIST */

.about-x-list {
  padding-left: 20px;
  margin-top: 10px;
}

.about-x-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #475569;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-x-hero-inner,
  .about-x-section,
  .about-x-section.reverse {
    grid-template-columns: 1fr;
  }

  .about-x-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-x-hero {
    padding: 120px 16px 90px;
  }

  .about-x-body {
    padding: 80px 16px 100px;
    gap: 70px;
  }

  .about-x-section.subtle {
    padding: 36px;
  }
}

/* =====================================================
   CONTACT PAGE — MODERN HARD SYSTEM
===================================================== */

.contact-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.contact-x-hero {
  background: #0b0b0b;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f1f1f;
}

.contact-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.contact-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.contact-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-x-hero h1 span {
  color: var(--primary);
}

.contact-x-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #9ca3af;
  max-width: 620px;
}

/* RIGHT PANEL */

.contact-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.contact-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
  word-break: break-word;
}

/* ================= BODY ================= */

.contact-x-body {
  padding: 110px 0 130px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}

/* INFO */

.contact-x-card {
  border: 2px solid #020617;
  padding: 40px;
  margin-bottom: 30px;
}

.contact-x-card.subtle {
  background: #f8fafc;
  border-color: #e5e7eb;
}

.contact-x-card h2,
.contact-x-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #020617;
}

.contact-x-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 14px;
}

.contact-x-muted {
  font-size: 14px;
  color: #64748b;
}

/* LIST */

.contact-x-list {
  padding-left: 20px;
}

.contact-x-list li {
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #475569;
}

/* FORM */

.contact-x-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 20px;
}

.contact-x-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-x-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-x-form input,
.contact-x-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 0;
  border: 2px solid #020617;
  font-size: 14px;
  font-family: inherit;
  background-color: white;
}

.contact-x-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-x-form input:focus,
.contact-x-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* BUTTON */

.contact-x-submit {
  margin-top: 6px;
  padding: 14px;
  background: #020617;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.contact-x-submit:hover {
  background: var(--primary);
  color: #000000;
}

/* SUCCESS */

.contact-x-success {
  border: 2px solid #16a34a;
  padding: 60px;
  text-align: center;
}

.contact-x-success h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .contact-x-hero-inner,
  .contact-x-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-x-hero {
    padding: 120px 16px 90px;
  }

  .contact-x-body {
    padding: 80px 16px 100px;
  }

  .contact-x-row {
    grid-template-columns: 1fr;
  }

  .contact-x-card {
    padding: 30px;
  }
}

/* =====================================================
   FAQ PAGE — MODERN HARD SYSTEM
===================================================== */

.faq-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.faq-x-hero {
  background: #0b0b0b;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f1f1f;
}

.faq-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.faq-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.faq-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.faq-x-hero h1 span {
  color: var(--primary);
}

.faq-x-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #9ca3af;
  max-width: 620px;
}

/* RIGHT PANEL */

.faq-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.faq-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.faq-x-body {
  padding: 110px 0 130px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
}

/* GROUP */

.faq-x-group {
  margin-bottom: 60px;
}

.faq-x-group h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 22px;
  color: #020617;
}

/* ITEM */

.faq-x-item {
  border: 2px solid #020617;
  margin-bottom: 14px;
}

.faq-x-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  color: #020617;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-x-question span {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-x-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-x-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

/* ACTIVE */

.faq-x-item.active .faq-x-answer {
  display: block;
}

.faq-x-item.active .faq-x-question span {
  transform: rotate(45deg);
}

/* SIDEBAR */

.faq-x-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-x-side-card {
  border: 2px solid #020617;
  padding: 36px;
}

.faq-x-side-card.subtle {
  background: #f8fafc;
  border-color: #e5e7eb;
}

.faq-x-side-card h3,
.faq-x-side-card h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.faq-x-side-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

/* BUTTON */

.faq-x-contact-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 20px;
  background: #020617;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.faq-x-contact-btn:hover {
  background: var(--primary);
  color: #000000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .faq-x-hero-inner,
  .faq-x-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-x-hero {
    padding: 120px 16px 90px;
  }

  .faq-x-body {
    padding: 80px 16px 100px;
  }

  .faq-x-side-card {
    padding: 30px;
  }
}

/* =====================================================
   AUTH PAGE — MODERN HARD SYSTEM
===================================================== */

.auth-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.auth-x-hero {
  background: #0b0b0b;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f1f1f;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.auth-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.auth-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.auth-x-hero h1 span {
  color: var(--primary);
}

.auth-x-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #9ca3af;
  max-width: 620px;
}

/* RIGHT PANEL */

.auth-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.auth-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.auth-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.auth-x-body {
  padding: 110px 0 130px;
  display: flex;
  justify-content: center;
}

/* CARD */

.auth-x-card {
  width: 100%;
  max-width: 520px;
  border: 2px solid #020617;
  padding: 50px;
}

.auth-x-card h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #020617;
}

.auth-x-desc {
  font-size: 15.5px;
  color: #475569;
  margin-bottom: 26px;
}

/* FORM */

.auth-x-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #020617;
}

.auth-x-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 0;
  border: 2px solid #020617;
  font-size: 14px;
  font-family: inherit;
}

.auth-x-field input:focus {
  outline: none;
  border-color: var(--primary);
}

/* BUTTONS */

.auth-x-submit {
  margin-top: 10px;
  padding: 14px;
  background: #020617;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.auth-x-submit:hover {
  background: var(--primary);
  color: #000000;
}

/* META */

.auth-x-meta {
  margin-top: 16px;
  text-align: right;
}

.auth-x-meta a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
}

.auth-x-meta a:hover {
  color: var(--primary);
}

/* DIVIDER */

.auth-x-divider {
  margin: 34px 0 22px;
  text-align: center;
  position: relative;
}

.auth-x-divider span {
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  background: #ffffff;
  padding: 0 14px;
  position: relative;
}

.auth-x-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
  z-index: 0;
}

/* SECONDARY */

.auth-x-secondary {
  text-align: center;
}

.auth-x-secondary p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
}

.auth-x-outline-btn {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #020617;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #020617;
}

.auth-x-outline-btn:hover {
  background: #020617;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .auth-x-hero {
    padding: 120px 16px 90px;
  }

  .auth-x-body {
    padding: 80px 16px 100px;
  }

  .auth-x-card {
    padding: 36px;
  }
}

/* =====================================================
   REGISTER PAGE — MODERN HARD SYSTEM
===================================================== */

.signup-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.signup-x-hero {
  background: #0b0b0b;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f1f1f;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.signup-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.signup-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.signup-x-hero h1 span {
  color: var(--primary);
}

.signup-x-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #9ca3af;
  max-width: 620px;
}

/* RIGHT PANEL */

.signup-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.signup-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.signup-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.signup-x-body {
  padding: 110px 0 130px;
  display: flex;
  justify-content: center;
}

/* CARD */

.signup-x-card {
  width: 100%;
  max-width: 540px;
  border: 2px solid #020617;
  padding: 50px;
}

.signup-x-card h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #020617;
}

.signup-x-desc {
  font-size: 15.5px;
  color: #475569;
  margin-bottom: 26px;
}

/* FORM */

.signup-x-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.signup-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #020617;
}

.signup-x-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 0;
  border: 2px solid #020617;
  font-size: 14px;
  font-family: inherit;
}

.signup-x-field input:focus {
  outline: none;
  border-color: var(--primary);
}

/* BUTTON */

.signup-x-submit {
  margin-top: 10px;
  padding: 14px;
  background: #020617;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.signup-x-submit:hover {
  background: var(--primary);
  color: #000000;
}

/* DIVIDER */

.signup-x-divider {
  margin: 34px 0 18px;
  text-align: center;
}

.signup-x-divider span {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

/* SECONDARY */

.signup-x-secondary {
  text-align: center;
}

.signup-x-outline-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid #020617;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #020617;
}

.signup-x-outline-btn:hover {
  background: #020617;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .signup-x-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .signup-x-hero {
    padding: 120px 16px 90px;
  }

  .signup-x-body {
    padding: 80px 16px 100px;
  }

  .signup-x-card {
    padding: 36px;
  }
}

/* =====================================================
   ACCOUNT DASHBOARD — MODERN HARD SYSTEM
===================================================== */

.dash-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.dash-x-hero {
  background: #0b0b0b;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f1f1f;
}

.dash-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.dash-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.dash-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.dash-x-hero h1 span {
  color: var(--primary);
}

.dash-x-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #9ca3af;
  max-width: 620px;
}

/* RIGHT PANEL */

.dash-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.dash-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.dash-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.dash-x-body {
  padding: 110px 0 130px;
}

.dash-x-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

/* ================= SIDEBAR ================= */

.dash-x-sidebar {
  border: 2px solid #020617;
  padding: 36px;
  height: fit-content;
}

.dash-x-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.dash-x-avatar {
  width: 48px;
  height: 48px;
  border: 2px solid #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: black;
}

.dash-x-user-info strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: black;
}

.dash-x-user-info span {
  font-size: 13px;
  color: #64748b;
}

/* NAV */

.dash-x-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #020617;
  border-bottom: 1px solid #e5e7eb;
}

.dash-x-nav a.active {
  color: var(--primary);
}

.dash-x-nav a.danger {
  color: #b91c1c;
}

/* ================= MAIN ================= */

.dash-x-main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* CARD */

.dash-x-card {
  border: 2px solid #020617;
  padding: 40px;
}

.dash-x-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  color: black;
}

/* INFO GRID */

.dash-x-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.dash-x-info-grid span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.dash-x-info-grid strong {
  font-size: 15px;
  font-weight: 800;
  color: black;
}

/* ACTIONS */

.dash-x-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dash-x-action {
  border: 2px solid #e5e7eb;
  padding: 26px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dash-x-action:hover {
  border-color: #020617;
  transform: translateY(-4px);
}

.dash-x-action strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
  color: black;
}

.dash-x-action span {
  font-size: 14px;
  color: #475569;
}

/* NOTICE */

.dash-x-notice {
  border-left: 6px solid var(--primary);
  padding-left: 24px;
}

.dash-x-notice strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 6px;
}

.dash-x-notice p {
  font-size: 14.5px;
  color: #475569;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .dash-x-hero-inner {
    grid-template-columns: 1fr;
  }

  .dash-x-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-x-hero {
    padding: 120px 16px 90px;
  }

  .dash-x-body {
    padding: 80px 16px 100px;
  }

  .dash-x-card {
    padding: 30px;
  }

  .dash-x-action-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TRACK ORDER — HARD ENTERPRISE SYSTEM
===================================================== */

.trk-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.trk-x-hero {
  background: #020617;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f2937;
}

.trk-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.trk-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.trk-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.trk-x-hero h1 span {
  color: var(--primary);
}

.trk-x-hero p {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.8;
  max-width: 600px;
}

/* RIGHT PANEL */

.trk-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.trk-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.trk-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.trk-x-body {
  padding: 110px 0 130px;
}

.trk-x-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ================= CARD ================= */

.trk-x-card {
  border: 2px solid #020617;
  padding: 40px;
}

.trk-x-card h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  color: black;
}

.trk-x-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 26px;
}

/* FORM */

.trk-x-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #020617;
}

.trk-x-input-row {
  display: flex;
  gap: 14px;
}

.trk-x-input-row input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #020617;
  font-size: 14px;
  background-color: white;
}

.trk-x-input-row button {
  padding: 14px 28px;
  border: 2px solid #020617;
  background: #020617;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.trk-x-input-row button:hover {
  background: #000000;
}

/* ERROR */

.trk-x-error {
  margin-top: 24px;
  border-left: 6px solid #dc2626;
  padding-left: 18px;
}

.trk-x-error strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.trk-x-error p {
  font-size: 14px;
  color: #7f1d1d;
}

/* ================= RESULT ================= */

.trk-x-card.result {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* STATUS */

.trk-x-status {
  padding: 24px;
  border-left: 6px solid;
}

.trk-x-status strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
  color: black;
}

.trk-x-status p {
  font-size: 15px;
  line-height: 1.7;
}

.trk-x-status.processing {
  border-color: #f59e0b;
  background: #fff7ed;
  color: #9a3412;
}

.trk-x-status.dispatched {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1e3a8a;
}

/* SUMMARY */

.trk-x-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.trk-x-summary span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.trk-x-summary strong {
  font-size: 15px;
  font-weight: 800;
  color: black;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .trk-x-hero-inner {
    grid-template-columns: 1fr;
  }

  .trk-x-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .trk-x-hero {
    padding: 120px 16px 90px;
  }

  .trk-x-body {
    padding: 80px 16px 100px;
  }

  .trk-x-card {
    padding: 30px;
  }

  .trk-x-input-row {
    flex-direction: column;
  }

  .trk-x-input-row button {
    width: 100%;
  }

  .trk-x-summary {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RETURN REQUEST — HARD ENTERPRISE RMA
===================================================== */

.rtn-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.rtn-x-hero {
  background: #020617;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f2937;
}

.rtn-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.rtn-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.rtn-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.rtn-x-hero h1 span {
  color: var(--primary);
}

.rtn-x-hero p {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.8;
  max-width: 620px;
}

/* RIGHT PANEL */

.rtn-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.rtn-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.rtn-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.rtn-x-body {
  padding: 110px 0 130px;
  display: flex;
  justify-content: center;
}

/* ================= CARD ================= */

.rtn-x-card {
  width: 100%;
  max-width: 620px;
  border: 2px solid #020617;
  padding: 46px;
}

.rtn-x-card h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  color: black;
}

.rtn-x-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
}

/* FORM */

.rtn-x-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rtn-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  color: black;
}

.rtn-x-field input,
.rtn-x-field select,
.rtn-x-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #020617;
  font-size: 14px;
  background: #ffffff;
  color: black;
}

.rtn-x-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* ERROR */

.rtn-x-error {
  border-left: 6px solid #dc2626;
  padding-left: 18px;
}

.rtn-x-error strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.rtn-x-error p {
  font-size: 14px;
  color: #7f1d1d;
}

/* BUTTON */

.rtn-x-primary-btn {
  margin-top: 10px;
  padding: 16px;
  border: 2px solid #020617;
  background: #020617;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.rtn-x-primary-btn:hover {
  background: #000000;
}

/* NOTE */

.rtn-x-note {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* ================= SUCCESS ================= */

.rtn-x-success {
  max-width: 620px;
  border: 2px solid #020617;
  padding: 60px 50px;
  text-align: center;
}

.rtn-x-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border: 2px solid #020617;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.rtn-x-success h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
  color: black;
}

.rtn-x-success p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.rtn-x-summary {
  background: #f8fafc;
  padding: 16px;
  margin-bottom: 30px;
}

.rtn-x-summary span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.rtn-x-summary strong {
  font-size: 15px;
  font-weight: 800;
  color: black;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .rtn-x-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rtn-x-hero {
    padding: 120px 16px 90px;
  }

  .rtn-x-body {
    padding: 80px 16px 100px;
  }

  .rtn-x-card,
  .rtn-x-success {
    padding: 36px 26px;
  }
}

/* =====================================================
   CART PAGE — HARD ENTERPRISE SYSTEM
===================================================== */

.crt-x {
  background: #ffffff;
}

/* ================= HERO ================= */

.crt-x-hero {
  background: #020617;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f2937;
}

.crt-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.crt-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.crt-x-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.crt-x-hero h1 span {
  color: var(--primary);
}

.crt-x-hero p {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.8;
  max-width: 620px;
}

/* RIGHT PANEL */

.crt-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.crt-x-panel-item strong {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.crt-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= BODY ================= */

.crt-x-body {
  padding: 110px 0 130px;
}

/* EMPTY */

.crt-x-empty {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.crt-x-empty h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
}

.crt-x-empty p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
}

/* LAYOUT */

.crt-x-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

/* ITEMS */

.crt-x-items h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 26px;
  color: black;
}

.crt-x-item {
  display: grid;
  grid-template-columns: 90px 1fr 160px 140px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid #e5e7eb;
}

.crt-x-item-image img {
  width: 90px;
  height: auto;
}

.crt-x-item-info strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
  color: black;
}

.crt-x-item-info span {
  font-size: 14px;
  color: #64748b;
}

/* QTY */

.crt-x-item-qty input {
  width: 70px;
  padding: 8px;
  border: 2px solid #020617;
}

.crt-x-item-qty button {
  margin-left: 10px;
  padding: 8px 12px;
  border: 2px solid #020617;
  background: #020617;
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
}

/* TOTAL */

.crt-x-item-total strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
  color: black;
}

.crt-x-remove {
  background: none;
  border: none;
  color: #b91c1c;
  font-size: 13px;
  cursor: pointer;
}

/* SUMMARY */

.crt-x-summary {
  border: 2px solid #020617;
  padding: 36px;
  height: fit-content;
}

.crt-x-summary h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 26px;
  color: black;
}

.crt-x-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 14px;
  color: black;
}

.crt-x-summary-row.total {
  font-weight: 900;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 18px;
}

/* BUTTON */

.crt-x-primary-btn {
  display: block;
  width: 100%;
  margin-top: 26px;
  padding: 16px;
  background: #020617;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.crt-x-primary-btn:hover {
  background: #000000;
}

/* TRUST */

.crt-x-trust {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .crt-x-hero-inner {
    grid-template-columns: 1fr;
  }

  .crt-x-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .crt-x-hero {
    padding: 120px 16px 90px;
  }

  .crt-x-body {
    padding: 80px 16px 100px;
  }

  .crt-x-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .crt-x-summary {
    padding: 28px;
  }
}

/* =====================================================
   CHECKOUT — CONSISTENT ENTERPRISE STYLE
===================================================== */

.chk-x {
  background: #ffffff;
  color: #020617;
}

/* ================= HERO ================= */

.chk-x-hero {
  background: #020617;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f2937;
}

.chk-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.chk-x-hero * {
  color: #ffffff;
}

.chk-x-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.chk-x-hero h1 span {
  color: var(--primary);
}

/* RIGHT PANEL */

.chk-x-hero-panel {
  background: #020617;
  border: 2px solid #1f2937;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= BODY ================= */

.chk-x-body {
  padding: 110px 0 130px;
}

/* ================= LAYOUT ================= */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

/* ================= CARD ================= */

.chk-x-card {
  border: 2px solid #020617;
  padding: 36px;
  margin-bottom: 36px;
}

.chk-x-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 22px;
}

/* FORM */

.chk-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.chk-x-grid.single {
  grid-template-columns: 1fr;
}

.chk-x-card label {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #020617;
  background-color: white;
}

/* ================= PAYMENT INLINE ================= */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.chk-x-payment {
  border: 2px solid #e5e7eb;
  padding: 22px;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: center;
}

.chk-x-payment.active {
  border-color: #020617;
  background: #f8fafc;
}

.chk-x-payment strong {
  font-size: 14px;
  font-weight: 900;
  color: black;
}

.chk-x-payment span {
  font-size: 13px;
  color: #64748b;
}

/* ================= SUMMARY ================= */

.chk-x-summary {
  border: 2px solid #020617;
  padding: 36px;
  height: fit-content;
}

.chk-x-summary h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 22px;
}

.chk-x-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.chk-x-summary-total {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 18px;
}

.chk-x-summary-total .total {
  font-weight: 900;
  margin-top: 8px;
}

/* BUTTON */

.chk-x-primary-btn {
  width: 100%;
  margin-top: 26px;
  padding: 16px;
  background: #020617;
  color: #ffffff;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

/* TRUST */

.chk-x-trust {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 14px;
}

.chk-x-panel-item span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .chk-x-hero-inner,
  .chk-x-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .chk-x-body {
    padding: 80px 16px 100px;
  }

  .chk-x-payments {
    grid-template-columns: 1fr;
  }
}

/* ================= ORDER SUCCESS — HARD ================= */

.ordx-success {
  background: #ffffff;
  color: #020617;
  font-family: Inter, system-ui, sans-serif;
}

/* HERO */
.ordx-hero {
  background: #020617;
  padding: 150px 0 120px;
  border-bottom: 2px solid #1f2937;
}

.ordx-hero-inner {
  max-width: 1100px;
  margin: auto;
}

.ordx-badge {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.ordx-hero h1 {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.ordx-hero h1 span {
  color: var(--primary);
}

.ordx-hero p {
  font-size: 17px;
  color: #9ca3af;
  line-height: 1.8;
  max-width: 620px;
}

/* BODY */
.ordx-body {
  padding: 80px 20px 120px;
}

.ordx-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

/* CARDS */
.ordx-card {
  border: 2px solid #000;
  padding: 36px;
  margin-bottom: 36px;
}

.ordx-confirm p {
  font-size: 16px;
  margin-bottom: 28px;
}

/* STATS */
.ordx-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ordx-stats span {
  font-size: 12px;
  text-transform: uppercase;
  color: #6b7280;
}

.ordx-stats strong {
  font-size: 16px;
}

/* STEPS */
.ordx-steps {
  padding-left: 18px;
}

.ordx-steps li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* ACTIONS */
.ordx-actions {
  display: flex;
  gap: 18px;
}

.ordx-btn {
  padding: 14px 34px;
  border: 2px solid #000;
  text-decoration: none;
  font-weight: 700;
}

.ordx-btn.primary {
  background: #000;
  color: #fff;
}

.ordx-btn.ghost {
  background: #fff;
  color: #000;
}

/* SIDE */
.ordx-side {
  border-left: 3px solid #000;
  padding-left: 40px;
}

.ordx-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.5;
}

.rail-step.active {
  opacity: 1;
}

.rail-step span {
  width: 34px;
  height: 34px;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* HELP */
.ordx-help {
  margin-top: 50px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ordx-layout {
    grid-template-columns: 1fr;
  }

  .ordx-side {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid #000;
    padding-top: 30px;
  }
}

/* ================= PRODUCT PAGE — HARD ================= */

.prd-x-page {
  background: #ffffff;
  color: #020617;
  font-family: Inter, system-ui, sans-serif;
}

.prd-x-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px 120px;
}

/* TOP */
.prd-x-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* IMAGE */
.prd-x-media {
  border: 2px solid #000;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prd-x-media img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}

/* INFO */
.prd-x-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prd-x-title {
  font-size: 34px;
  margin: 10px 0 12px;
}

.prd-x-rating {
  font-size: 14px;
  margin-bottom: 20px;
}

.prd-x-rating span {
  color: #6b7280;
  margin-left: 6px;
}

/* PRICE */
.prd-x-pricebox {
  border: 2px solid #000;
  padding: 24px;
  margin-bottom: 26px;
}

.prd-x-price {
  font-size: 32px;
  font-weight: 700;
}

.prd-x-tax {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.prd-x-summary {
  font-size: 15px;
}

/* ACTIONS */
.prd-x-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.prd-x-btn {
  padding: 14px 34px;
  border: 2px solid #000;
  font-weight: 700;
  cursor: pointer;
}

.prd-x-btn.primary {
  background: #000;
  color: #fff;
}

.prd-x-btn.outline {
  background: #fff;
  color: #000;
}

.prd-x-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* TRUST */
.prd-x-trust {
  font-size: 13px;
  color: #374151;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* TAGS */
.prd-x-highlights {
  display: flex;
  gap: 14px;
  margin-bottom: 50px;
}

.prd-x-highlights span {
  border: 2px solid #000;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* GRID */
.prd-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* BLOCK */
.prd-x-block {
  border: 2px solid #000;
  padding: 34px;
}

.prd-x-block.highlight {
  background: #f8fafc;
}

.prd-x-block h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

/* TABLE */
.prd-x-table {
  width: 100%;
  border-collapse: collapse;
}

.prd-x-table th,
.prd-x-table td {
  border-bottom: 1px solid #000;
  padding: 10px 8px;
  font-size: 14px;
  text-align: left;
}

.prd-x-table th {
  width: 40%;
  font-weight: 600;
}

/* LIST */
.prd-x-block ul {
  padding-left: 18px;
}

.prd-x-block li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .prd-x-top {
    grid-template-columns: 1fr;
  }

  .prd-x-grid {
    grid-template-columns: 1fr;
  }

  .prd-x-actions {
    flex-direction: column;
  }
}

section.policy-page {
  background: white;
  padding: 50px;
}
