/* ============================================================
   SHOKII — Landing Page Stylesheet
   Stack : HTML5 + CSS3 + Vanilla JS — aucun framework
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   1. RESET & BASE
────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Couleurs */
  --pink: #FF1F78;
  --purple: #A333C8;
  --pink-light: #ffe0ef;
  --dark: #1A1A2E;
  --text-body: #555566;
  --text-light: #888899;
  --bg-light: #faf8fc;
  --white: #ffffff;
  --border: #ededf2;

  /* Gradient signature */
  --grad: linear-gradient(135deg, #FF1F78 0%, #A333C8 100%);
  --grad-dark: linear-gradient(135deg, #c5005a 0%, #7b0fa0 100%);

  /* Ombres */
  --shadow-sm: 0 2px 12px rgba(163, 51, 200, 0.08);
  --shadow-md: 0 6px 28px rgba(163, 51, 200, 0.14);
  --shadow-lg: 0 16px 56px rgba(163, 51, 200, 0.18);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --transition: 0.3s ease;
  --header-h: 76px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ──────────────────────────────────────────────────────────
   2. UTILITAIRES
────────────────────────────────────────────────────────── */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Texte dégradé */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Titres de section */
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 48px;
}

/* ──────────────────────────────────────────────────────────
   3. BOUTON
────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn--gradient {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 31, 120, 0.35);
}

.btn--gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 31, 120, 0.45);
}

.btn--gradient:active {
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────
   4. BOUTONS STORE
────────────────────────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  min-width: 155px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.store-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform var(--transition);
}

.store-btn[aria-label*="App Store"] img {
  mix-blend-mode: screen;
  filter: none;
}


.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-weight: 600;
  font-size: 0.88rem;
}

.store-btn span small {
  font-size: 0.62rem;
  font-weight: 400;
  opacity: 0.75;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  background: #2a2a40;
}

/* Variante claire (sections colorées) */
.store-btn--light {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  color: var(--white);
}

.store-btn--light:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ──────────────────────────────────────────────────────────
   5. HEADER
────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding-bottom: 2px;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

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

.header__cta {
  flex-shrink: 0;
}

.nav-mobile-cta {
  display: none;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────────────────────────
   6. HERO
────────────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(160deg, #fff2f8 0%, #fdf8ff 50%, var(--white) 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text visual"
    "buttons visual";
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  gap: 0 40px;
}

.hero__content {
  grid-area: text;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero__content p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 440px;
}

.hero__buttons {
  grid-area: buttons;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  margin-top: -60px;
  /* Pull buttons closer to text on desktop */
}

/* Visual */
.hero__visual {
  grid-area: visual;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phones {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 550px;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero__phone-1,
.hero__phone-2 {
  position: absolute;
  width: 260px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

.hero__phone-1 {
  top: 10%;
  left: 0;
  transform: rotate(-12deg);
  z-index: 2;
}

.hero__phone-2 {
  bottom: -40px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
}

.hero__phone-1:hover,
.hero__phone-2:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 3;
}

.hero__ellipse {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-60%);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero__ellipse img {
  width: 320px;
  height: 320px;
  object-fit: contain;
}

/* ──────────────────────────────────────────────────────────
   7. FONCTIONNALITÉS
────────────────────────────────────────────────────────── */
.features {
  padding: 60px 0;
  background: var(--white);
  overflow: visible;
  /* Prevent mockups from being clipped */
}

.features__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #bd0060 0%, #7c10c5 55%, #4a0094 100%);
  border-radius: 40px;
  padding: 60px 48px;
  box-shadow: var(--shadow-md);
}

.features__left h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.features__left>p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.features__mockups {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 480px;
  margin: 0 auto;
}

.features__mockup-1,
.features__mockup-2 {
  position: absolute;
  width: 230px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

.features__mockup-1 {
  bottom: 0;
  left: 0;
  transform: rotate(-15deg);
  z-index: 2;
}

.features__mockup-2 {
  top: 0;
  right: 30px;
  transform: rotate(10deg);
  z-index: 1;
}

.features__mockup-1:hover,
.features__mockup-2:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 3;
}

/* Cartes */
.features__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.feature-card.active {
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: flex-start;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card.active .feature-card__icon {
  background: var(--white);
}

.feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-card.active .feature-card__icon img {
  filter: none;
  /* Icone colorée si le fond est blanc */
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.feature-card__body span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}

.feature-card__body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}

.feature-card.active .feature-card__body p {
  display: block;
}

/* ──────────────────────────────────────────────────────────
   8. À PROPOS
────────────────────────────────────────────────────────── */
.about {
  padding: 90px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about__left {
  text-align: left;
}

.about__left .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about__text {
  margin-bottom: 36px;
}

.about__text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}

.about__cta {
  text-align: left;
}

/* Grille des cartes */
.about__right {
  display: flex;
  justify-content: center;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 31, 120, 0.1) 0%, rgba(163, 51, 200, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.about-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 0 auto;
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

.about__cta {
  text-align: center;
}

/* ──────────────────────────────────────────────────────────
   9. COMMENT ÇA MARCHE
────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 90px 0;
  background: var(--bg-light);
}

.how-it-works__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.how-it-works__image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.how-it-works__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 44px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 24px;
  width: 2px;
  height: calc(100% - 12px);
  background-image: linear-gradient(var(--pink) 50%, transparent 50%);
  background-size: 2px 12px;
  z-index: 1;
}

.step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink);
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 31, 120, 0.15);
  position: relative;
  z-index: 2;
}

.step__text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 12px;
}

.step__text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   10. TÉLÉCHARGEMENT
────────────────────────────────────────────────────────── */
.download {
  background: var(--grad);
  /* padding: 80px 0; */
  overflow: hidden;
}

.download__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*gap: 64px;*/
  align-items: center;
}

.download__content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.download__content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.download__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download__visual img {
  /* width: 100%; */
  /*  max-width: 440px;*/
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.22));
}

/* ──────────────────────────────────────────────────────────
   11. CONTACT
────────────────────────────────────────────────────────── */
.contact {
  padding: 90px 0;
  background: var(--white);
}

.contact .section-title,
.contact .section-subtitle {
  text-align: center;
}

/* Formulaire */
.contact__form {
  max-width: 780px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0;
}

.form-group--full {
  margin-bottom: 0;
  margin-top: 0;
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group textarea {
  border-radius: var(--radius-lg);
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c0c0cc;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 31, 120, 0.1);
}

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

.form-submit {
  text-align: center;
  margin-top: 28px;
}

/* ──────────────────────────────────────────────────────────
   12. FOOTER
────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-light);
  color: var(--dark);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--dark);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: var(--text-body);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__col ul li a:hover {
  color: var(--pink);
  padding-left: 5px;
}

/* Boutons store footer */
.footer__stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.footer__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  border: 1px solid var(--dark);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  transition: background var(--transition);
  max-width: 180px;
}

