/* =====================================================
   DARK DESIGN SYSTEM — GLOBAL FOUNDATION
   ===================================================== */

/* ================= DESIGN TOKENS ================= */

:root {
  /* Brand */
  --brand-primary: #6366f1; /* Indigo */
  --brand-hover: #4f46e5;
  --brand-accent: #22c55e;

  /* Backgrounds */
  --bg-page: #0b0f19;
  --bg-surface: #111827;
  --bg-elevated: #161e33;
  --bg-soft: #1f2937;

  /* Text */
  --text-main: #f9fafb;
  --text-soft: #cbd5f5;
  --text-muted: #94a3b8;
  --text-invert: #020617;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 25px 60px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.6);

  /* Layout */
  --container-max: 1280px;
  --container-pad: 20px;

  /* Status */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #38bdf8;
}

/* ================= RESET ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ================= MEDIA ================= */

img,
svg,
video {
  max-width: 100%;
  display: block;
}

/* ================= LINKS ================= */

a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover {
  color: var(--brand-hover);
}

/* ================= TYPOGRAPHY ================= */

h1 {
  font-size: 46px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
  font-size: 15px;
  color: var(--text-soft);
}

small {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= CONTAINER ================= */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ================= SECTIONS ================= */

.section {
  padding: 120px 0;
}

.section.surface {
  background: var(--bg-surface);
}

.section.elevated {
  background: var(--bg-elevated);
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;

  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-soft);
  color: white;
}

.btn-soft {
  background: var(--bg-soft);
  color: var(--text-main);
}

/* ================= FORMS ================= */

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;

  font-size: 14px;
  color: var(--text-main);

  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);

  transition:
    border 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

/* ================= CARDS ================= */

.card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

/* ================= BADGES ================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge.success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.badge.warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.badge.danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

/* ================= UTILITIES ================= */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .section {
    padding: 90px 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  body {
    line-height: 1.65;
  }
}

/* =====================================================
   HEADER — DARK / SHARP / SOLID
===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #0b0f19;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

/* ================= LAYOUT ================= */

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr 380px auto;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}

/* ================= BRAND ================= */

.site-brand img {
  height: 60px;
  width: auto;
}

/* ================= NAVIGATION ================= */

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #cbd5f5;
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav a:hover::after {
  width: 100%;
}

/* ================= SEARCH ================= */

.site-search {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #111827;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;

  transition:
    border 0.25s ease,
    background 0.25s ease;
}

.site-search i {
  font-size: 14px;
  color: #94a3b8;
}

.site-search input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
}

.site-search input::placeholder {
  color: #94a3b8;
}

.site-search:focus-within {
  background: #0b0f19;
  border-color: #6366f1;
}

.site-search input:focus {
  outline: none;
}

/* ================= ACTIONS ================= */

.site-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-action {
  position: relative;
  font-size: 18px;
  color: #cbd5f5;
  padding: 6px 2px;
}

.site-action:hover {
  color: #ffffff;
}

/* ================= CART COUNT ================= */

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;

  min-width: 18px;
  height: 18px;

  background: #6366f1;
  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 18px;

  border-radius: 4px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .site-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-search {
    display: none;
  }
}

@media (max-width: 800px) {
  .site-nav {
    display: none;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
  }
}

/* =====================================================
   HERO — SOLID INDUSTRIAL BANNER
===================================================== */

.hero-solid {
  background: linear-gradient(90deg, #0b0f19 0%, #0b0f19 55%, #05070d 100%);

  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding: 140px 0;
}

/* ================= LAYOUT ================= */

.hero-solid-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

/* ================= CONTENT ================= */

.hero-solid-content {
  max-width: 640px;
}

.hero-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 22px;
}

.hero-solid-content h1 {
  font-size: 60px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero-solid-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 46px;
}

/* ================= ACTIONS ================= */

.hero-solid-actions {
  display: flex;
  gap: 22px;
}

