@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

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

:root {
  --navy: #00473C;
  --navy-light: #00594d;
  --gold: #d4af37;
  --beige: #F5F2F0;
  --white: #ffffff;
  --gray: #6b7280;
  --black-btn: #00342d;
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--navy);
  line-height: 1.3;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

/* Header / Navigation */
header {
  background: var(--navy);
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none!important;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

/* Menu Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 9999;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Overlay pour fermer le menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 180px 5% 100px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-hero .tagline {
  font-size: 1.15rem;
  opacity: 0.9;
  font-style: italic;
}

.page-hero .offer-number {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* Sections communes */
section {
  padding: 80px 5%;
}

.alt-section {
  background: var(--beige);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.intro-text {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.intro-text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

/* Two columns layout */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.column-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.column-text p {
  color: var(--gray);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.column-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lists */
.role-list {
  list-style: none;
  margin: 1rem 0;
}

.role-list li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--gray);
  line-height: 1.3;
}

.role-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.role-list.centered {
  display: inline-block;
  text-align: left;
}

.simple-list {
  list-style: none;
  margin: 0.75rem 0;
}

.simple-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.35rem;
  color: var(--gray);
  line-height: 1.3;
  font-size: 1rem;
}

.simple-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.simple-list.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.simple-list.horizontal li {
  flex: 1 1 200px;
}

/* Highlight box */
.highlight-box {
  background: var(--beige);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.3;
}

.highlight-box.large {
  background: var(--beige);
  padding: 2rem;
  border-left: none;
  border-radius: 10px;
  text-align: center;
}

.highlight-box.large h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.highlight-box.large .role-list {
  display: inline-block;
  text-align: left;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.3;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-card.full-width {
  grid-column: 1 / -1;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 25px;
  background: var(--gold);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.step-card p {
  color: var(--gray);
  line-height: 1.3;
  font-size: 0.95rem;
}

.note {
  font-style: italic;
  color: var(--gray);
  margin-top: 1rem;
}

.highlight-note {
  color: var(--navy);
  font-weight: 500;
  margin-top: 1rem;
}

/* Work grid (for binome page) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.work-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.work-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.work-card p {
  color: var(--gray);
  line-height: 1.3;
  font-size: 0.95rem;
}

/* Challenges grid */
.challenges-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--beige);
  padding: 1rem 1.5rem;
  border-radius: 5px;
}

.challenge-icon {
  color: var(--gold);
  font-weight: bold;
}

.challenge-item p {
  color: var(--navy);
  margin: 0;
}

/* Cases grid */
.cases-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.case-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.case-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.case-item p {
  color: var(--navy);
  font-size: 0.95rem;
  margin: 0;
}

.cases-list p {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
}

/* Choose box */
.choose-box {
  background: var(--beige);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.choose-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.choose-box p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.3;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 5%;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.cta-button {
  display: inline-block;
  background: var(--black-btn);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background: #00473c;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 52, 45, 0.3);
}

/* Footer */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 5%;
  text-align: center;
}

footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Offer number */
.offer-number {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
  .two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 5%;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  }

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

  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .page-hero {
    padding: 140px 5% 60px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    flex-direction: column;
    align-items: center;
  }

  .challenges-grid {
    flex-direction: column;
    align-items: center;
  }

  .highlight-box.large {
    padding: 2rem;
  }
}
