/* KITOKO EVENT - OPTIMIZED */

:root {
  --primary: #000;
  --bg: #FBF6EE;
  --accent-1: #d4738f;
  --accent-2: #e8a8c0;
  --accent-3: #c5b8c0;
  --muted: #6b6b6b;
  --ui-font: "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ui-font);
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  color: var(--primary);
  overflow-x: hidden;
}

.container { max-width: 1200px !important; margin: 0 auto !important; }
.container-fluid { width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }

/* ===== NAVBAR - TRANSPARENT AU CHARGEMENT, BLUR AU SCROLL ===== */
.navbar-scroll {
  background: transparent !important;
  transition: all 0.3s ease;
  backdrop-filter: none;
}

.navbar-scroll.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 115, 143, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brand-logo {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(212, 115, 143, 0.2);
}

.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.btn-contact {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff !important;
  border: none;
  font-weight: 600;
  padding: 0.4rem 0.9rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 115, 143, 0.3);
}

/* ===== HERO ===== */
.hero-section {
  padding: 30px 0;
}

.hero-content {
  padding: 10px 0;
}

.hero-title {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
  font-weight: 500;
}

/* ===== DOWNLOAD BUTTONS PlayStore STYLE ===== */
.download-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.btn-dl-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  min-height: 44px;
}

.btn-dl-play:hover {
  transform: translateY(-2px);
}

.btn-dl-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(212, 115, 143, 0.3);
}

.btn-dl-primary:hover {
  box-shadow: 0 12px 28px rgba(212, 115, 143, 0.4);
  color: #fff !important;
}

