@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Clash+Display:wght@500;600;700&display=swap');
:root {
  --wm-orange: #ff6600;
  --wm-orange-dark: #ff5800;
  --wm-text: #2b2b2b;
  --wm-dark: #000000;
  --wm-muted: #6b7280;
  --wm-bg: #f6f7f9;
  --wm-white: #ffffff;
  --wm-border: #e5e7eb;
  --wm-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --wm-radius: 20px;
  --wm-radius-sm: 10px;
  --wm-container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
  color: var(--wm-text);
  background: var(--wm-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

p {
  font-size: 14px;
}

.container {
  width: min(100% - 40px, var(--wm-container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.logo a {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--wm-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-dark);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--wm-orange);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--wm-dark);
  border-radius: 2px;
  transition: 0.3s;
}


.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--wm-orange);
  color: #fff;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--wm-orange-dark);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,102,0,0.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,102,0,0.06), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  color: var(--wm-orange);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 45px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--wm-muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

h2 {
  font-size: 40px;
  margin-top: 0px
}

/* Offshore highlight */
.home-expertise-intro {
  background: var(--wm-bg);
}

.stats-section {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: left;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #ea580c; /* 🔥 couleur Wemagen */
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.7;
}

/* responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.expertise-highlight-card {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: center;
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  padding: 34px;
  box-shadow: var(--wm-shadow);
}

.expertise-highlight-content h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  color: var(--wm-black);
}

.highlight-subtitle {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--wm-black);
  font-weight: 700;
}

.highlight-subtitle span {
  color: var(--wm-orange);
}

.expertise-highlight-content p:last-of-type {
  margin-bottom: 24px;
  color: var(--wm-muted);
  font-size: 16px;
}

.expertise-highlight-media img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* Technologies */
.tech-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: center;
}

.tech-logos img {
  max-height: 42px;
  width: auto;
  margin: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);  
  padding: 14px;
  max-height: 100px;

}

/* Hover premium */
.tech-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--wm-orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--wm-orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--wm-dark);
  border: 1px solid var(--wm-border);
}

.btn-secondary:hover {
  border-color: var(--wm-orange);
  color: var(--wm-orange);
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 24px;
  box-shadow: var(--wm-shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
}

/* Sections */
.section {
  padding: 50px 0;
}

.section-light {
  background: #fff;
}

.section-muted {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.section-dark {
  background: var(--wm-dark);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: inherit;
}

.section-head p {
  margin: 0;
  color: var(--wm-muted);
  font-size: 17px;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* Cards */
.cards-3,
.cards-4 {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius);
  padding: 28px;
  box-shadow: var(--wm-shadow);
  transition: all 0.3s ease;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--wm-dark);
}

.card p {
  margin: 0;
  color: var(--wm-muted);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 130, 32, 0.12);
  color: var(--wm-orange);
  font-weight: 700;
  margin-bottom: 18px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.step-number {
  font-size: 14px;
  font-weight: bold;
  color: #ea580c;
  margin-bottom: 10px;
}

.panel {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--wm-border);
  box-shadow: var(--wm-shadow);
  padding: 34px;
}

.panel h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 28px;
  color: var(--wm-dark);
}

.panel p,
.panel li {
  color: var(--wm-muted);
}

/* Tech list */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tech-item {
  background: #fff;
  border: 1px solid var(--wm-border);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  font-weight: 700;
  color: var(--wm-dark);
  box-shadow: var(--wm-shadow);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat {
  background: #fff;
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius);
  padding: 26px;
  box-shadow: var(--wm-shadow);
}

.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--wm-orange);
  margin-bottom: 10px;
}

.stat span {
  color: var(--wm-muted);
  font-weight: 600;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--wm-border);
  border-radius: 20px;
  box-shadow: var(--wm-shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card-content {
  padding: 22px;
}

.project-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.project-card p {
  margin: 0;
  color: var(--wm-muted);
}

/* CTA band */
.cta-band {
  background: var(--wm-dark);
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 30px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
  background: var(--wm-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 34px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a:hover {
  color: var(--wm-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 14px;
}

.footer-bottom p{
  font-size: 14px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .tech-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    padding: 80px 20px;
    transition: 0.3s ease;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav a {
    font-size: 18px;
  }

  .hero {
    padding: 52px 0 36px;
  }

  .section {
    padding: 40px 0;
  }

  .cards-3,
  .cards-4,
  .portfolio-grid,
  .tech-grid,
  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card,
  .panel,
  .contact-box,
  .form-box,
  .faq-item {
    padding: 22px;
  }

  .cta-band {
    padding: 28px;
  }

  .logo a {
    font-size: 26px;
  }
}

/* BAR */
.trust-bar {
  background: #fff;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

/* ITEM */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

/* ICON */
.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.error-404 {
  padding: 100px 0;
}

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

.error-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.error-content p {
  opacity: 0.7;
  margin-bottom: 25px;
}

.error-actions {
  display: flex;
  gap: 15px;
}

.error-visual img {
  max-width: 100%;
}

/* responsive */
@media (max-width: 768px) {
  .error-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .error-actions {
    justify-content: center;
  }
}

.highlight {
  color: #ea580c;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: rgba(234, 88, 12, 0.15);
  border-radius: 2px;
}

/* TABLET */
@media (max-width: 1024px) {
  .tech-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .tech-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

}

/* HERO BLOG */
.blog-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.blog-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--wm-muted);
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.blog-content {
  padding: 22px;
}

.blog-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.blog-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-content p {
  font-size: 14px;
  color: var(--wm-muted);
}

/* READ MORE */
.read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--wm-orange);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO */
.article-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.article-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.article-hero h1 {
  font-size: 42px;
  max-width: 800px;
  margin: 0 auto;
}

.article-excerpt {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--wm-muted);
}

/* IMAGE */
.article-cover img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

/* CONTENT */
.article-content {
  padding: 60px 0;
}

.article-body {
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify
}

/* TYPOGRAPHIE */
.article-body h2 {
  margin-top: 40px;
  font-size: 26px;
}

.article-body h3 {
  margin-top: 30px;
  font-size: 20px;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul {
  margin-left: 20px;
}

.article-tags {
  margin-top: 40px;
}

.article-tags span {
  font-weight: 600;
  margin-right: 10px;
}

.article-tags a {
  display: inline-block;
  margin: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,102,0,0.08);
  color: var(--wm-orange);
  font-size: 13px;
  transition: 0.2s;
}

.article-tags a:hover {
  background: var(--wm-orange);
  color: #fff;
}

.blog-filters {
  margin-bottom: 40px;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-group a {
  display: inline-block;
  margin: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 13px;
  color: #333;
  transition: 0.2s;
}

.filter-group a:hover {
  background: var(--wm-orange);
  color: #fff;
}

/* projet en cours amélioré */
.project-current.improved {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.project-current .project-image img {
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* tags techno */
.project-tags {
  margin: 15px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span {
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* confidential */
.confidential-grid.improved {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.confidential-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.confidential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.confidential-card h3 {
  margin-bottom: 10px;
}

/* intro */
.section-intro {
  max-width: 600px;
  opacity: 0.7;
}

/* responsive */
@media (max-width: 1024px) {
  .project-current.improved {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .confidential-grid.improved {
    grid-template-columns: 1fr;
  }
}