@font-face {
  font-family: "TT Interphases Pro Trial";
  src: local("TT Interphases Pro Trial Regular"),
    local("TT Interphases Pro Trial"),
    url("tt_interphases_pro/TT%20Interphases%20Pro%20Trial%20Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --brand-navy: #232551;
  --brand-blue: #5c91b7;
  --brand-cyan: #5c91b7;
  --bg: #ffffff;
  --bg-soft: #f0f7f9;
  --surface: #ffffff;
  --text: #232551;
  --muted: rgba(35, 37, 81, 0.78);
  --line: rgba(35, 38, 82, 0.16);
  --shadow: 0 20px 40px rgba(35, 38, 82, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "TT Interphases Pro Trial", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1380px, 96vw);
  margin: 0 auto;
}

.narrow {
  width: min(920px, 94vw);
}

.bg-shape {
  display: none;
}

.bg-shape-a {
  width: 300px;
  height: 300px;
  top: 80px;
  right: -70px;
  border-radius: 999px;
  background: linear-gradient(155deg, rgba(39, 168, 183, 0.45), rgba(41, 45, 102, 0.35));
}

.bg-shape-b {
  width: 240px;
  height: 240px;
  bottom: 80px;
  left: -60px;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(10, 79, 149, 0.4), rgba(39, 168, 183, 0.3));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0;
  gap: 30px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-navy);
  font-weight: 500;
  letter-spacing: -0.01em;
  overflow: visible;
  transform: translateY(-1px);
}

.brand-mark {
  width: auto;
  height: 48px;
  max-width: none;
}

.footer-brand .brand-mark {
  height: 48px;
}

.main-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  margin-left: 72px;
  flex: 1;
  justify-content: space-between;
  transform: translateY(5px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 430;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--brand-blue);
  border-color: rgba(35, 38, 82, 0.22);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px 12px;
  display: none;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 2px;
  width: 100%;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 430;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 8px 0;
  white-space: nowrap;
  border-radius: 0;
  transition: color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  color: var(--brand-blue);
  border-color: rgba(35, 38, 82, 0.22);
}

.main-nav a.is-active {
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}

.main-nav .nav-cta {
  border: 1px solid var(--brand-navy);
  background: var(--brand-navy);
  color: #ffffff;
  border-radius: 18px;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.main-nav .nav-cta:hover {
  color: #ffffff;
  background: #1b1f4a;
  border-color: #1b1f4a;
}

.main-nav .nav-cta.is-active {
  color: #ffffff;
  border-color: #1b1f4a;
}

.nav-language-toggle {
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border: 1px solid rgba(35, 38, 82, 0.24);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  margin-left: 4px;
  flex-shrink: 0;
}

.nav-language-toggle:hover {
  background: #f2f6fb;
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

@media (max-width: 780px) {
  .nav-language-toggle {
    width: fit-content;
    margin-top: 4px;
    margin-left: 0;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 10px;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    font-size: 0.9rem;
  }

  .main-nav .nav-cta {
    padding: 8px 12px;
  }

  .main-nav {
    margin-left: 20px;
    transform: none;
  }

  .nav-language-toggle {
    padding: 8px 10px;
  }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
}

.section {
  padding: 72px 0;
}

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

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(35, 38, 82, 0.5);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  max-width: 22ch;
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0 0 14px;
  text-align: justify;
}

.lead {
  font-size: 1rem;
  color: var(--text);
  max-width: 64ch;
}

.hero {
  padding-top: 24px;
}

.motto {
  margin: 10px 0 14px;
  color: var(--brand-blue);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.phone-reveal {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phone-reveal[hidden] {
  display: none;
}

.phone-reveal a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--brand-navy);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 18px;
  padding: 12px 22px;
  font-weight: 620;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: var(--brand-navy);
  box-shadow: 0 10px 24px rgba(35, 38, 82, 0.2);
}

.btn-ghost {
  color: var(--brand-navy);
  border-color: rgba(35, 38, 82, 0.25);
  background: #fff;
}

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-cyan), var(--brand-blue));
}