.btn-dl-secondary {
  background: linear-gradient(135deg, var(--accent-3), #d4c4cc);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-dl-secondary:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  color: var(--primary) !important;
}

.btn-dl-play i {
  font-size: 1.1rem;
}

.dl-app-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.dl-count {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ===== TUTORIEL BUTTON ===== */
.btn-tutorial {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 11px 18px !important;
  border-radius: 10px !important;
  background: rgba(212, 115, 143, 0.1) !important;
  color: var(--accent-1) !important;
  border: 1px solid var(--accent-1) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  margin-bottom: 20px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.btn-tutorial:hover {
  background: rgba(212, 115, 143, 0.2) !important;
  transform: translateY(-2px) !important;
  color: var(--accent-1) !important;
}

.hero-footer {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ===== DUAL PHONES ===== */
.dual-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 350px;
  perspective: 1200px;
  padding: 10px 0;
}

.phone-wrapper {
  position: relative;
  flex-shrink: 0;
}

.phone-left {
  animation: phoneFloatLeft 6s ease-in-out infinite;
}

.phone-right {
  animation: phoneFloatRight 7s ease-in-out infinite;
  margin-left: -20px;
}

@keyframes phoneFloatLeft {
  0%, 100% { transform: translateY(0px) rotateY(-8deg) rotateZ(-2deg); }
  50% { transform: translateY(-12px) rotateY(-8deg) rotateZ(-2deg); }
}

@keyframes phoneFloatRight {
  0%, 100% { transform: translateY(0px) rotateY(8deg) rotateZ(2deg); }
  50% { transform: translateY(-12px) rotateY(8deg) rotateZ(2deg); }
}

.phone {
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(212, 115, 143, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.phone:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 15px 40px rgba(212, 115, 143, 0.25);
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  z-index: 10;
}

.phone-display {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  margin-top: 4px;
}

.phone-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.phone-img.active {
  opacity: 1;
}

.phone-home {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 6px auto 0;
  width: 80px;
}

@media (max-width: 1024px) {
  .phone {
    width: 160px;
    height: 320px;
    border-radius: 24px;
    padding: 8px;
  }

  .phone-notch {
    width: 70px;
    height: 16px;
  }

  .phone-right {
    margin-left: -15px;
  }
}

@media (max-width: 640px) {
  .dual-phones {
    min-height: 280px;
  }

  .phone {
    width: 140px;
    height: 280px;
    border-radius: 20px;
    padding: 7px;
  }

  .phone-notch {
    width: 60px;
    height: 14px;
  }

  .phone-right {
    margin-left: -12px;
  }

  .hero-section {
    padding: 20px 0;
  }

  .btn-dl-play {
    padding: 9px 12px;
    font-size: 0.85rem;
    gap: 6px;
  }

  .btn-tutorial {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    gap: 6px !important;
  }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: linear-gradient(135deg, rgba(248, 225, 231, 0.3), rgba(212, 115, 143, 0.05));
  border-top: 1px solid rgba(212, 115, 143, 0.1);
  border-bottom: 1px solid rgba(212, 115, 143, 0.1);
  margin: 40px 0;
  padding: 40px 0 !important;
}

.reviews-header {
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stars {
  font-size: 1.2rem;
  color: #ffc107;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 800;
  font-size: 1.4rem;
}

.rating-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.btn-add-review {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.btn-add-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 115, 143, 0.3);
  color: #fff !important;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 115, 143, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease;
}

.review-card.hidden {
  display: none;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 115, 143, 0.15);
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.review-stars {
  color: #ffc107;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-app {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(212, 115, 143, 0.1);
  color: var(--accent-1);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* VOIR PLUS BUTTON */
.btn-see-more {
  background: rgba(212, 115, 143, 0.1);
  color: var(--accent-1);
  border: 1px solid var(--accent-1);
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.btn-see-more:hover {
  background: rgba(212, 115, 143, 0.2);
  transform: translateY(-2px);
  color: var(--accent-1);
}

.btn-see-more i {
  transition: transform 0.3s ease;
}

.btn-see-more.collapsed i {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-section {
    margin: 30px 0;
    padding: 30px 0 !important;
  }
}

/* ===== TUTORIAL MODAL - OPTIMISÉ ===== */
.tutorial-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid rgba(212, 115, 143, 0.1);
  margin-bottom: 24px;
}

.tab {
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.tab.active {
  color: var(--accent-1);
  border-bottom-color: var(--accent-1);
}

.tutorial-slides-container {
  min-height: 400px;
}

.tutorial-slides {
  display: none;
}

.tutorial-slides.active {
  display: block;
}

.slide-item {
  display: none;
  animation: slideIn 0.4s ease;
}

.slide-item.active {
  display: block;
  text-align: center;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tutorial-img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(212, 115, 143, 0.15);
  margin-bottom: 16px;
  object-fit: cover;
}

.slide-info h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.slide-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tutorial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-nav-mini {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 115, 143, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--accent-1);
}

.btn-nav-mini:hover {
  background: rgba(212, 115, 143, 0.2);
  transform: scale(1.08);
}

.slide-num {
  font-weight: 700;
  color: var(--muted);
  min-width: 40px;
  text-align: center;
  font-size: 0.95rem;
}

/* ===== STAR RATING ===== */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.star-rating input {
  display: none;
}

.star {
  font-size: 2.5rem;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffc107;
}

#ratingDisplay {
  display: block;
  margin-top: 8px;
}

/* ===== MODAL ===== */
.modal-header {
  background: linear-gradient(135deg, rgba(248, 225, 231, 0.5), rgba(212, 115, 143, 0.05));
  border-bottom: 1px solid rgba(212, 115, 143, 0.1);
}

.modal-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.form-control, .form-select {
  border-color: rgba(212, 115, 143, 0.2);
  border-radius: 8px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(212, 115, 143, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border: none;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 115, 143, 0.3);
  color: #fff !important;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, rgba(248, 225, 231, 0.2), rgba(212, 115, 143, 0.05));
  border-top: 1px solid rgba(212, 115, 143, 0.1);
  padding: 30px 0 16px !important;
  margin-top: 40px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand h3 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--accent-1);
  transform: translateX(2px);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 115, 143, 0.1);
}

.footer-info small {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-info a {
  color: var(--accent-1);
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* ===== TOAST ===== */
.toast {
  background: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 8px;
  color: #fff;
}

.toast-body {
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== UTILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ABOUT MODAL ===== */
.about-body {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  padding: 20px;
}

/* Developer Card */
.developer-card {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(212, 115, 143, 0.1), rgba(232, 168, 192, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(212, 115, 143, 0.15);
  margin-bottom: 20px;
}

.developer-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-1);
  box-shadow: 0 8px 24px rgba(212, 115, 143, 0.2);
  margin-bottom: 12px;
}

.developer-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
}

.developer-title {
  font-size: 0.85rem;
  color: var(--accent-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.developer-skills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.skill-badge {
  display: inline-block;
  background: rgba(212, 115, 143, 0.15);
  color: var(--accent-1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(212, 115, 143, 0.2);
}

/* App Cards */
.app-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(212, 115, 143, 0.15);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.app-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 115, 143, 0.12);
}

.app-card-primary {
  background: linear-gradient(135deg, rgba(212, 115, 143, 0.08), rgba(232, 168, 192, 0.03));
}

.app-card-secondary {
  background: linear-gradient(135deg, rgba(197, 184, 192, 0.08), rgba(212, 196, 204, 0.03));
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.app-card-primary .app-icon {
  background: rgba(212, 115, 143, 0.15);
  color: var(--accent-1);
}

.app-card-secondary .app-icon {
  background: rgba(197, 184, 192, 0.15);
  color: #8b8b8b;
}

.app-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--primary);
}

.app-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.app-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.features-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.features-list i {
  color: var(--accent-1);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Developer Bio Card */
.developer-bio-card {
  background: linear-gradient(135deg, rgba(248, 225, 231, 0.3), rgba(212, 115, 143, 0.05));
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(212, 115, 143, 0.1);
  margin-top: 16px;
}

.developer-bio-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.developer-bio-card strong {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 640px) {
  .about-body {
    padding: 16px;
  }

  .developer-card {
    padding: 14px;
  }

  .developer-photo {
    width: 80px;
    height: 80px;
  }

  .app-card {
    padding: 14px;
    margin-bottom: 12px;
  }

  .skill-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}
/* ===== STATISTICS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, rgba(212, 115, 143, 0.08), rgba(232, 168, 192, 0.03));
  border-top: 1px solid rgba(212, 115, 143, 0.1);
  border-bottom: 1px solid rgba(212, 115, 143, 0.1);
  padding: 60px 0;
  margin: 40px 0;
}

.stats-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.stats-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(212, 115, 143, 0.08);
  border: 1px solid rgba(212, 115, 143, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(212, 115, 143, 0.15);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 115, 143, 0.15), rgba(232, 168, 192, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-1);
  margin: 0 auto 10px;
}

.stat-number {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

/* CONTINENT STATS */
.continent-stats {
  padding-top: 40px;
}

.continent-stats h5 {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.continent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.continent-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(212, 115, 143, 0.1);
  transition: all 0.3s ease;
}

.continent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 115, 143, 0.12);
}

.continent-flag {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.continent-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.continent-count {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-1);
  margin-bottom: 10px;
}

.continent-percent {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.continent-bar {
  height: 6px;
  background: rgba(212, 115, 143, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.continent-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 10px;
  transition: width 0.6s ease;
}

/* APP COMPARISON - PROGRESSION */
.app-comparison {
  padding-top: 40px;
}

.app-comparison h5 {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.comparison-chart {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(212, 115, 143, 0.1);
  box-shadow: 0 4px 12px rgba(212, 115, 143, 0.08);
}

.comparison-item {
  margin-bottom: 32px;
}

.comparison-item:last-child {
  margin-bottom: 0;
}

.comparison-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.app-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.comparison-value {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-1);
}

.comparison-percent {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.comparison-bar {
  height: 28px;
  background: linear-gradient(90deg, rgba(212, 115, 143, 0.08), rgba(212, 115, 143, 0.15));
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 115, 143, 0.15);
  margin-bottom: 8px;
  position: relative;
}

.comparison-fill {
  height: 100%;
  border-radius: 14px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.maries-fill {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 4px 12px rgba(212, 115, 143, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qr-fill {
  background: linear-gradient(90deg, var(--accent-3), #d4c4cc);
  box-shadow: 0 4px 12px rgba(197, 184, 192, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-align: right;
}

/* Animated progress bar */
@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.comparison-fill {
  animation: progressPulse 2s ease-in-out infinite;
}

@media (max-width: 640px) {
  .comparison-chart {
    padding: 16px;
  }

  .comparison-bar {
    height: 24px;
  }

  .comparison-label {
    flex-direction: column;
    align-items: flex-start;
  }
}