/* ===== MOBILE RESPONSIVE - SERVICES PAGE ===== */

/* Tablettes et écrans intermédiaires (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 2rem 1.5rem;
  }

  .hero--sm {
    padding: 1.5rem 0;
  }

  .hero--sm h1 {
    font-size: 2rem;
    line-height: 1.35;
  }

  .hero--sm p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .pricing {
    padding: 2rem 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .pricing h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .inclusions {
    padding: 2rem 0;
  }

  .inclusions h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .inclusions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process {
    padding: 2rem 0;
  }

  .process h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Petits écrans et tablettes (max 767px) */
@media (max-width: 767px) {
  .container {
    padding: 1.5rem 1rem;
  }

  /* Hero Section */
  .hero--sm {
    padding: 1.2rem 0;
  }

  .hero--sm h1 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .hero--sm p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* Pricing Section */
  .pricing {
    padding: 1.5rem 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .pricing h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .pricing__card {
    padding: 1.2rem;
    border-radius: 10px;
    position: relative;
    transition: transform 0.2s ease;
  }

  .pricing__card:active {
    transform: translateY(-2px);
  }

  .pricing__badge {
    position: absolute;
    top: -8px;
    left: 12px;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
  }

  .pricing__header {
    margin-bottom: 0.5rem;
  }

  .pricing__header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }

  .pricing__subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    font-weight: 300;
  }

  .pricing__price {
    margin: 0.8rem 0;
    padding: 0.8rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .pricing__amount {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .pricing__period {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.2rem;
  }

  .pricing__description {
    font-size: 0.95rem;
    margin: 0.6rem 0;
    line-height: 1.6;
    min-height: 30px;
    font-weight: 300;
  }

  .pricing__features {
    padding: 0.8rem 0;
    margin: 0.8rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .pricing__features li {
    padding: 0.4rem 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
  }

  .pricing__card .btn,
  .pricing__card .shimmer-btn {
    width: 100%;
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pricing__card .shimmer-btn__content {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .pricing__comparison {
    padding: 1rem;
    margin-top: 1.2rem;
    border-radius: 8px;
  }

  .pricing__comparison h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .comparison__list {
    padding-left: 1.2rem;
  }

  .comparison__list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
  }

  /* Inclusions Section */
  .inclusions {
    padding: 1.5rem 0;
  }

  .inclusions h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .inclusions__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .inclusion__card {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .inclusion__icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .inclusion__card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }

  .inclusion__card p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* Process Section */
  .process {
    padding: 1.5rem 0;
  }

  .process h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    text-align: center;
  }

  .process>p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 300;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .step {
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    position: relative;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .step h3 {
    font-size: 1rem;
    margin: 0.5rem 0 0.4rem 0;
    line-height: 1.3;
  }

  .step p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* CTA Section */
  .services-cta {
    padding: 1.5rem 0;
    text-align: center;
  }

  .services-cta h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .services-cta p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-weight: 300;
  }

  .btn--lg {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  section {
    padding: 1.5rem 0;
  }
}

/* Très petits écrans (max 480px) */
@media (max-width: 480px) {
  .container {
    padding: 1rem 0.75rem;
  }

  /* Hero Section */
  .hero--sm {
    padding: 0.8rem 0;
  }

  .hero--sm h1 {
    font-size: 2rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .hero--sm p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
  }

  /* Pricing Section */
  .pricing {
    padding: 1rem 0;
  }

  .pricing h2 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .pricing__grid {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .pricing__card {
    padding: 1rem;
  }

  .pricing__badge {
    top: -6px;
    left: 10px;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
  }

  .pricing__header h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .pricing__subtitle {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
  }

  .pricing__amount {
    font-size: 2rem;
  }

  .pricing__period {
    font-size: 0.75rem;
    margin-top: 0.1rem;
  }

  .pricing__description {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 300;
  }

  .pricing__features li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
    font-weight: 300;
  }

  .pricing__card .btn,
  .pricing__card .shimmer-btn {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .pricing__card .shimmer-btn__content {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .pricing__comparison {
    padding: 0.8rem;
    margin-top: 1rem;
  }

  .pricing__comparison h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .comparison__list {
    padding-left: 1rem;
  }

  .comparison__list li {
    padding: 0.3rem 0;
    font-size: 0.75rem;
  }

  /* Inclusions Section */
  .inclusions {
    padding: 1rem 0;
  }

  .inclusions h2 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .inclusions__grid {
    gap: 0.8rem;
    padding: 0 0.25rem;
  }

  .inclusion__card {
    padding: 0.8rem;
  }

  .inclusion__icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .inclusion__card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .inclusion__card p {
    font-size: 0.85rem;
    font-weight: 300;
  }

  /* Process Section */
  .process {
    padding: 1rem 0;
  }

  .process h2 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
  }

  .process>p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-weight: 300;
  }


  .process__steps {
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0 0.25rem;
  }

  .step {
    padding: 0.8rem;
    border-left-width: 3px;
  }

  .step__number {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .step h3 {
    font-size: 0.95rem;
    margin: 0.4rem 0 0.3rem 0;
  }

  .step p {
    font-size: 0.85rem;
    font-weight: 300;
  }

  /* CTA Section */
  .services-cta {
    padding: 1rem 0;
  }

  .services-cta h2 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .services-cta p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 300;
  }

  .btn--lg {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  section {
    padding: 1rem 0;
  }
}