.footer__store-btn:hover {
  background: #2a2a40;
}

.footer__store-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  flex-shrink: 0;
}

.footer__store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
}

.footer__store-btn span small {
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Bas du footer */
.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__bottom p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ──────────────────────────────────────────────────────────
   13. ANIMATIONS DE RÉVÉLATION AU SCROLL
────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Décalages en cascade pour les enfants */
.about__cards .about-card.reveal:nth-child(1) {
  transition-delay: 0s;
}

.about__cards .about-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.about__cards .about-card.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.about__cards .about-card.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.features__right .feature-card.reveal:nth-child(1) {
  transition-delay: 0s;
}

.features__right .feature-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.features__right .feature-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.features__right .feature-card.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.features__right .feature-card.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.features__right .feature-card.reveal:nth-child(6) {
  transition-delay: 0.40s;
}

.steps .step:nth-child(1) {
  transition-delay: 0s;
}

.steps .step:nth-child(2) {
  transition-delay: 0.12s;
}

.steps .step:nth-child(3) {
  transition-delay: 0.24s;
}

/* ──────────────────────────────────────────────────────────
   14. RESPONSIVE — TABLETTE (≤ 1024px)
────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Force About text before cards on Tablet/Mobile */
  .about__left {
    order: -1;
    text-align: center;
  }

  .about__cta {
    display: flex;
    justify-content: center;
  }

  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__inner {
    gap: 40px;
  }

  .how-it-works__inner {
    gap: 48px;
  }

  .footer__inner {
    gap: 36px;
  }
}

