/* ============================================================
   style.css – ManageComplexity
   Globale Styles: Reset, Variablen, Header, Footer, Layout
   ============================================================ */

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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-height); /* Platz für fixed Header */
}

/* ----------------------------------------------------------
   CSS VARIABLEN
   Hier zentral alle Farben und Maße anpassen
   ---------------------------------------------------------- */
:root {
  /* Header */
  --header-bg:        #0d0d0d;
  --header-height:    80px;
  --nav-text:         #e0e0e0;
  --nav-active:       #ffffff;
  --dropdown-bg:      #1a1a1a;
  --dropdown-hover:   #2a2a2a;
  --mobile-menu-bg:   #111111;

  /* Footer */
  --footer-bg:            #0d0d0d;
  --footer-text:          #aaaaaa;
  --footer-heading-color: #ffffff;
  --footer-border:        rgba(255, 255, 255, 0.1);

  /* Global Akzentfarbe */
  --accent: #2ec4b6;

  /* Content-Variablen */
  --sans:  'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Libre Baskerville', Georgia, serif;
  --ink:   #1e2d3d;
  --slate: #5c6f82;
  --gold:  #b8860b;
  --white: #ffffff;
}

/* ----------------------------------------------------------
   LAYOUT HELPER
   ---------------------------------------------------------- */
main {
  flex: 1; /* Drückt Footer nach unten */
}

/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */
/* Header: fixed so transform + scroll-hide works in all browsers */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header {
  background: var(--header-bg);
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Offset body so content starts below the fixed header */
body {
  padding-top: var(--header-height);
}

/* Schatten sobald nicht mehr ganz oben */
.site-header.header-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Beim Runterscrollen verstecken, beim Hochscrollen sofort zeigen */
.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Nav */
.main-nav {
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--nav-active);
}

/* Teal-Unterstrich beim aktiven Link */
.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Chevron */
.chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  list-style: none;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  background: var(--dropdown-bg);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  background: var(--dropdown-hover);
  color: #fff;
}

/* Header Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--nav-text);
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: #fff;
}

/* Hamburger */
.hamburger-btn {
  flex-direction: column;
  gap: 4px;
  display: none;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--mobile-menu-bg);
  padding: 1rem 2rem 2rem;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-links > li > a,
