:root {
  --paper: #FAF6EF;
  --paper-alt: #F1E9DA;
  --paper-deep: #EAE0CB;
  --white: #FFFDF9;
  --ink: #24303A;
  --ink-soft: #4E5C66;
  --ink-faint: #7C8891;
  --accent: #C1622E;
  --accent-dark: #9C4A20;
  --accent-light: #E7A876;
  --gold: #C9A15A;
  --teal-dark: #1E2A33;
  --teal-darker: #172129;
  --line: #DED0B4;
  --line-dark: #33424C;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --shadow-sm: 0 1px 2px rgba(36,48,58,0.06), 0 2px 6px rgba(36,48,58,0.05);
  --shadow-md: 0 12px 28px -12px rgba(36,48,58,0.22), 0 3px 8px rgba(36,48,58,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(36,48,58,0.28), 0 10px 20px -10px rgba(36,48,58,0.12);
  --shadow-stack: 0 -18px 40px -22px rgba(36,48,58,0.28);

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink); margin: 0 0 0.6em; line-height: 1.18; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 1rem; }
.eyebrow--dark { color: var(--accent-dark); }
.eyebrow--light { color: var(--accent-light); }
.section-lead { font-size: 1.1rem; max-width: 700px; color: var(--ink-soft); }
.section-lead--light { color: #D7DEE3; }
.section-title--light { color: var(--white); }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
  padding: 0.9rem 1.8rem; border-radius: var(--radius-md); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
}
.btn--primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--teal-dark); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn--full { width: 100%; }


.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background: transparent;
}
.site-header.nav--scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem !important; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { width: 34px; height: 34px; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); transition: color 0.4s ease; }
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-desktop a, .nav-mega-trigger {
  font-family: var(--font-head); font-weight: 600; font-size: 0.96rem; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 0.4rem 0; display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.4s ease, opacity 0.3s ease; position: relative;
}
.nav-desktop a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--accent); transition: width 0.3s ease; }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--accent); }

.site-header.nav--on-dark .logo-text,
.site-header.nav--on-dark .nav-desktop a,
.site-header.nav--on-dark .nav-mega-trigger,
.site-header.nav--on-dark .hamburger span { color: var(--white); }
.site-header.nav--on-dark .hamburger span { background: var(--white); }
.hamburger span { background: var(--ink); }

.nav-has-mega { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 1.4rem); left: 50%; transform: translateX(-50%) translateY(-10px);
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);background-color: var(--teal-dark);
  display: grid; grid-template-columns: repeat(4, 200px); gap: 1.6rem; padding: 1.8rem;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border-top: 3px solid var(--accent);
}
.nav-has-mega.open .mega-menu, .mega-menu:hover { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-menu-col { display: flex; flex-direction: column; gap: 0.6rem; }
.mega-menu-title { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--accent-dark); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; }
.mega-menu-col a { font-size: 0.9rem; color: var(--ink-soft); transition: color 0.25s ease, padding 0.25s ease; }
.mega-menu-col a:hover { color: var(--accent); padding-left: 4px; }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; transition: all 0.3s ease; }


.nav-mobile-overlay {
  position: fixed; inset: 0; background: rgba(20,25,30,0.5); opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease; z-index: 600;
}
.nav-mobile-overlay.open { opacity: 1; visibility: visible; }
.nav-mobile {
  position: fixed; top: 0; left: 0; bottom: 0; width: 80%; max-width: 340px;
  background: var(--teal-dark); z-index: 601; padding: 2.5rem 1.8rem; transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.2,.9,.3,1); display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-close { align-self: flex-end; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; width: 44px; height: 44px; }
.nav-mobile ul { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 0.4rem; }
.nav-mobile li { opacity: 0; transform: translateX(-16px); transition: opacity 0.4s ease, transform 0.4s ease; transition-delay: calc(var(--d) * 0.07s); }
.nav-mobile.open li { opacity: 1; transform: translateX(0); }
.nav-mobile a { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--white); padding: 0.7rem 0; display: block; border-bottom: 1px solid var(--line-dark); }