/* ──────────────────────────────────────────────────────────
   15. RESPONSIVE — MOBILE (≤ 768px)
────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Header */
  .header__nav {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.95) 0%, rgba(65, 10, 80, 0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: calc(var(--header-h) + 40px) 28px 40px;
    z-index: 999;
    border-bottom: none;
    box-shadow: none;
  }

  .header__nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    /* Align links to right */
    text-align: right;
  }

  .header__nav .nav-link {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 16px;
  }

  .nav-mobile-cta .btn {
    font-size: 1.1rem;
    padding: 16px 36px;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
    z-index: 1001;
    /* Ensure burger is above the overlay */
  }

  /* Make header transparent when menu is open so it doesn't clip the full screen gradient */
  .header.is-menu-open {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-color: transparent;
  }

  /* Change burger icon color when menu is open on dark background */
  .header.is-menu-open .header__burger span {
    background: var(--white);
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual"
      "buttons";
    min-height: auto;
    gap: 40px;
    text-align: center;
  }

  .hero__content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    margin-top: 0;
    justify-content: center;
  }

  .hero__visual {
    margin-top: 0;
  }

  .hero__phones {
    height: 400px;
    max-width: 350px;
    margin: 0 auto;
  }

  .hero__phone-1,
  .hero__phone-2 {
    width: 200px;
  }

  .hero__ellipse {
    right: -40px;
  }

  /* Features */
  .features__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .features__left {
    text-align: center;
  }

  .features__mockups {
    height: 350px;
    max-width: 320px;
    margin: 0 auto;
  }

  .features__mockup-1,
  .features__mockup-2 {
    width: 180px;
  }

  .feature-card__body p {
    font-size: 0.88rem;
  }

  /* About */
  .about__inner {
    gap: 40px;
  }

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

  /* How it works */
  .how-it-works__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    display: flex;
    flex-direction: column;
  }

  .how-it-works__content {
    display: contents;
    text-align: center;
  }

  .how-it-works__content h2 {
    order: -2;
    margin-bottom: 24px;
  }

  .how-it-works__image {
    order: -1;
    margin-bottom: 32px;
  }

  .how-it-works__image img {
    max-width: 100%;
  }

  .steps {
    order: 0;
    width: 100%;
  }

  .step {
    text-align: left;
  }

  /* Download */

  .download {
    padding: 40px 0;
  }

  .download__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .download__content p {
    max-width: 100%;
  }

  .download__buttons {
    justify-content: center;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ──────────────────────────────────────────────────────────
   16. RESPONSIVE — PETIT MOBILE (≤ 480px)
────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 60px;
  }

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

  .about__left .section-title {
    text-align: center;
  }

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


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

  .download__visual {
    display: none !important;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__ellipse {
    display: none;
  }

  .hero__phones {
    height: 300px;
    max-width: 280px;
  }

  .hero__phone-1,
  .hero__phone-2 {
    width: 160px;
  }

  .features__left h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .features__inner {
    padding: 40px 24px;
    gap: 32px;
  }

  .features__mockups {
    height: 280px;
    max-width: 260px;
  }

  .features__mockup-1,
  .features__mockup-2 {
    width: 140px;
  }

  .store-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}