/* ==========================================================================
   3T LAPTOP ADVISOR - RETRO ARCADE SYNTHWAVE / SPACE DESIGN SYSTEM
   Fonts: Barlow Condensed (Tiêu đề) + Be Vietnam Pro (Toàn bộ nội dung)
   Hỗ trợ 100% tiếng Việt có dấu
   Theme: Cosmic Synthwave Arcade (Bg2, Có Elements, Main Title, Pixel Badges)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Be+Vietnam+Pro:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  /* Typography */
  --font-main: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  --font-heading: 'Barlow Condensed', 'Be Vietnam Pro', sans-serif;

  /* Color Palette - Cosmic Synthwave Neon */
  --bg-page: #100420;
  --bg-card: rgba(26, 11, 51, 0.88);
  --bg-card-solid: #1D0C3A;
  --bg-card-light: #2A114E;
  
  --navy-dark: #120626;
  --navy-panel: #1A0B33;
  --pink-neon: #FF2A85;
  --pink-glow: rgba(255, 42, 133, 0.35);
  --pink-subtle: rgba(255, 42, 133, 0.16);
  --mint-accent: #00F5D4;
  --mint-glow: rgba(0, 245, 212, 0.35);
  --mint-subtle: rgba(0, 245, 212, 0.14);
  --yellow-accent: #FFDE59;
  --yellow-glow: rgba(255, 222, 89, 0.35);
  --yellow-subtle: rgba(255, 222, 89, 0.14);
  --purple-accent: #B537F2;
  --purple-subtle: rgba(181, 55, 242, 0.16);
  --blue-subtle: rgba(82, 229, 255, 0.15);
  
  --text-main: #FFFFFF;
  --text-muted: #CBD5E1;
  --text-dim: #94A3B8;
  --text-light: #F8FAFC;
  --border-dark: #090214;
  --border-neon: #FF2A85;
  --border-cyan: #00F5D4;
  --border-glass: rgba(255, 255, 255, 0.16);

  /* Shadows & Radius */
  --radius-card: 14px;
  --radius-button: 6px;
  --shadow-retro: 3px 4px 0px #090214;
  --shadow-retro-lg: 4px 6px 0px #090214;
  --shadow-neon-pink: 0 0 16px rgba(255, 42, 133, 0.4);
  --shadow-neon-cyan: 0 0 16px rgba(0, 245, 212, 0.4);
  --shadow-partner-teal: 4px 6px 0px #00F5D4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: #100420 url('../img/bg2.png') no-repeat center top / cover fixed;
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  body {
    background-image: url('../img/bg.png');
  }
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.site-wrapper {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 48px;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.text-pink {
  color: var(--pink-neon);
  text-shadow: 0 0 12px rgba(255, 42, 133, 0.4);
}

/* ==========================================================================
   HEADER / NAVBAR (GLASSMORPHIC NEON)
   ========================================================================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  margin: 16px 0 28px;
  background: rgba(22, 8, 44, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 42, 133, 0.35);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 15px rgba(255, 42, 133, 0.15);
}

.header-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-brand-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.5));
}

.brand-logo-img {
  height: 44px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #F1F5F9;
  text-decoration: none;
  transition: color 0.15s ease, text-shadow 0.15s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link.active {
  color: var(--pink-neon);
  text-shadow: 0 0 10px rgba(255, 42, 133, 0.5);
  border-bottom: 2px solid var(--pink-neon);
  padding-bottom: 2px;
}

.nav-link:hover {
  color: var(--mint-accent);
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

.btn-header-start {
  background-color: var(--mint-accent);
  color: #090214;
  border: 2px solid #090214;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 2px 2px 0px #090214, 0 0 12px rgba(0, 245, 212, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.btn-header-start:hover {
  transform: translateY(-1px);
  background-color: #38ffdf;
  box-shadow: 3px 3px 0px #090214, 0 0 18px rgba(0, 245, 212, 0.6);
}

.arrow-box-sm {
  background-color: var(--yellow-accent);
  color: #090214;
  border: 1px solid #090214;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 11px;
  font-weight: 900;
}

/* ==========================================================================
   DATA STATUS & FALLBACK BANNER
   ========================================================================== */
.data-fallback-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 222, 89, 0.12);
  border: 1.5px solid var(--yellow-accent);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 24px;
  color: #FEF08A;
  font-size: 13px;
  box-shadow: 0 0 14px rgba(255, 222, 89, 0.2);
  animation: fadeInDown 0.3s ease;
}

