/* ================================
   MMS EXPERTISE — Stylesheet v2
   ================================ */

:root {
  --color-primary: #1B4847;
  --color-primary-dark: #0F2E2D;
  --color-primary-light: #2A6A68;
  --color-secondary: #358B89;
  --color-secondary-soft: #E8F1F1;
  --color-accent: #C99A2E;
  --color-accent-light: #E5BD5B;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F5F0;
  --color-bg-dark: #0F2E2D;
  --color-text: #1A2424;
  --color-text-muted: #5C6E6D;
  --color-border: #E5E2DA;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1220px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 8px rgba(15, 46, 45, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 46, 45, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 46, 45, 0.12);
  --shadow-primary: 0 16px 40px rgba(27, 72, 71, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ================================
   HEADER
   ================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 226, 218, 0.6);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo { height: 54px; width: auto; display: block; transition: var(--transition); }
.logo-link:hover .logo { transform: scale(1.03); }

.main-nav { display: flex; gap: 36px; align-items: center; }

.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: var(--transition);
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.main-nav a:hover { color: var(--color-primary); }

.nav-cta {
  background: var(--color-primary);
  color: white !important;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--color-primary); transition: var(--transition); }

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(53, 139, 137, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 154, 46, 0.04), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F5F0 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--color-secondary-soft);
  border-radius: 100px;
}

.eyebrow.centered { text-align: center; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-primary-dark);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero h1 .accent {
  color: var(--color-primary);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 6px; left: 0;
  width: 100%; height: 10px;
  background: var(--color-accent-light);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
  max-width: 640px;
}

.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-primary); font-weight: 600; line-height: 1.2; }
.hero-stats span { font-size: 12.5px; color: var(--color-text-muted); margin-top: 6px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.95);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 72, 71, 0.35) 0%, rgba(15, 46, 45, 0.1) 100%);
  mix-blend-mode: multiply;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-border);
}

.floating-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.05); }
}

.floating-label { font-size: 11px; color: var(--color-text-muted); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; }
.floating-value { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-primary); font-weight: 600; line-height: 1; }

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-primary); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-ghost:hover { background: var(--color-primary); color: white; transform: translateY(-2px); }

.btn-full { width: 100%; }

/* ================================
   SECTIONS
   ================================ */
.section { padding: 120px 0; position: relative; }

.section-services { background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF7 100%); }
.section-domains { background: var(--color-bg-alt); }
.section-methode {
  background:
    radial-gradient(ellipse at top right, rgba(53, 139, 137, 0.06), transparent 60%),
    #FFFFFF;
}
.section-about { background: var(--color-bg-alt); position: relative; overflow: hidden; }
.section-contact { background: linear-gradient(180deg, #FFFFFF 0%, #F7F5F0 100%); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-head .eyebrow { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ================================
   SERVICES — Cards modernes
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -1px;
}

.service-tag {
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  padding: 6px 12px;
  background: var(--color-secondary-soft);
  border-radius: 100px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 14.5px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-bullets {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.service-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--color-text);
  font-weight: 500;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--color-secondary);
}

/* ================================
   DOMAINES
   ================================ */
.domains-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto 60px;
}

.domain-pill {
  background: white;
  padding: 28px 16px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.domain-pill svg {
  width: 32px;
  height: 32px;
  color: var(--color-secondary);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.domain-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.domain-pill:hover svg {
  color: var(--color-primary);
  transform: scale(1.1);
}

.domain-pill span {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: 0.2px;
}

.domains-clients {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  max-width: 900px;
  margin: 0 auto;
}

.clients-label {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.clients-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.clients-tags span {
  background: white;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
}

/* ================================
   METHODE — Process
   ================================ */
.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
}

.methode-grid::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0, var(--color-border) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.methode-step {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.methode-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.methode-step--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-primary);
}

.methode-step--accent h3 { color: white; }
.methode-step--accent p { color: rgba(255, 255, 255, 0.85); }
.methode-step--accent .step-num { color: var(--color-accent-light); }
.methode-step--accent .step-tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.methode-step--accent p strong { color: var(--color-accent-light); }

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.step-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  padding: 5px 11px;
  background: var(--color-secondary-soft);
  border-radius: 100px;
}

.methode-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.methode-step p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.methode-step p strong { color: var(--color-primary); font-weight: 600; }

/* Highlight strip */
.methode-highlight {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: white;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.highlight-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.highlight-label {
  font-size: 12.5px;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}

.highlight-divider {
  width: 1px;
  height: 50px;
  background: var(--color-border);
}

/* ================================
   ABOUT
   ================================ */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
}

.about-portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.portrait-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 46, 45, 0.25) 100%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: white;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  border: 1px solid var(--color-border);
}

.about-signature {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 3;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
}

.signature-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  opacity: 0.95;
  flex-shrink: 0;
}

.sig-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.sig-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: 1;
}

.about-visual::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  opacity: 0.4;
  z-index: 1;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.badge-label {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.3;
  font-weight: 500;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--color-text);
  margin-bottom: 18px;
  font-weight: 500;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-content p strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-experiences {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.exp-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 14px !important;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-tags span {
  background: white;
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--color-primary);
  font-weight: 600;
}

.about-content .btn {
  margin-top: 8px;
}

/* ================================
   CONTACT
   ================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.contact-intro > p {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-direct {
  padding: 24px 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px !important;
  font-weight: 600;
}

.contact-direct a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-direct a:hover { text-decoration: underline; }

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.perk-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--color-secondary-soft);
}

.contact-form {
  background: white;
  padding: 44px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.3px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #FAFAF7;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(27, 72, 71, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 36px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  opacity: 0.4;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
  opacity: 0.95;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover { color: white; padding-left: 6px; }

.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-legal a.muted {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-legal a.muted:hover { color: white; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .domains-row { grid-template-columns: repeat(3, 1fr); }
  .methode-grid { grid-template-columns: repeat(2, 1fr); }
  .methode-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .menu-toggle { display: flex; }
  .hero { padding: 60px 0 80px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 60px; }
  .about-wrapper,
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .methode-highlight { flex-direction: column; gap: 24px; padding: 28px; }
  .highlight-divider { width: 50px; height: 1px; }
  .contact-form { padding: 28px; }
}

@media (max-width: 600px) {
  .domains-row { grid-template-columns: repeat(2, 1fr); }
  .methode-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
