/* ===== Fazeyma-- feuille de style principale ===== */

:root {
  --navy-950: #071224;
  --navy-900: #0b1f3a;
  --navy-800: #10294a;
  --navy-700: #17375e;
  --gold-500: #c9a24b;
  --gold-400: #d8b968;
  --gray-50: #f6f7f9;
  --gray-100: #eef0f3;
  --gray-200: #dde1e6;
  --gray-400: #9aa3b2;
  --gray-600: #5a6472;
  --text: #1b2430;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.14);
  --max-width: 1180px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--gray-600); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

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

.section {
  padding: 88px 0;
}
.section--alt {
  background: var(--gray-50);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn--primary:hover { background: var(--gold-400); }
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--white); }
.btn--navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-800); }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}
.logo__mark span { color: var(--gold-500); }
.logo__tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links {
  display: flex;
  gap: 30px;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--gold-500);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  display: block;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-700) 100%);
  color: var(--white);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.25);
}
.hero::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.35);
}
.hero__inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero--sub {
  padding: 70px 0;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.stats__item {
  border-left: 2px solid var(--gold-500);
  padding-left: 16px;
}
.stats__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.stats__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ===== Cards / grids ===== */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.card ul {
  margin-top: 14px;
}
.card ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ===== Why us / features list ===== */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature__num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold-500);
  font-size: 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; font-size: 0.94rem; }

/* ===== Process steps ===== */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process__step {
  text-align: center;
  padding: 24px 14px;
  position: relative;
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.process__step h3 { font-size: 1rem; margin-bottom: 6px; }
.process__step p { font-size: 0.85rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; }

/* ===== Sectors / tags ===== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tag {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-900);
  background: var(--white);
}

/* ===== Team ===== */
.team-card {
  text-align: center;
}
.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
}
.team-card h3 { margin-bottom: 2px; }
.team-card__role {
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* ===== Values ===== */
.value-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid var(--gold-500);
}

/* ===== Portfolio ===== */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.project-card__media {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.project-card__body { padding: 22px 24px; }
.project-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px;
}
.testimonial p.quote {
  font-style: italic;
  color: var(--text);
  font-size: 1.02rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.testimonial__dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-900);
  font-family: var(--font-head);
  flex: none;
}
.testimonial__author strong { display: block; font-size: 0.92rem; }
.testimonial__author span { font-size: 0.8rem; color: var(--gray-400); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.info-card h3 { color: var(--white); }
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.info-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(201,162,75,0.15);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.info-item strong { display: block; font-size: 0.92rem; }
.info-item span { font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 24px;
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer ul li a:hover { color: var(--gold-400); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.footer__social a:hover { border-color: var(--gold-400); color: var(--gold-400); }

/* ===== Breadcrumb / page banner ===== */
.page-banner {
  background: var(--navy-950);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: 8px; }
.page-banner p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(1, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-200);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: flex; }
  .nav > .btn { display: none; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