.data-fallback-banner.hidden {
  display: none !important;
}

.data-fallback-banner .fallback-content {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.data-fallback-banner .fallback-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.data-fallback-banner .btn-close-banner {
  background: transparent;
  border: 1px solid rgba(255, 222, 89, 0.4);
  border-radius: 4px;
  color: #FEF08A;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  padding: 2px 8px;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.data-fallback-banner .btn-close-banner:hover {
  background: var(--yellow-accent);
  color: #090214;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HOME PAGE (BÁM SÁT MOCKUP & SYNTHWAVE PALETTE)
   ========================================================================== */
.home-page-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* 1. Hero Card Container */
.hero-outer-card {
  background: linear-gradient(135deg, rgba(32, 13, 64, 0.92) 0%, rgba(18, 7, 36, 0.96) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--pink-neon);
  border-radius: 16px;
  position: relative;
  padding: 38px 42px 34px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 42, 133, 0.25);
}

.hero-main-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag-pill-outlined {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 42, 133, 0.15);
  border: 1.5px solid var(--pink-neon);
  color: #FFA5C8;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.2);
}

.hero-tag-pill-outlined .dot-pink {
  width: 6px;
  height: 6px;
  background-color: var(--pink-neon);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--pink-neon);
}

.hero-headline-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-desc-text {
  font-size: 14px;
  color: #E2E8F0;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 22px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-hero-cta-pink {
  background-color: var(--pink-neon);
  color: #FFFFFF;
  border: 2px solid #090214;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 800;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 3px 3px 0px #090214, 0 0 16px rgba(255, 42, 133, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}

.btn-hero-cta-pink:hover {
  background-color: #ff4797;
  transform: translateY(-1px);
  box-shadow: 4px 4px 0px #090214, 0 0 22px rgba(255, 42, 133, 0.65);
}

.arrow-box-badge {
  background-color: var(--yellow-accent);
  color: #090214;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #090214;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.btn-hero-outline-link {
  background-color: transparent;
  color: var(--mint-accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1.5px solid var(--mint-accent);
  padding-bottom: 2px;
  transition: all 0.15s ease;
}

.btn-hero-outline-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
  text-shadow: 0 0 8px rgba(0, 245, 212, 0.6);
}

/* Hero Stats Box inside Hero Left Column */
.hero-stats-banner {
  background-color: rgba(13, 4, 28, 0.94);
  border: 1.5px solid var(--mint-accent);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px 18px;
  width: 100%;
  max-width: 460px;
  box-shadow: 3px 3px 0px var(--mint-accent), 0 0 14px rgba(0, 245, 212, 0.2);
}

.stat-item-block {
  text-align: center;
  border-right: 1px solid rgba(0, 245, 212, 0.25);
  padding: 0 8px;
}

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

.stat-number-yellow {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow-accent);
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 222, 89, 0.45);
}

.stat-label-white {
  font-size: 8.5px;
  font-weight: 800;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Right Image & Stickers */
.hero-right-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-graphic {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.hero-3d-graphic:hover {
  transform: scale(1.02);
}

.floating-sparkle-top {
  position: absolute;
  top: -10px;
  right: 20px;
  color: var(--yellow-accent);
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 12px var(--yellow-accent);
  animation: pulseSparkle 2s infinite ease-in-out;
}

@keyframes pulseSparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.3) rotate(15deg); opacity: 1; }
}

