/* Fix: Ensure wrapped text stays left-aligned under the icon in mobile French mode */
@media (max-width: 600px) {
  html[lang="fr"] .download-features .feature-item,
  body[lang="fr"] .download-features .feature-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px;
    width: 100%;
  }

  html[lang="fr"] .download-features .feature-item i,
  body[lang="fr"] .download-features .feature-item i {
    margin-top: 4px;
    margin-right: 8px;
    flex-shrink: 0;
    align-self: flex-start;
    min-width: 20px;
    text-align: left;
  }

  html[lang="fr"] .download-features .feature-item span,
  body[lang="fr"] .download-features .feature-item span {
    text-align: left !important;
    display: block;
    width: auto;
    flex: 1 1 0%;
    white-space: normal;
    margin: 0;
  }
}
@import "https://unpkg.com/open-props/easings.min.css";

/* =====================
   ROOT VARIABLES
===================== */
:root {
  --bg-dark: #0f0f0f;
  --bg-light: #f8f9fa;
  
  --nav-bg-dark: rgba(35, 35, 35, 0.85);
  --nav-bg-light: rgba(255, 255, 255, 0.95);
  
  --text-dark: #ffffff;
  --text-light: #1a1a1a;
  
  --hero-bg-dark: linear-gradient(180deg, #0c0c0c 0%, #111 100%);
  --hero-bg-light: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  
  --badge-bg-dark: rgba(255, 255, 255, 0.08);
  --badge-bg-light: rgba(0, 0, 0, 0.05);
  --badge-border-dark: rgba(255, 255, 255, 0.15);
  --badge-border-light: rgba(0, 0, 0, 0.1);
  
  --description-dark: #cfcfcf;
  --description-light: #6c757d;
  
  --lang-btn-border-dark: rgba(255, 255, 255, 0.15);
  --lang-btn-border-light: rgba(0, 0, 0, 0.15);
  
  --icon-fill-dark: #888888;
  --icon-fill-light: #666666;
  --icon-fill-hover-dark: #aaaaaa;
  --icon-fill-hover-light: #333333;
  
  --accent-orange: #ff7c1c;
  --accent-orange-light: #ed7116;
}
/* Force tick on left for feature-item in mobile French mode */
@media (max-width: 600px) {
  html[lang="fr"] .download-features .feature-item,
  body[lang="fr"] .download-features .feature-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px;
    width: 100%;
  }

  html[lang="fr"] .download-features .feature-item i,
  body[lang="fr"] .download-features .feature-item i {
    margin-top: 4px;
    margin-right: 8px;
    flex-shrink: 0;
    align-self: flex-start;
  }

  html[lang="fr"] .download-features .feature-item span,
  body[lang="fr"] .download-features .feature-item span {
    text-align: left !important;
    display: block;
    width: 100%;
    white-space: normal;
  }
}

/* =====================
   GLOBAL STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* =====================
   THEME
===================== */
[data-theme="dark"] {
  background: var(--bg-dark);
  color: var(--text-dark);
}