/* override rounding just in case */
.hero-solid .btn {
  border-radius: 4px;
  padding: 16px 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ================= VISUAL ================= */

.hero-solid-visual {
  position: relative;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 60px;
}

.hero-solid-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  filter: contrast(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .hero-solid-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-solid-visual {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .hero-solid {
    padding: 100px 0;
  }

  .hero-solid-content h1 {
    font-size: 38px;
  }

  .hero-solid-actions {
    flex-direction: column;
  }
}

/* =====================================================
   FEATURED PRODUCTS — SOLID GRID
===================================================== */

.featured-solid {
  background: #0b0f19;
  padding: 140px 0;
}

/* ================= HEADER ================= */

.featured-solid-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.featured-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 18px;
}

.featured-solid-head h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.featured-solid-head p {
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

/* ================= GRID ================= */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* ================= CARD ================= */

.product-card {
  background: #111827;
  border: 2px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

/* ================= MEDIA ================= */

.product-media {
  background: #020617;
  padding: 26px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.product-media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* ================= BODY ================= */

.product-body {
  padding: 22px;
}

.product-body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}

/* ================= META ================= */

.product-meta {
  padding: 18px 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 17px;
  font-weight: 800;
}

.product-stock {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-stock.in {
  color: #22c55e;
}

.product-stock.out {
  color: #ef4444;
}

/* ================= ACTIONS — FIXED ================= */

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  background: #020617;
}

/* Common button style */
.product-actions a,
.product-actions button {
  height: 52px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
}

/* VIEW — secondary */
.product-actions .btn-outline {
  border: none;
  background: transparent;
  color: #94a3b8;
  border-right: 2px solid rgba(255, 255, 255, 0.06);
}

.product-actions .btn-outline:hover {
  background: #020617;
  color: #ffffff;
}

/* ADD — primary */
.product-actions .btn-primary {
  background: #6366f1;
  color: #ffffff;
  border: none;
  padding: 15px;
}

.product-actions .btn-primary:hover {
  background: #4f46e5;
}

.product-card {
  position: relative;
}

.product-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-solid {
    padding: 100px 0;
  }

  .featured-solid-head h2 {
    font-size: 32px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   WHY US — SOLID CREDIBILITY SECTION
===================================================== */

.why-solid {
  background: #020617;
  padding: 140px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
}

/* ================= HEADER ================= */

.why-solid-head {
  max-width: 760px;
  margin-bottom: 90px;
}

.why-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.why-solid-head h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.why-solid-head p {
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

/* ================= GRID ================= */

.why-solid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

/* ================= ITEM ================= */

.why-solid-item {
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.why-solid-item strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.why-solid-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
}

/* ================= FOOT ================= */

.why-solid-foot {
  margin-top: 90px;
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  max-width: 600px;
}

.why-solid-foot p {
  font-size: 14px;
  color: #cbd5f5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .why-solid-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-solid-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   ABOUT — SOLID COMPANY STATEMENT
===================================================== */

.about-solid {
  background: #0b0f19;
  padding: 140px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
}

/* ================= HEADER ================= */

.about-solid-head {
  max-width: 760px;
  margin-bottom: 90px;
}

.about-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.about-solid-head h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* ================= LAYOUT ================= */

.about-solid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

/* ================= TEXT ================= */

.about-solid-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 22px;
}

.about-solid-text strong {
  color: #ffffff;
  font-weight: 800;
}

/* ================= FACTS ================= */

.about-solid-facts {
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 40px;
}

.about-fact {
  padding: 20px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.about-fact:last-child {
  border-bottom: none;
}

.fact-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

.fact-value {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
}

/* ================= FOOT ================= */

.about-solid-foot {
  margin-top: 90px;
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  max-width: 600px;
}

.about-solid-foot p {
  font-size: 14px;
  color: #cbd5f5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-solid-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-solid-facts {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
  }

  .about-solid-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   PROCESS — SOLID PIPELINE
===================================================== */

.process-solid {
  background: #020617;
  padding: 150px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
}

/* ================= HEADER ================= */

.process-solid-head {
  max-width: 760px;
  margin-bottom: 100px;
}

.process-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.process-solid-head h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.process-solid-head p {
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

/* ================= PIPELINE ================= */

.process-solid-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 70px;
}

/* ================= NODE ================= */

.process-node {
  position: relative;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.node-index {
  position: absolute;
  top: -28px;
  left: 0;

  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(99, 102, 241, 0.35);
}

.process-node strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.process-node p {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .process-solid-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .process-solid {
    padding: 110px 0;
  }

  .process-solid-pipeline {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-solid-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   TESTIMONIALS — BLOCK GRID (2×2)
===================================================== */

.testimonials-block {
  background: #020617;
  padding: 140px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
}

/* ================= HEADER ================= */

.testimonials-block-head {
  max-width: 760px;
  margin-bottom: 90px;
}

.testimonials-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.testimonials-block-head h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.testimonials-block-head p {
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

/* ================= GRID ================= */

.testimonials-block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 70px;
}

/* ================= BLOCK ================= */

.testimonial-block {
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  color: #e5e7eb;
  margin-bottom: 18px;
}

/* ================= META ================= */

.testimonial-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.testimonial-meta span {
  font-size: 13px;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .testimonials-block-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .testimonials-block-head h2 {
    font-size: 32px;
  }
}

/* =====================================================
   FOOTER — SOLID BUSINESS FOOTER
===================================================== */

.footer-solid {
  background: #020617;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding: 120px 0 50px;
}

/* ================= TOP ================= */

.footer-solid-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 70px;
  margin-bottom: 70px;
}

/* ================= COLUMN ================= */

.footer-solid-col h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-solid-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-solid-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5f5;
}

/* ================= LINKS ================= */

.footer-solid-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-solid-col ul li {
  margin-bottom: 10px;
}

.footer-solid-col ul li a {
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
}

.footer-solid-col ul li a:hover {
  color: #ffffff;
}

/* ================= BUSINESS ================= */

.footer-business-name {
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-business-info {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.footer-business-contact a {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.footer-business-contact a:hover {
  text-decoration: underline;
}

/* ================= BOTTOM ================= */

.footer-solid-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-solid-bottom p {
  font-size: 13px;
  color: #94a3b8;
  max-width: 520px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .footer-solid-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-solid {
    padding: 90px 0 40px;
  }

  .footer-solid-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-solid-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* =====================================================
   ABOUT PAGE — SOLID SYSTEM
===================================================== */

.about-solid-hero {
  background: #020617;
  padding: 160px 0 120px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.about-solid-hero h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 18px;
}

.about-solid-hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

.about-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ================= SECTIONS ================= */

.about-solid-section {
  padding: 130px 0;
  background: #0b0f19;
}

.about-solid-section.alt {
  background: #020617;
}

.about-solid-section.dark {
  background: #020617;
}

/* ================= GRID ================= */

.about-solid-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.about-solid-box {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.about-solid-box strong {
  display: block;
  margin-bottom: 10px;
}

/* ================= HEAD ================= */

.about-solid-head {
  max-width: 760px;
  margin-bottom: 80px;
}

.about-solid-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ================= COLUMNS ================= */

.about-solid-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.about-solid-columns strong {
  display: block;
  margin-bottom: 10px;
}

/* ================= FLOW ================= */

.about-solid-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.flow-item span {
  font-size: 28px;
  font-weight: 900;
  color: rgba(99, 102, 241, 0.35);
}

/* ================= PRINCIPLES ================= */

.about-solid-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* ================= TRUST ================= */

.about-solid-trust {
  max-width: 820px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-solid-grid,
  .about-solid-columns,
  .about-solid-flow,
  .about-solid-principles {
    grid-template-columns: 1fr;
  }

  .about-solid-hero h1 {
    font-size: 34px;
  }
}

/* =====================================================
   CONTACT PAGE — SOLID COMMUNICATION
===================================================== */

.contact-solid-hero {
  background: #020617;
  padding: 150px 0 110px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.contact-solid-hero h1 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-solid-hero p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

.contact-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ================= SECTION ================= */

.contact-solid-section {
  padding: 130px 0;
  background: #0b0f19;
}

/* ================= GRID ================= */

.contact-solid-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
}

/* ================= INFO ================= */

.contact-solid-info h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-solid-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.contact-solid-box {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  margin-bottom: 20px;
}

.contact-solid-box strong {
  display: block;
  margin-bottom: 8px;
}

.contact-solid-box span {
  display: block;
  font-size: 14px;
  color: #94a3b8;
}

.contact-solid-note {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 20px;
  border-left: 3px solid rgba(99, 102, 241, 0.5);
  padding-left: 14px;
}

/* ================= FORM ================= */

.contact-solid-form h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-note {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 26px;
}

.contact-form-solid input,
.contact-form-solid textarea {
  width: 100%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-form-solid textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-solid input:focus,
.contact-form-solid textarea:focus {
  outline: none;
  border-color: #6366f1;
}

/* ================= BUTTON ================= */

.contact-form-solid button {
  width: 100%;
  padding: 16px;
  background: #6366f1;
  border: none;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

/* ================= CONFIRM ================= */

.contact-solid-confirm {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.contact-solid-confirm h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-solid-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-solid-hero h1 {
    font-size: 34px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FAQ PAGE — SOLID KNOWLEDGE BASE
===================================================== */

.faq-solid-hero {
  background: #020617;
  padding: 150px 0 110px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.faq-solid-hero h1 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-solid-hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

.faq-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ================= SECTION ================= */

.faq-solid-section {
  background: #0b0f19;
  padding: 130px 0;
}

/* ================= LAYOUT ================= */

.faq-solid-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

/* ================= INTRO ================= */

.faq-solid-intro h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.faq-solid-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5f5;
  margin-bottom: 16px;
}

.faq-solid-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
  color: #6366f1;
  text-decoration: none;
}

.faq-solid-link:hover {
  text-decoration: underline;
}

/* ================= LIST ================= */

.faq-solid-list {
  display: flex;
  flex-direction: column;
}

/* ================= ITEM ================= */

.faq-solid-item {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.faq-solid-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  color: #ffffff;
  cursor: pointer;
}

.faq-solid-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-solid-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
}

/* ================= ACTIVE ================= */

.faq-solid-item.active .faq-solid-answer {
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .faq-solid-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-solid-hero h1 {
    font-size: 34px;
  }
}

/* =====================================================
   LOGIN PAGE — SOLID AUTH
===================================================== */

.login-solid {
  min-height: 100vh;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

/* ================= WRAP ================= */

.login-solid-wrap {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

/* ================= LEFT ================= */

.login-solid-info {
  padding: 70px 60px;
  border-right: 2px solid rgba(255, 255, 255, 0.08);
}

.login-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 22px;
}

.login-solid-info h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

.login-solid-info p {
  font-size: 15px;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 34px;
}

.login-solid-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.login-solid-points li {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* ================= RIGHT ================= */

.login-solid-form {
  padding: 70px 60px;
}

.login-solid-form h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.login-solid-sub {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* ================= FORM ================= */

.login-field {
  margin-bottom: 20px;
}

.login-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.login-field input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
}

.login-field input:focus {
  outline: none;
  border-color: #6366f1;
}

/* ================= BUTTON ================= */

.login-solid-btn {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: #6366f1;
  border: none;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.login-solid-btn:hover {
  background: #4f46e5;
}

/* ================= FOOTER ================= */

.login-solid-footer {
  margin-top: 26px;
  font-size: 14px;
  color: #94a3b8;
}

.login-solid-footer a {
  margin-left: 6px;
  font-weight: 800;
  color: #6366f1;
  text-decoration: none;
}

.login-solid-footer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .login-solid-wrap {
    grid-template-columns: 1fr;
  }

  .login-solid-info {
    display: none;
  }

  .login-solid-form {
    padding: 50px 30px;
  }
}

/* =====================================================
   REGISTER PAGE — SOLID AUTH
===================================================== */

.register-solid {
  min-height: 100vh;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

/* ================= WRAP ================= */

.register-solid-wrap {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

/* ================= LEFT ================= */

.register-solid-info {
  padding: 70px 60px;
  border-right: 2px solid rgba(255, 255, 255, 0.08);
}

.register-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 22px;
}

.register-solid-info h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

.register-solid-info p {
  font-size: 15px;
  line-height: 1.9;
  color: #cbd5f5;
  margin-bottom: 34px;
}

.register-solid-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.register-solid-points li {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* ================= RIGHT ================= */

.register-solid-form {
  padding: 70px 60px;
}

.register-solid-form h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.register-solid-sub {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* ================= FORM ================= */

.register-field {
  margin-bottom: 20px;
}

.register-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.register-field input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
}

.register-field input:focus {
  outline: none;
  border-color: #6366f1;
}

/* ================= BUTTON ================= */

.register-solid-btn {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: #6366f1;
  border: none;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.register-solid-btn:hover {
  background: #4f46e5;
}

/* ================= FOOTER ================= */

.register-solid-footer {
  margin-top: 26px;
  font-size: 14px;
  color: #94a3b8;
}

.register-solid-footer a {
  margin-left: 6px;
  font-weight: 800;
  color: #6366f1;
  text-decoration: none;
}

.register-solid-footer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .register-solid-wrap {
    grid-template-columns: 1fr;
  }

  .register-solid-info {
    display: none;
  }

  .register-solid-form {
    padding: 50px 30px;
  }
}

/* =====================================================
   CART PAGE — SOLID REVIEW
===================================================== */

.cart-solid-hero {
  background: #020617;
  padding: 140px 0 100px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.cart-solid-hero h1 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 14px;
}

.cart-solid-hero p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.9;
  color: #cbd5f5;
}

.cart-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ================= SECTION ================= */

.cart-solid-section {
  background: #0b0f19;
  padding: 120px 0;
}

/* ================= EMPTY ================= */

.cart-solid-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cart-solid-empty h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.cart-solid-empty p {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* ================= LAYOUT ================= */

.cart-solid-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
}

/* ================= ITEMS ================= */

.cart-solid-items {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.cart-solid-item {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.7fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

/* PRODUCT */

.cart-solid-product {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-solid-product img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.cart-solid-meta strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.cart-solid-meta span {
  font-size: 14px;
  color: #94a3b8;
}

/* QTY */

.cart-solid-qty form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-solid-qty input {
  width: 60px;
  padding: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-align: center;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.qty-btn:hover {
  border-color: #6366f1;
}

/* TOTAL */

.cart-solid-total {
  text-align: right;
}

.cart-solid-total strong {
  display: block;
  margin-bottom: 8px;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 13px;
  cursor: pointer;
}

.cart-remove-btn:hover {
  color: #ffffff;
}

/* ================= SUMMARY ================= */

.cart-solid-summary {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.cart-solid-summary h2 {
  font-size: 22px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 14px;
  color: #cbd5f5;
}

.summary-row.total {
  font-weight: 800;
  font-size: 16px;
  margin-top: 20px;
}

/* BUTTON */

.cart-solid-btn {
  display: block;
  width: 100%;
  margin-top: 26px;
  padding: 16px;
  text-align: center;
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
  font-weight: 800;
  text-decoration: none;
}

.cart-solid-btn.primary {
  background: #6366f1;
  color: #ffffff;
}

.cart-solid-btn.primary:hover {
  background: #4f46e5;
}

/* NOTE */

.cart-solid-note {
  margin-top: 20px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .cart-solid-layout {
    grid-template-columns: 1fr;
  }

  .cart-solid-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-solid-total {
    text-align: left;
  }
}

/* =====================================================
   CHECKOUT — SOLID
===================================================== */

.checkout-solid {
  background: #0b0f19;
  padding: 140px 0;
}

.checkout-solid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
}

/* ================= LEFT ================= */

.checkout-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 20px;
}

.checkout-solid-left h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
}

.checkout-sub {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 40px;
}

.checkout-group {
  margin-bottom: 40px;
}

.checkout-group h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

/* ================= FORM ================= */

.checkout-solid-left label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.checkout-solid-left input,
.checkout-solid-left textarea {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin-bottom: 18px;
}

.checkout-solid-left textarea {
  min-height: 110px;
}

.checkout-solid-left input:focus,
.checkout-solid-left textarea:focus {
  outline: none;
  border-color: #6366f1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================= PAYMENT — FIXED UI ================= */

.payment-solid-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* hide radio */
.payment-tile input {
  display: none;
}

/* tile */
.payment-tile-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

/* icon */
.payment-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #cbd5f5;
}

.payment-icon.paypal {
  color: #60a5fa;
}

/* text */
.payment-text strong {
  display: block;
  font-size: 15px;
}

.payment-text span {
  font-size: 13px;
  color: #94a3b8;
}

/* ACTIVE STATE */
.payment-tile input:checked + .payment-tile-inner {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
}

.payment-tile input:checked + .payment-tile-inner .payment-icon {
  border-color: #6366f1;
  color: #ffffff;
}

/* ================= BUTTON ================= */

.checkout-solid-btn {
  width: 100%;
  padding: 16px;
  background: #6366f1;
  border: none;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
}

/* ================= RIGHT ================= */

.checkout-solid-right {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.checkout-solid-right h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* ================= TABLE ================= */

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.order-table th,
.order-table td {
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.order-table th {
  font-weight: 800;
  text-align: left;
  color: #94a3b8;
}

.order-table tfoot td {
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  padding-top: 16px;
}

.align-right {
  text-align: right;
}

/* ================= NOTE ================= */

.checkout-solid-note {
  margin-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .checkout-solid-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ORDER SUCCESS POPUP — SOLID / DARK
===================================================== */

.order-popup {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* BOX */

.popup-box {
  width: 100%;
  max-width: 420px;
  background: #020617;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 46px 40px;
  text-align: center;
}

/* ICON */

.popup-icon {
  width: 64px;
  height: 64px;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-size: 34px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* TITLE */

.popup-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* TEXT */

.popup-box p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ORDER NUMBER */

.order-number {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e5e7eb;
  padding: 14px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  margin-bottom: 26px;
}

/* BUTTON */

.popup-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #6366f1;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.popup-btn:hover {
  background: #4f46e5;
}

/* =====================================================
   ACCOUNT DASHBOARD — SOLID CONTROL PANEL
===================================================== */

.account-solid {
  background: #020617;
  color: #e5e7eb;
}

/* HEADER */

.account-solid-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 50px;
}

.account-solid-header h1 {
  font-size: 38px;
  font-weight: 900;
}

.account-solid-header p {
  color: #94a3b8;
  max-width: 600px;
}

/* LAYOUT */

.account-solid-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  padding: 70px 0;
}

/* SIDEBAR */

.account-solid-sidebar {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  height: fit-content;
}

.account-solid-user {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

.account-avatar {
  width: 46px;
  height: 46px;
  border: 2px solid #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

.account-solid-user span {
  font-size: 13px;
  color: #94a3b8;
}

/* NAV */

.account-solid-nav a {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #cbd5f5;
  text-decoration: none;
  border-left: 4px solid transparent;
}

.account-solid-nav a:hover,
.account-solid-nav a.active {
  background: rgba(99, 102, 241, 0.08);
  border-left-color: #6366f1;
}

.account-solid-nav a.danger {
  color: #f87171;
}

/* MAIN */

.account-solid-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* STATUS BAR */

.account-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.account-bar div {
  padding: 20px;
}

.account-bar span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.ok {
  color: #22c55e;
}

/* PANELS */

.account-panel {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.account-panel h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* GRID */

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.account-grid span {
  font-size: 12px;
  color: #94a3b8;
}

/* ACTIONS */

.account-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.account-action-tile {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  text-decoration: none;
  color: #e5e7eb;
  transition: border-color 0.2s ease;
}

.account-action-tile i {
  font-size: 22px;
  color: #6366f1;
  margin-bottom: 10px;
  display: block;
}

.account-action-tile span {
  font-size: 13px;
  color: #94a3b8;
}

.account-action-tile:hover {
  border-color: #6366f1;
}

/* WARNING */

.account-warning {
  border-left: 6px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  padding: 22px;
}

.account-warning p {
  color: #fcd34d;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .account-solid-layout {
    grid-template-columns: 1fr;
  }

  .account-action-grid,
  .account-grid,
  .account-bar {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TRACK ORDER — SOLID STATUS PANEL
===================================================== */

.track-solid {
  background: #020617;
  color: #e5e7eb;
}

/* HEADER */

.track-solid-header {
  padding: 90px 0 60px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.track-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 18px;
}

.track-solid-header h1 {
  font-size: 40px;
  font-weight: 900;
}

.track-solid-header p {
  max-width: 620px;
  color: #94a3b8;
}

/* LAYOUT */

.track-solid-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  padding: 70px 0;
}

/* PANEL */

.track-solid-panel {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
}

.track-solid-panel h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.track-hint {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* FORM */

.track-solid-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.track-input {
  display: grid;
  grid-template-columns: 1fr auto;
}

.track-input input {
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.track-input input:focus {
  outline: none;
  border-color: #6366f1;
}

.track-input button {
  padding: 14px 26px;
  background: #6366f1;
  border: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  margin-left: 10px;
}

.track-input button:hover {
  background: #4f46e5;
}

/* ERROR */

.track-solid-error {
  margin-top: 24px;
  padding: 20px;
  border-left: 6px solid #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.track-solid-error p {
  color: #fecaca;
  font-size: 14px;
}

/* RESULT */

.track-solid-result {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
}

.track-solid-result h2 {
  font-size: 24px;
  margin-bottom: 26px;
}

/* TIMELINE */

.track-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

.track-node {
  text-align: center;
  opacity: 0.35;
}

.track-node span {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 10px;
}

.track-node strong {
  font-size: 14px;
}

.track-node.completed {
  opacity: 1;
}

.track-node.completed span {
  border-color: #22c55e;
  color: #22c55e;
}

.track-node.active {
  opacity: 1;
}

.track-node.active span {
  border-color: #6366f1;
  color: #6366f1;
}

/* META */

.track-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  margin-top: 26px;
}

.track-meta div {
  padding: 20px 0;
}

.track-meta span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* MESSAGE */

.track-status-message {
  margin-top: 26px;
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .track-solid-layout {
    grid-template-columns: 1fr;
  }

  .track-timeline,
  .track-meta {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RETURN ORDER — SOLID CONTROL PANEL
===================================================== */

.return-solid {
  background: #020617;
  color: #e5e7eb;
}

/* HEADER */

.return-solid-header {
  padding: 90px 0 60px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.return-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 18px;
}

.return-solid-header h1 {
  font-size: 40px;
  font-weight: 900;
}

.return-solid-header p {
  max-width: 620px;
  color: #94a3b8;
}

/* LAYOUT */

.return-solid-layout {
  padding: 70px 0;
  display: flex;
  justify-content: center;
}

/* PANEL */

.return-solid-panel {
  width: 100%;
  max-width: 520px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
}

.return-solid-panel h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.return-hint {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 26px;
}

/* FORM */

.return-solid-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.return-solid-form input,
.return-solid-form select,
.return-solid-form textarea {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 18px;
}

.return-solid-form textarea {
  min-height: 120px;
  resize: vertical;
}

.return-solid-form input:focus,
.return-solid-form select:focus,
.return-solid-form textarea:focus {
  outline: none;
  border-color: #6366f1;
}

/* ERROR */

.return-solid-error {
  padding: 18px;
  border-left: 6px solid #ef4444;
  background: rgba(239, 68, 68, 0.08);
  margin-bottom: 18px;
}

.return-solid-error p {
  color: #fecaca;
  font-size: 14px;
}

/* SUBMIT */

.return-solid-submit {
  width: 100%;
  padding: 16px;
  background: #6366f1;
  border: none;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.return-solid-submit:hover {
  background: #4f46e5;
}

/* POLICY */

.return-policy-note {
  margin-top: 16px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}

/* SUCCESS */

.return-solid-success {
  width: 100%;
  max-width: 520px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 46px 40px;
  text-align: center;
}

.return-success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-size: 34px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.return-solid-success h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.return-solid-success p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* META */

.return-meta {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  padding: 16px;
  margin-bottom: 26px;
}

.return-meta span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* BUTTON */

.return-solid-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #6366f1;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.return-solid-btn:hover {
  background: #4f46e5;
}

/* RESPONSIVE */

@media (max-width: 600px) {
  .return-solid-panel,
  .return-solid-success {
    padding: 32px;
  }
}

/* ================= DARK SELECT FIX ================= */

/* Closed select */
.return-solid-form select {
  background-color: #020617;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.12);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Dropdown options */
.return-solid-form select option {
  background-color: #020617;
  color: #ffffff;
}

/* Hover / focus */
.return-solid-form select:focus {
  outline: none;
  border-color: #6366f1;
}

/* Optional: disabled placeholder option */
.return-solid-form select option[value=""] {
  color: #94a3b8;
}

/* =====================================================
   SHOP / PRODUCT GRID — SOLID (NAMESPACED)
===================================================== */

.shop-solid {
  background: #020617;
  color: #e5e7eb;
}

/* HEADER */
.shop-solid-header {
  padding: 90px 0 60px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.shop-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 18px;
}
.shop-solid-header h1 {
  font-size: 42px;
  font-weight: 900;
}
.shop-solid-header p {
  max-width: 620px;
  color: #94a3b8;
}
.shop-query {
  margin-top: 18px;
  font-size: 14px;
  color: #cbd5f5;
}

/* SECTION */
.shop-solid-section {
  padding: 70px 0 100px;
}

/* GRID */

.shop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */

.shop-card {
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  background: #020617;
}

/* IMAGE */

.shop-card-image {
  position: relative;
  padding: 26px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.shop-card-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

/* STOCK */

.shop-card-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border: 2px solid;
}

.shop-card-stock.in {
  color: #22c55e;
  border-color: #22c55e;
}

.shop-card-stock.out {
  color: #ef4444;
  border-color: #ef4444;
}

/* CONTENT */

.shop-card-content {
  padding: 22px;
}

.shop-card-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.shop-card-content p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* FOOTER */

.shop-card-footer {
  margin-top: auto;
  padding: 18px 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-price {
  font-size: 18px;
  font-weight: 800;
}

/* BUTTON */

.shop-card-btn {
  padding: 10px 18px;
  background: #6366f1;
  border: none;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.shop-card-btn:hover {
  background: #4f46e5;
}

.shop-card-btn.disabled {
  background: #374151;
  color: #9ca3af;
  cursor: not-allowed;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .shop-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .shop-card-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PRODUCT PAGE — SOLID / PREMIUM
===================================================== */

.product-solid {
  background: #020617;
  color: #e5e7eb;
}

/* HERO */

.product-solid-hero {
  padding: 90px 0 70px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.product-brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #94a3b8;
}

.product-solid-hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin: 10px 0 14px;
}

.product-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.rating em {
  font-size: 13px;
  color: #94a3b8;
  margin-left: 6px;
}

.stock {
  font-size: 13px;
  font-weight: 800;
}

.stock.in {
  color: #22c55e;
}
.stock.out {
  color: #ef4444;
}

.product-price {
  font-size: 34px;
  font-weight: 900;
}

/* MAIN */

.product-solid-main {
  padding: 80px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-medias {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
}

.product-medias img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

/* SUMMARY */

.product-summary h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* HIGHLIGHTS */

.product-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.product-highlights div {
  border-left: 4px solid #6366f1;
  padding-left: 12px;
  font-size: 14px;
}

/* CTA */

.product-buy {
  padding: 16px 34px;
  background: #6366f1;
  border: none;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.product-buy:hover {
  background: #4f46e5;
}

.product-buy.disabled {
  background: #374151;
  cursor: not-allowed;
}

/* SPECS */

.product-solid-specs {
  padding: 80px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.spec-grid span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* COMPAT */

.product-solid-compat {
  padding: 70px 0;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.compat-grid div {
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  text-align: center;
}

.compat-grid i {
  font-size: 22px;
  color: #6366f1;
  display: block;
  margin-bottom: 8px;
}

/* STICKY BAR */

.product-sticky {
  position: sticky;
  bottom: 0;
  background: #020617;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.sticky-inner button {
  padding: 12px 26px;
  background: #6366f1;
  border: none;
  color: #fff;
  font-weight: 800;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .spec-grid,
  .compat-grid {
    grid-template-columns: 1fr;
  }
}

section.policy-page {
  padding: 50px;
  background-color: white;
}