.hero-panel {
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metrics-band {
  padding-top: 0;
}

.home-hero {
  padding-bottom: 28px;
}

.home-metrics {
  padding-top: 8px;
  padding-bottom: 40px;
}

.home-offer {
  padding-top: 36px;
}

.home-about {
  padding-top: 44px;
  border-top: 0;
  padding-bottom: 24px;
}

.home-about .container {
  padding-top: 0;
}

.home-separator {
  height: 48px;
  background: #ffffff;
}

.home-news {
  padding-top: 44px;
  border-top: 0;
}



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

.stats-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  font-weight: 700;
}

.stat-label {
  margin: 10px 0 0;
  color: var(--muted);
}

.panel-title {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--brand-navy);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel .list-check li {
  color: var(--brand-navy);
}

.hero-panel .list-check li::before {
  background: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(35, 38, 82, 0.12);
}

.hero-panel img,
.rounded-media {
  margin-top: 18px;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 360px;
}

.home-hero .hero-panel img {
  max-height: 235px;
}

.team-hero {
  padding-bottom: 40px;
}

.team-horizon-section {
  padding-top: 40px;
  padding-bottom: 42px;
}

.team-horizon-note {
  margin-top: -2px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.team-horizon-section h2 {
  max-width: 100%;
}

.team-collective-section {
  padding-top: 48px;
  padding-bottom: 44px;
}

.team-leadership-section {
  padding-top: 42px;
  padding-bottom: 40px;
}

.team-leadership-grid {
  align-items: start;
}

.leader-card {
  text-align: left;
}

.leader-photo {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 14px;
}

.leader-name {
  text-align: center;
}

.team-ops-section {
  padding-top: 34px;
  padding-bottom: 52px;
}

.offer-hero {
  padding-bottom: 34px;
}

.offer-hero-copy {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 64ch;
}

.enterprise-hero-section h1 {
  max-width: none;
}

.enterprise-hero-section {
  padding-bottom: 34px;
}

.enterprise-why-section {
  padding-top: 34px;
}

.enterprise-why-grid h3 {
  font-size: 1.32rem;
}

.enterprise-why-card-center {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

.enterprise-trust-block {
  margin-top: 20px;
}

.esn-process-section {
  padding-top: 34px;
}

.offer-engagement-panel img {
  max-height: 250px;
}

.offer-cycle-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.offer-cycle-section .rounded-media {
  margin-top: 12px;
  max-height: 300px;
}

.offer-mission-section {
  padding-top: 42px;
  padding-bottom: 38px;
}

.offer-ia-section {
  padding-top: 36px;
  padding-bottom: 34px;
}

.offer-impact-section {
  padding-top: 38px;
  padding-bottom: 24px;
}

.offer-impact-section .cta-strip {
  margin-bottom: 0;
}

.cards-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.process-banner {
  margin-top: 20px;
  border: 1px solid rgba(35, 38, 82, 0.22);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}

.process-banner strong {
  color: var(--brand-navy);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  color: var(--brand-navy);
}

.card h3,
.card p {
  color: var(--brand-navy);
}

#valeurs .cards-grid {
  align-items: stretch;
}

#valeurs .card {
  text-align: center;
  padding: 30px 24px;
}

#valeurs .card h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

#valeurs .card p {
  text-align: center;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.card p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.list-check {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-check li {
  padding-left: 28px;
  position: relative;
  text-align: left;
}

.list-check li::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 0;
  top: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand-cyan), var(--brand-blue));
  box-shadow: 0 0 0 3px rgba(39, 168, 183, 0.12);
}

.cta-strip {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
}

.cta-strip-center {
  justify-content: center;
}

.cta-strip-center .btn {
  min-width: 240px;
}

.offer-cta-center {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.cta-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-accordion {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 16px 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--muted);
}

.timeline {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}