/* Floating Stickers */
.floating-sticker {
  position: absolute;
  border: 2px solid #090214;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 900;
  box-shadow: 2px 2px 0px #090214;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  text-align: center;
  line-height: 1.15;
  z-index: 3;
}

.sticker-yellow {
  top: 8px;
  left: -10px;
  background-color: var(--yellow-accent);
  color: #090214;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  box-shadow: 2px 2px 0px #090214, 0 0 12px rgba(255, 222, 89, 0.4);
}

.sticker-teal {
  bottom: 20px;
  right: -12px;
  background-color: var(--mint-accent);
  color: #090214;
  border-radius: 20px;
  padding: 5px 12px;
  transform: rotate(6deg);
  box-shadow: 2px 2px 0px #090214, 0 0 12px rgba(0, 245, 212, 0.4);
}

.sticker-press-start {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(18, 6, 36, 0.95);
  color: var(--pink-neon);
  border: 1.5px solid var(--pink-neon);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 4px;
  box-shadow: 2px 2px 0px #090214, 0 0 10px rgba(255, 42, 133, 0.4);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ==========================================================================
   2. BENEFITS SECTION (VÌ SAO CHỌN 3T?)
   ========================================================================== */
.benefits-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefits-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.pill-outline-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 245, 212, 0.14);
  border: 1.5px solid var(--mint-accent);
  color: var(--mint-accent);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.25);
}

.benefits-main-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.benefits-intro-right {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.45;
  text-align: right;
}

.benefits-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card-box {
  border: 2px solid #090214;
  border-radius: 12px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.benefit-card-box:hover {
  transform: translateY(-4px);
}

.benefit-card-box.theme-mint {
  background: rgba(0, 245, 212, 0.12);
  border-color: var(--mint-accent);
  box-shadow: 3px 4px 0px var(--mint-accent), 0 0 16px rgba(0, 245, 212, 0.2);
}
.benefit-card-box.theme-pink {
  background: rgba(255, 42, 133, 0.12);
  border-color: var(--pink-neon);
  box-shadow: 3px 4px 0px var(--pink-neon), 0 0 16px rgba(255, 42, 133, 0.2);
}
.benefit-card-box.theme-yellow {
  background: rgba(255, 222, 89, 0.12);
  border-color: var(--yellow-accent);
  box-shadow: 3px 4px 0px var(--yellow-accent), 0 0 16px rgba(255, 222, 89, 0.2);
}
.benefit-card-box.theme-blue {
  background: rgba(181, 55, 242, 0.14);
  border-color: var(--purple-accent);
  box-shadow: 3px 4px 0px var(--purple-accent), 0 0 16px rgba(181, 55, 242, 0.2);
}

.card-box-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.card-box-center-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.benefit-pixel-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card-box:hover .benefit-pixel-icon {
  transform: scale(1.15) rotate(4deg);
}

.card-box-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.card-box-desc {
  font-size: 11.5px;
  color: #CBD5E1;
  line-height: 1.45;
}

/* ==========================================================================
   3. ĐỐI TÁC ĐỒNG HÀNH (PARTNERS SECTION)
   ========================================================================== */
.partners-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.partners-main-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(0, 245, 212, 0.4);
}

.partners-logos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border: 2px solid var(--mint-accent);
  border-radius: 10px;
  box-shadow: 4px 6px 0px var(--mint-accent), 0 0 20px rgba(0, 245, 212, 0.25);
  background: rgba(22, 8, 44, 0.92);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.partner-logo-item {
  padding: 20px 14px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--mint-accent);
  border-right: 1.5px solid rgba(0, 245, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.4);
}

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

/* ==========================================================================
   4. HOW IT WORKS BANNER (COSMIC NAVY)
   ========================================================================== */
.how-it-works-navy-banner {
  background: linear-gradient(135deg, rgba(30, 11, 60, 0.94) 0%, rgba(15, 5, 32, 0.97) 100%);
  border: 2px solid var(--pink-neon);
  border-radius: 14px;
  padding: 34px 40px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 42, 133, 0.2);
}

