/* ============================================
   MVA GLOBAL FRET — Stylesheet
   ============================================ */

/* --- Reset & Custom Properties --- */
:root {
  --navy: #1a1a3e;
  --navy-light: #2a2a5e;
  --navy-dark: #0f0f2a;
  --gold: #c5a55a;
  --gold-light: #d4ba7a;
  --gold-dark: #a8893e;
  --white: #ffffff;
  --light-gray: #f7f7f9;
  --mid-gray: #e0e0e5;
  --text-dark: #2d2d3d;
  --text-light: #6b6b80;
  --red: #d9534f;
  --green: #5cb85c;
  --amber: #f0ad4e;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --shadow-sm: 0 2px 8px rgba(26, 26, 62, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 26, 62, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 26, 62, 0.16);

  --transition: 0.3s ease;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--gold-dark);
}

ul, ol {
  list-style: none;
}

/* --- Skip to content (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-md);
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-md) auto;
  border-radius: 2px;
}

/* Grid system */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light-gray);
  border-color: var(--light-gray);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #2b2b6e;
  border-bottom: 2px solid rgba(197, 165, 90, 0.35);
  z-index: 1000;
  transition: all var(--transition);
}

.header.scrolled {
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  background: #1e1e52;
  border-bottom-color: rgba(197, 165, 90, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 68px;
  transition: height var(--transition);
}

.header.scrolled .logo img {
  height: 52px;
}

.nav {
  display: none;
  gap: var(--space-lg);
}

.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: var(--space-xs) 0;
}

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

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.lang-switcher button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh; /* dynamic viewport — meilleur sur mobile (barre URL) */
  background: var(--navy-dark);
  z-index: 999;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav,
  .overlay {
    display: none !important;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,62,0.85) 0%, rgba(26,26,62,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Sub-page hero (shorter) */
.hero-sub {
  min-height: 45vh;
  padding-top: calc(var(--header-height) + var(--space-2xl));
}

.hero-sub::before {
  background: linear-gradient(135deg, rgba(26,26,62,0.72) 0%, rgba(26,26,62,0.55) 100%) !important;
}


.hero-sub h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--mid-gray);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--gold);
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

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

/* --- Icon boxes (services) --- */
.icon-box {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.icon-box .card-icon {
  margin: 0 auto var(--space-lg);
}

/* --- Steps (how it works) --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

.step-content h3 {
  margin-bottom: var(--space-xs);
}

.step-content p {
  color: var(--text-light);
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
}

/* --- Steps grid (Service Commande page) --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

.step-card {
  position: relative;
  background: var(--white);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(26, 26, 62, 0.06);
  border: 1px solid rgba(26, 26, 62, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 26, 62, 0.12);
}

.step-card .step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  font-size: 1.75rem;
  box-shadow: 0 6px 18px rgba(197, 165, 90, 0.35);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--navy);
  font-size: 1.2rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    z-index: 0;
    opacity: 0.5;
  }
  .step-card { z-index: 1; }
}

/* --- Rappel tarifaire (page Contact, bloc centré) --- */
.price-reminder {
  max-width: 680px;
  margin: var(--space-3xl) auto var(--space-xl);
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(26, 26, 62, 0.05);
}

.price-reminder h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  color: var(--navy);
  font-size: 1.15rem;
}

.price-reminder ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.price-reminder ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.price-reminder ul li i {
  color: var(--green);
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .price-reminder ul {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-xl);
  }
}

/* --- Transport card (page Service Commande) --- */
.transport-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  text-align: center;
  box-shadow: 0 16px 40px rgba(26, 26, 62, 0.10);
  overflow: hidden;
}

.transport-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, #e0c98a 50%, var(--gold) 100%);
}

.transport-card-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto var(--space-lg);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a2a5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  box-shadow: 0 12px 28px rgba(26, 26, 62, 0.25);
}

.transport-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-md);
  font-family: 'Poppins', var(--font-heading), sans-serif;
}

.transport-card-amount {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}

.transport-card-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.transport-card-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto var(--space-lg);
}

.transport-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.transport-card-cta i {
  transition: transform 0.25s ease;
}
.transport-card-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .transport-card { padding: var(--space-xl) var(--space-lg); }
  .transport-card-icon { width: 72px; height: 72px; font-size: 1.7rem; margin-bottom: var(--space-md); }
  .transport-card-desc { font-size: 0.92rem; }
}

