:root {
  --bg: #0b1020;
  --bg-alt: #111628;
  --bg-soft: #171c30;
  --accent: #2fb2ff;
  --accent-soft: rgba(47, 178, 255, 0.1);
  --text: #f5f7ff;
  --text-muted: #a5aec4;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-xl: 24px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --container-width: 1120px;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1b2748 0, #050713 55%, #02030a 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}



.logo-omea {
  display: inline-block;
  height: clamp(22px, 2.6vw, 32px);  /* responsive: plus grand sur desktop, raisonnable sur mobile */
  width: auto;
  max-width: 160px;                  /* évite qu’il devienne trop large sur grands écrans */
  vertical-align: middle;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

/* Option : effet léger au survol */
.logo-omea:hover {
  transform: scale(1.05);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

.page-wrapper main {
  flex: 1;
}


.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: fit-content;
}

.section-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(    90deg,
    #3e64ef 0%,
    #494ff5 30%,
    #3a8dff 65%,
    #6475ff 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(47, 178, 255, 0.35);
}

.btn-secondary{
background: rgba(255, 255, 255, 0.069) ;
color: #ffffff;
box-shadow: 0 12px 30px rgba(47, 178, 255, 0.35);
border-color: rgba(255, 255, 255, 0.152);

}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(47, 178, 255, 0.48);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(47, 178, 255, 0.48);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.45); /* bleu clair */
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 2px rgba(56, 189, 248, 0.5),
              inset 0 0 6px rgba(163, 25, 163, 0.35);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(47, 178, 255, 0.08), rgba(148, 163, 184, 0.08));
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.7);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.82), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}


.nav-mark {
  width: 30px;
  height: 30px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 0, #5af0ff, #2fb2ff 40%, #0f172a 100%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 40px rgba(56, 189, 248, 0.7);
}

.nav-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.86rem;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #2fb2ff, #5af0ff);
  transition: width 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-mobile-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--text-muted);
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-muted);
  position: relative;
}

.nav-mobile-toggle span::before,
.nav-mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-muted);
}

.gap-sectors {
  display: flex ;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile-toggle span::before {
  top: -6px;
}

.nav-mobile-toggle span::after {
  top: 6px;
}

.hero {
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-title2 {
 /* Mise en forme générale */
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 1.5rem 0;
  max-width: 28ch;

  /* Dégradé de bleu sur le texte */
  background: linear-gradient(
    90deg,
    #5ee8ff 0%,
    #4fc3ff 30%,
    #3a8dff 65%,
    #6475ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Optionnel: légère ombre pour bien ressortir sur fond sombre */
  text-shadow: 0 0 18px rgba(0, 140, 255, 0.25);
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, #2fb2ff, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-note span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta-item strong {
  font-weight: 500;
  color: var(--text);
}

.hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0, #38bdf8 0, #0b1120 45%, #020617 100%);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  isolation: isolate;

  display: flex;              /* on passe le grand carré en flex */
  align-items: center;        /* centrage vertical */
  justify-content: center;    /* centrage horizontal */
}


.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.25), transparent 55%),
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.32), transparent 55%);
  mix-blend-mode: soft-light;
}

.hero-visual-content {
  position: relative;
  height: 100%;
  padding: 1.6rem 1.7rem;

  display: flex;
  justify-content: center;   /* centre verticalement */
  align-items: center;       /* centre horizontalement */
}


.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-badge-label {
  font-size: 1rem;
  color: white;
}

.hero-badge-main {
  font-size: 1rem;
  font-weight: 500;
}

.hero-location {
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.hero-location span {
  font-size: 0.9rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stat-card {
  border-radius: 18px;
  padding: 0.9rem 0.9rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-stat-card strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.hero-visual-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-quote {
  max-width: 70%;
}

.hero-quote strong {
  display: block;
  font-weight: 500;
  color: var(--text);
}

.hero-overlay-tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: flex-start;
}

.card {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.7rem;
}

.card-muted {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9));
  border-style: dashed;
}

.card-compact {
  padding: 1.3rem 1.4rem;
}

.mini-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.about-text p + p {
  margin-top: 1rem;
}

