:root {
  --green: #7FBA27;
  --green-dark: #5A8A1A;
  --green-light: #E8F5D3;
  --green-subtle: #F4FAE9;
  --orange: #E8772E;
  --orange-dark: #D35D17;
  --orange-light: #FFF0E6;
  --text: #4E4B48;
  --text-light: #7A7572;
  --text-muted: #A8A29E;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --border: #E8E6E3;
  --dark: #1A1917;
  --dark-surface: #242320;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }

/* ═══ NAV ═══ */
nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(250,250,248,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0.75rem 2rem; height: auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 80px; }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-light); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: 6px; font-weight: 600 !important; font-size: 0.82rem !important; transition: all 0.2s !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.lang-switch { display: flex; gap: 0.15rem; margin-left: 1rem; padding-left: 1rem; border-left: 1px solid var(--border); }
.lang-switch a { font-size: 0.7rem !important; padding: 0.18rem 0.32rem; border-radius: 3px; color: var(--text-muted) !important; font-weight: 600 !important; }
.lang-switch a.active { color: var(--green-dark) !important; background: var(--green-subtle); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; }

/* ═══ HERO ═══ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 6rem 2rem 4rem; position: relative; overflow: hidden; }
.hero-map-bg { position: absolute; top: 50%; right: 2%; transform: translateY(-50%); width: 65%; max-width: 800px; opacity: 0.7; pointer-events: none; z-index: 0; }
.hero-map-bg img { width: 100%; height: auto; }
.hero::before { content: ''; position: absolute; top: -10%; right: -10%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(127,186,39,0.07) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -5%; left: -5%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(232,119,46,0.05) 0%, transparent 60%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-text h1 { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 400; line-height: 1.06; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.hero-text h1 em { font-style: italic; color: var(--green); }
.hero-text .subtitle { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; max-width: 480px; margin-bottom: 2.2rem; }
.hero-buttons { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: var(--white); padding: 0.8rem 1.8rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,119,46,0.25); }
.btn-ghost { color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 0.9rem; padding: 0.8rem 1.4rem; border-radius: 8px; border: 1px solid var(--border); transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }

/* Hero metrics */
.hero-metrics { display: flex; flex-direction: column; gap: 1rem; }
.metric-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem 1.6rem; transition: all 0.3s; }
.metric-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(127,186,39,0.08); }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.metric-num { font-family: var(--sans); font-weight: 700; font-size: 2.6rem; font-weight: 400; line-height: 1; color: var(--text); margin-bottom: 0.2rem; }
.metric-num span { color: var(--green); }
.metric-label { font-size: 0.82rem; color: var(--text-muted); }

/* Counter animation */
.counter { display: inline-block; }

/* ═══ LOGO TICKER ═══ */
.ticker-section { padding: 3rem 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.ticker-label { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.ticker-wrap { position: relative; width: 100%; }
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.ticker-track { display: flex; width: max-content; animation: ticker 35s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 160px; height: 70px; margin: 0 1.2rem; padding: 0.8rem; opacity: 0.5; transition: opacity 0.3s; filter: grayscale(100%); }
.ticker-item:hover { opacity: 1; filter: grayscale(0%); }
.ticker-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

.ticker-item { flex: 0 0 auto; padding: 0 2rem; display: flex; align-items: center; text-decoration: none; }
a.ticker-item { cursor: pointer; }
a.ticker-item:hover img { transform: scale(1.08); }
.ticker-item img { transition: transform 0.2s ease; }

/* ═══ APPROACH ═══ */
.approach { padding: 4rem 2rem 6rem; background: var(--bg); }
.approach-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem; }
.section-title { font-family: var(--sans); font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 400; line-height: 1.15; margin-bottom: 0.8rem; letter-spacing: -0.01em; }
.section-desc { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.7; }




/* ═══ SPECTRUM – Partner Marketing ═══ */
.spectrum-section { background: #fff; padding: 6rem 2rem 2rem; border-top: 1px solid var(--border); }
.spectrum-top { max-width: 1200px; margin: 0 auto; padding: 0; }

/* 2/3 + 1/3 split */
.spectrum-split { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; margin-bottom: 3rem; align-items: start; }

.spectrum-split-intro .section-label { text-align: left; }
.spectrum-split-intro .section-title { margin-bottom: 1.25rem; }
.spectrum-split-intro p { font-size: 1rem; line-height: 1.85; color: var(--text-light); margin: 0; }

.spectrum-split-statement { background: var(--dark); color: #F5F5F0; border-radius: 16px; padding: 2.5rem 2.5rem; position: relative; overflow: hidden; }
.spectrum-split-statement::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--green), var(--orange)); border-radius: 2px; }
.spectrum-split-statement h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: #F5F5F0; margin-bottom: 0.75rem; line-height: 1.3; }
.spectrum-split-statement p { font-size: 0.92rem; line-height: 1.75; color: rgba(245,245,240,0.6); margin: 0; }