/* --- About section preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-preview-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.about-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-preview {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Pricing --- */
.pricing-card {
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* Variant: pricing card without the top gold gradient bar */
.pricing-card--flat::before { display: none; }
.pricing-card--flat { border-width: 2px; }

.pricing-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.pricing-unit {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.pricing-details {
  text-align: left;
  padding: 0 var(--space-md);
}

.pricing-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.pricing-details li:last-child {
  border-bottom: none;
}

.pricing-details li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-note {
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: left;
}

/* Delivery cards */
.delivery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
}

.delivery-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.delivery-card h3 i {
  color: var(--gold);
}

.delivery-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* Schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.schedule-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--navy);
  border-radius: var(--radius-md);
  color: var(--white);
}

.schedule-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.schedule-item .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

@media (min-width: 768px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--mid-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-question i {
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Form styles */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--navy);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px var(--space-md);
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-error {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
}

.form-success {
  background: #eafbe7;
  border: 1px solid var(--green);
  color: #2d6a2d;
  padding: var(--space-lg);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-success.show {
  display: block;
}

.form-loading .btn {
  opacity: 0.7;
  pointer-events: none;
}

/* Contact info card */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  color: var(--white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-info-item a {
  color: var(--white);
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-info-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 2px;
}

/* Map */
.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Map section (Contact page) */
.map-section {
  margin-top: 80px;
}

.map-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 26, 62, 0.12);
  border: 1px solid rgba(197, 165, 90, 0.15);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a2a5e 100%);
  color: var(--white);
}

.map-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(197, 165, 90, 0.18);
  border: 1px solid rgba(197, 165, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.map-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.map-card-info strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 2px;
}

.map-card-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.map-card-cta {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 165, 90, 0.4);
}

.map-card iframe {
  display: block;
  width: 100%;
}

@media (max-width: 600px) {
  .map-section { margin-top: 56px; }
  .map-card-header { padding: 16px 18px; gap: 12px; }
  .map-card-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .map-card-info strong { font-size: 0.95rem; }
  .map-card-info span { font-size: 0.8rem; }
  .map-card-cta { width: 40px; height: 40px; }
  .map-card iframe { height: 320px !important; }
}

/* --- Guide page --- */
.prohibited-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .prohibited-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .prohibited-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prohibited-item {
  background: #fff5f5;
  border: 1px solid #ffdddd;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.prohibited-item i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.prohibited-item h4 {
  color: var(--red);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.prohibited-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Warning items (special declaration) */
.warning-item {
  background: #fffbf0;
  border: 1px solid #ffe0a0;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.warning-item i {
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.warning-item h4 {
  color: #8a6d1b;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

/* Packaging steps */
.packaging-steps {
  counter-reset: packaging;
}

.packaging-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--mid-gray);
  align-items: flex-start;
}

.packaging-step:last-child {
  border-bottom: none;
}

.packaging-step-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

.packaging-step h3 {
  margin-bottom: var(--space-sm);
}

.packaging-step p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Do / Don't columns */
.do-dont {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .do-dont {
    grid-template-columns: 1fr 1fr;
  }
}

.do-list, .dont-list {
  padding: var(--space-xl);
  border-radius: var(--radius-md);
}

.do-list {
  background: #eafbe7;
  border: 1px solid #c3e6c3;
}

.dont-list {
  background: #fff5f5;
  border: 1px solid #ffdddd;
}

.do-list h3, .dont-list h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.do-list h3 { color: var(--green); }
.dont-list h3 { color: var(--red); }

.do-list li, .dont-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
}

.do-list li i { color: var(--green); margin-top: 4px; }
.dont-list li i { color: var(--red); margin-top: 4px; }

/* --- Application teaser page --- */
.app-teaser {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .app-content {
    grid-template-columns: 1fr 1fr;
  }
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.phone-mockup {
  background: var(--navy);
  border-radius: 36px;
  padding: 12px;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  text-align: center;
}

.phone-screen img {
  width: 80px;
  height: auto;
}

.phone-screen p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.app-features {
  margin-top: var(--space-xl);
}

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.app-feature i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.app-feature h4 {
  margin-bottom: 2px;
}

.app-feature p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Notify form */
.notify-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  max-width: 400px;
}

.notify-form input {
  flex: 1;
  padding: 14px var(--space-md);
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
}

.notify-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* --- Values grid (about) --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.value-card h3 {
  margin-bottom: var(--space-sm);
}

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

