/* ==========================================================================
   TravelNet v2 — Main Stylesheet  (réécriture complète)
   ========================================================================== */

@import url('tokens.css');

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--v2-font-body);
  font-size: 1rem;
  color: var(--v2-text);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* Accent text inline */
.v2-accent-text { color: var(--v2-accent); }
.v2-accent      { color: var(--v2-accent); }

/* Sections spacing */
.v2-section { padding: 96px 0; }

/* Shared section header */
.v2-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.v2-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8FAF5;
  color: #00A67E;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.v2-section__title {
  font-family: var(--v2-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0A0A0A;
  margin-bottom: 14px;
}

.v2-section__subtitle {
  font-size: 1.0625rem;
  color: #6B7280;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.72;
}

/* Scroll fade-up */
.v2-fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.v2-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #EBEBEB;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.v2-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.v2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.v2-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.v2-logo__icon {
  width: 40px;
  height: 40px;
  background: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-logo__icon svg { width: 22px; height: 22px; }

.v2-logo__text {
  font-family: var(--v2-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}
.v2-logo__text span { color: var(--v2-accent); }

/* Primary nav */
.v2-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.v2-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.v2-nav__link:hover,
.v2-nav__link.is-active {
  color: #0A0A0A;
  background: #F4F4F4;
}

/* Header right */
.v2-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.v2-header__currency {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6B7280;
  padding: 7px 11px;
  border-radius: 8px;
  border: 1px solid #EBEBEB;
  cursor: pointer;
  transition: all 0.18s;
}
.v2-header__currency:hover { border-color: #0A0A0A; color: #0A0A0A; }

.v2-header__whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #25D366;
  background: rgba(37,211,102,0.08);
  padding: 8px 14px;
  border-radius: 99px;
  white-space: nowrap;
  transition: background 0.18s;
}
.v2-header__whatsapp:hover { background: rgba(37,211,102,0.16); }

.v2-btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #1B2451;
  padding: 10px 20px;
  border-radius: 99px;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.v2-btn-signin:hover {
  background: #14205A;
  transform: translateY(-1px);
}

/* Burger */
.v2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.v2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0A0A0A;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
.v2-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.v2-mobile-nav.is-open { display: flex; }
.v2-mobile-nav .v2-nav__link {
  padding: 13px 16px;
  font-size: 1rem;
  border-radius: 8px;
  color: #0A0A0A;
}
.v2-mobile-nav__cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.v2-hero {
  height: 100vh;
  min-height: 680px;
  background: linear-gradient(145deg, #FFF8F5 0%, #F8F5FF 60%, #F0F8FF 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Blobs décoratifs */
.v2-hero::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -4%;
  width: 52%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(200,100,255,0.09) 0%, transparent 68%);
  pointer-events: none;
}
.v2-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4%;
  width: 38%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0,200,150,0.07) 0%, transparent 68%);
  pointer-events: none;
}

.v2-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 32px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Badge animé */
.v2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,150,0.10);
  border: 1px solid rgba(0,200,150,0.25);
  color: #00A67E;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.v2-hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--v2-accent);
  border-radius: 50%;
  animation: v2-pulse 2s infinite;
}

@keyframes v2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.35); }
}

/* Titre hero */
.v2-hero__title {
  font-family: var(--v2-font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  margin-bottom: 16px;
}
.v2-hero__title .v2-line-accent { color: var(--v2-accent); }

.v2-hero__subtitle {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 440px;
}

/* Search bar */
.v2-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #E0E0E0;
  border-radius: 99px;
  padding: 6px 6px 6px 20px;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  margin-bottom: 20px;
  max-width: 460px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.v2-search-bar:focus-within {
  border-color: var(--v2-accent);
  box-shadow: 0 0 0 4px rgba(0,200,150,0.11), 0 4px 20px rgba(0,0,0,0.07);
}

.v2-search-bar__icon { font-size: 1.15rem; flex-shrink: 0; }

.v2-search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9375rem;
  color: #0A0A0A;
  min-width: 0;
}
.v2-search-bar__input::placeholder { color: #B0B7C3; }

.v2-search-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1B2451;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 99px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.v2-search-bar__btn:hover { background: #14205A; transform: scale(1.02); }

/* Trust badges */
.v2-hero__badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.v2-hero__badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: #6B7280;
  font-weight: 500;
}

.v2-hero__badge-item .icon {
  width: 22px;
  height: 22px;
  background: #E8FAF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Visual — phones */
.v2-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: calc(100vh - 72px - 64px);
  max-height: 520px;
  min-height: 420px;
}

/* Floating destination cards */
.v2-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0A0A0A;
  z-index: 10;
  animation: v2-float 4s ease-in-out infinite;
  white-space: nowrap;
}
.v2-float-card:nth-child(1) { top: 8%;    left: -6%;  animation-delay: 0s;   }
.v2-float-card:nth-child(2) { bottom: 14%; left: -10%; animation-delay: 1.1s; }
.v2-float-card:nth-child(3) { top: 18%;   right: -8%; animation-delay: 0.55s;}

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