[data-theme="light"] {
  background: var(--bg-light);
  color: var(--text-light);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  padding: 14px 22px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  border-radius: 999px;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  z-index: 1000;
  
  background: var(--nav-bg-dark);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar.navbar-hidden {
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
}

[data-theme="light"] .navbar {
  background: var(--nav-bg-light);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* LOGO */
.logo img {
  width: 65px;
  transition: transform 0.2s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* CENTER MENU */
.nav-center {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-center a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav-center a:hover {
  opacity: 1;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LANGUAGE BUTTON */
.lang-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--lang-btn-border-dark);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 500;
}

[data-theme="light"] .lang-btn {
  border: 1px solid var(--lang-btn-border-light);
}

.lang-btn:hover {
  background: rgba(255, 122, 0, 0.1);
  border-color: var(--accent-orange);
}

/* THEME TOGGLE */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
  color: var(--icon-fill-dark);
}

[data-theme="light"] .theme-toggle {
  color: var(--icon-fill-light);
}

.theme-toggle:hover {
  background: rgba(255, 122, 0, 0.1);
  transform: scale(1.1);
}

/* ICON ANIMATION */
.sun-and-moon > :is(.moon, .sun, .sun-beams) {
  transform-origin: center;
}

.sun-and-moon > :is(.moon, .sun) {
  fill: currentColor;
}

.theme-toggle:is(:hover, :focus-visible) > .sun-and-moon > :is(.moon, .sun) {
  fill: var(--accent-orange);
}

.sun-and-moon > .sun-beams {
  stroke: currentColor;
  stroke-width: 2px;
}

.theme-toggle:is(:hover, :focus-visible) .sun-and-moon > .sun-beams {
  stroke: var(--accent-orange);
}

[data-theme="dark"] .sun-and-moon > .sun {
  transform: scale(1.75);
}

[data-theme="dark"] .sun-and-moon > .sun-beams {
  opacity: 0;
}

[data-theme="dark"] .sun-and-moon > .moon > circle {
  transform: translateX(-7px);
}

@supports (cx: 1) {
  [data-theme="dark"] .sun-and-moon > .moon > circle {
    cx: 17;
    transform: translateX(0);
  }
}

/* Motion preferences */
@media (prefers-reduced-motion: no-preference) {
  .sun-and-moon > .sun {
    transition: transform 0.5s var(--ease-elastic-3);
  }
  
  .sun-and-moon > .sun-beams {
    transition: 
      transform 0.5s var(--ease-elastic-4),
      opacity 0.5s var(--ease-3);
  }
  
  .sun-and-moon .moon > circle {
    transition: transform 0.25s var(--ease-out-5);
  }
  
  @supports (cx: 1) {
    .sun-and-moon .moon > circle {
      transition: cx 0.25s var(--ease-out-5);
    }
  }
}

/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.3s ease;
  padding-top: 100px;
  
  background:
    /* radial-gradient(circle at left, rgba(255, 122, 0, 0.35), transparent 45%),
    radial-gradient(circle at right top, rgba(255, 122, 0, 0.35), transparent 45%),
    radial-gradient(circle at bottom, rgba(255, 122, 0, 0.35), transparent 45%), */
    var(--hero-bg-dark);
}

[data-theme="light"] .hero {
  background:
    /* radial-gradient(circle at left, rgba(255, 122, 0, 0.15), transparent 45%),
    radial-gradient(circle at right, rgba(255, 122, 0, 0.15), transparent 45%), */
    var(--hero-bg-light);
}

.hero-content {
  max-width: 900px;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}


.hero h1 {
  font-size: 100px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-orange-light),
    var(--accent-orange),
    #f09a45,
    var(--accent-orange),
    var(--accent-orange-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  font-size: 25px;
  letter-spacing: normal;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-left: 120px;
  transition: color 0.3s ease;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--description-dark);
  transition: color 0.3s ease;
}

[data-theme="light"] .hero p {
  color: var(--description-light);
}

[data-theme="light"] .about-left h3 {
  color: var(--text-light);
}