.hero { position: relative; background: linear-gradient(160deg, var(--teal-dark) 0%, #223541 55%, var(--accent-dark) 130%); padding: 9rem 1.5rem 6rem; overflow: hidden; z-index: 1; }
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); }
.hero-lead { color: #DCE3E7; font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; }
.hero-lead--sm { max-width: 560px; margin: 0.5rem auto 0; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-badge {
  position: absolute; background: var(--white); color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  padding: 0.7rem 1.1rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: none; align-items: center; gap: 0.5rem;
  animation: floatY 5s ease-in-out infinite;
}
.hero-badge i { color: var(--accent); }
.hero-badge--1 { top: 16%; left: 4%; animation-delay: 0s; }
.hero-badge--2 { top: 8%; right: 6%; animation-delay: 0.6s; }
.hero-badge--3 { bottom: 14%; left: 8%; animation-delay: 1.1s; }
.hero-badge--4 { bottom: 8%; right: 4%; animation-delay: 1.6s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.page-hero { position: relative; background: linear-gradient(150deg, var(--teal-dark), #263D49); padding: 8.5rem 1.5rem 4.5rem; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 0.4em; }
.page-hero--sm { padding-bottom: 3.5rem; }


.section {
  position: relative; background: var(--paper); padding: clamp(3.2rem, 6vw, 6rem) 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0; box-shadow: var(--shadow-stack);
  margin-top: -2.2rem; z-index: var(--z, 1);
}
.section--alt { background: var(--paper-alt); }
.section--deep { background: var(--paper-deep); }
.section--dark { background: linear-gradient(160deg, var(--teal-dark), var(--teal-darker)); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #C9D3D9; }
.section--gradient { background: linear-gradient(135deg, var(--teal-dark) 0%, #3B4C57 45%, var(--accent-dark) 100%); color: var(--white); }
.section--gradient h2, .section--gradient h3 { color: var(--white); }
.section--counters { background: var(--paper); }
.thanks-section { padding-top: 10rem; min-height: 60vh; }

.strip { height: 14px; background: repeating-linear-gradient(90deg, var(--accent) 0 26px, var(--gold) 26px 52px, var(--teal-dark) 52px 78px); position: relative; z-index: 2; }
.strip--alt { background: repeating-linear-gradient(90deg, var(--gold) 0 20px, transparent 20px 40px); }


.magazine-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.magazine-grid--reverse { direction: rtl; }
.magazine-grid--reverse > * { direction: ltr; }
.magazine-col-wide p { font-size: 1.02rem; }
.pull-quote {
  background: var(--white); border-left: 4px solid var(--accent); padding: 1.8rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0; box-shadow: var(--shadow-md); align-self: start;
}
.pull-quote p { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin-bottom: 0.8rem; }
.pull-quote span { font-size: 0.85rem; color: var(--ink-faint); }
.pull-quote--accent { border-left-color: var(--gold); }
.pull-quote--light-bg { background: rgba(255,255,255,0.08); border-left-color: var(--gold); backdrop-filter: blur(4px); }
.pull-quote--light-bg p { color: var(--white); }
.pull-quote--light-bg span { color: #C9D3D9; }

.section-image { margin: 2.5rem 0 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.section-image img { width: 100%; height: 380px; object-fit: cover; }
.section-image figcaption { padding: 1rem 1.4rem; background: var(--white); color: var(--ink-faint); font-size: 0.9rem; }
.magazine-figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.magazine-figure img { width: 100%; height: 320px; object-fit: cover; }
.magazine-figure figcaption { padding: 1rem 1.2rem; background: var(--white); color: var(--ink-faint); font-size: 0.88rem; }


.pillar-grid, .audience-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 2rem; }
.pillar-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg);
  padding: 1.8rem; transition: transform 0.3s ease, background 0.3s ease;
}
.pillar-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.pillar-card i { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.8rem; }
.pillar-card h3 { color: var(--white); }
.pillar-card p { color: #D7DEE3; margin: 0; }

.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card:has(img) { padding: 0; overflow: hidden; }
.card:has(img) img { width: 100%; height: 200px; object-fit: cover; }
.card:has(img) .card-body { padding: 1.5rem; }
.card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.7rem; }
.card--contact p { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.card--consult { border-top: 3px solid var(--gold); }
.card--consult h3 { display: flex; align-items: center; gap: 0.5rem; color: var(--accent-dark); }

.section:has(.highlighted) { background: linear-gradient(180deg, var(--paper-alt), var(--paper)); }


.process-flow { display: grid; grid-template-columns: 1fr; gap: 1.6rem; margin-top: 2.5rem; position: relative; }
.process-step { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.process-num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--accent-light); display: block; margin-bottom: 0.5rem; }
.process-step:not(:last-child)::after {
  content: ""; position: absolute; left: 2rem; bottom: -1.6rem; width: 2px; height: 1.6rem; background: var(--line);
}


.journey-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 2.5rem; }
.journey-step { text-align: center; padding: 1.6rem 1rem; }
.journey-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: var(--shadow-sm);
}
.journey-icon i { color: var(--accent); font-size: 1.3rem; }


.counters-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; margin-top: 2.5rem; }
.counter-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.counter-num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--accent); display: block; }
.counter-label { color: var(--ink-soft); font-size: 0.92rem; }


.module-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.2rem; }
.module-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--accent); }
.module-tag { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.06em; }