.mobile-dropdown-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.9rem 0;
  color: var(--nav-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.mobile-dropdown {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  list-style: none;
}

.mobile-dropdown.is-open {
  display: block;
}

.mobile-dropdown li a {
  display: block;
  padding: 0.5rem 0;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-heading {
  color: var(--footer-heading-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer-text {
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-address {
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.9;
  font-style: normal;
  margin-bottom: 0.75rem;
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.75;
}

.footer-info-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Social Buttons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0077b5;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.social-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--footer-border);
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-link {
  color: var(--footer-heading-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.footer-copyright {
  color: var(--footer-text);
  font-size: 0.85rem;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .main-nav   { display: none; }
  .hamburger-btn { display: flex; }
  .search-btn { display: none; }
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}








/* Ergänzt den body-Reset oben mit Content-Schrift */
body { font-family: var(--sans); color: var(--ink); font-size: 16px; }

.mc-container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.mc-section    { padding: 96px 0; }
.mc-label      { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.mc-serif-h2   { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--ink); line-height: 1.22; }
.mc-serif-h2 em { font-style: italic; color: var(--gold); }
.mc-body-text  { font-size: 15px; color: var(--slate); line-height: 1.85; }

/* HERO */
.mc-hero {
  background: #111820;
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.mc-hero::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.10);
  pointer-events: none;
}
.mc-hero::after {
  content: '';
  position: absolute; right: 80px; top: 60px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.06);
  pointer-events: none;
}
.mc-hero .mc-container { position: relative; z-index: 1; }
.mc-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,134,11,0.14);
  border: 1px solid rgba(184,134,11,0.28);
  color: #d4a72c; font-size: 11px;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 2px; margin-bottom: 36px;
}
.mc-hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 58px; font-weight: 400;
  color: #ffffff; line-height: 1.12; max-width: 680px; margin-bottom: 28px;
}
.mc-hero h1 em { font-style: italic; color: #d4a72c; }
.mc-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.58);
  line-height: 1.85; max-width: 540px; margin-bottom: 44px;
}
.mc-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.mc-btn-primary {
  background: #b8860b; color: #111820;
  padding: 15px 36px; border-radius: 2px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  display: inline-block;
}
.mc-btn-ghost {
  color: rgba(255,255,255,0.60); font-size: 14px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.mc-btn-ghost::after { content: '→'; }
.mc-hero-stats {
  margin-top: 72px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  max-width: 720px;
}
.mc-stat-val {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 38px; font-weight: 400; color: #ffffff;
}
.mc-stat-label { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 4px; }

/* AUTHORITIES STRIP */
.mc-auth-strip { background: #f2f5f7; padding: 24px 0; border-bottom: 1px solid rgba(30,45,61,0.10); }
.mc-auth-strip .mc-container { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.mc-auth-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #5c6f82; white-space: nowrap; }
.mc-auth-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.mc-auth-tag {
  background: #ffffff; border: 1px solid rgba(30,45,61,0.10);
  border-radius: 2px; padding: 7px 18px;
  font-size: 12px; font-weight: 500; color: #1e2d3d;
}

/* PHILOSOPHY */
.mc-philosophy { background: #ffffff; }
.mc-philosophy .mc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mc-philosophy-text .mc-serif-h2 { margin-bottom: 24px; }
.mc-philosophy-text .mc-body-text { margin-bottom: 20px; }
.mc-quote {
  border-left: 3px solid #b8860b;
  padding: 20px 28px; margin-top: 32px;
  background: #f5edda; border-radius: 0 4px 4px 0;
}
.mc-quote p { font-family: 'Libre Baskerville', Georgia, serif; font-style: italic; font-size: 16px; color: #1e2d3d; line-height: 1.75; }
.mc-phil-visual {
  background: #111820; border-radius: 4px; padding: 48px 40px; position: relative; overflow: hidden;
}
.mc-phil-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.15); pointer-events: none;
}
.mc-pv-list { list-style: none; }
.mc-pv-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7;
}
.mc-pv-list li:last-child { border-bottom: none; }
.mc-pv-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(184,134,11,0.18); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 13px; color: #d4a72c;
}

/* OFFERS */
.mc-offers { background: #f2f5f7; }
.mc-offers-header { text-align: center; margin-bottom: 64px; }
.mc-offers-header .mc-serif-h2 { max-width: 560px; margin: 0 auto 16px; }
.mc-offers-header .mc-body-text { max-width: 480px; margin: 0 auto; }
.mc-offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(30,45,61,0.10); }
.mc-offer-card {
  background: #ffffff; padding: 44px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
}
.mc-offer-card:hover { border-color: #b8860b; }
.mc-offer-card.mc-featured { background: #111820; }
.mc-offer-tag {
  display: inline-block;
  background: #f5edda; color: #b8860b;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px; margin-bottom: 24px;
}
.mc-offer-card.mc-featured .mc-offer-tag { background: rgba(184,134,11,0.2); color: #d4a72c; }
.mc-offer-icon {
  width: 48px; height: 48px; border-radius: 3px;
  border: 1px solid rgba(184,134,11,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; font-size: 22px; color: #b8860b;
}
.mc-offer-card.mc-featured .mc-offer-icon { color: #d4a72c; }
.mc-offer-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif; font-size: 22px; font-weight: 400;
  color: #111820; margin-bottom: 14px; line-height: 1.25;
}
.mc-offer-card.mc-featured h3 { color: #ffffff; }
.mc-offer-card p { font-size: 13px; color: #5c6f82; line-height: 1.85; }
.mc-offer-card.mc-featured p { color: rgba(255,255,255,0.55); }
.mc-offer-features { list-style: none; margin-top: 24px; }
.mc-offer-features li {
  font-size: 12px; color: #5c6f82; padding: 6px 0;
  border-bottom: 1px solid rgba(30,45,61,0.10);
  display: flex; align-items: center; gap: 10px;
}
.mc-offer-card.mc-featured .mc-offer-features li { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); }
.mc-offer-features li::before { content: '✓'; color: #b8860b; font-size: 12px; flex-shrink: 0; }

/* PMS */
.mc-pms { background: #111820; }
.mc-pms .mc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.mc-pms-areas {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,0.06);
}
.mc-pms-area {
  background: #1e2d3d; padding: 28px 24px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.mc-pms-area:hover { border-color: #b8860b; background: #2e4460; }
.mc-pms-area-name { font-size: 14px; font-weight: 500; color: #ffffff; margin-bottom: 6px; }
.mc-pms-area-desc { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.7; }
.mc-pms-ai-note {
  margin-top: 36px; padding: 20px 24px;
  background: rgba(184,134,11,0.10);
  border: 1px solid rgba(184,134,11,0.22);
  border-radius: 3px;
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.75;
}
.mc-pms-ai-note strong { color: #d4a72c; font-weight: 500; }

/* PROCESS */
.mc-process { background: #ffffff; }
.mc-process-header { text-align: center; margin-bottom: 72px; }
.mc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.mc-steps::before {
  content: ''; position: absolute; top: 30px;
  left: 12%; right: 12%; height: 1px;
  background: rgba(30,45,61,0.10);
}
.mc-step { padding: 0 24px; text-align: center; }
.mc-step-num {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.30);
  background: #ffffff; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 28px; position: relative; z-index: 1;
  font-family: 'Libre Baskerville', Georgia, serif; font-size: 22px; color: #111820;
}
.mc-step h4 { font-size: 14px; font-weight: 500; color: #111820; margin-bottom: 10px; }
.mc-step p  { font-size: 12px; color: #5c6f82; line-height: 1.75; }

/* AUDIT */
.mc-audit { background: #f5edda; padding: 80px 0; }
.mc-audit .mc-container { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.mc-audit-icon { font-size: 64px; flex-shrink: 0; }
.mc-audit-content { flex: 1; min-width: 280px; }
.mc-audit-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.mc-audit-point {
  background: #ffffff; border: 1px solid rgba(184,134,11,0.25);
  border-radius: 2px; padding: 8px 18px;
  font-size: 12px; font-weight: 500; color: #1e2d3d;
}
.mc-btn-dark {
  background: #111820; color: #ffffff;
  padding: 13px 32px; border-radius: 2px;
  font-size: 13px; text-decoration: none; display: inline-block;
}

/* CTA */
.mc-cta { background: #111820; padding: 96px 0; }
.mc-cta .mc-container { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.mc-cta-left { flex: 1; min-width: 280px; }
.mc-cta-left h2 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 42px; font-weight: 400; color: #ffffff; line-height: 1.2; margin-bottom: 16px; }
.mc-cta-left h2 em { font-style: italic; color: #d4a72c; }
.mc-cta-left p { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.85; }
.mc-cta-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px; padding: 40px; min-width: 320px;
}
.mc-cta-form label { display: block; font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; margin-top: 18px; }
.mc-cta-form label:first-child { margin-top: 0; }
.mc-cta-form input,
.mc-cta-form select,
.mc-cta-form textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11); border-radius: 2px;
  padding: 11px 14px; color: #ffffff; font-size: 13px;
  font-family: 'Outfit', sans-serif; outline: none; appearance: none;
}
.mc-cta-form input::placeholder { color: rgba(255,255,255,0.22); }
.mc-cta-form textarea { resize: vertical; min-height: 90px; }
.mc-cta-submit {
  width: 100%; margin-top: 20px;
  background: #b8860b; color: #111820;
  border: none; padding: 14px; border-radius: 2px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

@media (max-width: 900px) {
  .mc-hero h1 { font-size: 38px; }
  .mc-philosophy .mc-container,
  .mc-pms .mc-container,
  .mc-cta .mc-container { grid-template-columns: 1fr; gap: 48px; }
  .mc-offers-grid, .mc-pms-areas { grid-template-columns: 1fr; }
  .mc-steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .mc-steps::before { display: none; }
  .mc-hero-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mc-container { padding: 0 20px; }
  .mc-hero { padding: 64px 0 56px; }
  .mc-hero h1 { font-size: 30px; }
  .mc-hero-stats { grid-template-columns: 1fr; gap: 24px; }
}


/* ============================================================
   PROFILING PAGE – profiling.html
   ============================================================ */

/* ---------- Profiling Hero ---------- */
.profiling-hero {
  background: #111820;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.profiling-hero::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.10);
  pointer-events: none;
}
.profiling-hero::after {
  content: '';
  position: absolute; right: 80px; top: 60px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.06);
  pointer-events: none;
}
.profiling-hero .mc-container { position: relative; z-index: 1; }
.profiling-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,134,11,0.14);
  border: 1px solid rgba(184,134,11,0.28);
  color: #d4a72c; font-size: 11px;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 2px; margin-bottom: 36px;
}
.profiling-hero h1 {
  font-family: var(--serif);
  font-size: 58px; font-weight: 400;
  color: #ffffff; line-height: 1.12; max-width: 680px; margin-bottom: 28px;
}
.profiling-hero h1 em { font-style: italic; color: #d4a72c; }
.profiling-hero-lead {
  font-size: 17px; color: rgba(255,255,255,0.58);
  line-height: 1.85; max-width: 560px; margin-bottom: 44px;
}
.profiling-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #b8860b; color: #111820;
  padding: 15px 36px; border-radius: 2px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s;
}
.profiling-hero-cta:hover { background: #d4a72c; }
.profiling-hero-cta svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section shared ---------- */
.profiling-section {
  padding: 96px 0;
}
.profiling-section-label {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.profiling-section h2 {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  color: var(--ink); line-height: 1.22; margin-bottom: 20px;
}
.profiling-section p {
  font-size: 15px; color: var(--slate); line-height: 1.85;
}

/* ---------- What is Profiling ---------- */
.profiling-what { background: #ffffff; }
.profiling-what-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.profiling-what-text p + p { margin-top: 16px; }

/* Data Sources visual */
.profiling-data-sources {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(30,45,61,0.08); border-radius: 4px; overflow: hidden;
}
.profiling-ds-item {
  display: flex; align-items: center; gap: 16px;
  background: #ffffff; padding: 16px 20px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.profiling-ds-item:hover { border-color: var(--gold); background: #fdf9f0; }
.profiling-ds-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.profiling-ds-name { font-size: 13px; font-weight: 500; color: var(--ink); flex: 1; }
.profiling-ds-tag {
  font-size: 11px; color: var(--slate);
  background: #f2f5f7; border-radius: 2px; padding: 3px 10px;
  white-space: nowrap;
}

/* ---------- How It Works ---------- */
.profiling-how { background: #f2f5f7; }
.profiling-how-header { text-align: center; margin-bottom: 64px; }
.profiling-how-header h2 { max-width: 480px; margin: 0 auto; }
.profiling-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.profiling-steps::before {
  content: ''; position: absolute; top: 28px;
  left: 12%; right: 12%; height: 1px;
  background: rgba(184,134,11,0.25);
}
.profiling-step { padding: 0 24px; text-align: center; }
.profiling-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.35);
  background: #f2f5f7; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1;
  font-family: var(--serif); font-size: 20px; color: var(--ink);
}
.profiling-step h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.profiling-step p  { font-size: 13px; color: var(--slate); line-height: 1.75; }

/* ---------- Outputs ---------- */
.profiling-outputs { background: #ffffff; }
.profiling-outputs-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 56px;
}
.profiling-outputs-intro p { font-size: 15px; color: var(--slate); line-height: 1.85; }
.profiling-output-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(30,45,61,0.08);
}
.profiling-output-card {
  background: #ffffff; padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
}
.profiling-output-card:hover { border-color: var(--gold); }
.profiling-output-icon {
  width: 44px; height: 44px; border-radius: 3px;
  border: 1px solid rgba(184,134,11,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.profiling-output-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
}
.profiling-output-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; line-height: 1.3;
}
.profiling-output-card p { font-size: 13px; color: var(--slate); line-height: 1.85; }

/* ---------- For Whom ---------- */
.profiling-forwhom { background: #111820; }
.profiling-forwhom .profiling-section-label { color: #d4a72c; }
.profiling-forwhom h2 { color: #ffffff; }
.profiling-forwhom-header { margin-bottom: 56px; }
.profiling-whom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,0.06);
}
.profiling-whom-item {
  display: flex; align-items: flex-start; gap: 24px;
  background: #1e2d3d; padding: 36px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.profiling-whom-item:hover { border-color: var(--gold); background: #253d56; }
.profiling-whom-num {
  font-family: var(--serif); font-size: 28px; color: rgba(184,134,11,0.40);
  flex-shrink: 0; line-height: 1;
}
.profiling-whom-item h3 {
  font-size: 15px; font-weight: 600; color: #ffffff; margin-bottom: 8px;
}
.profiling-whom-item p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.75; }

/* ---------- Quote ---------- */
.profiling-quote {
  background: #f5edda; padding: 80px 0; text-align: center;
}
.profiling-quote blockquote {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--ink); line-height: 1.6; max-width: 760px; margin: 0 auto 20px;
  font-style: italic;
}
.profiling-quote blockquote span { color: var(--gold); }
.profiling-quote-attr {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--slate);
}

/* ---------- CTA ---------- */
.profiling-cta { background: #111820; padding: 96px 0; text-align: center; }
.profiling-cta .profiling-section-label { color: #d4a72c; }
.profiling-cta h2 {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  color: #ffffff; max-width: 600px; margin: 0 auto 20px; line-height: 1.25;
}
.profiling-cta > .mc-container > p {
  font-size: 15px; color: rgba(255,255,255,0.48); max-width: 480px;
  margin: 0 auto 40px; line-height: 1.85;
}
.profiling-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.profiling-btn-primary {
  background: #b8860b; color: #111820;
  padding: 15px 36px; border-radius: 2px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s;
}
.profiling-btn-primary:hover { background: #d4a72c; }
.profiling-btn-secondary {
  color: rgba(255,255,255,0.55); font-size: 14px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 0;
}
.profiling-btn-secondary::after { content: '→'; }
.profiling-btn-secondary:hover { color: #ffffff; }

/* ---------- Profiling Responsive ---------- */
@media (max-width: 900px) {
  .profiling-hero h1 { font-size: 40px; }
  .profiling-what-grid { grid-template-columns: 1fr; gap: 48px; }
  .profiling-steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .profiling-steps::before { display: none; }
  .profiling-outputs-intro { grid-template-columns: 1fr; gap: 24px; }
  .profiling-output-cards { grid-template-columns: 1fr; }
  .profiling-whom-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .profiling-hero { padding: 64px 0 56px; }
  .profiling-hero h1 { font-size: 32px; }
  .profiling-cta h2 { font-size: 28px; }
  .profiling-quote blockquote { font-size: 20px; }
}