.how-left-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-tag-pink {
  color: var(--pink-neon);
  background: rgba(255, 42, 133, 0.15);
  border: 1px solid var(--pink-neon);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  box-shadow: 0 0 8px rgba(255, 42, 133, 0.3);
}

.how-headline {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.btn-try-free-white {
  background-color: #FFFFFF;
  color: #090214;
  border: 2px solid #090214;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 800;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 2px 2px 0px var(--yellow-accent), 0 0 12px rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.btn-try-free-white:hover {
  transform: translateY(-1px);
  background-color: var(--yellow-accent);
  box-shadow: 3px 3px 0px #090214, 0 0 18px rgba(255, 222, 89, 0.6);
}

.how-steps-interactive {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.step-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-circle-badge {
  width: 48px;
  height: 48px;
  background-color: var(--mint-accent);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #090214;
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.step-node-desc {
  font-size: 11.5px;
  color: #E2E8F0;
  line-height: 1.4;
  max-width: 130px;
}

.step-flow-arrow {
  color: var(--yellow-accent);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-flow-arrow-icon {
  width: 24px;
  height: 24px;
  filter: invert(88%) sepia(50%) saturate(600%) hue-rotate(350deg) brightness(105%);
}

/* ==========================================================================
   PROGRESS BAR
   ========================================================================== */
.progress-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 16px;
  width: 100%;
  padding: 0 4px;
}

.progress-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.5px;
}

.step-line-track {
  flex: 1;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-right: 12px;
}

.step-line-fill {
  height: 100%;
  width: 0%;
  background-color: var(--mint-accent);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--mint-accent);
}

.progress-step-item.active .step-num {
  color: var(--pink-neon);
  text-shadow: 0 0 10px var(--pink-neon);
}

.progress-step-item.active .step-line-fill {
  width: 100%;
  background-color: var(--pink-neon);
  box-shadow: 0 0 10px var(--pink-neon);
}

.progress-step-item.completed .step-num {
  color: var(--mint-accent);
  text-shadow: 0 0 10px var(--mint-accent);
}

.progress-step-item.completed .step-line-fill {
  width: 100%;
  background-color: var(--mint-accent);
  box-shadow: 0 0 10px var(--mint-accent);
}

/* ==========================================================================
   RETRO ARCADE CARD CONTAINER (QUESTIONNAIRE)
   ========================================================================== */
.arcade-question-card {
  background: rgba(24, 9, 48, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 2px solid var(--pink-neon);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 42, 133, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.card-top-rivets {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 10px;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.2);
  background: rgba(16, 6, 32, 0.6);
}

.rivet-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #090214;
}

.rivet-mint { background-color: var(--mint-accent); box-shadow: 0 0 6px var(--mint-accent); }
.rivet-yellow { background-color: var(--yellow-accent); box-shadow: 0 0 6px var(--yellow-accent); }
.rivet-pink { background-color: var(--pink-neon); box-shadow: 0 0 6px var(--pink-neon); }

.card-content-body {
  padding: 34px 38px 38px;
}

.step-small-tag {
  color: var(--pink-neon);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255, 42, 133, 0.4);
}

.question-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.question-subtitle {
  font-size: 14px;
  color: #CBD5E1;
  margin-bottom: 26px;
}

/* Step 1 OS Grid */
.os-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 12px;
}

.os-select-card {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: rgba(36, 15, 72, 0.7);
  backdrop-filter: blur(10px);
}

.os-select-card.theme-mint {
  border-color: rgba(0, 245, 212, 0.4);
  box-shadow: 3px 3px 0px rgba(0, 245, 212, 0.3);
}
.os-select-card.theme-pink {
  border-color: rgba(255, 42, 133, 0.4);
  box-shadow: 3px 3px 0px rgba(255, 42, 133, 0.3);
}
.os-select-card.theme-yellow {
  border-color: rgba(255, 222, 89, 0.4);
  box-shadow: 3px 3px 0px rgba(255, 222, 89, 0.3);
}