/* SHINY BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  
  background: var(--badge-bg-dark);
  border: 1px solid var(--badge-border-dark);
  backdrop-filter: blur(10px);
  
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.2),
    0 8px 30px rgba(0,0,0,0.4);
}

[data-theme="light"] .badge {
  background: var(--badge-bg-light);
  border: 1px solid var(--badge-border-light);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.8),
    0 8px 30px rgba(0,0,0,0.1);
}

/* BUTTONS */
.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* COMMON BUTTON */
.btn {
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(
    120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%
  );
  color: #111;
  
  box-shadow:
    /* 0 10px 30px rgba(255, 140, 0, 0.45), */
    inset 0 1px 1px rgba(255,255,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 140, 0, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

/* SECONDARY BUTTON */
.btn-secondary {
  color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 150, 44, 0.1);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -1px 1px rgba(255, 122, 0, 0.1);
  backdrop-filter: blur(25px);
}

[data-theme="light"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 -1px 1px rgba(255, 122, 0, 0.05);
  backdrop-filter: blur(25px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Desktop Navigation Styles */
@media (min-width: 769px) {
  .desktop-only {
    display: list-item;
  }
  
  /* Desktop navigation fixes */
  .nav-center {
    position: static;
    transform: none;
    display: flex;
    gap: 28px;
    list-style: none;
    width: auto;
    order: 0;
    justify-content: center;
  }
}

/* Mobile Menu Styles - Available on all screen sizes */
/* Override rules to ensure menu is hidden by default */
.mobile-menu-backdrop:not(.active) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-menu-overlay:not(.active) {
  transform: translateX(100%) !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--nav-bg-dark);
  backdrop-filter: blur(20px);
  z-index: 999;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

[data-theme="light"] .mobile-menu-overlay {
  background: var(--nav-bg-light);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 80px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu-item {
  margin-bottom: 0;
}

.mobile-menu-item a {
  font-size: 20px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.2s ease;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .mobile-menu-item a {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.mobile-menu-item a:hover {
  opacity: 1;
  color: var(--accent-orange);
  padding-left: 10px;
}

.mobile-menu-controls {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.mobile-control-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .mobile-control-item {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.mobile-control-item label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  flex: 1;
}

.mobile-lang-btn,
.mobile-theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--lang-btn-border-dark);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 500;
  min-width: 80px;
  justify-content: center;
}

[data-theme="light"] .mobile-lang-btn,
[data-theme="light"] .mobile-theme-toggle {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--lang-btn-border-light);
}

.mobile-lang-btn:hover,
.mobile-theme-toggle:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: scale(1.05);
}

.mobile-lang-btn .lang-flag {
  font-size: 14px;
}

.mobile-theme-toggle .theme-label {
  margin-left: 4px;
}

/* Mobile Menu Toggle - Available on all screen sizes */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg) translateY(7px);
}

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

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translateY(-7px);
}

/* Responsive Design - match index navbar behavior */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 16px;
    flex-wrap: wrap;
    row-gap: 10px;
    flex-direction: row;
    align-items: center;
  }

  .nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  .nav-center {
    gap: 16px;
    width: 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
    display: flex;
    margin: 0 auto;
  }

  .nav-center a {
    font-size: 13px;
  }

  .nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }

  .mobile-menu-toggle {
    margin-left: 0;
  }

  .hero {
    padding-top: 80px;
  }
}

/* Responsive Design - match index navbar behavior */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 16px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  
  .nav-center {
    gap: 16px;
    width: 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
  }
  
  .nav-center a {
    font-size: 13px;
  }

  .nav-left {
    flex: 1;
  }
  
  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }
  
  .hero {
    padding-top: 80px;
  }

  .mobile-menu-overlay,
  .mobile-menu-backdrop {
    display: block;
  }
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
  }

  .mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translateY(7px);
  }

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

  .mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translateY(-7px);
  }
  
  .nav-right .lang-btn,
  .nav-right .theme-toggle {
    display: none;
  }
  
  .navbar {
    justify-content: space-between;
  }
}

