/* ============================================================
   IvoryGold Consulting — styles.css
   Clean consolidated theme
   Design: premium boutique advisory · ivory / gold / warm brown
   ============================================================ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Brand */
  --gold: #B58B27;
  --gold-light: #D0AF55;
  --gold-soft: rgba(181, 139, 39, 0.14);

  /* Backgrounds */
  --bg-main: #F0E5D7;
  --bg-alt: #F8F0E5;
  --bg-panel: #E2D1BB;
  --surface: #FFF8EE;
  --surface-hover: #FDF2E3;

  /* Text */
  --text-main: #241F18;
  --text-body: #352D24;
  --text-muted: #5F5448;
  --text-soft: #71665A;
  --text-on-dark: #FFF8E8;
  --text-on-gold: #241F1A;

  /* Lines / depth */
  --border: rgba(181, 139, 39, 0.20);
  --border-soft: rgba(181, 139, 39, 0.10);
  --shadow: 0 16px 38px rgba(43, 36, 29, 0.10);

  /* Type */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.5rem, 5vw, 5rem);
  --section-pad: clamp(4.5rem, 8vw, 7rem);
  --nav-height: 72px;
  --banner-height: 54px;
  --fixed-header-height: calc(var(--banner-height) + var(--nav-height));

  /* Effects */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  padding-top: var(--fixed-header-height);
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  color: var(--text-main);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.55rem, 5.5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

em {
  color: var(--gold);
  font-style: italic;
}

