/* =============================
   OMAFLEET – BRAND DESIGN
   Primary:   #6316DB (OMA)
   Secondary: #FB2576 (FLEET)
   Bg:        Dark Navy/Black
   ============================= */

:root {
  /* Vos Couleurs Officielles */
  --omf-primary: #6316DB;  /* OMA */
  --omf-secondary: #FB2576; /* FLEET */
  
  /* Fond "Pro" sombre (hérité du design validé) */
  --omf-bg-dark: #050816;
  --omf-bg-card: #0f1429;
  
  /* Textes */
  --omf-white: #ffffff;
  --omf-gray: #9ca3af;
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --omf-container: 1200px;
  --omf-radius: 6px;
}

/* Base Reset */
body {
  margin: 0;
  padding: 0;
  background-color: var(--omf-bg-dark);
  color: var(--omf-gray);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--omf-white);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-top: 0;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
* { box-sizing: border-box; }

/* Utilities */
.omf-container {
  max-width: var(--omf-container);
  margin: 0 auto;
  padding: 0 24px;
}
.text-accent { color: var(--omf-secondary); }
.text-primary { color: var(--omf-primary); }
.flex { display: flex; align-items: center; }
.grid { display: grid; gap: 2rem; }
.omf-section { padding: 80px 0; }

/* Buttons */
.omf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 50px; /* Retour au style arrondi moderne */
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* Bouton principal (Rose/Gradient) pour l'action */
.omf-btn-solid {
  background: linear-gradient(135deg, var(--omf-primary), var(--omf-secondary));
  color: white;
  box-shadow: 0 10px 30px rgba(99, 22, 219, 0.3);
}
.omf-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(251, 37, 118, 0.4);
}

/* Bouton secondaire (Contour) */
.omf-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--omf-white);
}
.omf-btn-outline:hover {
  border-color: var(--omf-secondary);
  color: var(--omf-secondary);
}

/* Header */
.omf-header {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  background: rgba(5, 8, 22, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.omf-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* LOGO CUSTOMIZATION */
.omf-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.omf-logo-oma { color: var(--omf-primary); text-shadow: 0 0 15px rgba(99, 22, 219, 0.4); }
.omf-logo-fleet { color: var(--omf-secondary); text-shadow: 0 0 15px rgba(251, 37, 118, 0.4); }

.omf-nav { display: flex; gap: 40px; }
.omf-nav a { font-size: 0.95rem; font-weight: 500; color: var(--omf-gray); }
.omf-nav a:hover { color: var(--omf-white); }

.omf-nav-toggle {
  display: none;
  color: var(--omf-white);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Nav Logic */
@media (max-width: 900px) {
  .omf-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; width: 100%;
    background: var(--omf-bg-dark);
    padding: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
  }
  .omf-nav.open { display: flex; }
  .omf-nav-toggle { display: block; }
}

/* Hero */
.omf-hero {
  padding: 160px 0 100px;
  position: relative;
  background: radial-gradient(circle at top right, rgba(99, 22, 219, 0.15), transparent 40%);
}
.omf-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .omf-hero-grid { grid-template-columns: 1fr; } }

.omf-hero-eyebrow {
  color: var(--omf-secondary);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.omf-hero-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
}
@media (max-width: 600px) { .omf-hero-title { font-size: 2.5rem; } }

.omf-hero-desc {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 540px;
}

.omf-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.omf-stat strong { display: block; font-size: 1.5rem; color: var(--omf-white); font-family: var(--font-heading); }
.omf-stat span { font-size: 0.85rem; color: var(--omf-secondary); }

/* Features */
.omf-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 60px;
}
@media (max-width: 900px) { .omf-features-grid { grid-template-columns: 1fr; } }

.omf-feature-card {
  background: var(--omf-bg-card);
  padding: 35px;
  border-radius: var(--omf-radius);
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}
.omf-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--omf-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.omf-feature-icon {
  font-size: 1.8rem;
  color: var(--omf-primary);
  margin-bottom: 20px;
  display: block;
}
.omf-feature-title { font-size: 1.25rem; margin-bottom: 15px; }

/* App Section */
.omf-app-section { background-color: #02030a; }
.omf-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 900px) { .omf-app-grid { grid-template-columns: 1fr; } }

.omf-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--omf-bg-card), #000);
  border-radius: var(--omf-radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--omf-primary);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Consultative CTA */
.omf-cta-box {
  background: linear-gradient(135deg, var(--omf-bg-card), #1a052b); /* Léger fond violet */
  border-radius: var(--omf-radius);
  padding: 60px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
/* Petit glow décoratif */
.omf-cta-box::before {
  content:""; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
  background: radial-gradient(circle, rgba(99,22,219,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.omf-cta-title { font-size: 2.5rem; margin-bottom: 20px; }
@media (max-width: 600px) { .omf-cta-title { font-size: 2rem; } }

/* Footer */
.omf-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  text-align: center;
  background: #02030a;
}
.omf-footer-contact { margin-bottom: 30px; font-size: 1.1rem; }
.omf-footer-contact div { margin-bottom: 10px; }
.omf-footer-contact i { color: var(--omf-secondary); margin-right: 10px; width: 20px; }