/* Team counter */
.team-section {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: var(--white);
}

.team-counter {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.team-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
}

/* Communication channels */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.channel-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

.channel-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.channel-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.channel-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.channel-card a {
  font-size: 0.85rem;
}

/* --- About story section --- */
.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
  }
  .story-block.reverse {
    direction: rtl;
  }
  .story-block.reverse > * {
    direction: ltr;
  }
}

.story-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-2xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer-brand .logo img {
  height: 60px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: var(--space-xs) 0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Focus styles (accessibility) --- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* --- Background section variant --- */
.section-gray {
  background: var(--light-gray);
}

.section-navy {
  background: var(--navy);
}

/* ================================================
   Application page — iPhone mockup (copie exacte mva.mind4solutions.com)
   ================================================ */

.app-mockup-outer {
  display: flex;
  justify-content: center;
  padding: 40px 130px 60px 80px;
  overflow: visible;
}

.app-mockup-wrapper {
  position: relative;
  flex-shrink: 0;
}

/* Outer phone wrapper — 3D perspective + rotation comme le site de référence */
.iphone-mockup {
  width: 290px;
  position: relative;
  z-index: 3;
  transform: perspective(1200px) rotateY(6deg) rotateX(-2deg) rotateZ(-1.5deg);
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}

.iphone-mockup:hover {
  transform: perspective(1200px) rotateY(2deg) rotateX(0deg) rotateZ(0deg);
}

/* Cadre aluminium sombre */
.iphone-bezel {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, #1a1a1f 0%, #2d2d35 50%, #1a1a1f 100%);
  border-radius: 52px;
  padding: 12px;
  box-shadow:
    0 2px 4px rgba(15,24,41,0.08),
    0 8px 20px rgba(15,24,41,0.12),
    0 25px 50px rgba(15,24,41,0.18),
    0 50px 100px rgba(15,24,41,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  overflow: visible;
}

/* Boutons latéraux */
.iphone-btn {
  position: absolute;
  background: linear-gradient(#2a2a32, #1a1a1f);
  border-radius: 2px;
}
.iphone-btn--silent  { left: -3px; top: 110px; width: 3px; height: 28px; }
.iphone-btn--vol-up  { left: -3px; top: 155px; width: 3px; height: 52px; }
.iphone-btn--vol-dn  { left: -3px; top: 215px; width: 3px; height: 52px; }
.iphone-btn--power   { right: -3px; top: 170px; width: 3px; height: 68px; }

/* Écran */
.iphone-screen {
  background: #fffeF9;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.1);
}

/* Reflet écran */
.iphone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.12) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.04) 100%);
  border-radius: inherit;
}

/* Dynamic Island */
.iphone-di {
  width: 126px;
  height: 36px;
  background: #000;
  border-radius: 20px;
  margin: 12px auto 0;
  position: relative;
  z-index: 25;
  box-shadow: inset 0 -1px 2px rgba(255,255,255,0.05), 0 1px 4px rgba(0,0,0,0.3);
}

.iphone-di::before {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a3a2a 30%, #0a1a12 60%, #000 100%);
  box-shadow: inset 0 0 2px rgba(255,255,255,0.15), 0 0 0 1.5px rgba(255,255,255,0.06);
}

/* Contenu de l'app à l'intérieur de l'écran */
.iphone-content {
  padding: 8px 14px 80px;
  display: flex;
  flex-direction: column;
}

.iphone-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 2px 8px;
  color: #0F1829;
}

.iphone-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.iphone-app-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: #0F1829;
  line-height: 1.2;
}

.iphone-app-route {
  font-size: 0.62rem;
  color: #C9A84C;
  font-weight: 600;
}

.iphone-avatar {
  width: 28px;
  height: 28px;
  background: #C9A84C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
}

.iphone-tabs {
  display: flex;
  border-bottom: 1px solid #f0ebe4;
  margin-bottom: 10px;
}

.itab {
  font-size: 0.62rem;
  padding: 5px 10px 7px;
  color: #9A8B7E;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 500;
}

.itab--active {
  color: #C9A84C;
  border-bottom-color: #C9A84C;
  font-weight: 700;
}

/* Package card */
.iphone-pkg {
  background: #F5EDE0;
  border-radius: 12px;
  padding: 10px 11px;
  margin-bottom: 8px;
}

.ipkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #C9A84C;
  color: white;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ipkg-dot {
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  display: inline-block;
}