p {
  color: var(--text-body);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.82;
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

section {
  padding-block: var(--section-pad);
  border-bottom: 1px solid rgba(181, 139, 39, 0.08);
}

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

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

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

.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.stag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.divider {
  width: 48px;
  height: 1px;
  margin: 1.6rem auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── SHARED COMPONENTS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.btn-gold,
.btn-primary {
  background: var(--gold);
  color: var(--text-on-gold) !important;
}

.btn-gold:hover,
.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline,
.btn-secondary {
  background: var(--surface);
  border-color: var(--gold);
  color: #4A3824;
}

.btn-outline:hover,
.btn-secondary:hover {
  background: var(--gold-light);
  color: var(--text-on-gold);
}

.btn-gold [data-lucide],
.btn-primary [data-lucide],
.nav-cta [data-lucide],
.btn-gold i,
.btn-primary i {
  stroke: currentColor !important;
}

[data-lucide] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

[data-lucide].icon-sm {
  width: 16px;
  height: 16px;
}

[data-lucide].icon-md {
  width: 22px;
  height: 22px;
}

[data-lucide].icon-lg {
  width: 28px;
  height: 28px;
}

[data-lucide].icon-white {
  stroke: var(--text-on-dark);
}

[data-lucide].icon-muted {
  stroke: var(--text-muted);
}

.card,
.entity-card,
.offre-card,
.sap-benefit,
.mod-card,
.odoo-approach,
.odoo-step,
.omod,
.diff-card,
.eng-card,
.kcard,
.pill-card,
.gdm-block,
.mkt-card,
.lead-fact,
.event-hero,
.event-image-card,
.event-qr,
.modal-content {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* ── EVENT TOP BANNER ─────────────────────────────────────── */
.event-top-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 260;
  min-height: var(--banner-height);
  background: linear-gradient(90deg, #2B2114 0%, #4A371C 48%, #2B2114 100%);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
}

.event-top-banner,
.event-top-banner p,
.event-top-copy span,
.event-top-details {
  color: var(--text-on-dark);
}

.event-top-banner-inner {
  width: 100%;
  max-width: var(--container-max);
  min-height: var(--banner-height);
  margin: 0 auto;
  padding: 0.65rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.event-top-banner-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.event-top-label {
  flex-shrink: 0;
  padding: 0.22rem 0.58rem;
  background: #E8C66A;
  border: 1px solid rgba(255, 248, 232, 0.45);
  color: #2B2114;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-top-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.event-top-copy strong {
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}

.event-top-copy span {
  color: #F4E8CC;
  font-size: 0.78rem;
  line-height: 1.45;
}

.event-top-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
}

.event-top-details span {
  position: relative;
  white-space: nowrap;
}

.event-top-details span + span::before {
  content: "·";
  position: absolute;
  left: -0.48rem;
  color: #E8C66A;
}

.event-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.45rem 0.8rem;
  background: #FFF8E8;
  border: 1px solid rgba(232, 198, 106, 0.6);
  color: #2B2114;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.event-top-link i,
.event-top-link [data-lucide] {
  stroke: currentColor;
}

.event-top-link:hover {
  background: #E8C66A;
  color: #2B2114;
  transform: translateY(-1px);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  right: 0;
  z-index: 250;
  height: var(--nav-height);
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 237, 224, 0.96);
  border-bottom: 1px solid rgba(184, 144, 46, 0.20);
  box-shadow: 0 2px 18px rgba(42, 36, 30, 0.08);
  backdrop-filter: blur(12px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: auto;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.nav-mobile a {
  color: var(--text-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

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

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--text-on-gold) !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-mobile {
  position: fixed;
  top: var(--fixed-header-height);
  left: 0;
  right: 0;
  z-index: 240;
  display: none;
  max-height: calc(100vh - var(--fixed-header-height));
  overflow-y: auto;
  padding: 2rem var(--container-pad);
  background: rgba(246, 237, 224, 0.98);
  border-bottom: 1px solid rgba(184, 144, 46, 0.20);
  box-shadow: 0 18px 36px rgba(42, 36, 30, 0.12);
  backdrop-filter: blur(12px);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: calc(100vh - var(--fixed-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-on-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=1600&q=80') center / cover no-repeat;
  filter: brightness(0.50) saturate(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(32, 27, 22, 0.82) 0%,
    rgba(32, 27, 22, 0.62) 50%,
    rgba(240, 229, 215, 0.14) 100%
  );
}

.hero-vline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--container-pad);
  z-index: 2;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

#hero h1,
#hero .hero-tag,
#hero .hero-desc {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

#hero h1 {
  margin-bottom: 1.4rem;
  color: var(--text-on-dark);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease) forwards;
}

#hero em {
  color: var(--gold-light);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-desc {
  max-width: 500px;
  margin-bottom: 2.8rem;
  color: #F0E6D5;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.76;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease) forwards;
}

.hero-stats {
  position: absolute;
  right: clamp(1.5rem, 8vw, 8rem);
  bottom: 8vh;
  z-index: 3;
  display: flex;
  gap: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s 1s var(--ease) forwards;
}

.stat-n {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.stat-l {
  margin-top: 0.3rem;
  color: #D8CFC2;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── SECTION BACKGROUNDS ──────────────────────────────────── */
#offres,
#sap,
#approach,
#leadership,
#markets {
  background: var(--bg-main);
}

#about,
#audience,
#odoo,
#engagements,
#partenaires,
#contact {
  background: var(--bg-alt);
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-text p {
  margin-bottom: 1rem;
}

.entity-card {
  padding: 2rem;
}

.entity-card-title {
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.entity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(181, 139, 39, 0.08);
  color: var(--text-body);
  font-weight: 400;
}

.entity-list li:last-child {
  border-bottom: none;
}

.entity-name {
  margin-bottom: 0.12rem;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
}

.entity-addr {
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.entity-label {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(181, 139, 39, 0.3);
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── OFFRES ───────────────────────────────────────────────── */
.offres-bg {
  background: rgba(181, 139, 39, 0.14);
}

.offre-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.8rem;
  transition: background 0.3s ease;
}

.offre-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offre-card:hover {
  background: var(--surface-hover);
}

.offre-card:hover::before {
  opacity: 1;
}

.offre-num {
  margin-bottom: 0.7rem;
  color: rgba(181, 139, 39, 0.22);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.offre-icon {
  margin-bottom: 0.85rem;
}

.offre-title {
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.offre-desc {
  color: var(--text-muted);
  font-size: 0.79rem;
  font-weight: 400;
  line-height: 1.68;
}

.offre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.1rem;
}

.tag {
  padding: 0.16rem 0.52rem;
  border: 1px solid rgba(181, 139, 39, 0.2);
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── AUDIENCE ─────────────────────────────────────────────── */
.tabs-bar {
  display: flex;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: -1px;
  padding: 0.85rem 1.6rem;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.tab-btn.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.panel-img,
.sap-img,
.odoo-photo,
.mkt-img {
  filter: brightness(0.82) sepia(0.06) saturate(0.96);
}

.panel-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.panel-label {
  margin-bottom: 0.7rem;
  color: var(--text-soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.panel-title {
  margin-bottom: 1.1rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.panel-body {
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 400;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 400;
}

.panel-list li::before {
  content: '→';
  flex-shrink: 0;
  margin-top: 0.05em;
  color: var(--gold);
}

.panel-quote {
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  background: var(--surface-hover);
  border-left: 2px solid var(--gold);
}

.panel-quote p {
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.panel-quote cite {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── SAP ──────────────────────────────────────────────────── */
.sap-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.sap-caption {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 400;
}

.sap-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.sap-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-left: 1px solid rgba(181, 139, 39, 0.3);
}

.sap-benefit-title {
  margin-bottom: 0.15rem;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
}

.sap-benefit-desc {
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 400;
  line-height: 1.55;
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5px;
  margin-top: 3.5rem;
  background: rgba(181, 139, 39, 0.14);
}

.mod-domain {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 1.4rem;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}

.mod-domain-label {
  color: var(--text-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mod-domain-line {
  flex: 1;
  height: 1px;
  background: rgba(181, 139, 39, 0.14);
}

.mod-card {
  padding: 1.5rem;
  transition: background 0.25s ease;
}

.mod-card:hover {
  background: var(--surface-hover);
}

.mod-name {
  margin-bottom: 0.2rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

.mod-label {
  margin-bottom: 0.4rem;
  color: var(--text-soft);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mod-desc {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ── ODOO ─────────────────────────────────────────────────── */
.odoo-logo-wrap {
  margin-bottom: 1.8rem;
}

.odoo-logo-wrap img {
  width: auto;
  height: 68px;
  padding: 10px 16px;
  background: var(--surface);
  border-radius: 3px;
}

.odoo-text p {
  margin-bottom: 1rem;
}

.odoo-approach {
  margin-top: 1.8rem;
  padding: 1.7rem;
  background: linear-gradient(135deg, rgba(113, 75, 103, 0.08), rgba(255, 248, 238, 0.78));
  border-color: rgba(113, 75, 103, 0.22);
}

.odoo-approach-tag {
  margin-bottom: 0.65rem;
  color: #9C6385;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.odoo-approach-title {
  margin-bottom: 0.85rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}

.odoo-approach p {
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
}

.odoo-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.odoo-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-left: 1px solid rgba(181, 139, 39, 0.22);
}

.step-num {
  flex-shrink: 0;
  width: 22px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.step-title {
  margin-bottom: 0.18rem;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.58;
}

.odoo-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 1.4rem;
}

.odoo-mods-title {
  margin: 3rem 0 1.2rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.odoo-mods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5px;
  background: rgba(181, 139, 39, 0.14);
}

.omod {
  padding: 1.2rem;
  transition: background 0.25s ease;
}

.omod:hover {
  background: var(--surface-hover);
}

.omod-name {
  margin-bottom: 0.2rem;
  color: var(--text-main);
  font-size: 0.77rem;
  font-weight: 600;
}

.omod-desc {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.55;
}

/* ── APPROACH ─────────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(181, 139, 39, 0.14);
}

.diff-card {
  padding: 2rem 1.8rem;
  transition: background 0.25s ease;
}

.diff-card:hover {
  background: var(--surface-hover);
}

.diff-title {
  margin: 0.85rem 0 0.5rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.diff-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.68;
}

/* ── ENGAGEMENTS ──────────────────────────────────────────── */
.eng-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(181, 139, 39, 0.14);
}

.eng-card {
  padding: 1.8rem;
  transition: background 0.25s ease;
}

.eng-card:hover {
  background: var(--surface-hover);
}

.eng-card.placeholder {
  background: var(--bg-panel);
  border-style: dashed;
}

.eng-client {
  margin-bottom: 0.25rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.eng-sector {
  margin-bottom: 0.85rem;
  color: var(--text-soft);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eng-scope {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.65;
}

.eng-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 1rem;
}

.eng-tag {
  padding: 0.14rem 0.48rem;
  border: 1px solid rgba(181, 139, 39, 0.18);
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eng-note {
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-style: italic;
  text-align: center;
}

/* ── LEADERSHIP ───────────────────────────────────────────── */
.lead-wrap {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.lead-photo-wrap {
  position: relative;
}

.lead-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(0.9) sepia(0.05) saturate(0.96);
}

.lead-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(32, 27, 22, 0.82), transparent);
}

.lead-caption .lead-name,
.lead-name {
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.lead-caption .lead-name {
  color: var(--text-on-dark);
}

.lead-role {
  margin-top: 0.18rem;
  color: var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-bio p {
  margin-bottom: 0.9rem;
}

.lead-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5px;
  margin-top: 2rem;
  background: rgba(181, 139, 39, 0.14);
}

.lead-fact {
  padding: 1.2rem;
}

.lead-fact-label {
  margin-bottom: 0.38rem;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-fact-value {
  color: var(--text-main);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ── PARTNERS ─────────────────────────────────────────────── */
.part-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.kcard {
  margin-bottom: 1.8rem;
  padding: 2rem;
  background: var(--bg-panel);
}

.kname {
  margin-bottom: 0.2rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ksub {
  margin-bottom: 1.2rem;
  color: var(--text-soft);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kdesc {
  font-size: 0.83rem;
  line-height: 1.78;
}

.kurl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.kurl:hover {
  opacity: 0.65;
}

.pills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5px;
  background: rgba(181, 139, 39, 0.14);
}

.pill-card {
  padding: 1.5rem;
}

.pill-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.35rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
}

.pill-desc {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.62;
}

.gdm-block {
  margin-top: 1.8rem;
  padding: 2rem;
  background: linear-gradient(135deg, #FFFFFF, #F3E8D8);
}

.gdm-title {
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.gdm-sub {
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gdm-body {
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.81rem;
  font-weight: 400;
}

.gdm-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gdm-col {
  padding-left: 1rem;
  border-left: 1px solid rgba(181, 139, 39, 0.25);
}

.gdm-col-title {
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-size: 0.77rem;
  font-weight: 600;
}

.gdm-col-desc {
  color: var(--text-muted);
  font-size: 0.71rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ── MARKETS ──────────────────────────────────────────────── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.mkt-card {
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.mkt-card:hover {
  background: var(--surface-hover);
  border-color: rgba(181, 139, 39, 0.28);
}

.mkt-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.mkt-body {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem;
}

.mkt-name {
  margin-bottom: 0.3rem;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.mkt-desc {
  color: var(--text-muted);
  font-size: 0.77rem;
  font-weight: 400;
  line-height: 1.62;
}

/* ── EVENT SECTION ────────────────────────────────────────── */
#event {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
}

.event-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.event-header-text {
  max-width: 720px;
}

.event-header-text h2 {
  margin-bottom: 1rem;
}

.event-header-text > p {
  margin-bottom: 1.8rem;
  color: var(--text-body);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-body);
  font-size: 0.95rem;
}

.event-meta-item i,
.event-meta-item [data-lucide] {
  flex-shrink: 0;
  stroke: var(--gold);
}

.event-qr {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
}

.event-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
}

.event-hero img {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-image-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.event-image-card:hover {
  background: var(--surface-hover);
  border-color: rgba(181, 139, 39, 0.28);
  transform: translateY(-2px);
}

.event-image-card img {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  object-fit: contain;
  background: var(--bg-panel);
  border-radius: var(--radius-md);
}

.image-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(181, 139, 39, 0.10);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.event-image-card:hover .image-overlay,
.event-image-card:focus .image-overlay {
  opacity: 1;
}

.image-overlay i,
.image-overlay [data-lucide] {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.event-details {
  max-width: 720px;
  color: var(--text-body);
}

.event-details h3 {
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.event-details ul {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.event-details li {
  color: var(--text-body);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.7;
}

.event-cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.event-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(181, 139, 39, 0.2);
  color: var(--text-on-gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.event-register-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(181, 139, 39, 0.3);
  transform: translateY(-2px);
}

.event-register-btn i,
.event-register-btn [data-lucide] {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ── MODAL ────────────────────────────────────────────────── */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-modal.open {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 27, 22, 0.72);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(90vw, 900px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.25s ease;
}

.modal-close:hover {
  background: rgba(181, 139, 39, 0.12);
}

.modal-image {
  margin-bottom: 1rem;
}

.modal-image:last-child {
  margin-bottom: 0;
}

.modal-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
}

/* ── CONTACT ──────────────────────────────────────────────── */
#contact {
  text-align: center;
}

.contact-sub {
  max-width: 460px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 400;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: var(--gold);
}

.offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.office {
  text-align: center;
}

.office-city {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.22rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.office-type {
  margin-bottom: 0.35rem;
  color: var(--text-soft);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.office-addr {
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--container-pad);
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}

.footer-logo img {
  width: auto;
  height: 28px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-badge {
  padding: 0.22rem 0.65rem;
  background: rgba(255, 248, 238, 0.36);
  border: 1px solid rgba(181, 139, 39, 0.24);
  color: var(--text-soft);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-badge span {
  color: var(--gold);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-main);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: var(--gold);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2,
  .lead-wrap,
  .part-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lead-photo {
    aspect-ratio: 16 / 9;
  }

  .event-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-qr {
    width: 180px;
    height: 180px;
  }

  .event-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .mods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .odoo-mods,
  .diff-grid,
  .eng-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    position: static;
    justify-content: flex-start;
    margin-top: 3rem;
  }

  .gdm-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --banner-height: 86px;
    --nav-height: 68px;
    --section-pad: 4.5rem;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .event-top-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.45rem;
    padding-block: 0.55rem;
  }

  .event-top-banner-main {
    width: 100%;
    align-items: flex-start;
  }

  .event-top-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .event-top-copy strong {
    font-size: 0.95rem;
    white-space: normal;
  }

  .event-top-copy span {
    font-size: 0.72rem;
  }

  .event-top-details {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: calc(0.58rem * 2 + 0.85rem);
  }

  .event-top-details span + span::before {
    content: none;
  }

  .event-top-link {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-mobile {
    padding-block: 1.5rem;
  }

  #hero {
    min-height: calc(100vh - var(--fixed-header-height));
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .tabs-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding-inline: 1.1rem;
  }

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

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

  .event-meta {
    gap: 0.6rem;
  }

  .modal-content {
    width: 95vw;
    padding: 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  :root {
    --container-pad: 1.15rem;
    --banner-height: 96px;
  }

  section {
    padding-block: 4rem;
  }

  .grid-3,
  .mods-grid,
  .diff-grid,
  .eng-grid,
  .pills-grid,
  .lead-facts,
  .markets-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 1rem;
  }

  .stat-n {
    font-size: 2.1rem;
  }

  .event-top-banner-main {
    gap: 0.6rem;
  }

  .event-top-label {
    font-size: 0.5rem;
    padding-inline: 0.45rem;
  }

  .event-top-details {
    padding-left: 0;
    font-size: 0.66rem;
  }

  .event-header {
    margin-bottom: 2rem;
  }

  .event-qr {
    width: 150px;
    height: 150px;
  }

  .event-register-btn {
    width: 100%;
    justify-content: center;
    padding-inline: 1.25rem;
    font-size: 0.82rem;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .offices {
    gap: 2.5rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  :root {
    --banner-height: 112px;
  }

  .grid-4,
  .odoo-mods {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    padding-inline: 1rem;
  }
}

/* Add these utility rules to styles.css if they are not already present */
.section-action {
  margin-top: 2rem;
}

.section-grid {
  margin-top: 2.5rem;
}

.offres-grid {
  margin-top: 3rem;
  background: rgba(181, 139, 39, 0.14);
}

.offre-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
  text-align: center;
}

.offre-card-cta p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.btn-small {
  min-height: 36px;
  padding: 0.65rem 1.2rem;
  font-size: 0.66rem;
}

.tabs-bar-spaced {
  margin-top: 2.5rem;
}

.odoo-method-label {
  margin: 1.4rem 0 0.9rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.part-intro {
  margin-bottom: 1.8rem;
}

.stag-centered {
  justify-content: center;
}