.checklist {
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-muted);
}

.check-bullet {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.check-item strong {
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.service-card {
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.1), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.1rem;
}

.service-title {
  font-size: 1.02rem;
  font-weight: 500;
}

.service-pill {
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--accent);
}

.service-list {
  font-size: 0.9rem;
  color: var(--text-muted);
  list-style: none;
  display: grid;
  gap: 0.25rem;
}

.service-list li {
  position: relative;
  padding-left: 1.1rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0.1rem;
  top: 0;
  color: var(--accent);
}

.service-footer {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  opacity: 0.9;
}

.services-cta-row {
  margin-top: 2.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-icon {
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.benefit-title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 colonnes */
  grid-auto-rows: 1fr;                               /* 2 lignes de hauteur homogène */
  gap: 1.5rem;
  margin-top: 1.8rem;
}


.sector-item {
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
}

.sector-icon {
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.sectors-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.4rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  font-size: 5rem;
  line-height: 1;
  top: -0.6rem;
  right: 1.1rem;
  opacity: 0.12;
  color: var(--accent);
}

.testimonial-text {
  margin-bottom: 1.1rem;
}

.testimonial-meta {
  font-size: 0.82rem;
}

.testimonial-name {
  font-weight: 500;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  border-radius: 22px;
  padding: 1.6rem 1.4rem 1.5rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
  position: relative;
}

.pricing-card-highlight {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
  border-color: rgba(56, 189, 248, 0.7);
}

.pricing-label {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-title {
  font-weight: 500;
  font-size: 1rem;
}

.pricing-description {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pricing-price {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.pricing-tag {
  position: absolute;
  top: 1.1rem;
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.7);
  color: var(--accent);
  width: fit-content;
  height: fit-content;
}

.pricing-footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-cta-row {
  margin-top: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.form {
  display: grid;
  gap: 1rem;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-label {
  display: block;
  font-size: 0.83rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(47, 178, 255, 0.5);
  background: rgba(15, 23, 42, 0.98);
}

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

.form-helper {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-info {
  display: grid;
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  gap: 0.7rem;
}

.contact-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.9rem;
}

.contact-item-note .contact-value {
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.8rem 0 2.2rem;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), rgba(2, 6, 23, 1));
}

.footer-inner {
  text-align: center;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.blog-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(47, 178, 255, 0.25);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.2rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-card-content h2 {
  font-size: 1.1rem;
  font-weight: 500;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
}


/* Blog article page */
.blog-article {
  padding: 4rem 0;
}

.container.narrow {
  max-width: 800px;
}

.blog-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.blog-header h1 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.blog-content {
  color: var(--text);
  line-height: 1.8;
}

.blog-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.blog-content p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.blog-content ul {
  margin: 0 0 1.4rem 1.4rem;
  color: var(--text-muted);
}

.blog-content li {
  margin-bottom: 0.4rem;
}

blockquote {
  background: rgba(47, 178, 255, 0.1);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.8rem 0;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-footer {
  margin-top: 3rem;
  text-align: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tags span {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text-muted);
}

.share {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.share a {
  color: var(--accent);
  text-decoration: none;
}

.back-btn {
  margin-top: 1.5rem;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status-success {
  color: #0f7b4a;
}

.form-status-error {
  color: #b3261e;
}

.gift-card {
  padding: 2rem 1.7rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.gift-badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  margin-bottom: 0.8rem;
}

.gift-title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 0.4rem;
}

.gift-subtitle {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.gift-list {
  margin: 0 0 1.4rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
}

.gift-list li {
  position: relative;
  padding-left: 1.4rem;
}

.gift-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
}

.gift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.gift-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section ISO Purpose (bento simplifié et cohérent avec le site) */
.iso-purpose {
  margin-top: 2rem;
}

.iso-purpose .section-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--text);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.purpose-item {
  background-color: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.25s ease;
}

.purpose-item:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-3px);
}

.purpose-icon {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 50%;
  padding: 0.6rem;
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.purpose-item h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.purpose-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Outils – Hero et contrôles */
.tools-hero .section-header { text-align: center; }
.tools-controls {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 1.2rem;
}
.tools-search {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.95);
  color: var(--text);
  font-size: 0.95rem;
}
.tools-search::placeholder { color: rgba(148,163,184,0.7); }
.tools-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.tools-filters input { accent-color: #58c8ff; }

/* Grille d’outils */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}
.tool-card {
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.28);
  border-radius: 16px;
  padding: 1.2rem 1.1rem 1.3rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.5);
  box-shadow: 0 18px 40px rgba(47,178,255,0.20);
}
.tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(148,163,184,0.35);
  font-size: 1.2rem;
}
.tool-title {
  font-size: 1.05rem;
  font-weight: 500;
}
.tool-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.tool-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.tool-meta .tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.25);
  background: rgba(148,163,184,0.08);
  color: var(--text-muted);
}
.tool-actions { margin-top: 0.4rem; }

