/* ============================================
   GARABALY - Design System & Styles
   West Africa's Trusted Livestock Marketplace
   ============================================ */

/* --- CSS Custom Properties (Light Mode Default) --- */
:root {
  /* Brand Colors */
  --primary: #C87941;
  --primary-light: #d4905e;
  --primary-dark: #a5623a;
  --secondary: #E8B854;
  --secondary-light: #f0cc7a;

  /* Backgrounds & Surfaces */
  --bg: #F9F6F2;
  --bg-alt: #F1EDE7;
  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;

  /* Text */
  --text-primary: #2C1810;
  --text-secondary: #6B5444;
  --text-tertiary: #9A8A7C;
  --text-on-primary: #FFFFFF;

  /* Semantic */
  --success: #2D7A4A;
  --pending: #E8B854;
  --error: #C84141;
  --verified: #2D7A4A;
  --info: #3B82F6;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #C87941 0%, #E8B854 100%);
  --gradient-hero: linear-gradient(135deg, rgba(200, 121, 65, 0.92) 0%, rgba(232, 184, 84, 0.85) 100%);
  --gradient-dark: linear-gradient(135deg, #2C1810 0%, #4A2E20 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(249,246,242,0.9));

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 8px 30px rgba(44, 24, 16, 0.12);
  --shadow-xl: 0 20px 60px rgba(44, 24, 16, 0.15);
  --shadow-glow: 0 0 40px rgba(200, 121, 65, 0.15);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Typography */
  --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-h1: 700 clamp(2rem, 5vw, 3.5rem)/1.1 var(--font-family);
  --font-h2: 700 clamp(1.5rem, 3.5vw, 2.5rem)/1.2 var(--font-family);
  --font-h3: 600 clamp(1.125rem, 2vw, 1.5rem)/1.3 var(--font-family);
  --font-body: 400 1rem/1.6 var(--font-family);
  --font-body-lg: 400 1.125rem/1.7 var(--font-family);
  --font-caption: 400 0.875rem/1.5 var(--font-family);
  --font-label: 600 0.75rem/1.4 var(--font-family);

  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Header */
  --header-height: 72px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --primary: #E89860;
  --primary-light: #f0ad7a;
  --primary-dark: #c87941;
  --secondary: #F4D166;
  --secondary-light: #f8e08a;

  --bg: #1A1410;
  --bg-alt: #221C16;
  --surface: #2C2420;
  --surface-elevated: #362E28;

  --text-primary: #F9F6F2;
  --text-secondary: #B8ADA0;
  --text-tertiary: #8A7E72;

  --gradient-primary: linear-gradient(135deg, #E89860 0%, #F4D166 100%);
  --gradient-hero: linear-gradient(135deg, rgba(232, 152, 96, 0.92) 0%, rgba(244, 209, 102, 0.85) 100%);
  --gradient-dark: linear-gradient(135deg, #1A1410 0%, #2C2420 100%);
  --gradient-card: linear-gradient(145deg, rgba(44,36,32,0.9), rgba(26,20,16,0.9));

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(232, 152, 96, 0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-family);
}

ul, ol {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Typography --- */
h1, .h1 { font: var(--font-h1); color: var(--text-primary); }
h2, .h2 { font: var(--font-h2); color: var(--text-primary); }
h3, .h3 { font: var(--font-h3); color: var(--text-primary); }

.section-eyebrow {
  font: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  font: var(--font-h2);
  margin-bottom: var(--space-md);
}

.section-title--shimmer {
  background: linear-gradient(
    90deg,
    var(--text-primary) 0%,
    var(--primary) 40%,
    var(--secondary) 60%,
    var(--text-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.section-subtitle {
  font: var(--font-body-lg);
  color: var(--text-secondary);
  max-width: 960px;
}

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--border-radius-full);
  font: var(--font-body);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--gradient-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn--primary:hover::before {
  transform: translateX(100%);
}

.btn--primary:hover {
  opacity: 0.95;
  box-shadow: 0 4px 20px rgba(200, 121, 65, 0.4), 0 0 40px rgba(200, 121, 65, 0.15);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

.btn--dark {
  background: var(--gradient-dark);
  color: #FFFFFF;
}

.btn--dark:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* App Store Buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  background: #000;
  color: #FFF;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-btn__icon {
  width: 24px;
  height: 24px;
}

.store-btn__text {
  text-align: left;
}

.store-btn__label {
  font-size: 0.65rem;
  opacity: 0.8;
  display: block;
}

.store-btn__name {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .header--scrolled {
  background: rgba(26, 20, 16, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.header--transparent .header__logo-text {
  color: #FFFFFF;
}

.header--scrolled .header__logo-text {
  color: var(--text-primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav-links {
  display: flex;
  gap: var(--space-lg);
}

.header__nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--space-sm) 0;
  position: relative;
}

.header--transparent .header__nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header--transparent .header__nav-link:hover {
  color: #FFFFFF;
}

.header--scrolled .header__nav-link {
  color: var(--text-secondary);
}

.header--scrolled .header__nav-link:hover,
.header--scrolled .header__nav-link.active {
  color: var(--primary);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.header--transparent .header__cta.btn--primary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.header--transparent .header__cta.btn--primary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.header--transparent .theme-toggle {
  color: rgba(255, 255, 255, 0.85);
}

.header--scrolled .theme-toggle {
  color: var(--text-secondary);
}

.theme-toggle:hover {
  background: rgba(200, 121, 65, 0.1);
  color: var(--primary);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header--transparent .mobile-toggle span {
  background: #FFFFFF;
}

.header--scrolled .mobile-toggle span {
  background: var(--text-primary);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #2C1810;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.75) 0%,
    rgba(44, 24, 16, 0.50) 35%,
    rgba(60, 32, 16, 0.30) 65%,
    rgba(44, 24, 16, 0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  padding-top: var(--header-height);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-full);
  color: var(--secondary);
  font: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease forwards;
}

.hero__badge i {
  width: 16px;
  height: 16px;
}

.hero__title {
  font: var(--font-h1);
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.15s forwards;
  opacity: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}

.hero__title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font: var(--font-body-lg);
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.45s forwards;
  opacity: 0;
}

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.hero__stat-value {
  white-space: nowrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(200, 121, 65, 0.06);
  backdrop-filter: blur(8px);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 121, 65, 0.06), transparent 40%);
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(200, 121, 65, 0.12), 0 0 50px rgba(200, 121, 65, 0.04);
  border-color: rgba(200, 121, 65, 0.18);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.25);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-card__icon {
  box-shadow: 0 4px 20px rgba(200, 121, 65, 0.4), 0 0 30px rgba(200, 121, 65, 0.15);
  transform: scale(1.05);
}

.feature-card__icon i {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font: var(--font-h3);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

.status-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.status-pill--live {
  background: rgba(45, 122, 74, 0.15);
  color: var(--success);
}

.status-pill--soon {
  background: rgba(232, 184, 84, 0.2);
  color: #9b6b00;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.provider-logos img,
.provider-logo-placeholder {
  width: 110px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  background: var(--surface);
  border: 1px solid rgba(200, 121, 65, 0.18);
  padding: 8px;
}

.provider-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.payment-table {
  border: 1px solid rgba(200, 121, 65, 0.16);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.payment-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 2fr;
  gap: var(--space-md);
  align-items: center;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid rgba(200, 121, 65, 0.12);
}

.payment-row:last-child {
  border-bottom: 0;
}

.inline-faq-link {
  color: var(--primary);
  font-weight: 700;
}

.floating-download-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 1200;
  display: none;
  box-shadow: var(--shadow-lg);
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-2xl);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.25);
  transition: all 0.4s ease;
}

.step:hover .step__number {
  box-shadow: 0 4px 25px rgba(200, 121, 65, 0.45), 0 0 40px rgba(200, 121, 65, 0.15);
  transform: scale(1.08);
}

.step__title {
  font: var(--font-h3);
  margin-bottom: var(--space-sm);
}

.step__desc {
  font: var(--font-body);
  color: var(--text-secondary);
  max-width: 260px;
  margin: 0 auto;
}

/* --- Trust / Escrow Section --- */
.trust-section {
  position: relative;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.trust-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.trust-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.trust-content {
  padding: var(--space-xl) 0;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.trust-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.trust-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius);
  background: rgba(200, 121, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-feature__text h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-feature__text p {
  font: var(--font-caption);
  color: var(--text-secondary);
}

/* --- Categories Carousel --- */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(200, 121, 65, 0.3);
  background: rgba(26, 18, 11, 0.7);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(200, 121, 65, 0.4);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.categories-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: var(--space-lg);
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.categories-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  flex: 0 0 calc((100% - 4 * var(--space-lg)) / 5);
  min-height: 180px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: all var(--transition-base);
}

.category-card {
  box-shadow: 0 0 12px rgba(200, 121, 65, 0.08);
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(200, 121, 65, 0.3), 0 0 50px rgba(200, 121, 65, 0.12), 0 8px 30px rgba(0,0,0,0.2);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-alt);
  border: 1px solid rgba(200, 121, 65, 0.12);
  opacity: 1;
}

.category-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-align: center;
  padding: var(--space-lg);
}

.category-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.category-card__icon img {
  width: 64px;
  height: 64px;
  /* Duotone via SVG filter: shadows=#3D2B1F (dark brown), highlights=#C87941 (camel amber) */
  filter: url(#duotone-livestock) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: all 0.4s ease;
  object-fit: contain;
}

.category-card:hover .category-card__icon img {
  filter: url(#duotone-livestock) drop-shadow(0 4px 14px rgba(0,0,0,0.4)) drop-shadow(0 0 20px rgba(200,121,65,0.4));
  transform: scale(1.15);
}

.category-card__name {
  font-weight: 700;
  font-size: 1.1rem;
}

.category-card__count {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* Subtle gradient variation per card */
.category-card:nth-child(even) .category-card__bg {
  background: #E8DDD0;
  border: 1px solid rgba(200, 121, 65, 0.10);
}

/* Dark mode: darken category cards */
[data-theme="dark"] .category-card__bg {
  background: #2C2420;
  border-color: rgba(200, 121, 65, 0.15);
}

[data-theme="dark"] .category-card:nth-child(even) .category-card__bg {
  background: #362E28;
  border-color: rgba(200, 121, 65, 0.12);
}

[data-theme="dark"] .category-card__content {
  color: var(--text-primary);
}

/* Sheep icon (2nd card) — mid-tones pushed to dark brown so horns are brown */
.category-card:nth-child(2) .category-card__icon img {
  filter: url(#duotone-sheep) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.category-card:nth-child(2):hover .category-card__icon img {
  filter: url(#duotone-sheep) drop-shadow(0 4px 14px rgba(0,0,0,0.4)) drop-shadow(0 0 20px rgba(200,121,65,0.4));
}

/* Camel icon (5th card) — pure amber, no red */
.category-card:nth-child(5) .category-card__icon img {
  filter: url(#duotone-camel) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.category-card:nth-child(5):hover .category-card__icon img {
  filter: url(#duotone-camel) drop-shadow(0 4px 14px rgba(0,0,0,0.4)) drop-shadow(0 0 20px rgba(200,121,65,0.4));
}

/* --- Scenario cards: infinite marquee (enhanced by JS: .scenarios-carousel--marquee) --- */
.scenarios-carousel {
  padding: var(--space-md) 0;
}

/* No-JS / before JS: horizontal scroll */
.scenarios-carousel:not(.scenarios-carousel--marquee) {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scenarios-carousel:not(.scenarios-carousel--marquee)::-webkit-scrollbar {
  display: none;
}

.scenarios-carousel:not(.scenarios-carousel--marquee) > .scenario-card {
  flex: 0 0 clamp(260px, 28vw, 400px);
  scroll-snap-align: start;
}

.scenarios-carousel__marquee {
  overflow: hidden;
  width: 100%;
  direction: ltr;
}

.scenarios-carousel__track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.scenarios-carousel--marquee {
  --scenarios-marquee-duration: 75s;
}

.scenarios-carousel--marquee:not(.scenarios-carousel--reduced-motion) .scenarios-carousel__track {
  animation: scenarios-marquee var(--scenarios-marquee-duration, 75s) linear infinite;
}

.scenarios-carousel--marquee:not(.scenarios-carousel--reduced-motion):hover .scenarios-carousel__track {
  animation-play-state: paused;
}

@keyframes scenarios-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.scenarios-carousel--reduced-motion .scenarios-carousel__marquee {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.scenarios-carousel--reduced-motion .scenarios-carousel__track {
  animation: none;
  flex-wrap: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .scenarios-carousel--marquee .scenarios-carousel__marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .scenarios-carousel--marquee .scenarios-carousel__track {
    animation: none;
  }
}

/* Scenario cards — same visual spec as when this section shipped (pre-marquee-tweak) */
.scenario-card {
  flex: 0 0 clamp(260px, 28vw, 400px);
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 121, 65, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenarios-carousel--marquee .scenarios-carousel__track .scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scenario-card__persona {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.scenario-card__quote {
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .scenarios-carousel__track .scenario-card {
    flex: 0 0 min(300px, 85vw);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .scenarios-carousel__track .scenario-card {
    flex: 0 0 clamp(260px, 40vw, 360px);
  }
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 121, 65, 0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 84, 0.12) 0%, transparent 70%);
  animation: float-reverse 10s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font: var(--font-body-lg);
  margin-bottom: var(--space-2xl);
}

.cta-stores {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* --- Image Showcase (About/How-It-Works pages) --- */
.image-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.image-text-row--reverse {
  direction: rtl;
}

.image-text-row--reverse > * {
  direction: ltr;
}

.image-showcase {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

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

.stat-item__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-item__label {
  font: var(--font-caption);
  color: var(--text-secondary);
  margin-top: 4px;
  font-size: 0.75rem;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 121, 65, 0.12);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__question i {
  transition: transform var(--transition-base);
  color: var(--primary);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.faq-item__answer p {
  font: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-form {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(200, 121, 65, 0.15);
  border-radius: var(--border-radius);
  font: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 121, 65, 0.1);
}

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

.contact-info {
  padding: var(--space-xl) 0;
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: rgba(200, 121, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info__text p {
  font: var(--font-body);
  color: var(--text-secondary);
}

.contact-info__text a {
  color: var(--primary);
  font-weight: 600;
}

.contact-info__text a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  background: rgba(200, 121, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  margin-top: var(--space-md);
  font: var(--font-body);
  max-width: 300px;
  line-height: 1.7;
}

.footer__brand .header__logo {
  margin-bottom: var(--space-sm);
}

.footer__brand .header__logo-text {
  color: #FFFFFF;
}

.footer__column h4 {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.footer__column a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__column a:hover {
  color: var(--secondary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.85rem;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a:hover {
  color: var(--secondary);
}

/* --- Page Headers (Inner Pages) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 121, 65, 0.12) 0%, transparent 70%);
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-lg);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.page-header__breadcrumb a:hover {
  color: var(--secondary);
}

.page-header h1 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font: var(--font-body-lg);
  max-width: 600px;
}

/* --- Policy Page --- */
.policy-nav {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.policy-nav .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.policy-nav .btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: var(--space-2xl);
}

.policy-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(200, 121, 65, 0.15);
}

.policy-block h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-block p {
  font: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.policy-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.policy-block ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

.policy-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.policy-block a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-block a:hover {
  color: var(--primary-dark);
}

/* Escrow Stages Visual */
.escrow-stages {
  margin-top: var(--space-lg);
}

.escrow-stage {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.escrow-stage__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.escrow-stage__content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  margin-top: 0;
}

.escrow-stage__content p {
  font: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Values Grid (About Page) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.value-card {
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid rgba(200, 121, 65, 0.08);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: rgba(200, 121, 65, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.value-card__title {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.value-card__desc {
  font: var(--font-caption);
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 5.1em; /* ~3 lines */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.value-card__desc.expanded {
  max-height: 500px;
}

.value-card__read-more {
  display: none;
  margin-top: var(--space-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-family);
  letter-spacing: 0.3px;
}

.value-card__read-more:hover {
  text-decoration: underline;
}

.value-card__read-more.visible {
  display: inline-block;
}

/* --- Timeline (How It Works detailed) --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  opacity: 0.2;
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

.timeline-item__marker {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.timeline-item__content {
  padding-top: var(--space-md);
}

.timeline-item__content h3 {
  font: var(--font-h3);
  margin-bottom: var(--space-sm);
}

.timeline-item__content p {
  font: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(6px) rotate(-1deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(8px) rotate(-1deg); }
  66% { transform: translateY(-10px) rotate(1deg); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 121, 65, 0.15), 0 0 40px rgba(200, 121, 65, 0.05); }
  50% { box-shadow: 0 0 30px rgba(200, 121, 65, 0.3), 0 0 60px rgba(200, 121, 65, 0.1); }
}

@keyframes particleDrift {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(40px) scale(0.3); opacity: 0; }
}

/* Scroll reveal — with no-JS fallback */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: if JS hasn't run after 3 s, show everything */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

html:not(.js-ready) .reveal {
  animation: revealFallback 0s 3s forwards;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: var(--space-md);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* --- Horizontal Scroll Utility --- */
.mobile-scroll {
  /* Applied via JS or stays as grid on desktop */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .trust-grid,
  .image-text-row,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .image-text-row--reverse {
    direction: ltr;
  }

  .categories-grid .category-card {
    flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
    --space-5xl: 80px;
  }

  .header__nav-links {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* --- Hero Mobile Fixes --- */
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + var(--space-3xl));
  }

  .hero__title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
  }

  /* Hero stats stay horizontal on mobile */
  .hero__stats {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
  }

  .hero__stat-value {
    font-size: 1.3rem;
  }

  .hero__stat-label {
    font-size: 0.7rem;
  }

  /* --- Horizontal Scroll: Features --- */
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    scrollbar-width: none;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .features-grid .feature-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  /* --- Horizontal Scroll: Steps --- */
  .steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    scrollbar-width: none;
  }

  .steps::-webkit-scrollbar {
    display: none;
  }

  .steps::before {
    display: none;
  }

  .steps .step {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  /* --- Carousel: Categories (Mobile) — hide arrows, swipe only --- */
  .carousel-arrow {
    display: none;
  }

  .categories-grid {
    gap: var(--space-md);
  }

  .categories-grid .category-card {
    flex: 0 0 150px;
    min-height: 160px;
  }

  .categories-grid .category-card .category-card__content {
    padding: var(--space-xl) var(--space-lg);
  }

  .categories-grid .category-card .category-card__icon img {
    width: 44px;
    height: 44px;
  }

  .categories-grid .category-card .category-card__name {
    font-size: 0.95rem;
  }

  .categories-grid .category-card .category-card__count {
    font-size: 0.75rem;
  }

  /* --- Scenario marquee (mobile): tighter cards --- */
  .scenarios-carousel:not(.scenarios-carousel--marquee) > .scenario-card {
    flex: 0 0 min(300px, 85vw);
  }

  /* --- Stats Bar: Horizontal on Mobile --- */
  .stats-bar {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
    scrollbar-width: none;
  }

  .stats-bar::-webkit-scrollbar {
    display: none;
  }

  .stats-bar .stat-item {
    flex: 0 0 auto;
    min-width: 140px;
    scroll-snap-align: start;
  }

  /* --- Trust / Image-Text Rows Mobile --- */
  .trust-image img {
    height: 260px;
  }

  .trust-features {
    gap: var(--space-md);
  }

  /* --- Footer Mobile --- */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* --- Reduce section padding on mobile --- */
  .section {
    padding: var(--space-3xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .payment-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .floating-download-cta.visible {
    display: inline-flex;
  }
}

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

  .hero__content {
    padding-top: calc(var(--header-height) + var(--space-2xl));
  }

  .hero__title {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  /* Stats ALWAYS horizontal — compact on small screens */
  .hero__stats {
    flex-direction: row;
    gap: var(--space-md);
    justify-content: space-between;
  }

  .hero__stat-value {
    font-size: 1.1rem;
  }

  .hero__stat-label {
    font-size: 0.65rem;
  }

  /* Scroll containers: slightly smaller cards */
  .features-grid .feature-card {
    flex: 0 0 250px;
    padding: var(--space-xl);
  }

  .steps .step {
    flex: 0 0 200px;
  }

  .step__number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .categories-grid .category-card {
    flex: 0 0 135px;
    min-height: 145px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .cta-stores {
    flex-direction: column;
    align-items: center;
  }

  /* Image showcase mobile */
  .image-showcase img {
    min-height: 240px;
  }

  .trust-image img {
    height: 220px;
  }
}

/* --- Mobile Scroll Indicators --- */
.scroll-hint {
  display: none;
}

@media (max-width: 768px) {
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    color: var(--text-tertiary);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    animation: scrollHintPulse 2s ease infinite;
  }

  .scroll-hint i,
  .scroll-hint svg {
    width: 14px;
    height: 14px;
  }

  @keyframes scrollHintPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
}

/* --- Floating Particles --- */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 121, 65, 0.15);
  pointer-events: none;
}

.particle--1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.particle--2 {
  width: 10px;
  height: 10px;
  top: 60%;
  left: 85%;
  animation: float-reverse 8s ease-in-out infinite;
  background: rgba(232, 184, 84, 0.12);
}

.particle--3 {
  width: 4px;
  height: 4px;
  top: 35%;
  left: 70%;
  animation: float 7s ease-in-out infinite 1s;
}

.particle--4 {
  width: 8px;
  height: 8px;
  top: 75%;
  left: 25%;
  animation: float-reverse 9s ease-in-out infinite 0.5s;
  background: rgba(232, 184, 84, 0.1);
}

.particle--5 {
  width: 5px;
  height: 5px;
  top: 45%;
  left: 50%;
  animation: float 10s ease-in-out infinite 2s;
}

.particle--6 {
  width: 12px;
  height: 12px;
  top: 10%;
  left: 90%;
  animation: float-reverse 7s ease-in-out infinite 1.5s;
  background: rgba(200, 121, 65, 0.08);
}


/* --- Glow overlay for hero --- */
.hero__glow {
  position: absolute;
  top: 30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 121, 65, 0.08) 0%, transparent 70%);
  z-index: 1;
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

.hero__glow--right {
  top: auto;
  bottom: 10%;
  left: auto;
  right: -10%;
  background: radial-gradient(circle, rgba(232, 184, 84, 0.06) 0%, transparent 70%);
  animation: float-reverse 14s ease-in-out infinite;
}

/* --- Enhanced trust feature icon glow --- */
.trust-feature__icon {
  transition: all 0.3s ease;
}

.trust-feature:hover .trust-feature__icon {
  box-shadow: 0 2px 15px rgba(200, 121, 65, 0.2);
  transform: scale(1.05);
}

/* --- Stat item glow on hover --- */
.stat-item {
  transition: all 0.3s ease;
  padding: var(--space-md);
  border-radius: var(--border-radius);
}

.stat-item:hover {
  background: rgba(200, 121, 65, 0.04);
}

/* --- Store button glow --- */
.store-btn:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 40px rgba(200, 121, 65, 0.1);
}

/* --- Language Switcher --- */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.lang-switcher__btn svg,
.lang-switcher__btn i {
  width: 16px;
  height: 16px;
}

.header--transparent .lang-switcher__btn {
  color: rgba(255,255,255,0.85);
}

.header--scrolled .lang-switcher__btn {
  color: var(--text-secondary);
}

.lang-switcher__btn:hover {
  background: rgba(200,121,65,0.1);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 140px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xs);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 1002;
}

.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switcher__option {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  transition: background var(--transition-fast);
  color: var(--text-primary);
}

.lang-switcher__option:hover {
  background: rgba(200,121,65,0.08);
}

.lang-switcher__option.active {
  color: var(--primary);
  font-weight: 700;
}

/* --- RTL (Arabic) Support --- */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* Header — keep LTR layout in Arabic (same as English) */
[dir="rtl"] .header__inner {
  direction: ltr;
}

[dir="rtl"] .header__nav-links {
  direction: ltr;
}

[dir="rtl"] .header__actions {
  direction: ltr;
}

[dir="rtl"] .mobile-menu {
  direction: ltr;
}

/* Hero */
[dir="rtl"] .hero__content {
  text-align: center;
}

[dir="rtl"] .hero__actions {
  justify-content: center;
}

[dir="rtl"] .hero__stat {
  text-align: center;
}

[dir="rtl"] .hero__stat-value {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Sections */
[dir="rtl"] .section-header.text-center {
  text-align: center;
}

[dir="rtl"] .section-eyebrow {
  text-align: right;
}

[dir="rtl"] .section-header.text-center .section-eyebrow {
  text-align: center;
}

/* Trust features — direction:rtl already puts icon on right of text */
[dir="rtl"] .trust-feature {
  text-align: right;
}

[dir="rtl"] .trust-feature__text {
  text-align: right;
}

/* Trust grid — image on right, text on left */
[dir="rtl"] .trust-grid {
  direction: rtl;
}

[dir="rtl"] .trust-content {
  text-align: right;
}

/* Image-text rows */
[dir="rtl"] .image-text-row {
  direction: rtl;
}

[dir="rtl"] .image-text-row--reverse {
  direction: ltr;
}

[dir="rtl"] .image-text-row--reverse > * {
  direction: rtl;
}

/* Footer */
[dir="rtl"] .footer__grid {
  direction: rtl;
}

/* footer__bottom — direction:rtl already reverses layout */

/* Contact page — direction:rtl already puts icon on right of text */
[dir="rtl"] .contact-info__item {
  text-align: right;
}

[dir="rtl"] .contact-grid {
  direction: rtl;
}

/* Form elements right-aligned */
[dir="rtl"] .form-group label {
  text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea,
[dir="rtl"] .form-group select {
  text-align: right;
}

/* Page headers */
[dir="rtl"] .page-header__content {
  text-align: right;
}

/* page-header__breadcrumb — direction:rtl already reverses layout */

/* Timeline — direction:rtl already puts marker on right */
[dir="rtl"] .timeline-item {
  text-align: right;
}

/* FAQ — direction:rtl already puts chevron on left and text on right */
[dir="rtl"] .faq-item__question {
  text-align: right;
}

[dir="rtl"] .faq-item__question i {
  margin-left: 0;
  margin-right: var(--space-md);
}

/* Buttons — icons handled by gap, no extra margins needed */
[dir="rtl"] .btn i,
[dir="rtl"] .btn svg {
  margin-left: 0;
  margin-right: 0;
}

/* Cards */
[dir="rtl"] .feature-card,
[dir="rtl"] .step,
[dir="rtl"] .scenario-card {
  text-align: right;
}

/* Steps — push description block to the right edge */
[dir="rtl"] .step__desc {
  margin-left: auto;
  margin-right: 0;
}

/* Feature card description — push to right */
[dir="rtl"] .feature-card__desc {
  text-align: right;
}

/* Timeline content — ensure right-aligned */
[dir="rtl"] .timeline-item__content {
  text-align: right;
}

[dir="rtl"] .timeline-item__content h3,
[dir="rtl"] .timeline-item__content p {
  text-align: right;
}

/* Value cards stay centered; read-more aligns right */
[dir="rtl"] .value-card__read-more {
  text-align: right;
}

/* Button groups — flow from right */
[dir="rtl"] .btn-group {
  justify-content: flex-start;
}

/* Store buttons — icon on right, text on left */
[dir="rtl"] .store-btn__text {
  text-align: right;
}

/* CTA section */
[dir="rtl"] .cta-content {
  text-align: center;
}

/* Social links */
[dir="rtl"] .social-links {
  justify-content: flex-start;
}

/* Scroll hint — direction:rtl already reverses layout */

/* Mobile menu — uses full-screen overlay with opacity, no direction changes needed */
[dir="rtl"] .mobile-menu {
  text-align: center;
}

/* Language switcher — keep same position as English */

[dir="rtl"] .lang-switcher__dropdown {
  left: 0;
  right: auto;
}

/* --- Get the App Page --- */


.app-download-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 700px;
  margin: var(--space-2xl) auto 0;
}

/* ── Glassmorphism Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(200, 121, 65, 0.10), 0 0 0 0 rgba(200, 121, 65, 0); }
  50% { box-shadow: 0 8px 40px rgba(200, 121, 65, 0.18), 0 0 20px 2px rgba(200, 121, 65, 0.08); }
}

@keyframes gradient-border {
  0% { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

.app-download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(200, 121, 65, 0.15);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 4s ease-in-out infinite;
}

.app-download-card:hover {
  border-color: rgba(200, 121, 65, 0.4);
  box-shadow: 0 12px 48px rgba(200, 121, 65, 0.22), 0 0 24px rgba(200, 121, 65, 0.08);
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.7);
}

/* Dark mode glass */
[data-theme="dark"] .app-download-card {
  background: rgba(54, 46, 40, 0.55);
  border-color: rgba(200, 121, 65, 0.2);
}
[data-theme="dark"] .app-download-card:hover {
  background: rgba(54, 46, 40, 0.75);
  border-color: rgba(200, 121, 65, 0.45);
}

.app-download-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 121, 65, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.app-download-card:hover .app-download-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.app-download-card__title {
  font-size: var(--font-heading-sm);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.app-download-card__desc {
  font-size: var(--font-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.app-download-card__qr {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-md);
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-download-card:hover .app-download-card__qr {
  transform: scale(1.05);
}

.app-download-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  color: var(--primary);
  font-size: var(--font-body);
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: gap 0.3s ease;
}

.app-download-card:hover .app-download-card__link {
  gap: var(--space-sm);
}

.app-download-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.app-download-card:hover .app-download-card__link svg {
  transform: translateX(3px);
}

/* QR Code Showcase */
.qr-showcase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
}

.qr-showcase__card {
  text-align: center;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow:
    0 8px 32px rgba(200, 121, 65, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(200, 121, 65, 0.15);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite, pulse-glow 5s ease-in-out infinite;
}

.qr-showcase__card:hover {
  box-shadow:
    0 16px 56px rgba(200, 121, 65, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(200, 121, 65, 0.35);
}

/* Dark mode glass for showcase */
[data-theme="dark"] .qr-showcase__card {
  background: rgba(54, 46, 40, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 121, 65, 0.2);
}

.qr-showcase__image {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qr-showcase__card:hover .qr-showcase__image {
  transform: scale(1.04);
}

.qr-showcase__caption {
  margin-top: var(--space-md);
  font-size: var(--font-body-sm);
  color: var(--text-secondary);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.qr-showcase__instructions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.qr-instruction {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 121, 65, 0.08);
  transition: all 0.3s ease;
}

.qr-instruction:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(200, 121, 65, 0.15);
  transform: translateX(4px);
}

[data-theme="dark"] .qr-instruction {
  background: rgba(54, 46, 40, 0.35);
  border-color: rgba(200, 121, 65, 0.1);
}

[data-theme="dark"] .qr-instruction:hover {
  background: rgba(54, 46, 40, 0.55);
}

.qr-instruction__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFF;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.qr-instruction:hover .qr-instruction__icon {
  transform: scale(1.1);
}

.qr-instruction__icon svg {
  width: 24px;
  height: 24px;
}

.qr-instruction h4 {
  font-size: var(--font-body-lg);
  font-weight: 800;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.qr-instruction p {
  font-size: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .app-download-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .qr-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-showcase__image {
    width: 240px;
    height: 240px;
  }

  .qr-instruction {
    text-align: left;
  }
}

/* RTL: Get the App */
[dir="rtl"] .qr-instruction {
  text-align: right;
}
[dir="rtl"] .qr-instruction:hover {
  transform: translateX(-4px);
}

/* --- Print Styles --- */
@media print {
  .header, .footer, .cta-section, .hero__scroll {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }

  body {
    color: #000;
    background: #FFF;
  }
}

/* --- Security Trust Badges --- */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  cursor: default;
}

.security-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 121, 65, 0.15);
  color: #C87941;
  flex-shrink: 0;
}

.security-badge__icon svg {
  width: 16px;
  height: 16px;
}

.security-badge__label {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