.ipkg-icon {
  text-align: center;
  padding: 6px 0 8px;
}

.ipkg-icon svg {
  width: 40px;
  height: 40px;
}

.ipkg-name {
  font-weight: 800;
  font-size: 0.72rem;
  color: #0F1829;
}

.ipkg-ref {
  font-size: 0.57rem;
  color: #9A8B7E;
  margin-bottom: 4px;
}

.ipkg-price {
  font-size: 1rem;
  font-weight: 800;
  color: #0F1829;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ipkg-price em {
  font-style: italic;
  font-size: 0.65rem;
  color: #C9A84C;
  font-weight: 600;
}

/* Tracking bar */
.ipkg-track {
  display: flex;
  align-items: center;
  margin: 0 0 4px;
}

.itrack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
}

.itrack-dot.done    { background: #059669; }
.itrack-dot.current { background: #C9A84C; box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }

.itrack-line       { flex: 1; height: 2px; background: #ddd; }
.itrack-line.done  { background: #059669; }

.ipkg-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.52rem;
  color: #9A8B7E;
  font-weight: 500;
}

/* Delivery items */
.iphone-order {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  padding: 5px 0;
  border-bottom: 1px solid #f0ebe4;
  color: #6B5D52;
}

.iphone-order:last-child { border-bottom: none; }

.iphone-order .iorder-price {
  margin-left: auto;
  font-weight: 700;
  color: #0F1829;
}

.iorder-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  flex-shrink: 0;
}

/* ---- Floating notification cards ---- */
@keyframes iFloatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes iFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.float-notif {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(58,40,32,0.12), 0 1px 4px rgba(58,40,32,0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 20;
  opacity: 0;
  animation: iFadeIn 0.6s ease forwards, iFloatY 3.5s ease-in-out infinite;
}

.float-notif--flight {
  top: 60px;
  left: -150px;
  animation-delay: 0.4s, 1.1s;
}

.float-notif--payment {
  bottom: 140px;
  right: -130px;
  animation-delay: 0.8s, 1.6s;
}

.float-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.float-notif-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.float-notif-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0F1829;
  white-space: nowrap;
}

.float-notif-sub {
  font-size: 0.62rem;
  color: #9A8B7E;
  margin-top: 2px;
  white-space: nowrap;
}

.fnp-bar-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 0.56rem;
  color: #9A8B7E;
}

.fnp-bar {
  width: 60px;
  height: 4px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.fnp-fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #059669, #047857);
  border-radius: 4px;
}

/* Floating pill */
.float-pill {
  position: absolute;
  bottom: 60px;
  left: -80px;
  background: #0F1829;
  color: #fff;
  font-size: 0.67rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(15,24,41,0.25);
  white-space: nowrap;
  opacity: 0;
  animation: iFadeIn 0.6s ease 1.2s forwards, iFloatY 3.5s ease-in-out 1.9s infinite;
}

.float-pill-dot {
  width: 7px;
  height: 7px;
  background: #C9A84C;
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .float-notif, .float-pill {
    animation: iFadeIn 0.6s ease forwards !important;
  }
}

@media (max-width: 900px) {
  .app-mockup-outer {
    padding: 60px 20px 60px 20px;
  }
  .float-notif--flight  { left: -10px; top: 10px; }
  .float-notif--payment { right: -10px; bottom: 100px; }
  .float-pill           { left: 0; bottom: 10px; }
}

@media (max-width: 767px) {
  .iphone-mockup {
    transform: none;
    width: 240px;
  }
  .iphone-mockup:hover { transform: none; }
  .float-notif, .float-pill { display: none; }
  .app-mockup-outer { padding: 20px; }
}

/* Payment logos grid (Application page) */
.payment-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.payment-logo-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 62, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 26, 62, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.payment-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 26, 62, 0.1);
  border-color: rgba(197, 165, 90, 0.3);
}

.payment-logo-img {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.payment-logo-img img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.payment-logo-img--double {
  gap: 10px;
}

.payment-logo-img--double img {
  max-height: 32px;
}

.payment-logo-card strong {
  display: block;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.payment-logo-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .payment-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .payment-logo-card { padding: 20px 14px; }
  .payment-logo-img { height: 50px; margin-bottom: 12px; }
  .payment-logo-img img { max-height: 40px; }
  .payment-logo-img--double img { max-height: 26px; }
}
