/*
Theme Name: local1
Theme URI: https://local1.example
Author: Andreas Maurer
Author URI: https://local1.example
Description: Individuelles WordPress-Theme für lokale SEO / Google Ads / Webdesign Landingpage – nachgebaut nach Figma-Make-Design "LOCAL1". Dunkles Navy (#071B33) + Blau (#1769E0 / #4195FF), Manrope/Inter, mit Scroll-Animationen, animiertem SVG-Diagramm, Testimonial-Video-Mockup, FAQ-Akkordeon u.v.m.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: local1
*/

/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */
:root {
	--navy: #071B33;
	--navy-2: #0D315B;
	--navy-3: #0A2447;
	--navy-4: #0D2F5E;
	--navy-deep: #050F1E;
	--navy-deep-2: #0A1628;
	--navy-deep-3: #071020;

	--blue: #1769E0;
	--blue-bright: #4195FF;
	--blue-pale: #DCEBFF;
	--blue-tint: #F5F9FF;
	--blue-tint-2: #E8F0F7;
	--blue-tint-3: #DCE8F5;
	--blue-tint-4: #C8DDEF;

	--gray-ink: #5F6368;
	--gray-line: rgba(7, 27, 51, 0.08);
	--gray-line-2: rgba(7, 27, 51, 0.12);
	--gray-bg: #F1F3F4;
	--gray-bg-2: #F8F9FA;
	--gray-bg-3: #F0F0F0;

	--white: #FFFFFF;

	--font-heading: 'Manrope', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;

	--container: 1280px;
	--container-narrow: 860px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-pill: 999px;

	--shadow-sm: 0 2px 8px rgba(7, 27, 51, 0.06);
	--shadow-md: 0 8px 24px rgba(7, 27, 51, 0.08);
	--shadow-lg: 0 20px 60px rgba(7, 27, 51, 0.14);
	--shadow-blue: 0 2px 8px rgba(23, 105, 224, 0.2);

	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

body {
	font-family: var(--font-body);
	color: var(--navy);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -0.02em;
	line-height: 1.15;
}

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

@media (max-width: 768px) {
	.container, .container-narrow { padding: 0 20px; }
}

/* ==========================================================================
   2. TYPE SCALE
   ========================================================================== */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--blue-pale);
	color: var(--blue);
	border-radius: var(--radius-pill);
	padding: 5px 12px;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.eyebrow::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--blue);
}
.eyebrow.on-dark {
	background: rgba(65, 149, 255, 0.15);
	color: var(--blue-bright);
}

h1.h1, .h1 {
	font-size: clamp(38px, 5.5vw, 76px);
	letter-spacing: -0.03em;
	line-height: 1.08;
}
h2.h2, .h2 {
	font-size: clamp(30px, 3.5vw, 48px);
	letter-spacing: -0.025em;
	line-height: 1.15;
}
h3.h3, .h3 {
	font-size: clamp(20px, 2vw, 24px);
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.lede {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--gray-ink);
	line-height: 1.65;
	max-width: 560px;
}
.on-dark .lede, .lede.on-dark { color: rgba(255,255,255,0.72); }

.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 16px; color: var(--gray-ink); font-size: 17px; }

.text-blue { color: var(--blue); }
.text-blue-bright { color: var(--blue-bright); }

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: var(--radius-sm);
	padding: 14px 28px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
	background: var(--blue);
	color: var(--white);
	box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: #1558bd; box-shadow: 0 8px 20px rgba(23,105,224,0.32); }
.btn-secondary {
	background: transparent;
	color: var(--navy);
	border: 1px solid var(--gray-line-2);
}
.btn-secondary:hover { background: var(--blue-tint); border-color: var(--blue); }
.btn-on-dark {
	background: var(--white);
	color: var(--navy);
}
.btn-on-dark:hover { background: var(--blue-pale); }
.btn-ghost-on-dark {
	background: rgba(255,255,255,0.08);
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.2);
}
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-link {
	color: var(--blue);
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.btn-link .arrow { transition: transform 0.2s var(--ease); }
.btn-link:hover .arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ==========================================================================
   4. HEADER / NAV
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	height: 65px;
	display: flex;
	align-items: center;
	background: rgba(255,255,255,0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--gray-line);
	transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 19px;
	color: var(--navy);
	flex-shrink: 0;
}
.brand-mark {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}
.brand-mark svg { width: 16px; height: 16px; }
.brand .accent { color: var(--blue); }

