/* ═══════════════════════════════════════════
   MPB – MyPCBuilder | Main Stylesheet
   ═══════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────── */
:root {
  --red: #E31E24;
  --red-dark: #C21A1F;
  --red-glow: rgba(var(--red-rgb), 0.35);
  --black: #0B0B0B;
  --dark: #0D1B2A;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-4: #2a2a2a;
  --white: #FFFFFF;
  --gray-100: #f5f5f5;
  --gray-300: #d1d5db;
  --gray-400: #A0A0A0;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --border: rgba(var(--white-rgb), 0.08);
  --border-red: rgba(var(--red-rgb), 0.3);

  --blue-safety: #3B82F6;
  --purple-support: #8B5CF6;
  --orange-warning: #F59E0B;

  --red-rgb: 227, 30, 36;
  --white-rgb: 255, 255, 255;
  --black-rgb: 10, 10, 10;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Rajdhani', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 8px 32px rgba(var(--red-rgb), 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

:root[data-theme="light"] {
  --black: #F9FAFB;
  --dark: #F3F4F6;
  --dark-2: #FFFFFF;
  --dark-3: #E5E7EB;
  --dark-4: #D1D5DB;
  --white: #111827;
  --gray-100: #111827;
  --gray-300: #4B5563;
  --gray-400: #6B7280;
  --border: rgba(0, 0, 0, 0.1);
  --border-red: rgba(var(--red-rgb), 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  --red-rgb: 227, 30, 36;
  --white-rgb: 17, 24, 39;
  --black-rgb: 249, 250, 251;
}

:root[data-theme="brown"] {
  --black: #2E1B0F;
  --dark: #3E2723;
  --dark-2: #4E342E;
  --dark-3: #5D4037;
  --dark-4: #795548;
  --white: #FFF3E0;
  --gray-300: #D7CCC8;
  --gray-400: #BCAAA4;
  --border: rgba(255, 235, 205, 0.15);
  --border-red: rgba(var(--red-rgb), 0.35);
  --blue-safety: #29B6F6;
  --purple-support: #AB47BC;
  --orange-warning: #FFA726;

  --red-rgb: 227, 30, 36;
  --white-rgb: 255, 243, 224;
  --black-rgb: 46, 27, 15;
}

/* ─── Theme Switcher ────────────────────── */
.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-2);
  padding: 4px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.theme-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.theme-btn.active {
  border: 2px solid #fff;
  transform: scale(1.1);
}

.theme-btn:hover {
  transform: scale(1.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.red {
  color: var(--red);
}

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.925rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 4px 16px rgba(var(--red-rgb), 0.3);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(var(--white-rgb), 0.4);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── Section Shared ────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(var(--red-rgb), 0.12);
  border: 1px solid var(--border-red);
  color: var(--red);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════ */
.top-bar {
  background: var(--red);
  color: var(--white);
  border-bottom: none;
  padding: 8px 0;
  font-size: 0.78rem;
}

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

.top-bar-brands {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
}

.brand-logo {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.brand-sep {
  opacity: 0.3;
}

.brand-icon {
  width: 18px;
  height: 18px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition);
  font-size: 0.78rem;
}

.top-bar-link:hover {
  opacity: 1;
}

.top-bar-link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(var(--black-rgb), 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(var(--black-rgb), 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.navbar-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.navbar-bottom-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-m {
  color: var(--white);
}

.logo-pb {
  color: var(--red);
}

.logo-text {
  line-height: 1.1;
}

.logo-name {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-left: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Nav Search Expanded */
.nav-search-expanded {
  flex: 1;
  max-width: 600px;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-expanded input {
  width: 100%;
  padding: 10px 48px 10px 16px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-search-expanded input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(var(--red-rgb), 0.2);
}

.nav-search-expanded-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  padding: 4px;
}

.nav-search-expanded-btn:hover {
  color: var(--red);
}

.nav-search-expanded-btn svg {
  width: 18px;
  height: 18px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-search {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--gray-300);
  transition: all var(--transition);
}

.nav-search:hover {
  background: var(--dark-4);
  color: var(--white);
}

.nav-search svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.nav-btn-support {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  border-radius: var(--radius-sm);
  color: var(--gray-300);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-btn-support:hover {
  background: var(--dark-3);
  border-color: var(--gray-500);
  color: var(--white);
}

.nav-btn-support svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(var(--red-rgb), 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(130, 0, 10, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--black) 0%, var(--dark-4) 50%, var(--black) 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

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

/* Hero Content */
.hero-content {
  padding-right: 20px;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tagline-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

.tagline-link {
  color: var(--red);
  font-weight: 600;
}

.tagline-link:hover {
  text-decoration: underline;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-heading-red {
  color: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-bottom: 12px;
  max-width: 520px;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(var(--red-rgb), 0.1);
  animation: float 5s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(var(--red-rgb), 0.08) 100%);
  pointer-events: none;
}

.hero-badge-fps {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--red-rgb), 0.5);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  animation: float 3.5s ease-in-out infinite reverse;
}

.fps-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.fps-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.hero-badge-perf {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

.hero-badge-perf svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gray-500);
  border-bottom: 2px solid var(--gray-500);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   FEATURED BUILDS
════════════════════════════════════════════ */
.builds-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

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

.build-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.build-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-red);
}

.build-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(var(--red-rgb), 0.15), var(--shadow-md);
  position: relative;
}

.build-card--featured::before {
  content: 'BEST SELLER';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 18px;
  border-radius: 0 0 8px 8px;
  z-index: 1;
}

.build-card-top {
  padding: 24px 24px 0;
}

.build-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(var(--red-rgb), 0.12);
  border: 1px solid var(--border-red);
  color: var(--red);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.build-tag--best {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--orange-warning);
}

.build-tag--elite {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--blue-safety);
}

.build-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.build-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--orange-warning);
  margin-bottom: 4px;
}

