/* ===========================
   About Section
   =========================== */

.about-section {
  padding: 80px 20px 100px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-container h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}

.about-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 48px 0 24px;
  letter-spacing: -0.01em;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin: 0 0 24px;
}

/* --- Blocs texte / visuel --- */

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.about-block--reverse {
  direction: rtl;
}

.about-block--reverse > * {
  direction: ltr;
}

.about-block-content h1 {
  margin-top: 0;
}

.about-block-content h2 {
  margin-top: 0;
}

.about-img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-img--natural {
  aspect-ratio: unset;
  height: auto;
  object-fit: unset;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px 80px;
  }

  .about-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .about-container h2 {
    font-size: 26px;
    margin: 40px 0 20px;
  }

  .about-container p {
    font-size: 16px;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  .about-block--reverse {
    direction: ltr;
  }

  .about-block--reverse .about-block-visual {
    order: -1;
  }

  .about-img {
    border-radius: 10px;
  }
}
/* Admin Styles */

.admin-login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.admin-login-box {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.admin-login-box h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.admin-header h1 {
  font-size: 2rem;
  color: #1a1a1a;
}

.admin-actions {
  display: flex;
  gap: 10px;
}

/* Forms */

.admin-form-container,
.admin-login-form {
  max-width: 800px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
}

.form-control[type="text"],
.form-control[type="email"],
.form-control[type="password"],
.form-control textarea,
.form-control select {
  font-family: inherit;
}

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

.form-checkbox {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 500;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Buttons */

.btn-primary {
  padding: 12px 30px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 12px 30px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #5a6268;
}

.btn-danger {
  padding: 12px 30px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-edit {
  padding: 6px 15px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-edit:hover {
  background: #218838;
}

.btn-delete {
  padding: 6px 15px;
  background: #dc3545;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-delete:hover {
  background: #c82333;
}

/* Alerts */

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.alert ul {
  margin: 0;
  padding-left: 20px;
}

/* Table */

.admin-table {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background: #f8f9fa;
}

.admin-table th,
.admin-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.admin-table th {
  font-weight: 600;
  color: #333;
}

.admin-table tbody tr:hover {
  background: #f8f9fa;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

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

.actions form {
  margin: 0;
}

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-badge.published {
  background: #d4edda;
  color: #155724;
}

.status-badge.draft {
  background: #fff3cd;
  color: #856404;
}

.no-data {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .admin-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .admin-actions a,
  .admin-actions button {
    width: 100%;
    text-align: center;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions a,
  .form-actions button {
    width: 100%;
    text-align: center;
  }
  
  .admin-table {
    overflow-x: scroll;
  }
}
/* ===========================
   Hero Section
   =========================== */

.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* --- Hero Text --- */

.hero-text {
  flex: 1;
  max-width: 560px;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a2e;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #670BFF 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 32px;
}

/* --- CTA Buttons --- */

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.btn-store:hover {
  transform: translateY(-2px);
}

.btn-store-android {
  background: #6C63FF;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-store-android:hover {
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

.btn-store-ios {
  background: #FF6584;
  box-shadow: 0 4px 20px rgba(255, 101, 132, 0.3);
}

.btn-store-ios:hover {
  box-shadow: 0 8px 30px rgba(255, 101, 132, 0.4);
}

.btn-store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-store-label {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

.btn-store-name {
  font-size: 16px;
  font-weight: 700;
}

/* --- Hero Visual (Phone + Pills) --- */

.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 580px;
  transition: transform 0.1s ease-out;
  margin-right: 40px;
}

/* --- Floating Pills --- */

.pill {
  position: absolute;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.15s ease-out;
  cursor: default;
}

.pill:hover {
  transform: scale(1.08);
}

.pill-1 {
  background: #fef3c7;
  color: #92400e;
  top: 30px;
  left: -40px;
  animation-delay: 0s;
}

.pill-2 {
  background: #d1fae5;
  color: #065f46;
  top: 100px;
  right: 0;
  animation-delay: -1s;
}

.pill-3 {
  background: #ede9fe;
  color: #5b21b6;
  bottom: 160px;
  left: -40px;
  animation-delay: -2s;
}

.pill-4 {
  background: #fce7f3;
  color: #9d174d;
  bottom: 80px;
  right: -10px;
  animation-delay: -3s;
}

.pill-5 {
  background: #dbeafe;
  color: #1e40af;
  top: 220px;
  left: -30px;
  animation-delay: -4s;
}

.pill-6 {
  background: #fef9c3;
  color: #854d0e;
  top: 180px;
  right: -10px;
  animation-delay: -2.5s;
}

.pill-7 {
  background: #f3e8ff;
  color: #6b21a8;
  bottom: 240px;
  right: 10px;
  animation-delay: -1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* --- Phone Mockup --- */

.phone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 25px 80px rgba(103, 11, 255, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Phone Screen UI Placeholder --- */

.phone-screen-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-map-bg {
  flex: 1;
  background:
    radial-gradient(circle at 30% 40%, rgba(103, 11, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%);
  position: relative;
}

/* Simulated map dots */
.phone-map-bg::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 40%;
  width: 12px;
  height: 12px;
  background: #670BFF;
  border-radius: 50%;
  box-shadow:
    30px -20px 0 -2px #a855f7,
    -25px 30px 0 -2px #ec4899,
    50px 25px 0 -3px #670BFF,
    -10px -35px 0 -2px #8b5cf6;
  animation: pulse-dot 3s ease-in-out infinite;
}

.phone-ui-bar {
  position: absolute;
  top: 36px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.phone-ui-logo {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #670BFF, #a855f7);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.phone-ui-search {
  font-size: 12px;
  color: #94a3b8;
}

.phone-ui-card {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.phone-ui-card-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: #fef3c7;
  color: #92400e;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.phone-ui-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.phone-ui-card-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* --- Background Decorations --- */

.hero-bg-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 11, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1400px) {
  .hero-content {
    gap: 2rem;
  }

  .hero-visual {
    width: 340px;
    height: 560px;
    margin-right: 20px;
  }

  .hero-title {
    font-size: 46px;
  }

  .pill-1 { left: -20px; }
  .pill-3 { left: -20px; }
  .pill-5 { left: -10px; }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-visual {
    width: 300px;
    height: 500px;
    margin-right: 10px;
  }

  .phone-mockup {
    width: 230px;
    height: 460px;
  }

  .pill-1 { left: 0; }
  .pill-3 { left: 0; }
  .pill-5 { left: 0; }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    width: 300px;
    height: 480px;
  }

  .phone-mockup {
    width: 220px;
    height: 440px;
    border-radius: 36px;
  }

  .pill {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-visual {
    margin-right: 0;
  }

  .pill-1 { left: 10px; }
  .pill-3 { left: 0; }
  .pill-5 { left: 10px; }
}

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

  .hero-visual {
    width: 260px;
    height: 440px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 32px;
  }

  .pill-5,
  .pill-6,
  .pill-7 {
    display: none;
  }
}
/* Blog Styles */

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.blog-subtitle {
  font-size: 1.2rem;
  color: #666;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  background: white;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn:hover {
  border-color: #FF6584;
  color: #FF6584;
}

.category-btn.active {
  background: #FF6584;
  border-color: #FF6584;
  color: white;
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-article-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.article-category {
  background: #FF6584;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.article-date {
  color: #999;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #FF6584;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.article-author {
  color: #999;
  font-size: 0.9rem;
}

.read-more-link {
  color: #FF6584;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #e55a25;
}

.no-articles {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

/* Article Full Page */

.blog-article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.back-link {
  display: inline-block;
  color: #FF6584;
  text-decoration: none;
  margin-bottom: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #e55a25;
}

.blog-article-full {
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.blog-article-full .article-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #1a1a1a;
}

.blog-article-full .article-author {
  font-size: 1rem;
  color: #666;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-navigation {
  margin-top: 40px;
  text-align: center;
}

.nav-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #FF6584;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #e55a25;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2rem;
  }
  
  .blog-articles {
    grid-template-columns: 1fr;
  }
  
  .blog-article-full {
    padding: 30px 20px;
  }
  
  .blog-article-full .article-title {
    font-size: 1.8rem;
  }
}
/* ===========================
   Community Section
   =========================== */

.community {
  padding: 0 0 100px;
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #670BFF 0%, #a855f7 60%, #ec4899 100%);
  border-radius: 28px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- Avatars --- */

.community-avatars {
  display: flex;
  flex-direction: row;
}

.community-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-left: calc(var(--i) * -14px);
  position: relative;
  z-index: calc(5 - var(--i));
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.community-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Text --- */

.community-text {
  flex: 1;
}

.community-headline {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0 0 4px;
  line-height: 1.3;
}

.community-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* --- CTA --- */

.community-cta {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: #670BFF;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.community-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .community {
    padding: 0 0 80px;
  }

  .community-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 32px;
    border-radius: 20px;
  }

  .community-headline {
    font-size: 20px;
  }

  .community-cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .community-container {
    padding: 32px 24px;
  }

  .community-headline {
    font-size: 18px;
  }
}
/* ===========================
   FAQ Section
   =========================== */

.faq-section {
  padding: 80px 20px 100px;
  background: #fafbfc;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(103, 11, 255, 0.2);
  box-shadow: 0 4px 20px rgba(103, 11, 255, 0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #670BFF;
  border-radius: 2px;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 28px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px 80px;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}
/* ===========================
   Features Section
   =========================== */

.features {
  padding: 80px 0 100px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 60px;
  letter-spacing: -0.02em;
}

/* Marker / felt-pen underline */
.marker-underline {
  position: relative;
  white-space: nowrap;
}

.marker-underline::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 14px;
  background: linear-gradient(135deg, rgba(103, 11, 255, 0.2) 0%, rgba(168, 85, 247, 0.25) 100%);
  border-radius: 4px 8px 6px 10px;
  z-index: -1;
  transform: rotate(-0.8deg) skewX(-4deg);
}

/* Cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(103, 11, 255, 0.08);
  border-color: rgba(103, 11, 255, 0.1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f5ff;
  border-radius: 18px;
}
.feature-illu {
  max-width: 200px;
  max-height: 200px;
  display: block;
  margin: 0 auto 20px;
}

.feature-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.feature-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
  .features-title {
    font-size: 30px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0 80px;
  }

  .features-title {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .feature-card {
    padding: 32px 24px;
  }
}

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

  .marker-underline::after {
    height: 10px;
  }
}
/* ===========================
   Footer
   =========================== */

.site-footer {
  background: #1a1a2e;
  color: white;
  padding: 60px 0 0;
  margin: 0 -6rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  flex: 1;
  max-width: 320px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 16px 0 0;
}

/* Columns */
.footer-col {
  min-width: 140px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .site-footer {
    margin: 0 -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }

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

@media (max-width: 480px) {
  .site-footer {
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-container {
    gap: 2rem;
  }
}
.legal-section {
  padding: 4rem 0 6rem;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: #888;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-container h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-container p,
.legal-container ul {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #444;
}

.legal-container ul {
  padding-left: 1.25rem;
}

.legal-container ul li {
  margin-bottom: 0.25rem;
}

.legal-container a {
  color: #1a1a2e;
  text-decoration: underline;
}
/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}

.navbar-brand:hover {
  color: #ddd;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-link {
  text-decoration: none;
  color: black;
  transition: color 0.2s;
}

.navbar-link:hover {
  color: #4a9eff;
}

.navbar-btn {
  text-decoration: none;
  color: white;
  background: #670BFF;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-btn:hover {
  background: #5509d4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(103, 11, 255, 0.3);
}

/* --- Burger button (mobile only) --- */

.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .navbar {
    position: relative;
    flex-wrap: wrap;
    padding: 1.25rem 0;
  }

  .navbar-burger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
  }

  .navbar-menu.is-open {
    display: flex;
  }

  .navbar-menu li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-menu li:last-child {
    border-bottom: none;
    padding-top: 1rem;
  }

  .navbar-btn {
    display: inline-block;
  }
}
/* ===========================
   Personas / Carousel Section
   =========================== */

.personas {
  padding: 40px 0 100px;
}

.personas-container {
  max-width: 1200px;
  margin: 0 auto;
}

.personas-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 50px;
  letter-spacing: -0.02em;
}

/* --- Carousel --- */

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

/* --- Persona Cards --- */

.persona-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.persona-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.persona-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.persona-card-illu {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 16px;
}

.persona-card-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.persona-card--commerce .persona-card-label {
  color: #6C63FF;
}

.persona-card--collectivite .persona-card-label {
  color: #FF6584;
}

.persona-card--ambassadeur .persona-card-label {
  color: #f59e0b;
}

.persona-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.persona-card-text {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CTA per persona --- */

.persona-card-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.persona-card-cta:hover {
  transform: translateY(-2px);
}

.persona-card-cta--commerce {
  background: #6C63FF;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.persona-card-cta--commerce:hover {
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
}

.persona-card-cta--collectivite {
  background: #FF6584;
  box-shadow: 0 4px 16px rgba(255, 101, 132, 0.3);
}

.persona-card-cta--collectivite:hover {
  box-shadow: 0 8px 24px rgba(255, 101, 132, 0.4);
}

.persona-card-cta--ambassadeur {
  background: #f59e0b;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.persona-card-cta--ambassadeur:hover {
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* --- Carousel Navigation --- */

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  border-color: #6C63FF;
  color: #6C63FF;
  background: rgba(108, 99, 255, 0.04);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #e2e8f0;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot--active {
  background: #6C63FF;
  transform: scale(1.2);
}

.carousel-dot:hover:not(.carousel-dot--active) {
  background: #cbd5e1;
}

/* ===========================
   Persona Pages (commercants, collectivites, ambassadeurs)
   =========================== */

.persona-section {
  padding: 80px 20px 100px;
}

.persona-container {
  max-width: 1200px;
  margin: 0 auto;
}

.persona-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.persona-label--commerce  { color: #6C63FF; }
.persona-label--collectivite { color: #FF6584; }
.persona-label--ambassadeur  { color: #f59e0b; }

.persona-container h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}

.persona-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 56px 0 24px;
  letter-spacing: -0.01em;
}

.persona-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin: 0 0 24px;
}

/* --- Intro block (text + image) --- */

.persona-intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.persona-intro-text h1 {
  margin-top: 12px;
}

.persona-intro-img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* --- Offer grid --- */

.persona-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 56px;
}

.persona-offer-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.persona-offer-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 101, 132, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.persona-offer-icon svg {
  display: block;
  flex-shrink: 0;
}

.persona-offer-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.persona-offer-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* --- CTA block --- */

.persona-cta-block {
  margin-top: 72px;
  padding: 56px 48px;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.persona-cta-block h2 {
  margin-top: 0;
  font-size: 28px;
}

.persona-cta-block p {
  max-width: 560px;
}

.persona-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.persona-cta:hover {
  transform: translateY(-2px);
}

.persona-cta--commerce {
  background: #6C63FF;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.persona-cta--commerce:hover {
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
}

.persona-cta--collectivite {
  background: #FF6584;
  box-shadow: 0 4px 16px rgba(255, 101, 132, 0.3);
}

.persona-cta--collectivite:hover {
  box-shadow: 0 8px 24px rgba(255, 101, 132, 0.4);
}

.persona-cta--ambassadeur {
  background: #f59e0b;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.persona-cta--ambassadeur:hover {
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .personas {
    padding: 40px 0 80px;
  }

  .personas-title {
    font-size: 28px;
  }

  .carousel-slide {
    padding: 0 16px;
  }

  .persona-card {
    padding: 32px 24px;
  }

  .persona-card-title {
    font-size: 22px;
  }

  .persona-card-text {
    font-size: 15px;
  }

  .persona-section {
    padding: 60px 20px 80px;
  }

  .persona-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .persona-container h2 {
    font-size: 26px;
    margin: 40px 0 20px;
  }

  .persona-container p {
    font-size: 16px;
  }

  .persona-intro-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .persona-offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .persona-cta-block {
    padding: 36px 24px;
  }
}

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

  .persona-card {
    padding: 28px 20px;
  }

  .persona-card-title {
    font-size: 20px;
  }

  .persona-card-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}
/* ===========================
   Player Section
   =========================== */

.player-section {
  padding: 80px 0 100px;
}

.player-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Intro text --- */

.player-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.player-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
  max-width: 400px;
}

/* --- Player card --- */

.player-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 40px rgba(103, 11, 255, 0.08);
  overflow: hidden;
}

.player-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
}

.player-badge {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 50px;
}

.player-category {
  font-size: 12px;
  font-weight: 600;
  color: #670BFF;
  background: rgba(103, 11, 255, 0.08);
  padding: 6px 12px;
  border-radius: 50px;
}

.player-card-body {
  padding: 28px 28px 20px;
}

.player-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.player-capsule-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.player-duration {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 3px;
}

/* --- Controls --- */

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #670BFF 0%, #a855f7 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(103, 11, 255, 0.3);
}

.player-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(103, 11, 255, 0.4);
}

.player-icon {
  width: 22px;
  height: 22px;
}

.player-icon--play {
  margin-left: 2px;
}

/* --- Waveform --- */

.player-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
  overflow: hidden;
}

.player-bar {
  flex: 1;
  height: var(--bar-height, 40%);
  background: #e2e8f0;
  border-radius: 2px;
  transition: background 0.3s ease, height 0.1s ease;
}

.player-bar.played {
  background: linear-gradient(to top, #670BFF, #a855f7);
}

.player-bar.active {
  background: linear-gradient(to top, #670BFF, #a855f7);
  animation: bar-pulse 0.6s ease infinite alternate;
}

@keyframes bar-pulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.player-time {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  min-width: 32px;
  text-align: right;
}

/* --- Footer --- */

.player-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.player-author-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.player-author {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
}

.player-nav {
  display: flex;
  gap: 4px;
}

.player-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.player-nav-btn:hover {
  background: rgba(103, 11, 255, 0.06);
  border-color: rgba(103, 11, 255, 0.2);
  color: #670BFF;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 900px) {
  .player-container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 560px;
  }

  .player-section {
    padding: 60px 0 80px;
  }

  .player-title {
    font-size: 28px;
  }

  .player-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .player-card-header {
    padding: 16px 20px 0;
  }

  .player-card-body {
    padding: 20px 20px 16px;
  }

  .player-card-footer {
    padding: 12px 20px 20px;
  }

  .player-title {
    font-size: 24px;
  }
}
/* ===========================
   Product Section
   =========================== */

.product-section {
  padding: 80px 20px 100px;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-container h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}

.product-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 48px 0 24px;
  letter-spacing: -0.01em;
}

.product-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin: 0 0 24px;
}