.nav-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.nav-menu a {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--navy);
	opacity: 0.75;
	transition: opacity 0.2s var(--ease);
}
.nav-menu a:hover { opacity: 1; color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.nav-toggle {
	display: none;
	width: 40px; height: 40px;
	align-items: center; justify-content: center;
	border-radius: 8px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
	content: '';
	display: block;
	width: 20px; height: 2px;
	background: var(--navy);
	position: relative;
	transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle::before { position: absolute; transform: translateY(-6px); }
.nav-toggle::after { position: absolute; transform: translateY(6px); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: rotate(45deg); }
.nav-toggle.is-open::after { transform: rotate(-45deg); }

@media (max-width: 980px) {
	.nav-menu {
		position: fixed;
		top: 65px; left: 0; right: 0;
		background: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 24px 28px;
		gap: 4px;
		border-bottom: 1px solid var(--gray-line);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.25s var(--ease);
	}
	.nav-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
	.nav-menu li { width: 100%; }
	.nav-menu a { display: block; padding: 10px 0; opacity: 1; }
	.header-cta .btn-sm.hide-mobile { display: none; }
	.nav-toggle { display: flex; }
}

/* ==========================================================================
   5. SECTION WRAPPERS
   ========================================================================== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-tight { padding: 72px 0; }
.section-hero { padding: 150px 0 90px; background: linear-gradient(180deg, #F5F9FF 0%, #FFFFFF 60%); }
.section-dark {
	background: var(--navy);
	color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark .lede { color: rgba(255,255,255,0.7); }
.section-tint { background: var(--blue-tint); }
.section-tint-2 { background: var(--blue-tint-2); }

.bg-gradient-navy {
	background: radial-gradient(120% 140% at 15% 0%, var(--navy-3) 0%, var(--navy) 45%, var(--navy-deep-2) 100%);
}

@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.section-hero { padding: 110px 0 56px; }
}

/* ==========================================================================
   6. REVEAL ANIMATIONS
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes drawLine { from { stroke-dashoffset: 300px; } to { stroke-dashoffset: 0; } }
@keyframes pinDrop {
	0% { opacity: 0; transform: translate(-50%, -100%) scale(0.4); }
	70% { transform: translate(-50%, -100%) scale(1.15); }
	100% { opacity: 1; transform: translate(-50%, -100%) scale(1); }
}
@keyframes pulseRing {
	0% { box-shadow: 0 0 #1769e059; }
	70% { box-shadow: 0 0 0 10px #1769e000; }
	100% { box-shadow: 0 0 #1769e000; }
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Hidden-until-scrolled state only applies once JS confirmed it can reveal
   again (html.has-js, set synchronously in <head>) — keeps content visible
   for no-JS visitors and avoids a flash-of-hidden-content. */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.has-js .reveal { opacity: 0; transform: translateY(28px); }
html.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
html.has-js .reveal-left { transform: translateX(-28px); }
html.has-js .reveal-left.is-visible { transform: translateX(0); }
html.has-js .reveal-right { transform: translateX(28px); }
html.has-js .reveal-right.is-visible { transform: translateX(0); }
html.has-js .reveal-scale { transform: scale(0.94); }
html.has-js .reveal-scale.is-visible { transform: scale(1); }

.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

.float-badge { animation: floatY 3s ease-in-out infinite; }
.draw-line { stroke-dasharray: 300; stroke-dashoffset: 300px; }
.draw-line.active { animation: drawLine 0.8s ease-out forwards; }
html.has-js .map-pin.pin-animated { opacity: 0; }
.map-pin.pin-animated.in-view { animation: pinDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* ==========================================================================
   7. GRID HELPERS
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ==========================================================================
   8. CARDS
   ========================================================================== */
.card {
	background: var(--white);
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-md);
	padding: 32px;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-box {
	width: 44px; height: 44px;
	border-radius: 10px;
	background: var(--blue-tint);
	color: var(--blue);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.icon-box svg { width: 20px; height: 20px; }

/* ==========================================================================
   9. HERO
   ========================================================================== */
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lede { margin-bottom: 28px; }

.hero-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.hero-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--navy); font-weight: 500; }
.hero-checklist svg { flex-shrink: 0; color: var(--blue); }

.hero-meta { margin-top: 16px; font-size: 13px; color: var(--gray-ink); }

.hero-visual { position: relative; }
.browser-mock {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1px solid var(--gray-line);
}
.browser-mock .bm-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--gray-line);
	background: var(--gray-bg-2);
}
.bm-dot { width: 10px; height: 10px; border-radius: 50%; }
.bm-dot.red { background: #FF5F57; }
.bm-dot.yellow { background: #FEBC2E; }
.bm-dot.green { background: #28C840; }
.bm-url {
	flex: 1;
	background: var(--white);
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-pill);
	padding: 6px 14px;
	font-size: 12px;
	color: var(--gray-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.browser-mock .bm-body { padding: 20px; }
.search-row {
	display: flex; align-items: center; gap: 10px;
	border: 1px solid var(--gray-line-2);
	border-radius: var(--radius-pill);
	padding: 10px 16px;
	margin-bottom: 18px;
	color: var(--gray-ink);
	font-size: 14px;
}
.search-row svg { color: var(--blue); flex-shrink: 0; }

.map-panel {
	position: relative;
	height: 200px;
	border-radius: var(--radius-md);
	background:
		linear-gradient(var(--gray-line) 1px, transparent 1px) 0 0/32px 32px,
		linear-gradient(90deg, var(--gray-line) 1px, transparent 1px) 0 0/32px 32px,
		var(--blue-tint);
	overflow: hidden;
	margin-bottom: 18px;
}
.map-pin {
	position: absolute;
	width: 28px; height: 28px;
	border-radius: 50% 50% 50% 0;
	background: var(--blue);
	transform: translate(-50%, -100%) rotate(-45deg);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 10px rgba(23,105,224,0.4);
	color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 12px;
}
.map-pin span { transform: rotate(45deg); }
.map-pin.pin-1 { background: var(--navy); }

.result-list { display: flex; flex-direction: column; gap: 8px; }
.result-row {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px; padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid var(--gray-line);
	font-size: 13px;
}
.result-row.is-you { border-color: var(--blue); background: var(--blue-tint); }
.result-row .rr-left { display: flex; align-items: center; gap: 10px; }
.result-row .rr-num {
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--gray-bg); color: var(--navy);
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.result-row.is-you .rr-num { background: var(--blue); color: #fff; }
.rr-stars { color: #F4B400; font-size: 11px; }

.float-chip {
	position: absolute;
	background: var(--white);
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-lg);
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
	display: flex; align-items: center; gap: 8px;
	z-index: 5;
	white-space: nowrap;
}
.float-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #28C840; }
.float-chip.chip-blue { background: var(--blue); color: #fff; }

/* ==========================================================================
   10. PILLS / TAGS
   ========================================================================== */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--blue-tint);
	color: var(--blue);
	border-radius: var(--radius-pill);
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
}
.tag-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ==========================================================================
   11. LEISTUNGEN (Services)
   ========================================================================== */
.service-card {
	background: var(--white);
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.service-card.is-featured {
	background: linear-gradient(145deg, var(--blue) 0%, var(--navy-2) 100%);
	color: #fff;
	border: none;
	box-shadow: var(--shadow-lg);
}
.service-card.is-featured h3, .service-card.is-featured p { color: #fff; }
.service-card .icon-box { background: var(--blue-tint); color: var(--blue); }
.service-card.is-featured .icon-box { background: rgba(255,255,255,0.16); color: #fff; }
.service-card .kicker {
	font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--blue); margin-bottom: 10px;
}
.service-card.is-featured .kicker { color: rgba(255,255,255,0.75); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-ink); margin-bottom: 20px; font-size: 15px; }
.service-card.is-featured p { color: rgba(255,255,255,0.85); }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.service-list svg { flex-shrink: 0; color: var(--blue); }
.service-card.is-featured .service-list svg { color: #fff; }
.service-card .btn-link { margin-top: auto; }
.service-card.is-featured .btn-link { color: #fff; }

.connector-text { text-align: center; color: var(--gray-ink); font-size: 15px; margin-top: 48px; }

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */
.testi-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.testi-tabs { display: inline-flex; background: rgba(255,255,255,0.06); border-radius: var(--radius-pill); padding: 4px; gap: 4px; }
.testi-tab {
	padding: 8px 18px; border-radius: var(--radius-pill);
	font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
	transition: all 0.2s var(--ease);
}
.testi-tab.is-active { background: var(--blue); color: #fff; }

.testi-featured {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 0;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
@media (max-width: 860px) { .testi-featured { grid-template-columns: 1fr; } }

.testi-video {
	position: relative;
	background: linear-gradient(160deg, var(--navy-2), var(--navy-deep));
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	padding: 24px;
}
.testi-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 64px; height: 64px; border-radius: 50%;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.3);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	backdrop-filter: blur(6px);
	transition: transform 0.2s var(--ease);
}
.testi-video:hover .testi-play { transform: translate(-50%, -50%) scale(1.08); }
.testi-controls { position: relative; width: 100%; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.testi-progress { height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; overflow: hidden; }
.testi-progress span { display: block; height: 100%; width: 32%; background: #fff; }
.testi-controls-row { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.8); font-size: 12px; }
.testi-controls-row .right { display: flex; align-items: center; gap: 10px; }

.testi-content { padding: 40px; display: flex; flex-direction: column; }
.testi-metrics { display: flex; gap: 32px; margin-bottom: 24px; flex-wrap: wrap; }
.testi-metric b { display: block; font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--blue-bright); }
.testi-metric span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.testi-content h3 { margin-bottom: 14px; }
.testi-content p.story { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--blue); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-person .name { font-weight: 700; font-size: 14px; }
.testi-person .role { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.badge-verified {
	margin-left: auto;
	background: rgba(40,200,64,0.15);
	color: #4ADE80;
	font-size: 11px; font-weight: 700;
	padding: 5px 10px; border-radius: var(--radius-pill);
	display: flex; align-items: center; gap: 5px;
	white-space: nowrap;
}
.badge-verified::before { content: '✓'; }

.mini-testi-grid { margin-top: 24px; }
.mini-testi {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-md);
	padding: 24px;
	transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.mini-testi:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.mini-testi .stars { color: #F4B400; font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.mini-testi p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 18px; }
.mini-testi .testi-person .name { color: #fff; }

/* ==========================================================================
   13. PROBLEM / REASONS
   ========================================================================== */
.reason-card {
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-md);
	padding: 24px;
	background: #fff;
}
.reason-card .num {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 24px;
	color: var(--blue-pale);
	-webkit-text-stroke: 1px var(--blue);
	margin-bottom: 10px;
	display: block;
}
.reason-card .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
.reason-card p { font-size: 15px; color: var(--navy); }

.quote-section { text-align: center; padding: 120px 0; }
.quote-section blockquote {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(26px, 4vw, 44px);
	line-height: 1.35;
	max-width: 900px;
	margin: 0 auto 24px;
}
.quote-section .lede { margin: 0 auto; text-align: center; }

/* ==========================================================================
   14. DIAGRAM (How Google Works)
   ========================================================================== */
.diagram-wrap { display: flex; align-items: center; justify-content: center; position: relative; min-height: 380px; }
.diagram-node {
	position: absolute;
	background: #fff;
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-pill);
	padding: 10px 16px;
	font-size: 12.5px;
	font-weight: 600;
	box-shadow: var(--shadow-sm);
	white-space: nowrap;
}
.diagram-center {
	position: absolute;
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 130px; height: 130px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 13px;
	line-height: 1.3;
	box-shadow: 0 20px 40px rgba(23,105,224,0.35);
	z-index: 3;
}
.diagram-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.diagram-svg path { fill: none; stroke: var(--gray-line-2); stroke-width: 1.5; }

/* ==========================================================================
   15. ECOSYSTEM GRID (Solution)
   ========================================================================== */
.ecosystem-wrap {
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-lg);
	background: var(--blue-tint);
	padding: 56px 32px;
	position: relative;
}
.ecosystem-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
@media (max-width: 900px) { .ecosystem-grid { grid-template-columns: repeat(2, 1fr); } }
.eco-item {
	background: #fff;
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-sm);
	padding: 16px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.eco-item:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: var(--shadow-sm); }
.eco-center {
	grid-column: 3;
	background: var(--blue);
	color: #fff;
	border-radius: var(--radius-md);
	display: flex; align-items: center; justify-content: center;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 13px;
	line-height: 1.3;
	padding: 16px;
}
@media (max-width: 900px) { .eco-center { grid-column: 1 / -1; order: -1; } }

/* ==========================================================================
   16. OUTCOME 2x2
   ========================================================================== */
.outcome-card {
	background: #fff;
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-md);
	padding: 32px;
}
.outcome-card h3 { font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.outcome-card p { color: var(--gray-ink); font-size: 15px; }

/* ==========================================================================
   17. PROCESS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }
.process-sticky { position: sticky; top: 100px; align-self: start; }
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.process-step {
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-lg);
	padding: 32px;
	background: #fff;
}
.process-step .step-num {
	font-family: var(--font-heading);
	font-weight: 800;
	color: var(--blue);
	font-size: 14px;
	margin-bottom: 6px;
}
.process-step .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-ink); margin-bottom: 10px; }
.process-step p { color: var(--gray-ink); margin-bottom: 20px; }
.process-visual {
	background: var(--navy);
	border-radius: var(--radius-md);
	padding: 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	color: #fff;
}
.process-visual .pv-col span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.pv-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.15); overflow: hidden; margin-top: 6px; }
.pv-bar span { display: block; height: 100%; background: var(--blue-bright); width: 0; transition: width 1s var(--ease) 0.2s; }
.process-step.is-visible .pv-bar span { width: var(--pct); }

.progress-rows { display: flex; flex-direction: column; gap: 14px; }
.progress-row { display: grid; grid-template-columns: 70px 1fr 40px; align-items: center; gap: 12px; font-size: 13px; }
.progress-track { height: 8px; background: var(--gray-bg); border-radius: 4px; overflow: hidden; }
.progress-track span { display: block; height: 100%; background: var(--blue); width: 0; border-radius: 4px; transition: width 1.1s var(--ease) 0.15s; }
.process-step.is-visible .progress-track span { width: var(--pct); }

.growth-chart {
	background: var(--navy);
	border-radius: var(--radius-md);
	padding: 24px;
	color: #fff;
}
.growth-chart .label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }

/* ==========================================================================
   18. CASE STUDY
   ========================================================================== */
.case-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--gray-bg-2);
	border-radius: var(--radius-pill);
	padding: 4px;
	max-width: 420px;
	margin: 0 auto 40px;
}
.case-toggle button {
	padding: 12px 0;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 14px;
	color: var(--gray-ink);
	transition: all 0.25s var(--ease);
}
.case-toggle button.is-active { background: var(--blue); color: #fff; }

.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
.case-stat {
	background: #fff;
	border: 1px solid var(--gray-line);
	border-radius: var(--radius-md);
	padding: 24px;
	text-align: center;
}
.case-stat .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-ink); margin-bottom: 10px; }
.case-stat b { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--navy); }
.case-stat.is-good b { color: var(--blue); }
.case-note { text-align: center; font-size: 12.5px; color: var(--gray-ink); margin-top: 20px; }

/* ==========================================================================
   19. GOOGLE MAPS SECTION
   ========================================================================== */
.gmaps-panel {
	position: relative;
	height: 380px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background:
		linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px) 0 0/40px 40px,
		linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0/40px 40px,
		var(--navy-2);
	border: 1px solid rgba(255,255,255,0.1);
}
.gmaps-card {
	position: absolute; bottom: 20px; left: 20px; right: 20px;
	background: #fff; color: var(--navy);
	border-radius: var(--radius-md);
	padding: 18px;
	box-shadow: var(--shadow-lg);
}
.gmaps-card .title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.gmaps-card .meta { font-size: 12.5px; color: var(--gray-ink); margin-bottom: 14px; }
.gmaps-card .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.gmaps-card .actions span {
	font-size: 12px; font-weight: 600; color: var(--blue);
	border: 1px solid var(--gray-line-2); border-radius: var(--radius-pill);
	padding: 6px 12px;
}
.feature-check { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.feature-check li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.feature-check svg { color: var(--blue-bright); flex-shrink: 0; }

/* ==========================================================================
   20. TEAM / ÜBER UNS
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.team-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 320px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .caption {
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(0deg, rgba(7,27,51,0.85), transparent);
	color: #fff; padding: 20px;
}
.team-photo .caption .t { font-weight: 700; }
.team-photo .caption .s { font-size: 13px; opacity: 0.8; }

.team-values { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.value-row {
	background: var(--blue-tint);
	border-radius: var(--radius-md);
	padding: 16px 18px;
}
.value-row b { display: block; margin-bottom: 4px; }
.value-row span { font-size: 14px; color: var(--gray-ink); }

.team-photo-sm { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }
.team-photo-sm img { width: 100%; height: 220px; object-fit: cover; }

.cta-bar {
	margin-top: 32px;
	background: var(--navy);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 16px;
	color: #fff;
}
.cta-bar b { font-size: 17px; display: block; }
.cta-bar span { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   21. EXPERT SECTION
   ========================================================================== */
.expert-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .expert-grid { grid-template-columns: 1fr; } }
.expert-photo-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.expert-photo-wrap img { width: 100%; height: 420px; object-fit: cover; }
.expert-overlay {
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(0deg, rgba(7,27,51,0.92), rgba(7,27,51,0.1) 70%, transparent);
	padding: 24px;
	color: #fff;
}
.expert-overlay .name { font-family: var(--font-heading); font-weight: 800; font-size: 20px; }
.expert-overlay .role { font-size: 13px; color: rgba(255,255,255,0.75); }
.expert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.expert-rating { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--gray-line); flex-wrap: wrap; gap: 12px; }
.expert-rating .stars { color: #F4B400; }
.expert-panel {
	background: var(--navy);
	border-radius: var(--radius-lg);
	padding: 40px;
	color: #fff;
	margin-top: 32px;
}

/* ==========================================================================
   22. FAQ ACCORDION
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--gray-line); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 20px 24px; text-align: left; background: transparent;
}
.faq-question span { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.faq-icon {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--blue-pale);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	transition: transform 0.25s var(--ease);
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); background: var(--blue); color: #fff; }
.faq-item.is-open .faq-icon svg path { stroke: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-answer-inner { padding: 0 24px 22px; color: var(--gray-ink); font-size: 15px; line-height: 1.65; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ==========================================================================
   23. FINAL CTA
   ========================================================================== */
.final-cta { position: relative; text-align: center; padding: 130px 0; }
.final-cta::before {
	content: '';
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(65,149,255,0.28) 0%, transparent 70%);
	animation: glowPulse 4s ease-in-out infinite;
	pointer-events: none;
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 { max-width: 720px; margin: 0 auto 16px; }
.final-cta .lede { margin: 0 auto 36px; text-align: center; }
.final-float { position: absolute; z-index: 2; }

/* ==========================================================================
   24. FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid .brand { color: #fff; margin-bottom: 14px; }
.footer-grid p { font-size: 14px; max-width: 280px; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 14px; margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 24px;
	display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
	font-size: 13px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ==========================================================================
   25. MISC UTILITIES
   ========================================================================== */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.max-w-narrow { max-width: 640px; margin-left: auto; margin-right: auto; }
.hide-mobile { display: revert; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
.hide-desktop { display: none; }
@media (max-width: 768px) { .hide-desktop { display: revert; } }

::selection { background: var(--blue); color: #fff; }

/* Skip link for accessibility */
.skip-link {
	position: absolute; left: -999px; top: 0;
	background: var(--blue); color: #fff; padding: 10px 16px; z-index: 2000;
}
.skip-link:focus { left: 10px; top: 10px; }