.spectrum-bridge { text-align: left; margin: 5rem 0 2rem; }
.spectrum-bridge .section-label { text-align: left; }

.spectrum-baseline { text-align: center; margin-top: 2rem; padding-top: 1rem; }
.spectrum-baseline p { font-family: var(--serif); font-size: 1.1rem; color: var(--text-muted); font-style: italic; }

@media (max-width: 768px) {
  .spectrum-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .spectrum-split-statement { padding: 1.75rem; }
}

/* ── 2x2 Colored Blocks ── */
.puzzle-wrap { max-width: 100%; padding: 0; margin: 0 0 2rem; }
.puzzle-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 0 auto; gap: 3px; }

.puzzle-piece { position: relative; padding: 3rem 3.5rem; min-height: 280px; display: flex; transition: filter 0.3s; }
.puzzle-piece:hover { filter: brightness(1.08); }

.puzzle-1 { background: linear-gradient(145deg, #93C54B, #7FBA27); color: #fff; }
.puzzle-2 { background: linear-gradient(145deg, #7FBA27, #5A8A1A); color: #fff; }
.puzzle-3 { background: linear-gradient(145deg, #5A8A1A, #4A7A14); color: #fff; }
.puzzle-4 { background: linear-gradient(145deg, #4A7A14, #E8772E); color: #fff; }

.puzzle-content { position: relative; z-index: 1; }
.puzzle-num { font-family: var(--sans); font-size: 3.5rem; font-weight: 200; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 0.4rem; }
.puzzle-content h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
.puzzle-content p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.puzzle-tags { font-size: 0.7rem; color: rgba(255,255,255,0.35); font-weight: 600; letter-spacing: 0.04em; line-height: 1.8; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .puzzle-grid { grid-template-columns: 1fr; gap: 2px; }
  .puzzle-piece { padding: 2rem 1.5rem; min-height: auto; }
  .puzzle-num { font-size: 2.2rem; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .puzzle-piece { padding: 2.5rem 2.5rem; min-height: 240px; }
}

/* Baseline */
.spectrum-baseline { text-align: center; margin-top: 2rem; padding-top: 1rem; }
.spectrum-baseline p { font-family: var(--serif); font-size: 1.1rem; color: var(--text-muted); font-style: italic; }

/* Puzzle hover */
.puzzle-piece { transition: filter 0.3s; }
.puzzle-piece:hover { filter: brightness(1.08); }

/* Mobile */
@media (max-width: 700px) {
  .puzzle-grid { grid-template-columns: 1fr; }
  .puzzle-piece { padding: 2rem 1.5rem; min-height: auto; }
  .puzzle-conn-right, .puzzle-conn-left { display: none; }
  .puzzle-conn-bottom { display: none; }
  .puzzle-conn-top { display: none; }
  .puzzle-num { font-size: 2.2rem; }
  .spectrum-statement-card { padding: 1.75rem; }
  .spectrum-statement-card h3 { font-size: 1.15rem; }
  .spectrum-statement-card p { font-size: 0.85rem; }
}

@media (max-width: 960px) {
  .nav-logo { height: 60px; }
  .puzzle-piece { padding: 2.5rem 2rem; }
}

/* ═══ RESULTS / TRACK RECORD ═══ */
.results-section { background: var(--dark); padding: 6rem 2rem; color: #F5F5F0; }
.results-inner { max-width: 1100px; margin: 0 auto; }
.results-header { text-align: center; margin-bottom: 3rem; }
.results-header .section-label { color: var(--green); }
.results-header .section-title { color: #F5F5F0; }

/* Headline metrics */
.results-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.results-metric { text-align: center; }
.results-metric-num { font-family: var(--sans); font-size: 2.5rem; font-weight: 700; color: var(--green); line-height: 1.1; margin-bottom: 0.35rem; }
.results-metric-text { font-size: 0.8rem; color: rgba(245,245,240,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* Case studies */
.results-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.results-case { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: box-shadow 0.3s, transform 0.3s; }
.results-case:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-2px); }

.case-header { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1rem; }
.case-client { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); padding: 0.3rem 0.7rem; background: rgba(127,186,39,0.1); border-radius: 4px; }
.case-industry { font-size: 0.75rem; color: var(--text-muted); }

.case-headline { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 0.75rem; }
.case-text { font-size: 1rem; line-height: 1.75; color: var(--text-light); margin-bottom: 1.5rem; }

.case-stats { display: flex; gap: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.case-stat-num { font-family: var(--sans); font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.case-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ═══ EUROPE MAP SECTION ═══ */
.europe { padding: 6rem 2rem; background: var(--dark); color: #F5F5F0; position: relative; overflow: hidden; }
.europe-inner { overflow: visible; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.europe-text { position: relative; z-index: 3; }
.europe-text .section-label { color: var(--green); }
.europe-text .section-title { color: #F5F5F0; }
.europe-text .section-desc { color: rgba(245,245,240,0.5); }

/* SVG Europe Map */
.usa-line { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.europe-map-container { position: relative; z-index: 2; width: 100%; max-width: 550px; margin: 0 auto; }
.europe-map-container svg { width: 100%; height: auto; display: block; overflow: visible; }
.europe-map-container svg { width: 100%; height: auto; }
.map-dot { fill: var(--green); transform-origin: center; transform-box: fill-box; filter: drop-shadow(0 0 6px rgba(127,186,39,0.8)); animation: pulseDot 2s ease-in-out infinite; }
.map-dot-ring { transform-origin: center; transform-box: fill-box; fill: none; stroke: var(--green); stroke-width: 1.5; animation: pulseRing 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }
@keyframes pulseRing { 0%, 100% { opacity: 0; transform: scale(1); } 50% { opacity: 0.5; transform: scale(2.5); } }

.countries-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 2rem; }
.countries-list li { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; padding: 0.4rem 0.9rem; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.countries-list li:hover { background: rgba(127,186,39,0.15); color: var(--green); border-color: rgba(127,186,39,0.3); }

.networks-row { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.networks-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 0.8rem; }
.networks-logos { display: flex; flex-wrap: wrap; gap: 1.5rem; opacity: 0.3; }
.networks-logos span { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ═══ WHY ═══ */
.why { padding: 6rem 2rem; background: var(--white); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.why-card { padding: 1.6rem; border-radius: 14px; border: 1px solid var(--border); transition: all 0.3s; }
.why-card:hover { border-color: var(--green); box-shadow: 0 6px 20px rgba(127,186,39,0.06); }
.why-card .num { font-family: var(--sans); font-weight: 700; font-size: 2rem; color: var(--green); margin-bottom: 0.6rem; line-height: 1; }
.why-card h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.4rem; }
.why-card p { color: var(--text-light); font-size: 0.8rem; line-height: 1.6; }

/* ═══ CTA ═══ */
.cta { padding: 5rem 2rem; background: var(--bg); text-align: center; }
.cta-box { max-width: 1200px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 3.5rem 4rem; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--green), var(--orange)); }
.cta-box h2 { font-family: var(--sans); font-weight: 700; font-size: 1.7rem; font-weight: 400; margin-bottom: 0.6rem; line-height: 1.2; }
.cta-box p { color: var(--text-light); margin-bottom: 1.8rem; font-size: 0.95rem; }

/* ═══ FOOTER ═══ */
footer { background: var(--dark); color: rgba(255,255,255,0.35); padding: 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-inner a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-inner a:hover { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 1.2rem; }
.footer-legal { font-size: 0.75rem; }


.footer-social { display: flex; justify-content: center; }
.footer-linkedin { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-linkedin:hover { color: rgba(255,255,255,0.6); }
/* ═══ ANIMATIONS ═══ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* Map wrapper with overlay */
.map-wrapper { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.europe-svg { width: 100%; height: auto; display: block; }
.map-dots-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.map-connections line { opacity: 0.6; }


/* Countries list - pills layout */
.countries-list { margin: 2rem 0; }
.countries-europe, .countries-worldwide { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.countries-worldwide { padding-top: 0.75rem; border-top: 1px solid rgba(127,186,39,0.15); }
.countries-list span { display: inline-block; padding: 0.4rem 0.9rem; border: 1px solid rgba(245,245,240,0.15); border-radius: 99px; font-size: 0.85rem; color: rgba(245,245,240,0.7); white-space: nowrap; transition: border-color 0.3s; }
.countries-list span:hover { border-color: var(--green); color: #F5F5F0; }

/* Network links with orange hover */
.networks-logos { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.network-link { color: rgba(245,245,240,0.5); text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.3s; }
.network-link:hover { color: var(--orange); }
.network-more { color: rgba(245,245,240,0.3); font-size: 0.85rem; font-weight: 400; font-style: italic; text-transform: none; letter-spacing: 0; }


/* ═══ APPROACH – Redesigned ═══ */
.approach-statement { margin: 3rem 0; }
.statement-card { background: var(--dark); color: #F5F5F0; border-radius: 16px; padding: 3rem 3.5rem; }
.statement-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: #F5F5F0; }
.statement-card p { color: rgba(245,245,240,0.65); font-size: 1.05rem; line-height: 1.7; max-width: 800px; }

/* Three Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 3rem 0; }
.pillar { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; transition: box-shadow 0.3s, transform 0.3s; }
.pillar:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pillar-number { font-size: 0.8rem; font-weight: 700; color: var(--green); letter-spacing: 0.05em; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--green); display: inline-block; }
.pillar h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 0.75rem; }
.pillar-desc { color: rgba(78,75,72,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.pillar-list { list-style: none; padding: 0; }
.pillar-list li { position: relative; padding: 0.5rem 0 0.5rem 1.2rem; font-size: 0.9rem; color: var(--dark); border-bottom: 1px solid rgba(0,0,0,0.05); line-height: 1.5; }
.pillar-list li:last-child { border-bottom: none; }
.pillar-list li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Process Flow */
.process-flow { margin: 3rem 0 0; padding: 3rem; background: var(--dark); border-radius: 16px; }
.process-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green); font-weight: 600; margin-bottom: 2.5rem; }
.process-steps { display: flex; align-items: center; justify-content: space-between; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 50%; left: 28px; right: 28px; height: 2px; background: rgba(127,186,39,0.2); transform: translateY(-50%); z-index: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; position: relative; z-index: 1; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 0 6px rgba(127,186,39,0.15), 0 4px 12px rgba(0,0,0,0.2); }
.step-text { font-size: 0.85rem; font-weight: 500; color: rgba(245,245,240,0.7); white-space: nowrap; }
.process-arrow { display: none; }

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .process-flow { padding: 2rem; }
  .process-steps { flex-direction: column; gap: 1.5rem; }
  .process-steps::before { top: 24px; bottom: 24px; left: 50%; width: 2px; height: auto; right: auto; transform: translateX(-50%); }
  .process-step { flex-direction: row; gap: 1rem; }
  .statement-card { padding: 2rem 1.5rem; }
}


/* ═══ ABOUT ═══ */
.about { padding: 6rem 2rem; background: var(--dark); color: #F5F5F0; }
.about-inner { max-width: 1200px; margin: 0 auto; }
.about-header { margin-bottom: 3rem; }
.about .section-label { color: var(--green); }
.about .section-title { color: #F5F5F0; }
.about-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }
.about-lead { font-size: 1.15rem; line-height: 1.7; color: rgba(245,245,240,0.85); margin-bottom: 1.5rem; font-weight: 500; }
.about-text p { font-size: 1rem; line-height: 1.75; color: rgba(245,245,240,0.55); margin-bottom: 1.25rem; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-fact { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.5rem; }
.fact-num { font-size: 2rem; font-weight: 700; color: var(--green); margin-bottom: 0.25rem; }
.fact-text { font-size: 0.85rem; color: rgba(245,245,240,0.5); }
.about-company { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.about-company p { font-size: 0.8rem; color: rgba(245,245,240,0.3); line-height: 1.6; }
@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ═══ IMPRESSUM ═══ */
.impressum-page { padding: 8rem 2rem 4rem; min-height: 70vh; }
.impressum-inner { max-width: 900px; margin: 0 auto; }
.impressum-page h1 { font-family: 'Instrument Serif', serif; font-size: 2.8rem; font-weight: 400; color: var(--dark); margin-bottom: 3rem; }
.impressum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.impressum-block h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); font-weight: 600; margin-bottom: 0.75rem; }
.impressum-block p { font-size: 1rem; line-height: 1.7; color: var(--dark); }
.impressum-company-name { font-size: 1.15rem !important; font-weight: 600; }
.impressum-block a { color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--border); transition: border-color 0.2s; }
.impressum-block a:hover { border-color: var(--green); color: var(--green); }
.impressum-trademark { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.impressum-trademark p { font-size: 0.85rem; color: rgba(78,75,72,0.4); }
@media (max-width: 600px) { .impressum-grid { grid-template-columns: 1fr; gap: 2rem; } }


/* ═══ CLIENT DETAIL ═══ */
.client-page { padding: 7rem 2rem 4rem; min-height: 70vh; }
.client-inner { max-width: 960px; margin: 0 auto; }
.client-back { display: inline-block; font-size: 0.85rem; color: var(--green); text-decoration: none; margin-bottom: 2rem; font-weight: 500; transition: opacity 0.2s; }
.client-back:hover { opacity: 0.7; }

.client-hero { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 2rem 3rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); position: relative; }
.client-logo { height: 56px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 1rem; display: block; }
.client-hero-text h1 { font-family: 'Instrument Serif', serif; font-size: 2.8rem; font-weight: 400; color: var(--dark); margin-bottom: 0.5rem; }
.client-category { display: inline-block; background: rgba(127,186,39,0.1); color: var(--green); font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 99px; margin-bottom: 0.75rem; }
.client-website { display: block; font-size: 0.9rem; color: rgba(78,75,72,0.5); text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.2s; }
.client-website:hover { color: var(--green); }

.client-hero-facts { display: flex; gap: 1.5rem; flex-shrink: 0; }
.client-fact { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.5rem; text-align: center; min-width: 90px; }
.client-fact .fact-num { font-size: 1.6rem; font-weight: 700; color: var(--green); }
.client-fact .fact-text { font-size: 0.75rem; color: rgba(78,75,72,0.5); margin-top: 0.2rem; }

.client-section { margin-bottom: 2.5rem; }
.client-section h2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); font-weight: 600; margin-bottom: 1rem; }
.client-desc { font-size: 1rem; line-height: 1.75; color: var(--dark); max-width: 720px; }

.client-usps { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.client-usp { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; line-height: 1.5; color: var(--dark); padding: 0.75rem 1rem; background: #fff; border: 1px solid var(--border); border-radius: 10px; }
.usp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 0.45rem; }

.client-countries { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.country-pill { padding: 0.4rem 0.9rem; border: 1px solid var(--border); border-radius: 99px; font-size: 0.85rem; color: var(--dark); background: #fff; }

.client-networks { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.network-badge { padding: 0.4rem 1rem; background: var(--dark); color: #F5F5F0; border-radius: 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; }

.client-cta { margin-top: 3rem; padding: 2.5rem; background: var(--dark); border-radius: 16px; text-align: center; }
.client-cta p { color: rgba(245,245,240,0.65); font-size: 1.05rem; margin-bottom: 1.5rem; }
.client-cta .btn-primary { display: inline-block; }

@media (max-width: 700px) {
  .client-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .client-hero-facts { width: 100%; }
  .client-usps { grid-template-columns: 1fr; }
}


/* ═══ CLIENT CAMPAIGNS ═══ */
.client-campaigns-section { margin-bottom: 3rem; }
.campaign-group { margin-bottom: 2rem; }
.campaign-group-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; padding: 0.3rem 0.8rem; border-radius: 99px; display: inline-block; }
.campaign-group-label.campaign-live { background: rgba(127,186,39,0.1); color: var(--green); }
.campaign-group-label.campaign-past { background: rgba(78,75,72,0.06); color: rgba(78,75,72,0.45); }
.campaign-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.campaign-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: box-shadow 0.2s; }
.campaign-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.campaign-card.is-live { border-left: 3px solid var(--green); }
.campaign-card.is-upcoming { border-left: 3px solid var(--orange); }
.campaign-card.is-past { opacity: 0.6; }
.campaign-status { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.is-live .campaign-status { color: var(--green); }
.is-live .campaign-status::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 0.4rem; vertical-align: middle; animation: pulse-dot 1.5s ease infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.is-upcoming .campaign-status { color: var(--orange); }
.campaign-card h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.campaign-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.campaign-dates { font-size: 0.8rem; color: rgba(78,75,72,0.5); }
.campaign-type { font-size: 0.7rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 6px; background: rgba(78,75,72,0.06); color: rgba(78,75,72,0.6); }
.campaign-details { font-size: 0.85rem; color: var(--dark); line-height: 1.5; margin-top: 0.25rem; }


/* ═══ COMMISSION MODEL ═══ */
.commission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.commission-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; }
.commission-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(78,75,72,0.45); font-weight: 600; margin-bottom: 0.5rem; }
.commission-value { font-size: 1rem; color: var(--dark); font-weight: 500; line-height: 1.5; }

.client-hero-news { position: absolute; right: 0; bottom: 2.5rem; }

/* ═══ NEWS BUTTON ═══ */
.btn-news { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--dark); color: #F5F5F0; border: none; border-radius: 10px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.btn-news:hover { background: #333; transform: translateY(-1px); }

/* ═══ NEWS OVERLAY ═══ */
.news-overlay { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,0.55); display: flex; justify-content: center; align-items: center; padding: 2rem; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.news-overlay.open { opacity: 1; pointer-events: all; }
.news-overlay-inner { background: #F5F5F0; border-radius: 20px; width: 90%; max-width: 900px; max-height: 85vh; display: flex; flex-direction: column; box-shadow: 0 24px 80px rgba(0,0,0,0.25); overflow: hidden; }
.news-overlay-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.news-overlay-header h2 { font-family: 'Instrument Serif', serif; font-size: 1.4rem; font-weight: 400; color: var(--dark); }
.news-close { background: none; border: none; font-size: 2rem; color: rgba(78,75,72,0.4); cursor: pointer; line-height: 1; padding: 0 0.5rem; transition: color 0.2s; }
.news-close:hover { color: var(--dark); }

.news-nav { display: flex; flex-direction: column; gap: 0; border-bottom: 1px solid var(--border); flex-shrink: 0; max-height: 140px; overflow-y: auto; }
.news-nav-item { padding: 0.75rem 2rem; font-size: 0.85rem; color: rgba(78,75,72,0.6); text-decoration: none; border-left: 3px solid transparent; transition: all 0.2s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-nav-item:hover { color: var(--dark); background: rgba(0,0,0,0.02); }
.news-nav-item.active { color: var(--green); border-left-color: var(--green); font-weight: 600; }

.news-content { padding: 2rem; overflow-y: auto; flex: 1; scroll-behavior: smooth; }
.news-article { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.news-article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.news-date { font-size: 0.75rem; color: var(--green); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.news-article h3 { font-family: 'Instrument Serif', serif; font-size: 1.6rem; font-weight: 400; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.3; }
.news-summary { font-size: 1rem; color: rgba(78,75,72,0.7); font-style: italic; line-height: 1.6; margin-bottom: 1.25rem; padding-left: 1rem; border-left: 2px solid var(--green); }
.news-body { font-size: 0.95rem; line-height: 1.75; color: var(--dark); }
.news-body p { margin-bottom: 1rem; }
.news-body h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }

@media (max-width: 700px) {
  .news-overlay { padding: 0; }
  .news-overlay-inner { border-radius: 0; max-height: 100vh; margin-top: 0; }
  .news-nav { flex-direction: row; overflow-x: auto; max-height: none; }
  .news-nav-item { border-left: none; border-bottom: 2px solid transparent; padding: 0.6rem 1rem; }
  .news-nav-item.active { border-bottom-color: var(--green); }
}


/* ═══ DATENSCHUTZ ═══ */
.datenschutz-page .datenschutz-updated { font-size: 0.8rem; color: rgba(78,75,72,0.4); margin-bottom: 2.5rem; }
.datenschutz-content h2 { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 2rem 0 0.75rem; }
.datenschutz-content h2:first-child { margin-top: 0; }
.datenschutz-content p { font-size: 0.95rem; line-height: 1.75; color: rgba(78,75,72,0.8); margin-bottom: 0.5rem; }

/* ═══ SERVICE DETAIL PAGES ═══ */
.service-page { padding-top: 6.5rem; }
.service-inner { max-width: 820px; margin: 0 auto; padding: 2rem 2rem 4rem; }

.service-breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; }
.service-breadcrumb a { color: var(--green); text-decoration: none; }
.service-breadcrumb span { margin: 0 0.4rem; }

.service-hero { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.service-hero-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.service-hero h1 { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--dark); line-height: 1.15; margin-bottom: 1rem; }
.service-hero-desc { font-size: 1.05rem; line-height: 1.8; color: var(--text-light); max-width: 680px; }

.service-section { margin-bottom: 2.5rem; }
.service-section h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--dark); margin-bottom: 0.75rem; }
.service-section p { font-size: 0.95rem; line-height: 1.8; color: var(--text-light); }

.service-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; padding: 2rem; background: var(--bg); border-radius: 14px; }
.service-fact { text-align: center; }
.service-fact-num { font-family: var(--sans); font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1.1; margin-bottom: 0.3rem; }
.service-fact-text { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.service-cta { background: var(--dark); color: #F5F5F0; border-radius: 14px; padding: 2.5rem; text-align: center; margin: 3rem 0; }
.service-cta p { font-family: var(--serif); font-size: 1.15rem; color: rgba(245,245,240,0.7); margin-bottom: 1.25rem; }
.service-cta .btn-primary { display: inline-block; }

.service-others { margin-top: 3rem; }
.service-others h3 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.service-others-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-other-card { display: block; padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; text-decoration: none; transition: border-color 0.3s, transform 0.3s; }
.service-other-card:hover { border-color: var(--green); transform: translateY(-2px); }
.service-other-name { font-weight: 600; color: var(--dark); font-size: 0.9rem; margin-bottom: 0.4rem; }
.service-other-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

@media (max-width: 700px) {
  .service-hero h1 { font-size: 1.7rem; }
  .service-facts { grid-template-columns: 1fr; gap: 1rem; }
  .service-others-grid { grid-template-columns: 1fr; }
  .service-inner { padding: 1.5rem 1.25rem 3rem; }
}


/* ═══ CLOSING LINE ═══ */
.closing-line { padding: 2.5rem 2rem; background: var(--bg); text-align: center; }
.closing-line p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--orange); margin: 0; }
/* ═══ MINI CTA STRIPS ═══ */
.minicta { padding: 2.5rem 2rem; background: var(--green-subtle); border-top: 1px solid rgba(127,186,39,0.1); border-bottom: 1px solid rgba(127,186,39,0.1); }
.minicta-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.minicta-text { font-family: var(--serif); font-size: 1.2rem; color: var(--dark); font-style: italic; margin: 0; }
.minicta-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.7rem 1.6rem; background: var(--green); color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; border-radius: 8px; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.minicta-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ═══ RESPONSIVE ═══ */

/* ── Mobile Nav Dropdown ── */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 0.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  z-index: 100;
}
.nav-links.mobile-open li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-links.mobile-open li:last-child a { border-bottom: none; }
.nav-links.mobile-open .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Tablet (max 960px) ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  nav .nav-inner { padding: 0.75rem 1.25rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-metrics { display: none; }
  .hero-map-bg { display: none; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content .hero-sub { font-size: 1rem; }
  .hero-buttons { justify-content: center; }

  .europe-inner { grid-template-columns: 1fr; text-align: center; }
  .europe-map-container { max-width: 400px; margin: 0 auto; }
  .europe-facts { justify-content: center; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  
  section { padding: 4rem 1.5rem; }
}



  .spectrum-section { padding: 3.5rem 1.25rem; }
  .spectrum-bar { height: 64px; border-radius: 10px; }
  .spectrum-details { grid-template-columns: 1fr; gap: 1rem; }
  .spec-detail-content { padding: 1.5rem; }
  .spectrum-intro { font-size: 0.9rem; }
  .spectrum-statement-card { padding: 1.75rem; }
  .spectrum-statement-card h3 { font-size: 1.15rem; }
  .spectrum-statement-card p { font-size: 0.85rem; }


@media (max-width: 960px) {
  .spectrum-details { grid-template-columns: repeat(2, 1fr); }
  .spectrum-bar { height: 64px; }
  .spec-seg-label { font-size: 0.8rem; padding: 0 0.6rem; }
  .spec-seg-label { font-size: 0.75rem; padding: 0 0.6rem; }
}

/* ── Mobile (max 700px) ── */
@media (max-width: 700px) {
  .nav-logo { height: 48px; }
  .minicta { padding: 2rem 1.25rem; }
  .minicta-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .minicta-text { font-size: 1.05rem; }
  .minicta-btn { width: 100%; justify-content: center; }

  .results-section { padding: 3.5rem 1.25rem; }
  .results-metrics { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; }
  .results-metric-num { font-size: 1.8rem; }
  .results-cases { grid-template-columns: 1fr; gap: 1rem; }
  .results-case { padding: 1.5rem; }
  .case-headline { font-size: 1.2rem; }


  section { padding: 3rem 1.25rem; }
  
  .hero-content h1 { font-size: 1.9rem; line-height: 1.2; }
  .hero-content .hero-sub { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn-primary, .hero-buttons .btn-ghost { width: 100%; text-align: center; box-sizing: border-box; }
  
  .section-title { font-size: 1.6rem; }
  
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar { padding: 1.75rem; }
  .pillar-icon { font-size: 1.5rem; }

  .process-flow { padding: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-facts { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-text { font-size: 0.95rem; }
  
  .europe-facts { flex-wrap: wrap; gap: 1rem; }
  
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem; }
  
  .cta-section .section-title { font-size: 1.4rem; }

  .ticker-item { width: 100px; margin: 0 0.6rem; }
  
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-links { justify-content: center; }
  
  .impressum-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .impressum-inner { padding: 2rem 1.25rem; }
  
  .datenschutz-content h2 { font-size: 1rem; }

  /* Client page mobile */
  .client-inner { padding-top: 4.5rem; }
  .client-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .client-hero-text h1 { font-size: 1.6rem; }
  .client-hero-facts { width: 100%; justify-content: flex-start; }
  .client-hero-news { position: static; margin-top: 1rem; }
  .client-usps { grid-template-columns: 1fr; }
  .commission-grid { grid-template-columns: 1fr; }
  .campaign-cards { grid-template-columns: 1fr; }
  .client-section h2 { font-size: 1.15rem; }
  .client-back { font-size: 0.8rem; }
}

/* ── Small phones (max 400px) ── */
@media (max-width: 400px) {
  .nav-logo { height: 40px; }
  section { padding: 2.5rem 1rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .nav-inner { padding: 0.6rem 1rem; }
  
  .lang-switch a { font-size: 0.65rem; padding: 0.3rem 0.4rem; }
  .about-facts { grid-template-columns: 1fr; }
  .client-fact { min-width: 70px; }
  .client-hero-facts { gap: 0.75rem; }
}