.star-icon {
  width: 14px;
  height: 14px;
  fill: var(--orange-warning);
}

.build-img-wrap {
  position: relative;
  margin: 16px 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}

.build-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.build-card:hover .build-img {
  transform: scale(1.05);
}

.build-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

.build-specs {
  padding: 0 24px;
  flex: 1;
  margin-bottom: 20px;
}

.build-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--gray-300);
  padding: 6px 0;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.05);
}

.build-specs li:last-child {
  border-bottom: none;
}

.build-specs svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
  flex-shrink: 0;
}

.build-footer {
  padding: 0 24px 24px;
}

.build-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.build-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.build-reviews {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.build-reviews svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
}

/* ════════════════════════════════════════════
   FPS / PERFORMANCE SECTION
════════════════════════════════════════════ */
.fps-section {
  padding: 100px 0;
  background: var(--dark);
}

.fps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fps-visual {
  position: relative;
}

.fps-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.fps-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.fps-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(var(--red-rgb), 0.05) 100%);
}

.fps-counter-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--red);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  min-width: 100px;
}

.fps-counter-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.fps-counter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-top: 2px;
}

.fps-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.fps-desc {
  font-size: 0.925rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  line-height: 1.75;
}

.fps-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.fps-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.fps-feature:hover {
  border-color: var(--border-red);
}

.fps-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.fps-feature strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.fps-feature span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  margin-bottom: 56px;
}

.how-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.how-step:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(var(--red-rgb), 0.08);
  line-height: 1;
  margin-bottom: -10px;
  user-select: none;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(var(--red-rgb), 0.1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.how-step:hover .step-icon {
  background: rgba(var(--red-rgb), 0.2);
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  stroke-width: 1.5;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.855rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.how-connector {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  color: var(--red);
  opacity: 0.5;
  align-self: center;
  margin-top: 80px;
}

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

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark);
}

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

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.testimonial-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-video-thumb img {
  transform: scale(1.04);
}

.testimonial-video-thumb--dark {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}

.test-placeholder-icon {
  font-size: 3.5rem;
}

.play-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(var(--red-rgb), 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(var(--red-rgb), 0.4);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--red);
}

.play-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
  margin-left: 3px;
}

.channel-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}

.channel-badge--alt {
  background: var(--red);
}

.testimonial-body {
  padding: 24px;
  flex: 1;
}