.tools-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.section-hero2 {
padding: 16px;
  }

/* Section Newsletter */
.newsletter {
  text-align: center;
  margin-top: 3rem;
}

.newsletter-card {
  background: linear-gradient(145deg, rgba(56,189,248,0.08), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.newsletter-text {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.95);
  color: var(--text);
  font-size: 0.95rem;
  min-width: 240px;
  flex: 1;
}

.newsletter-form input::placeholder {
  color: rgba(148,163,184,0.7);
}

.newsletter-success {
  display: none;
  margin-top: 1rem;
  color: #22c55e;
  font-weight: 500;
  font-size: 0.95rem;
}

.benefit-item {
  display: flex;
  align-items: center;        /* centre verticalement l’emoji et le texte */
  gap: 0.8rem;                /* espace entre l’emoji et le texte */
  margin-bottom: 1rem;        /* espace entre les lignes */
}

.benefit-icon {
  font-size: 1.6rem;          /* taille uniforme des emojis */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;                /* taille fixe pour un alignement parfait */
  height: 32px;
}

/* Responsive */


@media (max-width: 600px) {
  .newsletter-card {
    padding: 1.5rem 1rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .tools-controls {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .purpose-grid {
    gap: 0.8rem;
  }

  .purpose-item {
    padding: 1.2rem;
  }

  .purpose-icon {
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .gift-card { padding: 1.4rem; }
}


@media (max-width: 900px) {
  .two-column,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }


  .hero-content {
    order: 1;   /* texte en premier */
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0.75rem 1.25rem;
  }

  .nav-mobile-toggle {
    display: block;
    border: none;
    background: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 40;            /* au-dessus du panneau */
  }

  .nav-mobile-toggle span,
  .nav-mobile-toggle span::before,
  .nav-mobile-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-muted);
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
  }

  .nav-mobile-toggle span::before,
  .nav-mobile-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-mobile-toggle span::before {
    top: -6px;
  }

  .nav-mobile-toggle span::after {
    top: 6px;
  }

  /* état ouvert: burger → croix */
  .nav-mobile-toggle.is-open span {
    background: transparent;
  }

  .nav-mobile-toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-mobile-toggle.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* panneau mobile plein écran opaque */
  /* panneau mobile, sous la barre de navigation, fond opaque */
  .nav-links-wrapper {
    position: fixed;
    inset: 56px 0 auto 0;         /* commence sous le header (~56px) */
    padding: 1.5rem 1.75rem 1.75rem;
    background: linear-gradient(180deg, #0d111c 0%, #050713 100%);          /* fond opaque */
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    display: none;                /* caché par défaut */
    flex-direction: column;
    gap: 1.75rem;
    padding: 16px;
    margin: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 30;
  }

  .nav-links-wrapper.open {
    display: flex;                /* affiché quand on ajoute .open */
  }


  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    font-size: 1.05rem;
  }

  .nav-links a {
    padding: 0;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    margin-top: auto;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .sectors-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }


@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 260px;
  }
}

/* Ajustement pour petits écrans du logo*/
@media (max-width: 768px) {
  .logo-omea {
    height: 24px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr); /* une seule colonne */
    gap: 2rem;
  }

  aside.hero-visual {
    display: none;
  }
}

@media (min-width: 901px) {
  .hero-visual {
    display: flex !important;
  }
}