.os-select-card:hover {
  transform: translateY(-3px);
  background-color: rgba(48, 20, 96, 0.9);
}

.os-select-card.selected {
  border: 2.5px solid #FFFFFF;
  box-shadow: 0 0 22px var(--pink-neon), 3px 4px 0px #090214;
  transform: translateY(-3px);
  background-color: rgba(56, 22, 112, 0.95);
}

.os-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  border: 2px solid #090214;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.os-icon-img {
  max-width: 100%;
  max-height: 100%;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.os-select-card:hover .os-icon-img {
  transform: scale(1.1);
}

.os-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.os-desc {
  font-size: 12.5px;
  color: #CBD5E1;
}

/* Step 2 Major & Branch */
.search-input-wrapper {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--mint-accent);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(16, 6, 32, 0.95);
  box-shadow: 3px 3px 0px var(--mint-accent), 0 0 14px rgba(0, 245, 212, 0.25);
  margin-bottom: 16px;
}

.search-icon-block {
  width: 50px;
  background-color: var(--yellow-accent);
  border-right: 2px solid #090214;
  display: flex;
  align-items: center;
  justify-content: center;
}

.major-text-input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 14.5px;
  font-family: var(--font-main);
  outline: none;
  background: transparent;
  color: #FFFFFF;
}

.major-text-input::placeholder {
  color: #64748B;
}

.major-chips-section {
  margin-bottom: 18px;
}

.chips-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--yellow-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.major-chip-btn {
  background-color: rgba(36, 15, 72, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.major-chip-btn:hover {
  background-color: rgba(255, 42, 133, 0.25);
  border-color: var(--pink-neon);
}

.major-chip-btn.active {
  background-color: var(--pink-neon);
  border-color: #FFFFFF;
  box-shadow: 0 0 14px rgba(255, 42, 133, 0.6), 2px 2px 0px #090214;
}

.chip-star {
  width: 14px;
  height: 14px;
  background-color: var(--yellow-accent);
  color: #090214;
  border: 1px solid #090214;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
}

.tip-banner-box {
  background-color: rgba(255, 222, 89, 0.12);
  border: 1.5px dashed var(--yellow-accent);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: #FEF08A;
  margin-bottom: 24px;
}

.tip-banner-box strong {
  color: var(--pink-neon);
}

.branch-section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.branch-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.branch-choice-card {
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  background-color: rgba(34, 14, 68, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.15s ease;
}

.branch-choice-card:hover {
  background-color: rgba(48, 20, 96, 0.9);
  border-color: var(--mint-accent);
}

.branch-choice-card.selected {
  background-color: rgba(0, 245, 212, 0.16);
  border: 2.5px solid var(--mint-accent);
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.4), 3px 3px 0px #090214;
}

.branch-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #090214;
  background-color: var(--yellow-accent);
  color: #090214;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Step 3 Options Grid */
.branch-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.option-group-section {
  display: flex;
  flex-direction: column;
}

.group-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.group-title-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--yellow-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 8px rgba(255, 222, 89, 0.3);
}

.group-title-label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  border-radius: 2px;
}

