:root {
  /* --- DESIGN TOKENS --- */

  /* Palette: High-Authority Fintech */
  --bg-pure: #030507;
  --bg-surface: #0A0D10;
  --bg-elevated: #11151A;

  --primary: #3376F6;
  --primary-subtle: rgba(51, 118, 246, 0.1);
  --primary-glow: rgba(51, 118, 246, 0.25);

  --accent: #F9A825;
  --accent-subtle: rgba(249, 168, 37, 0.1);

  --text-main: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dim: #334155;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter Tight', sans-serif;

  --lh-tight: 1.1;
  --lh-base: 1.6;

  /* Layout & Spacing */
  --section-gap: clamp(100px, 15vh, 200px);
  --container-max: 1400px;
  --card-pad: 48px;
  --radius-xl: 32px;
  --radius-lg: 16px;

  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 1. RESET & BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Logo Style */
.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-pure);
  color: var(--text-secondary);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  /* Prevent header overlap on anchor links */
}

main {
  padding-top: 120px;
  /* Ensure content doesn't start behind fixed header */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- 2. TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: 1.75rem;
}

.label-caps {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 2rem;
  display: block;
}

.text-gradient {
  background: linear-gradient(to bottom right, var(--text-main), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 3. LAYOUT --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-gap) 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .flex-between {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* --- 4. COMPONENTS --- */

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
  header {
    background: rgba(3, 5, 7, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

header.scrolled {
  padding: 0.75rem 0;
  background: rgba(3, 5, 7, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: inline-block;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-outline {
  border-color: var(--border-strong);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-main);
}

/* Cards & Containers */
.artisan-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: var(--card-pad);
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.artisan-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.artisan-card i {
  margin-bottom: 2rem;
  width: 32px;
  height: 32px;
}

.artisan-card h3 {
  margin-bottom: 1rem;
}

.artisan-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Hero Elements */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
}

.hero-img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  box-shadow: 0 60px 100px rgba(0, 0, 0, 0.5);
  transform: perspective(1500px) rotateY(-8deg) rotateX(2deg);
  transition: var(--transition-smooth);
}

.hero-img:hover {
  transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
}

/* Tooling Components */
.calc-container {
  background: var(--bg-elevated);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.calc-group {
  margin-bottom: 2rem;
}

.calc-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.9rem;
}

.calc-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 1.2rem;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-family: inherit;
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-subtle);
}

.result-card {
  background: var(--bg-surface);
  border: 1px solid var(--primary);
  padding: 3rem;
  border-radius: var(--radius-xl);
  position: sticky;
  top: 120px;
}

.result-value {
  font-size: 4rem;
  color: var(--text-main);
  margin: 1rem 0;
  font-weight: 900;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.result-row:last-child {
  border: none;
}

/* --- Content Areas (Blog, Legal) --- */
.content-area {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-area h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content-area h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-area p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.quote-box {
  background: var(--bg-surface);
  padding: 3rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  margin: 4rem 0;
}

/* Testimonials */
.testimonial-card {
  background: transparent;
  border: none;
  padding: 0;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 2px solid var(--border-strong);
  background-size: cover;
  background-position: center;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-main);
}

/* Backgrounds */
.mesh-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 15%, var(--primary-glow) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(249, 168, 37, 0.05) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* Checkbox UI */
.checkbox-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-icon i {
  width: 16px;
  color: white;
}

.checkbox-empty {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 13, 16, 0.95);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-strong);
  padding: 1.5rem 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.cookie-banner.active {
  transform: translateY(0);
}

/* --- 5. UTILITIES --- */
.w-sm {
  max-width: 300px;
}

.w-md {
  max-width: 600px;
}

.w-lg {
  max-width: 800px;
}

.w-xl {
  max-width: 900px;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

/* Grid Utilities */
.col-span-12 {
  grid-column: span 12;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-5 {
  grid-column: span 5;
}

/* Spacing Utilities */
.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-t-header {
  padding-top: 180px;
}

.p-b-section {
  padding-bottom: 120px;
}

.p-4 {
  padding: 4rem;
}

.p-6 {
  padding: 6rem;
}

.p-t-1 {
  padding-top: 1rem;
}

.p-t-2 {
  padding-top: 2rem;
}

.p-t-4 {
  padding-top: 4rem;
}

.m-0 {
  margin: 0;
}

.m-y-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.m-y-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.m-y-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.m-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.m-b-0 {
  margin-bottom: 0;
}

.m-b-05 {
  margin-bottom: 0.5rem;
}

.m-b-1 {
  margin-bottom: 1rem;
}

.m-b-2 {
  margin-bottom: 2rem;
}

.m-b-4 {
  margin-bottom: 4rem;
}

.m-b-8 {
  margin-bottom: 8rem;
}

.m-t-0 {
  margin-top: 0;
}

.m-t-1 {
  margin-top: 1rem;
}

.m-t-2 {
  margin-top: 2rem;
}

.m-t-4 {
  margin-top: 4rem;
}

.m-t-8 {
  margin-top: 8rem;
}

.gap-05 {
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .gap-05 {
    gap: 1rem;
  }
}

.gap-1 {
  gap: 1rem;
}

@media (max-width: 768px) {
  .gap-1 {
    gap: 1.5rem;
  }
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

/* Display Utilities */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

/* List Utilities */
.list-none {
  list-style: none;
}

/* Typography */
.text-sm {
  font-size: 0.8rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

.text-2xl {
  font-size: 2rem;
}

.text-3xl {
  font-size: 2rem;
}

.text-4xl {
  font-size: 2.5rem;
}

.text-5xl {
  font-size: 3.5rem;
}

.text-6xl {
  font-size: clamp(3rem, 8vw, 5rem);
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

/* Backgrounds & Borders */
.opacity-90 {
  opacity: 0.9;
}

.opacity-50 {
  opacity: 0.5;
}

.bg-pure {
  background-color: var(--bg-pure);
}

.bg-surface {
  background-color: var(--bg-surface);
}

.bg-elevated {
  background-color: var(--bg-elevated);
}

.border-dashed {
  border-style: dashed;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

/* Component Layouts */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
    padding: 4rem 1rem;
  }

  .footer-grid>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid .w-sm {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .flex-between.m-t-4 {
    margin-top: 5rem !important;
    padding-top: 3rem !important;
  }

  .footer-grid .flex.gap-05 {
    flex-direction: column;
    width: 100%;
  }

  .footer-grid .flex.gap-05 .btn {
    width: 100%;
    padding: 1rem;
  }
}

/* Icon Utilities */
.icon-sm {
  width: 14px;
  height: 14px;
}

.icon-md {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 20px;
  height: 20px;
}

.icon-xl {
  width: 24px;
  height: 24px;
}

/* Border Utilities */
.border-t {
  border-top: 1px solid var(--border-light);
}

.border-b {
  border-bottom: 1px solid var(--border-light);
}

.border-y {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* CTA Specifics */
.cta-box-dark {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
  color: white;
  padding: 6rem 4rem;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.cta-box-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-box-dark * {
  position: relative;
  z-index: 1;
}

.cta-box-dark h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: nowrap;
}

.hero-store-buttons {
  justify-content: flex-start !important;
  margin-top: 0 !important;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .hero-store-buttons {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .store-buttons {
    gap: 0.5rem;
  }

  .store-btn img {
    height: 40px;
  }
}

.store-badge-es {
  height: 44px;
  width: auto;
}

/* Also normalize in dropdown */
.download-dropdown .badge-apple {
  height: 40px !important;
}

.download-dropdown .badge-android {
  height: 40px !important;
  margin: 0;
}

.store-btn img {
  height: 48px;
  width: auto;
  transition: var(--transition-fast);
  display: block;
}

.badge-apple {
  height: 48px !important;
}

.badge-android {
  height: 48px !important;
  /* Set to exactly 48px to match Apple badge perfectly */
  margin: 0;
}

.pc-version-btn {
  height: 48px !important;
  padding: 0 1.25rem !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.9rem !important;
  transition: var(--transition-fast) !important;
}

.pc-version-btn:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.store-btn:hover img {
  transform: translateY(-4px);
  filter: brightness(1.2);
}

.btn-white {
  background: white;
  color: var(--primary);
  border: 1px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
}

/* Component Specifics */
.hero-lead {
  font-size: 1.4rem;
  max-width: 550px;
}

.card-featured {
  border-color: var(--primary) !important;
  transform: scale(1.05);
  z-index: 10;
}

.compliance-box {
  background: radial-gradient(circle at top right, rgba(51, 118, 246, 0.05), transparent);
}

.verifactu-seal {
  max-width: 300px;
  filter: drop-shadow(0 20px 40px var(--primary-glow));
}

/* Avatars */
.avatar-elena {
  background-image: url('../assets/people/profiles.png');
  background-position: 0 0;
  background-size: 200% 200%;
}

.avatar-carlos {
  background-image: url('../assets/people/profiles.png');
  background-position: 100% 100%;
  background-size: 200% 200%;
}

.avatar-roberto {
  background-image: url('../assets/people/roberto.png');
  background-size: cover;
}

/* Tool Utilities */
.btn-accent {
  background: var(--accent);
  color: var(--bg-pure);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background: transparent;
  color: var(--accent);
}

.text-error {
  color: #ff4d4d;
}

.border-accent {
  border-color: var(--accent) !important;
}

.p-t-0 {
  padding-top: 0;
}

/* Letter Spacing */
.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.1em;
}

/* Ensure mobile toggle is hidden on desktop by default */
.mobile-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  header {
    padding: 1.5rem 0;
  }

  header.scrolled {
    padding: 0.75rem 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-pure);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li a {
    font-size: 1.5rem;
  }

  .mobile-toggle {
    display: block;
    color: white;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 0.5rem;
  }

  .mobile-toggle i {
    width: 28px;
    height: 28px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .bento-grid {
    display: flex;
    flex-direction: column;
  }

  .artisan-card {
    grid-column: span 12 !important;
    padding: 2.5rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .header-actions .btn {
    display: none;
  }
}

/* Small Device Audit (iPhone 7/SE - 375px and below) */
@media (max-width: 375px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  .artisan-card {
    padding: 1.5rem;
  }

  .btn {
    width: 100%;
    padding: 1.2rem;
  }

  .hero-img {
    transform: none;
  }

  .result-value {
    font-size: 3rem;
  }
}

/* Vertical Spacing Utilities */
.p-y-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-y-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-y-8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.p-y-10 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.m-y-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.m-y-6 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.m-y-8 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* Tutorial & Step Elements */
.tutorial-step {
  margin-bottom: clamp(4rem, 10vh, 12rem);
  position: relative;
}

.step-content {
  position: relative;
  z-index: 2;
}

.step-number {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  /* Increased for better contrast */
  position: absolute;
  top: -20px;
  right: 0;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.tutorial-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

@media (max-width: 768px) {
  .step-number {
    top: -40px;
    font-size: 6rem;
    opacity: 0.2;
    /* Even more contrast on mobile */
  }
}

/* --- 6. DOWNLOAD DROPDOWN (SUBPANEL) --- */
.dropdown-container {
  position: relative;
}

.download-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: #3376F6;
  /* Solid primary blue for the subpanel */
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-fast);
  z-index: 2000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: max-content;
  /* Ensure it fits all items horizontally */
}

.download-dropdown.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-content {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.dropdown-item img {
  height: 40px;
  width: auto;
  min-width: 120px;
  /* Ensure they have a footprint even if loading slowly */
  display: block;
  transition: var(--transition-fast);
  object-fit: contain;
}

.dropdown-item:hover img {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

/* PC Badge specifically to look like a store button */
.pc-badge {
  background: #000;
  color: #fff;
  border-radius: 6px;
  padding: 0 12px;
  height: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #333;
  transition: var(--transition-fast);
}

.pc-badge:hover {
  transform: translateY(-2px);
  border-color: #555;
  background: #111;
}

.pc-badge-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-badge-content i {
  width: 20px;
  height: 20px;
}

.pc-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.pc-top {
  font-size: 8px;
  text-transform: uppercase;
  opacity: 0.8;
}

.pc-bottom {
  font-size: 14px;
  font-weight: 700;
}

.icon-xs {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .download-dropdown {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 10px;
    right: 10px;
    transform: translateY(20px);
  }
}