/* Responsive Design - match index navbar behavior */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 16px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  
  .nav-center {
    gap: 16px;
    width: 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
  }
  
  .nav-center a {
    font-size: 13px;
  }

  .nav-left {
    flex: 1;
  }
  
  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 80px 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }
  .hero h2 {
    font-size: 15px;
    letter-spacing: 0.75em;
    margin-left: 0;
    text-align: center;
  }
  .hero p {
    max-width: 300px;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
  }

  .mobile-menu-toggle.active span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Override rules to ensure menu is hidden by default */
  .mobile-menu-backdrop:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-menu-overlay:not(.active) {
    transform: translateX(100%) !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Mobile Menu Backdrop */
  .mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Sidebar */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--nav-bg-dark);
    backdrop-filter: blur(20px);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  [data-theme="light"] .mobile-menu-overlay {
    background: var(--nav-bg-light);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-overlay.active {
    transform: translateX(0);
  }
  
  .mobile-menu-content {
    padding: 80px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .mobile-menu-item {
    margin-bottom: 0;
  }
  
  .mobile-menu-item a {
    font-size: 20px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.2s ease;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="light"] .mobile-menu-item a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-item a:hover {
    opacity: 1;
    color: var(--accent-orange);
    padding-left: 10px;
  }
  
  .mobile-menu-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  
  .mobile-control-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="light"] .mobile-control-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }
  
  .mobile-control-item label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    flex: 1;
  }
  
  .mobile-lang-btn,
  .mobile-theme-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--lang-btn-border-dark);
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
    min-width: 80px;
    justify-content: center;
  }
  
  [data-theme="light"] .mobile-lang-btn,
  [data-theme="light"] .mobile-theme-toggle {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--lang-btn-border-light);
  }
  
  .mobile-lang-btn:hover,
  .mobile-theme-toggle:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: scale(1.05);
  }
  
  .mobile-lang-btn .lang-flag {
    font-size: 14px;
  }

  .mobile-theme-toggle .theme-label {
    margin-left: 4px;
  }

  /* Hide desktop lang/theme buttons on mobile */
  .nav-right .lang-btn,
  .nav-right .theme-toggle {
    display: none;
  }

  /* Desktop-only navigation items */
  .desktop-only {
    display: none;
  }

  /* Adjust navbar to center navigation items */
  .navbar {
    justify-content: space-between;
  }
  
  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
    width: auto;
    order: 0;
  }
  
  .nav-center a {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .nav-center a:hover {
    opacity: 1;
    color: var(--accent-orange);
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Example CSS for responsive navbar */
/* Adjust the selector to match your navbar container */
@media (max-width: 435px) {
  .nav-center {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;      /* Adjust as needed */
    font-size: 12px !important; /* Adjust as needed */
    width: auto !important;
  }
  .nav-center a {
    white-space: nowrap !important;
    font-size: 12px !important;
    padding: 0 2px !important;
  }
}

/* Mobile menu button colors - outside media query to work globally */
[data-theme="dark"] .mobile-menu-toggle {
  color: #ffffff;
}

[data-theme="light"] .mobile-menu-toggle {
  color: #1a1a1a;
}

.vision-mission-section {
  /* background: #0b0b0b; */
  padding: 60px 20px;
}

.vm-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.vm-card {
  background: #1c1f23;
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
}

[data-theme="light"] .vm-card {
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

.vm-card > * {
  position: relative;
  z-index: 2;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.7),
    0 25px 45px rgba(0, 0, 0, 0.5),
    0 15px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.vm-icon {
  font-size: 22px;
}

.vm-header h3 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.vm-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #d6d6d6;
}

[data-theme="light"] .vm-header h3 {
  color: var(--text-light);
}

[data-theme="light"] .vm-card p {
  color: var(--description-light);
}

/* Responsive Vision & Mission */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 40px 16px;
  }

  .vm-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-card {
    padding: 20px 18px;
  }

  .vm-header {
    align-items: flex-start;
  }

  .vm-header h3 {
    font-size: 14px;
  }

  .vm-card p {
    font-size: 13.5px;
  }
}