.belief-list { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.belief-item { display: flex; gap: 1.2rem; background: var(--white); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.belief-num { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--white); background: var(--accent); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }


.disclaimer-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
.disclaimer-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 1.4rem; display: flex; gap: 0.8rem; }
.disclaimer-card i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.disclaimer-card p { color: #D7DEE3; margin: 0; }

.tool-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.tool-item { display: flex; gap: 1.2rem; align-items: flex-start; background: var(--white); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.tool-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--paper-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-icon i { color: var(--accent); font-size: 1.3rem; }


.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner .hero-actions { margin-top: 1.5rem; }


.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-form-wrap h2 { margin-bottom: 0.4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.8rem; background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); transition: border-color 0.3s ease; }
.contact-form:has(:focus) { border-color: var(--accent); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.form-group input, .form-group textarea {
  padding: 0.85rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); font-family: var(--font-body);
  font-size: 1rem; background: var(--paper); color: var(--ink); transition: border-color 0.3s ease, box-shadow 0.3s ease; min-height: 44px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(193,98,46,0.15); }
.form-hint { font-size: 0.82rem; color: var(--ink-faint); }
.form-group--checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); cursor: pointer; }
.checkbox-label input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 1.4rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { display: block; }


.thanks-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.quote-card { background: var(--white); border-radius: var(--radius-xl); padding: 2.8rem 2rem; box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold); position: relative; margin-bottom: 2.5rem; }
.quote-mark { color: var(--accent-light); font-size: 1.8rem; margin-bottom: 1rem; }
.quote-card p { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.quote-card span { font-size: 0.9rem; color: var(--ink-faint); }


.legal-content h2 { margin-top: 2.2rem; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { max-width: 780px; }
.legal-content--unnumbered h2 { color: var(--accent-dark); border-bottom: 2px solid var(--line); padding-bottom: 0.5rem; }


.site-footer { background: var(--teal-darker); color: #C9D3D9; position: relative; z-index: 50; margin-top: -2.2rem; }
.footer-accent-bar { height: 6px; background: linear-gradient(90deg, var(--accent), var(--gold), var(--teal-dark)); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding: 3.5rem 1.5rem 2rem; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; color: #A9B6BE; font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-logo { width: 32px; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.4rem 1.5rem 2rem; font-size: 0.85rem; color: #8695A0; }


.cookie-consent { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 900; width: min(480px, 92vw); }
.cookie-consent-inner {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 1.4rem 1.5rem; transition: all 0.45s cubic-bezier(.2,.9,.3,1); width: 100%;
}
.cookie-consent-inner.expanded { width: min(560px, 94vw); }
.cookie-consent-main p { font-size: 0.9rem; margin-bottom: 1rem; color: var(--ink-soft); }
.cookie-consent-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cookie-settings h3 { margin-bottom: 1rem; }
.cookie-category { border-top: 1px solid var(--line); padding: 0.9rem 0; }
.cookie-category-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-weight: 700; font-size: 0.94rem; }
.cookie-category p { font-size: 0.85rem; margin: 0.3rem 0 0; }
.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: var(--line); border-radius: 20px; transition: 0.3s; }
.slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: var(--white); border-radius: 50%; transition: 0.3s; }
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(18px); }
.switch input:disabled + .slider { opacity: 0.6; }


@media (min-width: 640px) {
  .pillar-grid, .audience-grid, .journey-grid, .process-flow, .module-grid, .disclaimer-grid { grid-template-columns: repeat(2,1fr); }
  .counters-grid { grid-template-columns: repeat(4,1fr); }
  .hero-badge { display: flex; }
}
@media (min-width: 860px) {
  .magazine-grid { grid-template-columns: 1.6fr 1fr; }
  .contact-layout { grid-template-columns: 1.3fr 1fr; }
  .mega-menu { grid-template-columns: repeat(4, 190px); }
}
@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .hamburger { display: none; }
  .pillar-grid, .audience-grid { grid-template-columns: repeat(4,1fr); }
  .journey-grid { grid-template-columns: repeat(5,1fr); }
  .process-flow { grid-template-columns: repeat(4,1fr); }
  .module-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:not(:last-child)::after { left: auto; right: -1.6rem; bottom: 2rem; top: auto; width: 1.6rem; height: 2px; }
}
@media (min-width: 1200px) {
  .container { padding: 0 2rem; }
}