.group-rule-badge {
  font-size: 11px;
  font-weight: 700;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.options-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-btn {
  background-color: rgba(36, 15, 72, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.15s ease;
}

.option-btn:hover {
  background-color: rgba(0, 245, 212, 0.18);
  border-color: var(--mint-accent);
}

.option-btn.active {
  background-color: var(--pink-neon);
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 0 14px rgba(255, 42, 133, 0.55), 2px 2px 0px #090214;
}

/* Joystick Bar */
.card-bottom-navbar {
  background-color: rgba(14, 5, 30, 0.96);
  border-top: 2px solid rgba(255, 42, 133, 0.35);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.btn-nav-back {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 9px 18px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-nav-back:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.arcade-joystick-widget {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.joystick-ball {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--pink-neon);
  border: 1.5px solid #090214;
  margin-bottom: -2px;
  z-index: 2;
  box-shadow: 0 0 8px var(--pink-neon);
}

.joystick-base {
  width: 30px;
  height: 15px;
  background-color: var(--mint-accent);
  border: 1.5px solid #090214;
  border-radius: 10px 10px 3px 3px;
  box-shadow: 0 0 8px var(--mint-accent);
}

.btn-nav-next {
  background-color: var(--pink-neon);
  border: 2px solid #090214;
  border-radius: 6px;
  padding: 10px 22px;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 800;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 2px 2px 0px #090214, 0 0 14px rgba(255, 42, 133, 0.4);
  transition: all 0.15s ease;
}

.btn-nav-next:hover {
  background-color: #ff4797;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0px #090214, 0 0 20px rgba(255, 42, 133, 0.65);
}

/* ==========================================================================
   RESULTS VIEW (COSMIC LAPTOPS GRID)
   ========================================================================== */
.results-header-banner {
  background: linear-gradient(135deg, rgba(35, 14, 70, 0.95), rgba(18, 6, 36, 0.98));
  border: 2px solid var(--mint-accent);
  border-radius: var(--radius-card);
  padding: 24px 32px;
  margin-bottom: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(0, 245, 212, 0.3);
  color: #FFFFFF;
}

.banner-tag-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--pink-neon);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.4);
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow-accent);
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 222, 89, 0.4);
}

.results-meta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 2px;
}

.results-meta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.count-badge-pink {
  color: var(--pink-neon);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-title-main {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
}

.meta-subtitle-right {
  font-size: 12px;
  color: #CBD5E1;
  font-style: italic;
}

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

.result-laptop-card {
  background: rgba(26, 10, 52, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--pink-neon);
  border-radius: 12px;
  box-shadow: 4px 6px 0px #090214, 0 0 18px rgba(255, 42, 133, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.result-laptop-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 8px 0px #090214, 0 0 24px rgba(255, 42, 133, 0.4);
}

.card-top-badge {
  padding: 7px 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #090214;
  letter-spacing: 0.5px;
}

.badge-mint { background-color: var(--mint-accent); color: #090214; }
.badge-pink { background-color: var(--pink-neon); color: #FFFFFF; }
.badge-yellow { background-color: var(--yellow-accent); color: #090214; }

.laptop-img-wrapper {
  padding: 18px 16px 10px;
  background: rgba(14, 5, 30, 0.85);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
}

.retro-laptop-frame {
  width: 100%;
  max-width: 220px;
  height: 140px;
  border-radius: 8px;
  border: 1.5px solid #090214;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.laptop-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #090214;
  padding: 2px 10px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: var(--pink-neon);
}

.laptop-title-section {
  padding: 14px 16px 6px;
}

.laptop-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
  line-height: 1.2;
}

.laptop-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow-accent);
  text-shadow: 0 0 10px rgba(255, 222, 89, 0.45);
}

.laptop-match-score {
  padding: 0 16px 12px;
}

.score-label {
  font-size: 11.5px;
  color: #CBD5E1;
  margin-bottom: 4px;
}

.score-progress-track {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.score-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint-accent), var(--pink-neon));
  border-radius: 6px;
  box-shadow: 0 0 8px var(--mint-accent);
}

.specs-mini-table {
  width: calc(100% - 32px);
  margin: 0 16px 12px;
  border-collapse: collapse;
  font-size: 12px;
}

.specs-mini-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-mini-table td {
  padding: 5px 0;
}

.spec-label {
  font-weight: 700;
  color: #94A3B8;
  width: 42%;
}

.spec-value {
  font-weight: 600;
  color: #FFFFFF;
  text-align: right;
}