/* ===========================
   Product Steps
   =========================== */

.product-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 0 56px;
}

.product-steps--four {
  grid-template-columns: repeat(4, 1fr);
}

.product-step {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.product-step-img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  display: block;
  background: #f4f4f8;
}

.product-step-content {
  padding: 24px 24px 28px;
}

.product-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #670BFF 0%, #a855f7 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.product-step-text {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .product-section {
    padding: 60px 20px 80px;
  }

  .product-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .product-container h2 {
    font-size: 26px;
    margin: 40px 0 20px;
  }

  .product-container p {
    font-size: 16px;
  }

  .product-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .product-steps--four {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .product-step-img {
    aspect-ratio: 4 / 3;
  }
}
/* ===========================
   Stats Section
   =========================== */

.stats {
  padding: 0 0 80px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  padding: 40px 48px;
}

.stats-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stats-number {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #670BFF 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-plus {
  font-size: 32px;
}

.stats-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stats-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.stats-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin: 0 48px;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .stats {
    padding: 0 0 60px;
  }

  .stats-container {
    flex-direction: column;
    gap: 32px;
    padding: 36px 24px;
  }

  .stats-divider {
    width: 48px;
    height: 1px;
    margin: 0;
  }

  .stats-number {
    font-size: 40px;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Global styles */
body {
  margin: 0;
  padding: 0 6rem;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafbfc;
  color: #1a1a2e;
}

@media (max-width: 768px) {
  body {
    padding: 0 3rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0 1rem;
  }
}