.v2-float-card__flag  { font-size: 1.5rem; }
.v2-float-card__price { color: var(--v2-accent); font-weight: 700; font-size: 0.8125rem; }


/* ==========================================================================
   PHONE MOCKUPS — CSS pur
   ========================================================================== */

.v2-phones-wrapper {
  position: relative;
  width: 320px;
  height: min(480px, calc(100vh - 200px));
}

/* Téléphone arrière */
.v2-phone--back {
  position: absolute;
  top: 44px;
  left: -36px;
  width: 218px;
  height: 438px;
  background: linear-gradient(160deg, #1A1A2E 0%, #16213E 100%);
  border-radius: 36px;
  border: 5px solid rgba(255,255,255,0.07);
  box-shadow: 0 28px 64px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transform: rotate(-6deg);
  z-index: 1;
}

/* Téléphone avant */
.v2-phone--front {
  position: absolute;
  top: 0;
  right: -18px;
  width: 238px;
  height: 478px;
  background: linear-gradient(160deg, #1E1E3A 0%, #12122A 100%);
  border-radius: 40px;
  border: 6px solid rgba(255,255,255,0.09);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden;
  transform: rotate(3deg);
  z-index: 2;
}

.v2-phone__notch {
  width: 78px;
  height: 22px;
  background: #0A0A0A;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.v2-phone__screen {
  padding: 0 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: calc(100% - 22px);
  overflow: hidden;
}

.v2-phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 3px 1px;
  font-size: 8.5px;
  color: rgba(255,255,255,0.45);
}

.v2-phone__app-header {
  background: rgba(255,255,255,0.05);
  border-radius: 11px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v2-phone__app-logo {
  width: 18px;
  height: 18px;
  background: var(--v2-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.v2-phone__app-name {
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  font-family: var(--v2-font-display);
}

.v2-phone__dest-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.v2-phone__dest-item {
  background: rgba(255,255,255,0.045);
  border-radius: 9px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v2-phone__dest-item--active {
  background: rgba(0,200,150,0.14);
  border: 1px solid rgba(0,200,150,0.24);
}

.v2-phone__dest-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-phone__dest-flag    { font-size: 13px; }
.v2-phone__dest-country { font-size: 8.5px; font-weight: 600; color: rgba(255,255,255,0.88); font-family: var(--v2-font-display); }
.v2-phone__dest-data    { font-size: 7.5px; color: rgba(255,255,255,0.38); }
.v2-phone__dest-price   { font-size: 8.5px; font-weight: 700; color: var(--v2-accent); }

.v2-phone__esim-card {
  background: linear-gradient(135deg, rgba(0,200,150,0.18) 0%, rgba(27,43,94,0.28) 100%);
  border: 1px solid rgba(0,200,150,0.28);
  border-radius: 11px;
  padding: 9px;
  margin-top: auto;
}
.v2-phone__esim-label {
  font-size: 7.5px;
  color: var(--v2-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.v2-phone__esim-data-bar-wrap {
  background: rgba(255,255,255,0.09);
  border-radius: 3px;
  height: 4px;
  margin-bottom: 4px;
}
.v2-phone__esim-data-bar {
  width: 65%;
  height: 100%;
  background: var(--v2-accent);
  border-radius: 3px;
}
.v2-phone__esim-remaining { font-size: 7.5px; color: rgba(255,255,255,0.45); }


/* ==========================================================================
   STATS BAR
   ========================================================================== */

.v2-stats {
  background: #fff;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  padding: 40px 0;
}

.v2-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.v2-stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid #EBEBEB;
}
.v2-stats__item:last-child { border-right: none; }
.v2-stats__item:first-child { padding-left: 0; }

.v2-stats__icon {
  width: 48px;
  height: 48px;
  background: #E8FAF5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.v2-stats__value {
  font-family: var(--v2-font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1;
  margin-bottom: 3px;
}

.v2-stats__label {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.4;
}

.v2-stats__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.v2-stats__stars span { color: #FFC107; font-size: 11px; }


/* ==========================================================================
   WHAT MAKES TRAVELNET UNSTOPPABLE
   ========================================================================== */

.v2-features {
  background: #F8F9FA;
  padding: 96px 0;
}

.v2-features__header {
  text-align: center;
  margin-bottom: 52px;
}

.v2-features__title {
  font-family: var(--v2-font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: #0A0A0A;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}

.v2-features__title .v2-accent {
  display: block;
  font-weight: 800;
  color: var(--v2-accent);
  font-size: clamp(1.625rem, 2.9vw, 2.25rem);
  margin-bottom: 8px;
}

.v2-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card base */
.v2-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-top: 3px solid var(--v2-accent);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.v2-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,200,150,0.11);
}

.v2-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.v2-icon-green  { background: #E8FAF5; }
.v2-icon-orange { background: #FEF3E2; }

.v2-feature-card__title {
  font-family: var(--v2-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 10px;
}

.v2-feature-card__desc {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.68;
  margin: 0 0 22px;
}

/* Card 1 — flags grid */
.v2-flags-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.v2-flags-grid span {
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
  cursor: default;
  transition: transform 0.18s;
}
.v2-flags-grid span:hover { transform: scale(1.18); }

/* Badge pill partagé */
.v2-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #E8FAF5;
  color: #00C896;
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: auto;
}
.v2-pill-badge--bordered { border: 1px solid #00C896; }

/* Card 2 — plan radio options */
.v2-plan-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.v2-plan-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid #E5E7EB;
  cursor: pointer;
  transition: all 0.16s ease;
}
.v2-plan-option:hover   { border-color: var(--v2-accent); }
.v2-plan-option.active  { border-color: var(--v2-accent); background: #F0FBF8; }

.v2-plan-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0A0A0A;
}

.v2-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.16s;
}
.v2-plan-option:hover .v2-radio { border-color: var(--v2-accent); }

.v2-radio.checked {
  border-color: var(--v2-accent);
  background: var(--v2-accent);
}
.v2-radio.checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}

.v2-plan-price {
  font-weight: 700;
  color: var(--v2-accent);
  font-size: 0.9rem;
}

/* Card 3 — QR code */
.v2-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: auto;
}
.v2-qr-wrap svg { border-radius: 8px; flex-shrink: 0; }
.v2-qr-label { font-size: 0.8rem; color: #6B7280; text-align: center; }


/* ==========================================================================
   DESTINATIONS — 4 colonnes + tabs
   ========================================================================== */

.v2-destinations {
  background: #fff;
  padding: 96px 0;
}

/* Tabs */
.v2-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
  background: #F4F4F4;
  padding: 5px;
  border-radius: 99px;
  width: fit-content;
}

.v2-tab {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B7280;
  padding: 9px 20px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  background: transparent;
}
.v2-tab.is-active {
  background: #fff;
  color: #0A0A0A;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* Country cards grid */
.v2-destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.v2-country-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #EBEBEB;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.v2-country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,200,150,0.10);
  border-color: var(--v2-accent);
}

.v2-country-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v2-country-card__flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.v2-country-card__badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #00A67E;
  background: #E8FAF5;
  padding: 4px 10px;
  border-radius: 99px;
}

.v2-country-card__name {
  font-family: var(--v2-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
}

.v2-country-card__price {
  font-size: 0.8125rem;
  color: #6B7280;
}
.v2-country-card__price strong { color: #0A0A0A; font-weight: 700; }

.v2-country-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #F0F0F0;
}

.v2-country-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #00A67E;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.18s;
}
.v2-country-card:hover .v2-country-card__link { gap: 8px; }

.v2-country-card__arrow {
  width: 28px;
  height: 28px;
  background: #E8FAF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.18s, transform 0.18s;
}
.v2-country-card:hover .v2-country-card__arrow {
  background: var(--v2-accent);
  color: #fff;
  transform: translateX(2px);
}

/* CTA — See All */
.v2-destinations__cta { text-align: center; }

.v2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1B2451;
  border: 2px solid #1B2451;
  padding: 13px 30px;
  border-radius: 99px;
  transition: all 0.2s;
}
.v2-btn-outline:hover { background: #1B2451; color: #fff; }


/* ==========================================================================
   HOW IT WORKS — 3 étapes
   ========================================================================== */

.v2-how {
  background: #F8F9FA;
  padding: 96px 0;
}

.v2-how__header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.v2-how__title {
  font-family: var(--v2-font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  max-width: 400px;
}

.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #1B2451;
  padding: 13px 26px;
  border-radius: 99px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.v2-btn-primary:hover { background: #14205A; transform: translateY(-1px); }

.v2-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.v2-step-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1.5px solid #EBEBEB;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.v2-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}

.v2-step-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #00A67E;
  margin-bottom: 14px;
}

.v2-step-card__visual {
  background: #F8F9FA;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.v2-step-card__title {
  font-family: var(--v2-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.v2-step-card__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.68;
}

.v2-step-card__number {
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: var(--v2-font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Step 1 — destination list */
.v2-step-dest-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-step-dest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 9px;
  padding: 8px 11px;
  border: 1px solid #EBEBEB;
  font-size: 0.8125rem;
}
.v2-step-dest-item.selected {
  border-color: var(--v2-accent);
  background: #F0FBF8;
}
.v2-step-dest-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: #0A0A0A;
}
.v2-step-dest-price { font-weight: 700; color: var(--v2-accent); font-size: 0.8125rem; }

/* Step 2 — plan pills */
.v2-step-plans {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.v2-step-plan-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid #EBEBEB;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 0.8125rem;
  transition: all 0.16s;
}
.v2-step-plan-pill.is-selected {
  border-color: var(--v2-accent);
  background: #F0FBF8;
}
.v2-step-plan-info  { font-weight: 500; color: #0A0A0A; }
.v2-step-plan-price { font-weight: 700; color: var(--v2-accent); }

/* Step 3 — QR */
.v2-step-qr {
  width: 88px;
  height: 88px;
  background: #0A0A0A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.v2-step-qr::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: repeating-conic-gradient(
    rgba(255,255,255,0.72) 0% 25%,
    transparent 0% 50%
  ) 0 0 / 9px 9px;
  border-radius: 2px;
}
.v2-step-qr-corners { position: relative; width: 100%; height: 100%; }
.v2-step-qr-corners::before,
.v2-step-qr-corners::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
}
.v2-step-qr-corners::before { top: 6px; left: 6px; border-right: none; border-bottom: none; border-radius: 2px 0 0 0; }
.v2-step-qr-corners::after  { bottom: 6px; right: 6px; border-left: none; border-top: none; border-radius: 0 0 2px 0; }


/* ==========================================================================
   VIDEO / DEMO SECTION — fond sombre
   ========================================================================== */

.v2-video-section {
  background: linear-gradient(180deg, #0A0F1E 0%, #12192E 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.v2-video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.10) 0%, transparent 68%);
  pointer-events: none;
}

.v2-video-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.v2-video-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,200,150,0.13);
  border: 1px solid rgba(0,200,150,0.25);
  color: var(--v2-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.v2-video-section__title {
  font-family: var(--v2-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.v2-video-section__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 52px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.68;
}

.v2-video-phone-wrap {
  position: relative;
  display: inline-block;
}

.v2-video-phone {
  width: 256px;
  height: 516px;
  background: linear-gradient(160deg, #1E1E3A 0%, #12122A 100%);
  border-radius: 44px;
  border: 6px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.52),
    0 0 120px rgba(0,200,150,0.07);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  animation: v2-float-phone 6s ease-in-out infinite;
}

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

.v2-video-phone__screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1A1A3E 0%, #0D0D1F 100%);
}
.v2-video-phone__map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,200,150,0.07) 0%, transparent 48%),
    radial-gradient(circle at 70% 60%, rgba(100,50,255,0.05) 0%, transparent 48%);
}

/* Play button */
.v2-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s;
  z-index: 10;
}
.v2-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.v2-play-btn:hover {
  background: rgba(0,200,150,0.28);
  border-color: var(--v2-accent);
  transform: translate(-50%, -50%) scale(1.1);
}


/* ==========================================================================
   TESTIMONIALS — Animated Columns
   ========================================================================== */

.v2-testimonials {
  background: #fff;
  padding: 96px 0;
  position: relative;
}

.v2-testimonials .v2-container {
  position: relative;
  z-index: 10;
}

.v2-testimonials__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
}

.v2-testimonials__badge {
  display: inline-block;
  border: 1px solid #EBEBEB;
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 20px;
}

.v2-testimonials__title {
  font-family: var(--v2-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0A0A0A;
  margin-bottom: 16px;
}

.v2-testimonials__subtitle {
  font-size: 1.0625rem;
  color: #6B7280;
  line-height: 1.72;
}

/* Columns wrapper */
.v2-testimonials__columns {
  display: flex;
  justify-content: center;
  gap: 24px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  max-height: 740px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .v2-testimonials__columns {
    gap: 16px;
  }
}

/* Individual column */
.v2-testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  min-width: 0;
  flex: 1;
  animation: v2-testimonial-scroll var(--scroll-duration, 15s) linear infinite;
}

@keyframes v2-testimonial-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}



/* Testimonial card */
.v2-testimonial-card {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #EBEBEB;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,200,150,0.06);
  width: 100%;
  background: #fff;
}

@media (max-width: 768px) {
  .v2-testimonial-card {
    padding: 24px;
  }
}

.v2-testimonial-card__text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.72;
}

.v2-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.v2-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.v2-testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0A0A0A;
  font-family: var(--v2-font-display);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.v2-testimonial-card__role {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.25;
  opacity: 0.6;
}


/* ==========================================================================
   DOWNLOAD APP
   ========================================================================== */

.v2-app-section {
  background: linear-gradient(135deg, #FFF5F0 0%, #F5EEFF 50%, #EEFBF7 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.v2-app-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(150,80,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.v2-app-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.v2-app-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,150,0.11);
  border: 1px solid rgba(0,200,150,0.2);
  color: #00A67E;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.v2-app-section__title {
  font-family: var(--v2-font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.v2-app-section__sub {
  font-size: 1.0625rem;
  color: #6B7280;
  line-height: 1.72;
  margin-bottom: 32px;
}

/* App store buttons */
.v2-app-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.v2-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0A0A0A;
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  min-width: 152px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.v2-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.v2-store-btn__icon { font-size: 1.5rem; flex-shrink: 0; }
.v2-store-btn__sup  { font-size: 0.6rem; color: rgba(255,255,255,0.58); display: block; }
.v2-store-btn__name { font-family: var(--v2-font-display); font-size: 0.9375rem; font-weight: 700; }

/* QR download */
.v2-app-qr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v2-app-qr__code {
  width: 72px;
  height: 72px;
  background: #0A0A0A;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.v2-app-qr__code::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: repeating-conic-gradient(
    rgba(255,255,255,0.76) 0% 25%,
    transparent 0% 50%
  ) 0 0 / 8px 8px;
}

.v2-app-qr__label { font-size: 0.8125rem; color: #6B7280; line-height: 1.5; }
.v2-app-qr__label strong { color: #0A0A0A; display: block; font-weight: 700; margin-bottom: 2px; }

/* App phone mockup */
.v2-app-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.v2-app-phone {
  width: 256px;
  height: 516px;
  background: linear-gradient(160deg, #1E1E3A 0%, #0D0D20 100%);
  border-radius: 44px;
  border: 6px solid rgba(255,255,255,0.09);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.22),
    0 0 80px rgba(150,80,255,0.07);
  position: relative;
  overflow: hidden;
}

.v2-app-phone__notch {
  width: 78px;
  height: 22px;
  background: #0A0A0A;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.v2-app-phone__screen {
  padding: 8px 12px 16px;
  height: calc(100% - 22px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-app-screen__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
}
.v2-app-screen__greeting { font-size: 10px; font-weight: 700; color: #fff; font-family: var(--v2-font-display); }
.v2-app-screen__greeting span { display: block; font-size: 8px; color: rgba(255,255,255,0.45); font-weight: 400; }

.v2-app-screen__avatar {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--v2-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.v2-app-screen__balance {
  background: linear-gradient(135deg, rgba(0,200,150,0.18) 0%, rgba(27,43,94,0.28) 100%);
  border: 1px solid rgba(0,200,150,0.24);
  border-radius: 12px;
  padding: 10px 11px;
}
.v2-app-screen__balance-label  { font-size: 7.5px; color: rgba(255,255,255,0.45); }
.v2-app-screen__balance-amount { font-size: 15px; font-weight: 800; color: #fff; font-family: var(--v2-font-display); }
.v2-app-screen__balance-sub    { font-size: 7.5px; color: var(--v2-accent); }

.v2-app-screen__section-label {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  padding: 2px 0;
}

.v2-app-screen__esim-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.v2-app-screen__esim-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v2-app-screen__esim-item-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-app-screen__esim-flag { font-size: 13px; }
.v2-app-screen__esim-name { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.82); font-family: var(--v2-font-display); }
.v2-app-screen__esim-data { font-size: 7.5px; color: rgba(255,255,255,0.38); }

.v2-app-screen__esim-status {
  font-size: 7.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 99px;
}
.v2-app-screen__esim-status--active { background: rgba(0,200,150,0.14); color: var(--v2-accent); }
.v2-app-screen__esim-status--used   { background: rgba(107,114,128,0.14); color: #6B7280; }


/* ==========================================================================
   FOOTER
   ========================================================================== */

.v2-footer {
  background: #0A0F1E;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.v2-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.04) 0%, transparent 68%);
  pointer-events: none;
}

.v2-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.v2-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.v2-footer__logo-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-footer__logo-text {
  font-family: var(--v2-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.v2-footer__logo-text span { color: var(--v2-accent); }

.v2-footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
  margin-bottom: 22px;
  max-width: 260px;
}

.v2-footer__socials {
  display: flex;
  gap: 8px;
}

.v2-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.2s;
}
.v2-social-link:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: #fff;
}

.v2-footer__col-title {
  font-family: var(--v2-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.v2-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-footer__link:hover { color: var(--v2-accent); }

.v2-footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.v2-footer__contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}
.v2-footer__contact-label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.v2-footer__contact-value {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* Footer bottom */
.v2-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.v2-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
}

.v2-payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-payment-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.44);
  font-weight: 600;
  transition: border-color 0.18s, color 0.18s;
}
.v2-payment-logo:hover {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
}


/* ==========================================================================
   RESPONSIVE — 1024px  (tablette landscape / petits laptops)
   ========================================================================== */

@media (max-width: 1024px) {
  .v2-container { padding: 0 24px; }
  .v2-section   { padding: 72px 0; }

  /* ── Header ─────────────────────────────────────── */
  .v2-header__whatsapp { display: none; }
  .v2-nav__link { font-size: 0.8rem; padding: 6px 10px; }

  /* ── Hero ───────────────────────────────────────── */
  .v2-hero__inner {
    gap: 32px;
    padding: 24px 0;
    grid-template-columns: 1fr 1fr;
  }
  .v2-hero__title { font-size: clamp(2rem, 4vw, 3rem); }
  .v2-phones-wrapper { width: 260px; height: min(430px, calc(100vh - 220px)); }
  .v2-phone--back  { width: 190px; height: 380px; }
  .v2-phone--front { width: 210px; height: 420px; }
  .v2-hero__visual {
    height: calc(100vh - 72px - 48px);
    max-height: 460px;
  }

  /* ── Stats ──────────────────────────────────────── */
  .v2-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .v2-stats__item {
    border-right: none;
    border-bottom: 1px solid #EBEBEB;
    padding: 20px 16px;
  }
  .v2-stats__item:nth-child(odd)     { border-right: 1px solid #EBEBEB; }
  .v2-stats__item:nth-last-child(1),
  .v2-stats__item:nth-last-child(2)  { border-bottom: none; }
  .v2-stats__item:first-child        { padding-left: 16px; }

  /* ── Features ───────────────────────────────────── */
  .v2-features__grid { grid-template-columns: repeat(2, 1fr); }
  .v2-feature-card:last-child { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }

  /* ── Destinations ───────────────────────────────── */
  .v2-destinations__grid { grid-template-columns: repeat(2, 1fr); }

  /* ── How it works ───────────────────────────────── */
  .v2-how__header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .v2-how__steps { grid-template-columns: repeat(3, 1fr); }

  /* ── Testimonials ───────────────────────────────── */
  .v2-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .v2-testimonials__header-row { flex-direction: column; gap: 12px; }
  .v2-testimonials__subtitle { text-align: left; max-width: 100%; }
  .v2-testimonials__footer { flex-direction: column; align-items: flex-start; }

  /* ── App ────────────────────────────────────────── */
  .v2-app-section__inner { gap: 40px; }
  .v2-app-phone { width: 220px; height: 444px; }

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


/* ==========================================================================
   RESPONSIVE — 768px  (mobile / tablette portrait)
   ========================================================================== */

@media (max-width: 768px) {
  .v2-section    { padding: 56px 0; }
  .v2-container  { padding: 0 20px; }

  /* ── Header ─────────────────────────────────────── */
  .v2-nav,
  .v2-header__right { display: none; }
  .v2-burger { display: flex; }

  /* ── Hero ───────────────────────────────────────── */
  /* Sur mobile le hero repasse en auto-height — plus de 100vh rigide  */
  .v2-hero {
    height: auto;
    min-height: 100svh;   /* safe-area mobile (fallback: 100vh) */
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 72px;
  }
  .v2-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    padding: 32px 0 40px;
  }
  .v2-hero__badge    { margin: 0 auto 14px; }
  .v2-hero__title    { font-size: clamp(2rem, 9vw, 2.75rem); margin-bottom: 14px; }
  .v2-hero__subtitle { max-width: 100%; margin: 0 auto 20px; font-size: 0.9375rem; }
  .v2-hero__badges   { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .v2-search-bar     { max-width: 100%; margin-bottom: 16px; }

  /* Téléphones sur mobile — plus compact, centré */
  .v2-hero__visual {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
    order: -1;
  }
  .v2-phones-wrapper { width: 220px; height: 340px; }
  .v2-phone--back { display: none; }
  .v2-phone--front {
    position: static;
    transform: none;
    width: 210px;
    height: 340px;
    border-radius: 32px;
  }
  .v2-float-card { display: none; }

  /* ── Stats ──────────────────────────────────────── */
  .v2-stats { padding: 32px 0; }
  .v2-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .v2-stats__item {
    padding: 16px 14px;
    gap: 10px;
    border-right: none;
    border-bottom: 1px solid #EBEBEB;
  }
  .v2-stats__item:nth-child(odd)    { border-right: 1px solid #EBEBEB; }
  .v2-stats__item:nth-last-child(1),
  .v2-stats__item:nth-last-child(2) { border-bottom: none; }
  .v2-stats__item:first-child       { padding-left: 14px; }
  .v2-stats__icon  { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }
  .v2-stats__value { font-size: 1.375rem; }

  /* ── Features ───────────────────────────────────── */
  .v2-features { padding: 56px 0; }
  .v2-features__grid { grid-template-columns: 1fr; gap: 16px; }
  .v2-feature-card:last-child { grid-column: 1; max-width: 100%; }
  .v2-features__title { font-size: clamp(1.25rem, 4.5vw, 1.625rem); }
  .v2-flags-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; }

  /* ── Destinations ───────────────────────────────── */
  .v2-destinations { padding: 56px 0; }
  .v2-destinations__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .v2-tabs { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .v2-tabs::-webkit-scrollbar { display: none; }
  .v2-tab { white-space: nowrap; padding: 8px 16px; font-size: 0.8125rem; }

  /* ── How it works ───────────────────────────────── */
  .v2-how { padding: 56px 0; }
  .v2-how__header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .v2-how__steps { grid-template-columns: 1fr; gap: 16px; }
  .v2-how__title { font-size: clamp(1.5rem, 5vw, 1.875rem); max-width: 100%; }
  .v2-step-card__visual { min-height: 120px; }

  /* ── Video ──────────────────────────────────────── */
  .v2-video-section { padding: 56px 0; }
  .v2-video-section__sub { font-size: 0.9375rem; margin-bottom: 36px; }
  .v2-video-phone { width: 200px; height: 402px; border-radius: 36px; }

  /* ── Testimonials ───────────────────────────────── */
  .v2-testimonials { padding: 56px 0; }
  .v2-testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .v2-testimonials__header-row { flex-direction: column; gap: 10px; }
  .v2-testimonials__title { font-size: clamp(1.5rem, 5vw, 1.875rem); max-width: 100%; }
  .v2-testimonials__subtitle { text-align: left; max-width: 100%; font-size: 0.9rem; }
  .v2-testimonials__footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .v2-trustpilot-badge { width: 100%; }

  /* ── App ────────────────────────────────────────── */
  .v2-app-section { padding: 56px 0; }
  .v2-app-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .v2-app-section__visual { display: none; }
  .v2-app-section__title { font-size: clamp(1.5rem, 5vw, 1.875rem); }
  .v2-app-section__sub { font-size: 0.9375rem; margin-bottom: 24px; }
  .v2-app-btns { gap: 10px; }
  .v2-store-btn { flex: 1; min-width: 140px; justify-content: center; }
  .v2-app-qr { flex-wrap: wrap; gap: 10px; }

  /* ── Footer ─────────────────────────────────────── */
  .v2-footer { padding-top: 48px; }
  .v2-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .v2-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .v2-footer__copyright { font-size: 0.75rem; }
  .v2-payment-logos { flex-wrap: wrap; gap: 6px; }

  /* ── Shared section headers ─────────────────────── */
  .v2-section__header { margin-bottom: 36px; }
  .v2-section__title  { font-size: clamp(1.5rem, 5vw, 2rem); }
  .v2-section__subtitle { font-size: 0.9375rem; max-width: 100%; }
  .v2-btn-primary, .v2-btn-outline { width: 100%; justify-content: center; }
}


/* ==========================================================================
   RESPONSIVE — 480px  (petits téléphones)
   ========================================================================== */

@media (max-width: 480px) {
  .v2-container { padding: 0 16px; }
  .v2-section   { padding: 48px 0; }

  /* Hero */
  .v2-hero__title    { font-size: clamp(1.875rem, 10vw, 2.5rem); }
  .v2-hero__visual   { height: 300px; min-height: 300px; max-height: 300px; }
  .v2-phones-wrapper { width: 180px; height: 290px; }
  .v2-phone--front   { width: 174px; height: 284px; border-radius: 28px; }
  .v2-search-bar__btn { padding: 10px 14px; font-size: 0.8125rem; }

  /* Stats */
  .v2-stats__grid { grid-template-columns: 1fr 1fr; }
  .v2-stats__value { font-size: 1.25rem; }
  .v2-stats__label { font-size: 0.75rem; }
  .v2-stats__icon  { width: 34px; height: 34px; font-size: 1rem; border-radius: 8px; }

  /* Features */
  .v2-feature-icon { width: 48px; height: 48px; font-size: 1.5rem; }
  .v2-flags-grid span { font-size: 1.2rem; }

  /* Destinations */
  .v2-destinations__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v2-country-card { padding: 14px; gap: 8px; }
  .v2-country-card__flag { width: 40px; height: 40px; font-size: 1.35rem; }

  /* How */
  .v2-step-card__visual { min-height: 100px; }
  .v2-step-card__number { font-size: 4rem; }

  /* Video */
  .v2-video-phone { width: 180px; height: 362px; border-radius: 32px; }

  /* Testimonials */
  .v2-testimonial-card { padding: 18px; }

  /* Footer */
  .v2-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .v2-footer__desc { max-width: 100%; }

  /* App */
  .v2-store-btn { min-width: 100%; }
}


/* ==========================================================================
   RESPONSIVE — 360px  (très petits écrans)
   ========================================================================== */

@media (max-width: 360px) {
  .v2-hero__title     { font-size: 1.75rem; }
  .v2-hero__visual    { height: 260px; min-height: 260px; max-height: 260px; }
  .v2-phones-wrapper  { width: 160px; height: 254px; }
  .v2-phone--front    { width: 156px; height: 250px; border-radius: 24px; }
  .v2-destinations__grid { grid-template-columns: 1fr; }
  .v2-flags-grid { grid-template-columns: repeat(4, 1fr); }
}