/* SCROLLING MARQUEE */
.marquee {
  /* margin-top: 4.5rem; */
  width: 100vw;
  height: 80px;
  overflow: hidden;
  background: var(--accent-orange);
  border-radius: 0;
  display: flex;
  align-items: center;  justify-content: center;  white-space: nowrap;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.marquee-content {
  display: flex;
  animation: scroll 120s linear infinite;
  align-items: center;
  height: 100%;
  width: max-content;
  /* animation: scroll 25s linear infinite; */
}

.marquee-content span {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0 2.5rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1;
  display: flex;
  align-items: center;
  height: 80px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive marquee */
@media (max-width: 768px) {
  .marquee {
    height: 60px;
    margin-top: 2rem;
  }
  
  .marquee-content span {
    font-size: 1.8rem;
    margin: 0 1.5rem;
    height: 60px;
  }
}

/* --- Spreevo Section Specific Styles --- */
.spreevo-section {
    position: relative;
    min-height: 100vh; /* Adjust if you want it smaller */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #0f0f0f;
    color: white;
    overflow: hidden;
    /* Glow Background */
    background: 
        radial-gradient(circle at 10% 80%, rgba(242, 122, 33, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(242, 122, 33, 0.15) 0%, transparent 40%),
        #121212;
}

.spreevo-section .header-box {
    text-align: center;
    margin-bottom: 60px;
}

.spreevo-section .main-title {
    font-size: 5rem;
    font-weight: 700;
    color: #ff9205;
    margin: 0;
    line-height: 1;
    /* text-shadow: 0px 4px 10px rgba(0,0,0,0.5); */
}

.spreevo-section .sub-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    text-align: right;
    margin-right: -20px;
}

/* Wrapper for SVG and Cards */
.spreevo-section .path-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
}

/* SVG Line */
.spreevo-section .connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.spreevo-section .dashed-path {
    fill: none;
    stroke: #e86c1f;
    stroke-width: 3;
    stroke-dasharray: 10, 10;
    stroke-linecap: round;
}

/* Cards */
.spreevo-section .sp-card {
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 2;
}

.spreevo-section .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.spreevo-section .card-header i {
    color: #e86c1f;
    font-size: 1.5rem;
    border: 2px solid #e86c1f;
    padding: 8px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spreevo-section .card-header h3 {
    color: #e86c1f;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.spreevo-section .sp-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Positioning */
.spreevo-section .card-1 { top: 0; left: 5%; }
.spreevo-section .card-2 { top: 35%; left: 50%; transform: translateX(-50%); }
.spreevo-section .card-3 { bottom: 5%; right: 5%; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .spreevo-section .path-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .spreevo-section .connector-svg { display: none; }

    .spreevo-section .sp-card {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        transform: none;
        width: 80%;
    }

    .spreevo-section .path-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        border-left: 2px dashed #e86c1f;
        transform: translateX(-50%);
        z-index: 0;
    }
}
@media (max-width: 500px) {
    .spreevo-section .main-title {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }
    .spreevo-section .sub-title {
        font-size: 15px;
        letter-spacing: 0.75em;
        margin-left: 0;
        text-align: center;
    }
}
/* =========================================
   SECTION 1: SPREEVO (Dark Theme)
   ========================================= */
.spreevo-section {
    position: relative;
    /* Min-height ensures it takes space, adjust as needed */
    min-height: 800px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    /* Background Gradient + Dark Color */
    background: 
        radial-gradient(circle at 10% 80%, rgba(242, 122, 33, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(242, 122, 33, 0.15) 0%, transparent 40%),
        #0f0f0f;
    color: white;
    overflow: hidden; /* Prevents overflow issues */
}

    /* Light theme variant for WHY SPREEVO section */
    [data-theme="light"] .spreevo-section {
      background:
        radial-gradient(circle at 10% 80%, rgba(242, 122, 33, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(242, 122, 33, 0.08) 0%, transparent 40%),
        #f8f9fb;
      color: var(--text-light);
    }

    [data-theme="light"] .spreevo-section .sub-title {
      color: var(--text-light);
    }

.spreevo-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

h1.spreevo-title {
    font-size: 5rem;
    font-weight: 700;
    color: #e86c1f;
    margin: 0;
    line-height: 1;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}

h2.spreevo-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    text-align: right;
    margin-right: -20px;
}

.spreevo-path-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
}

.spreevo-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.dashed-path {
    fill: none;
    stroke: #e86c1f;
    stroke-width: 3;
    stroke-dasharray: 10, 10;
    stroke-linecap: round;
}

/* Spreevo Cards */
.spreevo-card {
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 2;
    box-sizing: border-box;
}

.spreevo-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.spreevo-card-header i {
    color: #e86c1f;
    font-size: 1.5rem;
    border: 2px solid #e86c1f;
    padding: 8px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spreevo-card-header h3 {
    color: #e86c1f;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.spreevo-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Positioning */
.sc-1 { top: 0; left: 5%; }
.sc-2 { top: 35%; left: 50%; transform: translateX(-50%); }
.sc-3 { bottom: 5%; right: 5%; }

/* Spreevo Responsive */
@media (max-width: 768px) {
    .spreevo-section { min-height: auto; }
    .spreevo-path-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .spreevo-svg { display: none; }
    .spreevo-card {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        transform: none;
        width: 90%;
        max-width: 350px;
    }
    /* Simple vertical line for mobile */
    .spreevo-path-container::before {
        content: '';
        position: absolute;
        left: 50%; top: 0; bottom: 0;
        width: 2px;
        border-left: 2px dashed #e86c1f;
        transform: translateX(-50%);
        z-index: 0;
    }
}

/* =========================================
   SECTION 2: TEAM (Orange Theme)
   ========================================= */
.team-section {
  background-color: #fc843a;
  position: relative;
  min-height: 700px;
  width: 100%;
  /* max-width: 1500px; */
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  box-sizing: border-box;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto;
}

/* Bubbles */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.b1 { 
    width: 300px; 
    height: 300px; 
    top: 35%; 
    left: 35%; 
    opacity: 0.1;
    background: radial-gradient(circle, rgb(255, 199, 134), rgb(255, 185, 120));
    animation-delay: 0s;
} 

.b2 { 
    width: 120px; 
    height: 120px; 
    top: 15%; 
    left: 15%; 
    opacity: 0.15;
    background: radial-gradient(circle, rgb(255, 199, 134), rgb(255, 185, 120));
    animation-delay: -2s;
}

.b3 { 
    width: 80px; 
    height: 80px; 
    top: 25%; 
    right: 20%; 
    opacity: 0.2;
    background: radial-gradient(circle, rgb(255, 199, 134), rgb(255, 185, 120));
    animation-delay: -4s;
}

.b4 { 
    width: 150px; 
    height: 150px; 
    bottom: 20%; 
    right: 25%; 
    opacity: 0.12;
    background: radial-gradient(circle, rgb(255, 199, 134), rgb(255, 185, 120));
    animation-delay: -1s;
}

/* Additional light background circles */
.b5 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 10%;
    opacity: 0.08;
    background: radial-gradient(circle, rgb(255, 199, 134), rgb(255, 185, 120));
    animation-delay: -3s;
}

.b6 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 40%;
    opacity: 0.18;
    background: radial-gradient(circle, rgb(255, 199, 134), rgb(255, 185, 120));
    animation-delay: -5s;
}

.b7 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 60%;
    opacity: 0.1;
    background: radial-gradient(circle, rgb(255, 255, 255), rgb(255, 255, 255));
    animation-delay: -2.5s;
}

/* Large center background circle */
.big-center-circle {
  width: 18800px;
  height: 1800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  background: radial-gradient(circle, rgb(250, 170, 114), rgb(255, 141, 71));
  animation-delay: 0s;
  z-index: 1;
}

/* Additional light circles */
.bubble::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating animation for circles */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-30px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.team-header {
    text-align: center;
    color: white;
    max-width: 900px;
    z-index: 10;
    margin-bottom: 1px;
}

.team-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    color: white;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.team-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    margin: 0;
    padding: 0 20px;
}