.testimonial-stars {
  color: var(--orange-warning);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-body p {
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 2px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.author-avatar--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.author-avatar--blue {
  background: #2563eb;
  color: var(--white);
  border-color: rgba(37, 99, 235, 0.5);
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Highlight card */
.testimonial-card--highlight {
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(var(--red-rgb), 0.05) 100%);
  border-color: var(--border-red);
  padding: 32px;
}

.testimonial-quote {
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--red);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-card--highlight p {
  font-size: 0.9rem;
  color: var(--gray-200, #e5e7eb);
  margin-bottom: 24px;
}

.testimonial-tag {
  margin-top: 20px;
  padding: 6px 12px;
  background: rgba(var(--red-rgb), 0.1);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  display: inline-block;
}

/* ════════════════════════════════════════════
   PRODUCT SHOWCASE
════════════════════════════════════════════ */
.products-section {
  padding: 100px 0;
  background: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.product-img-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-red {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-4), var(--dark-2));
}

.product-img-dark {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2), var(--dark-3));
}

.product-icon {
  font-size: 3rem;
}

.product-info {
  padding: 20px 24px 24px;
  flex: 1;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.825rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════
   SUPPORT SECTION
════════════════════════════════════════════ */
.support-section {
  padding: 100px 0;
  background: var(--dark);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.support-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 48px;
  transition: border-color var(--transition), transform var(--transition);
}

.support-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.support-card--red {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  border-color: transparent;
}

.support-card--red:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.support-icon--light {
  background: rgba(var(--white-rgb), 0.15);
  border-color: rgba(var(--white-rgb), 0.3);
}

.support-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple-support);
  stroke-width: 1.5;
}

.support-icon--light svg {
  stroke: var(--white);
}

.support-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.support-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 24px;
}

.support-card--red p {
  color: rgba(var(--white-rgb), 0.8);
}

.support-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: letter-spacing var(--transition);
}

.support-link:hover {
  letter-spacing: 0.08em;
}

.support-link--light {
  color: var(--white);
}

/* ════════════════════════════════════════════
   DELIVERY
════════════════════════════════════════════ */
.delivery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

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

.delivery-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.delivery-card:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(var(--red-rgb), 0.08);
}

.delivery-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.delivery-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.delivery-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-300);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-btn:hover {
  color: var(--white);
}

.faq-btn[aria-expanded="true"] {
  color: var(--red);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-panel.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-panel p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(var(--red-rgb), 0.08) 0%, rgba(100, 0, 10, 0.15) 100%);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 260px;
  padding: 13px 20px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--red);
}

.newsletter-form input::placeholder {
  color: var(--gray-600);
}

.footer-main {
  background: var(--black);
  padding: 72px 0 48px;
}

.footer-main-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
  margin: 8px 0 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-col ul a {
  font-size: 0.855rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--red);
}

.footer-bottom {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-600);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gray-300);
}

/* ─── Search Overlay ────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-modal {
  width: 100%;
  max-width: 640px;
  padding: 20px;
  position: relative;
}

.search-modal input {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.2rem;
  background: var(--dark-2);
  border: 2px solid var(--red);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: inherit;
  outline: none;
}

.search-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 1.2rem;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--white);
}

.search-suggestions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-suggestions span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.search-suggestions a {
  padding: 6px 14px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gray-300);
  transition: all var(--transition);
}

.search-suggestions a:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ─── Animations ────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ─── Reveal on Scroll ──────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: none;
}

/* ─── Contact Us Section ────────────────── */
.contact-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-info p {
  color: var(--gray-400);
  line-height: 1.6;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.contact-email:hover {
  color: var(--red-hover);
  border-bottom: 2px solid var(--red);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(var(--red-rgb), 0.2);
}

/* ─── Shipping Info Section ────────────────── */
.shipping-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.shipping-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.shipping-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 10px 30px rgba(var(--red-rgb), 0.1);
}

.shipping-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1;
  color: var(--white);
}

.shipping-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.shipping-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.shipping-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shipping-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.5;
}