.laptop-explanation-box {
  background-color: rgba(14, 5, 30, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  flex: 1;
}

.exp-heading {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--mint-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.exp-list {
  list-style: none;
}

.exp-list li {
  font-size: 11.5px;
  color: #E2E8F0;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.bullet-icon {
  color: var(--mint-accent);
  font-weight: 900;
}

.card-actions {
  padding: 14px 16px;
}

.btn-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px;
  background-color: var(--yellow-accent);
  border: 1.5px solid #090214;
  border-radius: 6px;
  color: #090214;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  box-shadow: 2px 2px 0px #090214;
  transition: all 0.15s ease;
}

.btn-detail-link:hover {
  background-color: #ffe680;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0px #090214, 0 0 14px rgba(255, 222, 89, 0.5);
}

.empty-state-box {
  background: rgba(26, 10, 52, 0.92);
  border: 2px dashed var(--pink-neon);
  border-radius: var(--radius-card);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.empty-state-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.empty-state-desc {
  font-size: 13.5px;
  color: #CBD5E1;
  max-width: 480px;
  margin: 0 auto 20px;
}

.bottom-disclaimer-text {
  text-align: center;
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.results-bottom-callout-row {
  margin-bottom: 32px;
}

.tip-yellow-callout {
  background-color: rgba(255, 222, 89, 0.12);
  border: 1.5px dashed var(--yellow-accent);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 13px;
  color: #FEF08A;
  text-align: center;
}

.tip-yellow-callout strong {
  color: var(--pink-neon);
}

/* Floating Consult Button */
.btn-consult-floating-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--mint-accent);
  border: 2px solid #090214;
  border-radius: 50px;
  padding: 12px 24px;
  color: #090214;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4), 3px 4px 0px #090214, 0 0 16px rgba(0, 245, 212, 0.4);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-consult-floating-fixed:hover {
  transform: translateY(-2px);
  background-color: #38ffdf;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 4px 5px 0px #090214, 0 0 24px rgba(0, 245, 212, 0.7);
}

/* ==========================================================================
   FOOTER (SYNTHWAVE PURPLE / NEON FOOTER)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #180833 0%, #0B0217 100%);
  border-top: 2px solid var(--pink-neon);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 133, 0.2);
  padding: 40px 20px 24px;
  margin-top: auto;
  color: #CBD5E1;
}

.footer-inner-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1.4fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
  align-items: start;
}

.footer-col-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-brand-img {
  width: 100%;
  max-width: 190px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.45));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-brand-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.8));
}

.footer-brand-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--pink-neon);
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(255, 42, 133, 0.4);
}

.footer-about-text {
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  color: var(--yellow-accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 222, 89, 0.3);
}

.footer-info-list {
  list-style: none;
  font-size: 12px;
  color: #CBD5E1;
}

.footer-info-list li {
  margin-bottom: 5px;
  line-height: 1.4;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-social-links a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mint-accent);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.footer-social-links a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(0, 245, 212, 0.6);
}

.footer-copyright-bar {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 960px) {
  .hero-main-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left-col {
    align-items: center;
  }

  .hero-actions-row {
    justify-content: center;
  }

  .hero-stats-banner {
    max-width: 100%;
  }

  .benefits-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .benefits-intro-right {
    text-align: left;
  }

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

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

  .partner-logo-item:nth-child(2) {
    border-right: none;
  }

  .how-it-works-navy-banner {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .how-left-info {
    align-items: center;
    text-align: center;
  }

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

  .step-flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .os-grid-container {
    grid-template-columns: 1fr;
  }

  .branch-content-grid {
    grid-template-columns: 1fr;
  }

  .results-grid-container {
    grid-template-columns: 1fr;
  }

  .footer-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 580px) {
  .hero-outer-card {
    padding: 24px 18px;
  }

  .hero-headline-title {
    font-size: 34px;
  }

  .card-content-body {
    padding: 24px 16px;
  }

  .benefits-cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .partners-logos-container {
    grid-template-columns: 1fr;
  }

  .partner-logo-item {
    border-right: none;
    border-bottom: 1.5px solid rgba(0, 245, 212, 0.25);
  }

  .partner-logo-item:last-child {
    border-bottom: none;
  }

  .branch-grid-container {
    grid-template-columns: 1fr;
  }
}