.team-wrapper {
    position: relative;
    width: 100%;
    max-width: 1500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.wave-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

.team-cards-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    z-index: 2;
    box-sizing: border-box;
}

/* Team Card Styles */
.team-card {
    background: white;
    width: 240px;
    padding: 25px 20px 30px 20px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.img-mask {
    width: 110px; height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    background-color: #eee;
}
.img-mask img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { margin: 0; font-size: 1.4rem; color: #222; font-weight: 600; }
.team-card .role { display: block; margin: 5px 0 10px 0; font-size: 0.9rem; font-weight: 500; color: #444; }
.team-card .desc { font-size: 0.75rem; color: #666; margin-bottom: 20px; line-height: 1.4; }

.btn-linkedin {
    background-color: #ff914d;
    color: white;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Team Card Transforms */
.tc-1 { transform: translateY(60px) rotate(-6deg); }
.tc-2 { transform: translateY(-40px) rotate(5deg); }
.tc-3 { transform: translateY(50px) rotate(-4deg); }
.tc-4 { transform: translateY(-50px) rotate(6deg); }

.team-card:hover {
    transform: translateY(0) rotate(0) scale(1.05);
    z-index: 10;
}

/* Team Responsive */
@media (max-width: 950px) {
    .team-section { min-height: auto; }
    .team-wrapper { height: auto; margin-top: 40px; }
    .team-cards-row { 
        flex-direction: column; 
        gap: 40px; 
        padding: 0;
        align-items: flex-start !important;
        width: 100%;
    }
    .wave-svg { display: none; }
    .tc-1, .tc-2, .tc-3, .tc-4 { transform: none; margin-bottom: 0; }

  html[lang="fr"] .download-features .feature-item span,
  body[lang="fr"] .download-features .feature-item span {
    text-align: left !important;
    display: block;
    width: 100%;
    white-space: normal;
  }
    .team-header h1 { font-size: 3rem; }
}



.cta-section {
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Light theme variant for CTA on About page */
[data-theme="light"] .cta-section {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.cta-content {
  max-width: 900px;
}

.cta-brand-title {
  font-size: 70px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

[data-theme="light"] .cta-brand-title {
  color: var(--text-light);
}

.cta-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--description-dark);
  margin-bottom: 20px;
  /* font-style: italic; */
  opacity: 0.8;
}

[data-theme="light"] .cta-subtitle {
  color: var(--description-light);
}

.cta-title {
  font-size: 50px;
  letter-spacing: normal;
  word-spacing: normal;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 22px;
  color: #cfcfcf;
  margin-bottom: 30px;
}

[data-theme="light"] .cta-content p {
  color: var(--description-light);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Buttons */
.btn-fill {
  background: linear-gradient(120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%);
  color: #000;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #ff9f43;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ff9f43;
  cursor: pointer;
}

/* Hover Effects */
.btn-fill:hover {
  opacity: 0.9;
}

.btn-outline:hover {
  background: #ff9f43;
  color: #000;
}
.footer {
  background: #ffffff;
  padding: 60px 80px 20px;
  border-top: 1px solid #eaeaea;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 420px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

.footer-left .logo h2 {
  color: #ff7a00;
  letter-spacing: normal;
  word-spacing: normal;
}

.footer-desc {
  /* margin: 15px 0; */
  color: #444;
  line-height: 1.6;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 22px;
  border: 2px solid #ff7a00;
  border-radius: 30px;
  background: transparent;
  color: #ff7a00;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #ff7a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.download-btn span {
  background: #ff7a00;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.download-btn:hover span {
  background: white;
  color: #ff7a00;
  transform: translateX(3px);
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #ff7a00;
  cursor: pointer;
}

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

.footer-links h4 {
  margin-bottom: 12px;
  color: #222;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff7a00;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
  font-size: 14px;
}

.footer-bottom a {
  color: #222;
  text-decoration: none;
}

/* =====================
   RESPONSIVE TWEAKS (match index)
===================== */
@media (max-width: 768px) {
  /* CTA section */
  .cta-section {
    margin-top: 0;
    padding: 60px 16px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 18px;
  }

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

  /* Footer layout */
  .footer {
    padding: 40px 20px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .footer {
    padding: 32px 16px 0;
  }
}

/* =====================
   DOWNLOAD SECTION
===================== */
.download-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

[data-theme="light"] .download-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.download-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.download-header {
  margin-bottom: 60px;
}

.download-title {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.download-subtitle {
  font-size: 20px;
  color: var(--description-dark);
  max-width: 600px;
  margin: 0 auto;
}

[data-theme="light"] .download-subtitle {
  color: var(--description-light);
}

.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.download-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .download-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.download-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-orange);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 124, 28, 0.2);
}

[data-theme="light"] .download-card:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 124, 28, 0.2);
}

.download-icon {
  margin-bottom: 20px;
}

.download-icon i {
  font-size: 48px;
  color: var(--accent-orange);
}

/* Make X icon black in light theme */
[data-theme="light"] .download-card .fa-x-twitter {
  color: #000000 !important;
}

[data-theme="light"] .social-link.twitter i {
  color: #000000 !important;
}

[data-theme="light"] .social-link.twitter svg {
  fill: #000000 !important;
}

[data-theme="light"] .social-link.twitter:hover svg {
  fill: white !important;
}

.download-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

[data-theme="light"] .download-card h3 {
  color: var(--text-light);
}

.download-card p {
  font-size: 16px;
  color: var(--description-dark);
  margin-bottom: 25px;
}

[data-theme="light"] .download-card p {
  color: var(--description-light);
}

.download-card .download-btn {
  background: linear-gradient(
    120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%
  );
  color: #111;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.download-card .download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 124, 28, 0.4);
}

.social-finds {
  margin: 60px 0 40px 0;
  text-align: center;
}

.social-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
}

[data-theme="light"] .social-title {
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 120px;
}

[data-theme="light"] .social-link {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link i {
  font-size: 32px;
  transition: all 0.3s ease;
}

.social-link span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

[data-theme="light"] .social-link span {
  color: var(--text-light);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .social-link:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Individual social media colors */
.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-color: #e1306c;
}

.social-link.instagram:hover i,
.social-link.instagram:hover span {
  color: white;
}

.social-link.instagram i {
  color: #e1306c;
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.facebook:hover i,
.social-link.facebook:hover span {
  color: white;
}

.social-link.facebook i {
  color: #1877f2;
}

.social-link.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-link.twitter:hover i,
.social-link.twitter:hover span {
  color: white;
}

.social-link.twitter i {
  color: #000000;
}

[data-theme="light"] .social-link.twitter i {
  color: #000000;
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-link.linkedin:hover i,
.social-link.linkedin:hover span {
  color: white;
}

.social-link.linkedin i {
  color: #0077b5;
}

.download-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--description-dark);
}

[data-theme="light"] .feature-item {
  color: var(--description-light);
}

.feature-item i {
  color: var(--accent-orange);
  font-size: 18px;
}

.feature-item span {
  font-size: 16px;
  font-weight: 500;
}

/* Responsive Design for Download Section */
@media (max-width: 768px) {
  .download-section {
    padding: 60px 20px;
  }

  .download-title {
    font-size: 40px;
  }

  .download-subtitle {
    font-size: 18px;
  }

  .download-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .download-card {
    padding: 30px 20px;
  }

  .download-features {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .social-finds {
    margin: 40px 0 30px 0;
  }

  .social-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    min-width: 100px;
    padding: 15px;
  }

  .social-link i {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .download-title {
    font-size: 32px;
  }

  .download-card {
    padding: 25px 15px;
  }

  .download-icon i {
    font-size: 40px;
  }
}