.shipping-list li svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.shipping-columns h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ─── Legal / Terms Section ──────────────── */
.legal-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.legal-content {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--dark-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.legal-block {
  margin-bottom: 30px;
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.legal-block h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.legal-block p, 
.legal-block ul {
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.legal-block ul {
  padding-left: 20px;
  list-style-type: square;
}

.legal-block ul li {
  margin-bottom: 8px;
}

.legal-block strong {
  color: var(--white);
}

.legal-highlight {
  background: rgba(var(--red-rgb), 0.05);
  border-left: 4px solid var(--red);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-warning {
  font-weight: bold;
}

.legal-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.legal-link:hover {
  text-decoration: underline;
  color: var(--red-dark);
}

/* ─── Responsive ────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner {
    gap: 32px;
  }

  .builds-grid {
    gap: 20px;
  }

  .fps-inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-sub,
  .hero-desc {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .builds-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .fps-inner {
    grid-template-columns: 1fr;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .how-connector {
    display: none;
  }

  .how-step {
    max-width: 100%;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

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

  .delivery-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .faq-header {
    position: static;
  }

  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .top-bar-brands {
    display: none;
  }

  .nav-links,
  .nav-btn-support,
  .navbar-bottom-row {
    display: none;
  }

  /* Hamburger toggled state overrides */
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .navbar-bottom-row {
    position: fixed;
    top: 60px; /* Below the top nav actions */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(var(--black-rgb), 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    z-index: 999;
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 24px;
  }

  body.nav-open .nav-link {
    font-size: 1.4rem;
  }

  body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hamburger {
    display: flex;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .hero-heading {
    font-size: 2.4rem;
  }

  .support-card {
    padding: 32px 28px;
  }

  .shipping-columns {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}
/* ═══════════════════════════════════════════
   BTN-53 Animated Button (Uiverse.io/doniaskima)
   ═══════════════════════════════════════════ */
.btn-53, .btn-53 *, .btn-53 :after, .btn-53 :before, .btn-53:after, .btn-53:before { box-sizing: border-box; }
.btn-53 {
  -webkit-tap-highlight-color: transparent;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  overflow: hidden; position: relative;
  display: inline-block; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-53 .original {
  background: inherit; color: inherit;
  display: grid; inset: 0; place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.btn-53:hover .original { transform: translateY(100%); }
.btn-53 .letters { display: inline-flex; }
.btn-53 .letters span {
  opacity: 0; transform: translateY(-15px); display: inline-block;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}
.btn-53 .letters span:nth-child(2n) { transform: translateY(15px); }
.btn-53:hover .letters span { opacity: 1; transform: translateY(0); }
.btn-53:hover .letters span:nth-child(2)  { transition-delay: 0.05s; }
.btn-53:hover .letters span:nth-child(3)  { transition-delay: 0.10s; }
.btn-53:hover .letters span:nth-child(4)  { transition-delay: 0.15s; }
.btn-53:hover .letters span:nth-child(5)  { transition-delay: 0.20s; }
.btn-53:hover .letters span:nth-child(6)  { transition-delay: 0.25s; }
.btn-53:hover .letters span:nth-child(7)  { transition-delay: 0.30s; }
.btn-53:hover .letters span:nth-child(8)  { transition-delay: 0.35s; }
.btn-53:hover .letters span:nth-child(9)  { transition-delay: 0.40s; }
.btn-53:hover .letters span:nth-child(10) { transition-delay: 0.45s; }
.btn-53:hover .letters span:nth-child(11) { transition-delay: 0.50s; }
.btn-53:hover .letters span:nth-child(12) { transition-delay: 0.55s; }
.btn-53:hover .letters span:nth-child(13) { transition-delay: 0.60s; }
.btn-53:hover .letters span:nth-child(14) { transition-delay: 0.65s; }
.btn-53:hover .letters span:nth-child(15) { transition-delay: 0.70s; }

/* ═══════════════════════════════════════════
   Page Speed Loader Overlay
   ═══════════════════════════════════════════ */
#page-loader-overlay {
  position: fixed; inset: 0; z-index: 999999;
  background: rgba(11,11,11,0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#page-loader-overlay.active { opacity: 1; pointer-events: all; }
#page-loader-overlay .loader {
  position: relative; animation: speeder 0.4s linear infinite;
}
#page-loader-overlay .loader > span {
  height: 5px; width: 35px; background: #E31E24;
  position: absolute; top: -19px; left: 60px; border-radius: 2px 10px 1px 0;
}
#page-loader-overlay .base span {
  position: absolute; width: 0; height: 0;
  border-top: 6px solid transparent;
  border-right: 100px solid #E31E24;
  border-bottom: 6px solid transparent;
}
#page-loader-overlay .base span:before {
  content: ""; height: 22px; width: 22px; border-radius: 50%;
  background: #E31E24; position: absolute; right: -110px; top: -16px;
}
#page-loader-overlay .base span:after {
  content: ""; position: absolute; width: 0; height: 0;
  border-top: 0 solid transparent; border-right: 55px solid #E31E24;
  border-bottom: 16px solid transparent; top: -16px; right: -98px;
}
#page-loader-overlay .face {
  position: absolute; height: 12px; width: 20px; background: #E31E24;
  border-radius: 20px 20px 0 0; transform: rotate(-40deg); right: -125px; top: -15px;
}
#page-loader-overlay .face:after {
  content: ""; height: 12px; width: 12px; background: #E31E24;
  right: 4px; top: 7px; position: absolute;
  transform: rotate(40deg); transform-origin: 50% 50%; border-radius: 0 0 0 2px;
}
#page-loader-overlay .loader > span > span:nth-child(1),
#page-loader-overlay .loader > span > span:nth-child(2),
#page-loader-overlay .loader > span > span:nth-child(3),
#page-loader-overlay .loader > span > span:nth-child(4) {
  width: 30px; height: 1px; background: #E31E24;
  position: absolute; animation: fazer1 0.2s linear infinite;
}
#page-loader-overlay .loader > span > span:nth-child(2) { top: 3px; animation: fazer2 0.4s linear infinite; }
#page-loader-overlay .loader > span > span:nth-child(3) { top: 1px; animation: fazer3 0.4s linear infinite; animation-delay: -1s; }
#page-loader-overlay .loader > span > span:nth-child(4) { top: 4px; animation: fazer4 1s linear infinite; animation-delay: -1s; }
@keyframes fazer1 { 0% { left: 0; } 100% { left: -80px; opacity: 0; } }
@keyframes fazer2 { 0% { left: 0; } 100% { left: -100px; opacity: 0; } }
@keyframes fazer3 { 0% { left: 0; } 100% { left: -50px; opacity: 0; } }
@keyframes fazer4 { 0% { left: 0; } 100% { left: -150px; opacity: 0; } }
@keyframes speeder {
  0%   { transform: translate(2px,1px) rotate(0deg); }
  10%  { transform: translate(-1px,-3px) rotate(-1deg); }
  20%  { transform: translate(-2px,0px) rotate(1deg); }
  30%  { transform: translate(1px,2px) rotate(0deg); }
  40%  { transform: translate(1px,-1px) rotate(1deg); }
  50%  { transform: translate(-1px,3px) rotate(-1deg); }
  60%  { transform: translate(-1px,1px) rotate(0deg); }
  70%  { transform: translate(3px,1px) rotate(-1deg); }
  80%  { transform: translate(-2px,-1px) rotate(1deg); }
  90%  { transform: translate(2px,1px) rotate(0deg); }
  100% { transform: translate(1px,-2px) rotate(-1deg); }
}
#page-loader-overlay .longfazers { position: absolute; width: 100%; height: 100%; top:0; left:0; }
#page-loader-overlay .longfazers span { position: absolute; height: 2px; width: 20%; background: rgba(227,30,36,0.35); }
#page-loader-overlay .longfazers span:nth-child(1) { top: 20%; animation: lf  0.6s linear infinite; animation-delay: -5s; }
#page-loader-overlay .longfazers span:nth-child(2) { top: 40%; animation: lf2 0.8s linear infinite; animation-delay: -1s; }
#page-loader-overlay .longfazers span:nth-child(3) { top: 60%; animation: lf3 0.6s linear infinite; }
#page-loader-overlay .longfazers span:nth-child(4) { top: 80%; animation: lf4 0.5s linear infinite; animation-delay: -3s; }
@keyframes lf  { 0% { left: 200%; } 100% { left: -200%; opacity: 0; } }
@keyframes lf2 { 0% { left: 200%; } 100% { left: -200%; opacity: 0; } }
@keyframes lf3 { 0% { left: 200%; } 100% { left: -100%; opacity: 0; } }
@keyframes lf4 { 0% { left: 200%; } 100% { left: -100%; opacity: 0; } }