.timeline li strong {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--brand-navy);
}

.timeline li p {
  margin: 0;
  color: var(--muted);
  text-align: left;
}

.contact-hero {
  max-width: 800px;
}

.contact-intro-section {
  padding-bottom: 30px;
}

.contact-intro {
  max-width: 62ch;
  color: var(--muted);
}

.contact-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
}

.contact-form-section {
  padding-top: 24px;
}

.contact-form-section .contact-grid {
  margin-top: 8px;
}

.contact-form-section .contact-grid {
  grid-template-columns: 1fr;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-inline-note {
  margin-top: 6px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-inline-note a {
  color: var(--brand-navy);
}

.freelance-path-section {
  padding-top: 14px;
}

.contact-form,
.contact-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.form-status {
  margin: 0 0 8px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
}

.form-status.is-success {
  border: 1px solid rgba(26, 130, 84, 0.35);
  background: rgba(226, 247, 238, 0.95);
  color: #175f3f;
}

.form-status.is-error {
  border: 1px solid rgba(170, 61, 61, 0.35);
  background: rgba(253, 237, 237, 0.98);
  color: #7e2323;
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 8px;
}

.consent-line input {
  width: auto;
  margin-top: 3px;
}

.consent-line label {
  margin-top: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 14px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logos-scroll 24s linear infinite;
}

.logo-item {
  margin: 0 8px;
  padding: 6px 10px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 0;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-item img {
  max-height: 40px;
  max-width: 148px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

label {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cfd5eb;
  padding: 12px;
  font: inherit;
  background: #fcfdff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(39, 168, 183, 0.28);
  border-color: var(--brand-cyan);
}

.small {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-info hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0;
}

.news-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.card,
.timeline li,
.news-card,
.contact-form,
.contact-info,
.cta-strip,
.stats-grid article {
  box-shadow: var(--shadow);
}

.news-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.news-tag {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(35, 38, 82, 0.25);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(35, 38, 82, 0.75);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--brand-navy);
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer .footer-grid > div:first-child p {
  margin-top: 34px;
}

.site-footer .brand {
  color: #ffffff;
}

.site-footer .brand-mark {
  filter: brightness(0) invert(1);
}

.footer-grid {
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 26px;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links {
  margin: 0;
  padding: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-note p {
  text-align: left;
}

.contact-inline-note {
  text-align: center;
}

.legal-compact h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.legal-compact p {
  margin-bottom: 8px;
}

.legal-compact p:last-child {
  margin-bottom: 0;
}

.no-reveal {
  opacity: 1;
  transform: none;
}

.leader-photo {
  object-position: center top;
}

.tom-photo {
  object-position: center 18%;
}

.center-card {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-note a {
  color: #ffffff;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cards-grid-3,
  .stats-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 124px;
    left: 200px;
    right: 0;
    display: none;
    padding: 14px 4vw 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: grid;
    gap: 12px;
  }

  .main-nav a {
    width: fit-content;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: fit-content;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 8px;
    background: #fff;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .home-hero {
    padding-bottom: 24px;
  }

  .home-metrics {
    padding-top: 6px;
    padding-bottom: 28px;
  }

  .home-offer {
    padding-top: 24px;
  }

  .contact-intro-section {
    padding-bottom: 20px;
  }

  .contact-form-section {
    padding-top: 18px;
  }

  .home-about {
    padding-top: 0;
    padding-bottom: 26px;
  }

  .home-news {
    padding-top: 22px;
  }

  .team-horizon-section {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  .team-collective-section,
  .team-leadership-section {
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .team-ops-section {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .enterprise-hero-section,
  .enterprise-why-section,
  .esn-process-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .enterprise-why-card-center {
    max-width: 100%;
  }

  .center-card {
    max-width: 100%;
  }

  .freelance-path-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .offer-hero {
    padding-bottom: 24px;
  }

  .offer-cycle-section,
  .offer-mission-section,
  .offer-ia-section,
  .offer-impact-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
