:root {
--accent: #EBFF00;
--accent-dim: rgba(235,255,0,0.12);
--accent-glow: rgba(235,255,0,0.25);
--navy: #00264A;
--navy-dark: #001630;
--navy-mid: #003366;
--bg: #010d18;
--bg-2: #021525;
--bg-card: #041e30;
--bg-card-2: #052540;
--bg-tinted: #f5f8fc;
--text: #e8eef5;
--text-muted: #7a9bb8;
--text-faint: #4a6b88;
--text-dark: #0a1a28;
--border: rgba(235,255,0,0.10);
--border-light: rgba(255,255,255,0.06);
--max-w: 1240px;
--pad-x: clamp(1.25rem, 5vw, 2.5rem);
--nav-h: 76px;
--r: 0.75rem;
--r-lg: 1.25rem;
--shadow-card: 0 4px 32px rgba(0,20,40,0.45), 0 0 0 1px rgba(235,255,0,0.06);
--shadow-hover: 0 8px 48px rgba(0,20,40,0.6), 0 0 24px rgba(235,255,0,0.12);
--t: 0.22s ease;
--t-slow: 0.4s ease;
--f-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
--f-headline: 'Barlow Condensed', sans-serif;
--f-body: 'Barlow', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
scroll-behavior: smooth;
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
body {
font-family: var(--f-body);
background: var(--bg);
color: var(--text);
line-height: 1.65;
overflow-x: hidden;
min-height: 100vh;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul { list-style: none; }
#bg-canvas {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
background:
radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0,38,74,0.9) 0%, transparent 60%),
radial-gradient(ellipse 60% 80% at 85% 80%, rgba(0,22,48,0.8) 0%, transparent 60%),
var(--bg);
}
.container {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 var(--pad-x);
position: relative;
z-index: 1;
}
.container--narrow {
max-width: 780px;
}
.section {
padding: clamp(4rem, 8vw, 7rem) 0;
position: relative;
z-index: 1;
}
.section-dark {
background: var(--navy-dark);
}
.section-tinted {
background: var(--bg-tinted, #f5f8fc);
position: relative;
z-index: 1;
isolation: isolate;
}
.section-header {
text-align: center;
margin-bottom: 3.5rem;
}
.section-header--light {}
.section-tag {
display: inline-block;
font-family: var(--f-headline);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
background: var(--accent-dim);
border: 1px solid rgba(235,255,0,0.22);
padding: 0.28rem 0.85rem;
border-radius: 2rem;
margin-bottom: 1rem;
}
.section-tag--light {
color: var(--accent);
}
.section-h2 {
font-family: var(--f-display);
font-size: clamp(2.4rem, 5vw, 3.6rem);
line-height: 1.05;
letter-spacing: 0.01em;
color: var(--text);
margin-bottom: 1rem;
}
.section-h2--light {
color: #e8eef5;
}
.section-tinted .section-h2 {
color: var(--text-dark);
}
.section-tinted .section-tag {
color: var(--navy);
background: rgba(0,38,74,0.08);
border-color: rgba(0,38,74,0.2);
}
.section-intro {
max-width: 560px;
margin: 0 auto;
color: var(--text-muted);
font-size: 1.05rem;
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 900;
height: var(--nav-h);
transition: background var(--t), box-shadow var(--t);
}
.header.scrolled {
background: rgba(1, 13, 24, 0.92);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
box-shadow: 0 1px 0 rgba(235,255,0,0.08), 0 4px 24px rgba(0,0,0,0.4);
}
.nav { height: 100%; }
.nav-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 var(--pad-x);
height: 100%;
display: flex;
align-items: center;
gap: 2rem;
}
.nav-logo {
display: flex;
align-items: center;
flex-shrink: 0;
text-decoration: none;
font-family: var(--f-display);
font-size: 1.85rem;
line-height: 1;
letter-spacing: 0.02em;
}
.nav-logo img {
display: block;
height: 38px;
width: auto;
max-width: 120px;
object-fit: contain;
}
.footer-logo img {
display: block;
height: 32px;
width: auto;
max-width: 100px;
object-fit: contain;
}
.logo-hin { color: #e8eef5; }
.logo-q { color: var(--accent); }
.nav-menu {
display: flex;
align-items: center;
gap: 0.25rem;
margin-left: auto;
}
.nav-link {
font-family: var(--f-headline);
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.04em;
color: var(--text-muted);
padding: 0.5rem 0.85rem;
border-radius: 0.4rem;
transition: color var(--t), background var(--t);
display: flex;
align-items: center;
gap: 0.35rem;
white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
color: var(--text);
background: rgba(255,255,255,0.04);
}
.nav-chevron { transition: transform var(--t); flex-shrink: 0; }
.nav-item.sub-open .nav-chevron { transform: rotate(180deg); }
.nav-item { position: relative; }
.subnav {
position: absolute;
top: calc(100% + 0.75rem);
left: 50%;
transform: translateX(-50%) translateY(-6px);
background: rgba(4, 20, 36, 0.97);
backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: var(--r-lg);
padding: 0.85rem;
min-width: 260px;
opacity: 0;
pointer-events: none;
transition: opacity var(--t), transform var(--t);
box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(235,255,0,0.06);
}
.nav-item.sub-open .subnav,
.nav-item:focus-within .subnav {
opacity: 1;
pointer-events: auto;
transform: translateX(-50%) translateY(0);
}
.subnav-list { display: flex; flex-direction: column; gap: 0.1rem; }
.subnav-list li { position: relative; }
.subnav-link {
display: flex;
align-items: center;
gap: 0.85rem;
padding: 0.65rem 0.75rem;
border-radius: 0.5rem;
color: var(--text);
transition: background var(--t);
}
.subnav-link:hover { background: var(--accent-dim); }
.subnav-icon {
font-size: 1.1rem;
color: var(--accent);
width: 28px;
text-align: center;
flex-shrink: 0;
}
.subnav-label {
font-family: var(--f-headline);
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 0.03em;
}
.subnav-list small {
display: block;
font-size: 0.78rem;
color: var(--text-muted);
padding: 0 0.75rem 0.5rem 3.2rem;
margin-top: -0.25rem;
}
.nav-cta {
font-family: var(--f-headline);
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
background: var(--accent);
color: var(--navy-dark) !important;
padding: 0.55rem 1.25rem;
border-radius: 0.4rem;
margin-left: 0.75rem;
transition: background var(--t), transform var(--t), box-shadow var(--t);
white-space: nowrap;
}
.nav-cta:hover {
background: #fff200;
transform: translateY(-1px);
box-shadow: 0 4px 20px rgba(235,255,0,0.35);
}
.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 40px;
height: 40px;
margin-left: auto;
border-radius: 0.4rem;
padding: 8px;
}
.toggle-bar {
display: block;
width: 100%;
height: 2px;
background: var(--text);
border-radius: 2px;
transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
position: relative;
z-index: 1;
min-height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
padding: calc(var(--nav-h) + 3rem) var(--pad-x) 6rem;
}
.hero-inner {
max-width: var(--max-w);
margin: 0 auto;
width: 100%;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.6rem;
font-family: var(--f-headline);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent);
border: 1px solid rgba(235,255,0,0.28);
background: rgba(235,255,0,0.05);
padding: 0.35rem 1rem;
border-radius: 2rem;
margin-bottom: 1.5rem;
}
.badge-dot {
width: 7px;
height: 7px;
background: var(--accent);
border-radius: 50%;
animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-h1 {
font-family: var(--f-display);
font-size: clamp(3rem, 7vw, 6.5rem);
line-height: 0.95;
letter-spacing: 0.01em;
color: var(--text);
margin-bottom: 1.75rem;
max-width: 900px;
}
.h1-accent {
color: var(--accent);
display: inline-block;
position: relative;
}
.h1-accent::after {
content: '';
position: absolute;
bottom: 0.05em;
left: 0;
right: 0;
height: 3px;
background: var(--accent);
border-radius: 2px;
}
.hero-sub {
font-size: clamp(1rem, 2vw, 1.2rem);
color: var(--text-muted);
max-width: 600px;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--f-headline);
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.07em;
text-transform: uppercase;
padding: 0.85rem 2rem;
border-radius: 0.5rem;
transition: all var(--t);
text-decoration: none;
white-space: nowrap;
cursor: pointer;
border: 2px solid transparent;
}
.btn-primary {
background: var(--accent);
color: var(--navy-dark);
border-color: var(--accent);
}
.btn-primary:hover {
background: #fff200;
border-color: #fff200;
transform: translateY(-2px);
box-shadow: 0 6px 28px rgba(235,255,0,0.4);
}
.btn-primary-sm {
font-family: var(--f-headline);
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 0.07em;
text-transform: uppercase;
background: var(--accent);
color: var(--navy-dark);
padding: 0.6rem 1.4rem;
border-radius: 0.4rem;
display: inline-flex;
align-items: center;
transition: all var(--t);
border: none;
}
.btn-primary-sm:hover {
background: #fff200;
transform: translateY(-1px);
box-shadow: 0 4px 20px rgba(235,255,0,0.35);
}
.btn-ghost {
background: transparent;
color: var(--text-muted);
border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover {
color: var(--text);
border-color: rgba(255,255,255,0.35);
background: rgba(255,255,255,0.04);
}
.btn-ghost-dark {
background: transparent;
color: rgba(255,255,255,0.7);
border-color: rgba(255,255,255,0.25);
}
.btn-ghost-dark:hover {
color: #fff;
border-color: rgba(255,255,255,0.5);
}
.btn-outline {
background: transparent;
color: var(--navy);
border-color: var(--navy);
}
.btn-outline:hover {
background: var(--navy);
color: #fff;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.hero-ctas {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 3.5rem;
}
.hero-stats {
display: flex;
align-items: center;
gap: 2.5rem;
flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
font-family: var(--f-display);
font-size: 2.8rem;
line-height: 1;
color: var(--accent);
}
.stat-suffix {
font-family: var(--f-display);
font-size: 1.8rem;
color: var(--accent);
opacity: 0.7;
}
.stat-label {
display: block;
font-size: 0.8rem;
color: var(--text-muted);
letter-spacing: 0.04em;
margin-top: 0.3rem;
}
.stat-divider {
width: 1px;
height: 40px;
background: rgba(255,255,255,0.1);
flex-shrink: 0;
}
.hero-scroll-indicator {
position: absolute;
bottom: 2.5rem;
left: 50%;
transform: translateX(-50%);
width: 28px;
height: 46px;
border: 2px solid rgba(235,255,0,0.3);
border-radius: 20px;
display: flex;
justify-content: center;
padding-top: 6px;
}
.hero-scroll-indicator span {
display: block;
width: 4px;
height: 10px;
background: var(--accent);
border-radius: 2px;
animation: scroll-bounce 2s ease infinite;
}
@keyframes scroll-bounce {
0%, 100% { transform: translateY(0); opacity: 1; }
80% { transform: translateY(14px); opacity: 0; }
}
.switch-section {
position: relative;
z-index: 1;
background: var(--accent);
padding: 1.5rem 0;
}
.switch-inner {
display: flex;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}
.switch-label {
font-family: var(--f-display);
font-size: 1.4rem;
color: var(--navy-dark);
white-space: nowrap;
letter-spacing: 0.04em;
}
.switch-text {
flex: 1;
font-size: 0.92rem;
color: rgba(0,22,48,0.8);
min-width: 200px;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.service-card {
background: var(--bg-card);
border: 1px solid var(--border-light);
border-radius: var(--r-lg);
padding: 2rem 1.75rem;
position: relative;
transition: transform var(--t), box-shadow var(--t), border-color var(--t);
border-left: 4px solid transparent;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(235,255,0,0.03) 0%, transparent 60%);
pointer-events: none;
opacity: 0;
transition: opacity var(--t);
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-hover);
border-left-color: var(--accent);
border-color: var(--border);
}
.service-card:hover::before { opacity: 1; }
.service-card--wide {
grid-column: 1 / -1;
}
@media (min-width: 900px) {
.service-card--wide {
grid-column: 1 / 3;
}
}
.card-num {
font-family: var(--f-display);
font-size: 5rem;
line-height: 1;
color: rgba(235,255,0,0.06);
position: absolute;
top: 1rem;
right: 1.5rem;
letter-spacing: -0.02em;
user-select: none;
pointer-events: none;
}
.card-icon-wrap {
margin-bottom: 1.25rem;
width: 52px;
height: 52px;
background: var(--accent-dim);
border: 1px solid rgba(235,255,0,0.15);
border-radius: 0.65rem;
display: flex;
align-items: center;
justify-content: center;
}
.card-title {
font-family: var(--f-headline);
font-size: 1.45rem;
font-weight: 800;
letter-spacing: 0.04em;
color: var(--text);
margin-bottom: 0.75rem;
text-transform: uppercase;
}
.card-text {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.65;
margin-bottom: 1.25rem;
}
.card-link {
font-family: var(--f-headline);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
transition: gap var(--t), opacity var(--t);
opacity: 0.8;
}
.card-link:hover { opacity: 1; }
.web-sub-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1.25rem;
}
.web-sub {
background: rgba(235,255,0,0.04);
border: 1px solid rgba(235,255,0,0.1);
border-radius: 0.65rem;
padding: 1rem;
}
.sub-tag {
display: inline-block;
font-family: var(--f-headline);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
background: var(--accent-dim);
border-radius: 0.25rem;
padding: 0.15rem 0.6rem;
margin-bottom: 0.6rem;
}
.web-sub p {
font-size: 0.88rem;
color: var(--text-muted);
line-height: 1.55;
}
.audience-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.audience-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--r-lg);
padding: 2.25rem 2rem;
}
.audience-card--accent {
background: rgba(235,255,0,0.07);
border-color: rgba(235,255,0,0.2);
}
.aud-label {
font-family: var(--f-headline);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.75rem;
}
.aud-title {
font-family: var(--f-headline);
font-size: 1.5rem;
font-weight: 800;
letter-spacing: 0.03em;
color: var(--text);
margin-bottom: 1rem;
line-height: 1.2;
text-transform: uppercase;
}
.audience-card p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.aud-list {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.aud-list li {
font-size: 0.9rem;
color: var(--text-muted);
padding-left: 1.4rem;
position: relative;
}
.aud-list li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
font-size: 0.9rem;
}
.why-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: start;
}
.why-text .section-h2 {
text-align: left;
color: var(--text-dark);
}
.why-text .section-tag {
color: var(--navy);
background: rgba(0,38,74,0.06);
border-color: rgba(0,38,74,0.18);
}
.why-text p {
font-size: 0.98rem;
color: #3a5268;
line-height: 1.75;
margin-bottom: 1rem;
}
.check-item {
display: flex;
gap: 1.1rem;
padding: 1.25rem 0;
border-bottom: 1px solid rgba(0,38,74,0.08);
}
.check-item:last-child { border-bottom: none; }
.check-mark {
font-family: var(--f-headline);
font-size: 1rem;
font-weight: 900;
color: var(--navy);
background: var(--accent);
width: 34px;
height: 34px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 0.15rem;
box-shadow: 0 2px 8px rgba(235,255,0,.35);
}
.check-item strong {
display: block;
font-family: var(--f-headline);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.03em;
text-transform: uppercase;
color: var(--text-dark);
margin-bottom: 0.3rem;
}
.check-item p {
font-size: 0.9rem;
color: #4a6078;
line-height: 1.6;
margin: 0 !important;
}
.process-steps {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.process-step {
flex: 1;
background: #fff;
border: 1px solid rgba(0,38,74,0.1);
border-radius: var(--r-lg);
padding: 1.75rem 1.5rem;
box-shadow: 0 2px 16px rgba(0,38,74,0.06);
}
.step-num {
font-family: var(--f-display);
font-size: 2.5rem;
color: rgba(0,38,74,0.12);
line-height: 1;
margin-bottom: 0.75rem;
letter-spacing: 0.02em;
}
.step-title {
font-family: var(--f-headline);
font-size: 1.1rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--navy);
margin-bottom: 0.6rem;
}
.step-text {
font-size: 0.9rem;
color: #4a6278;
line-height: 1.65;
}
.process-arrow {
font-family: var(--f-display);
font-size: 2rem;
color: rgba(0,38,74,0.2);
flex-shrink: 0;
margin-top: 2.5rem;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 0;
}
.faq-item {
border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-q {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1.4rem 0;
font-family: var(--f-headline);
font-size: 1.05rem;
font-weight: 700;
letter-spacing: 0.02em;
color: var(--text);
text-align: left;
transition: color var(--t);
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-icon {
font-size: 1.5rem;
font-weight: 300;
color: var(--accent);
flex-shrink: 0;
transition: transform var(--t);
line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease;
}
.faq-a p {
font-size: 0.97rem;
color: var(--text-muted);
line-height: 1.75;
padding-bottom: 1.4rem;
}
.cta-section { overflow: hidden; }
.cta-box {
background: var(--navy);
border: 1px solid rgba(235,255,0,0.15);
border-radius: var(--r-lg);
padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.cta-box::before {
content: '';
position: absolute;
top: -40%;
right: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(235,255,0,0.08) 0%, transparent 65%);
pointer-events: none;
}
.cta-content { flex: 1; position: relative; z-index: 1; }
.cta-h2 {
font-family: var(--f-display);
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.05;
color: #e8eef5;
margin-bottom: 0.75rem;
letter-spacing: 0.02em;
}
.cta-sub {
font-size: 1rem;
color: rgba(232,238,245,0.65);
margin-bottom: 2rem;
}
.cta-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.cta-deco {
font-family: var(--f-display);
font-size: clamp(5rem, 12vw, 10rem);
color: rgba(235,255,0,0.05);
letter-spacing: -0.02em;
line-height: 1;
flex-shrink: 0;
user-select: none;
pointer-events: none;
}
.footer {
background: #010a14;
border-top: 1px solid rgba(235,255,0,0.06);
padding: 4rem 0 2rem;
position: relative;
z-index: 1;
}
.footer-grid {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-logo {
font-family: var(--f-display);
font-size: 2rem;
line-height: 1;
display: inline-block;
margin-bottom: 1rem;
letter-spacing: 0.02em;
}
.footer-tagline {
font-size: 0.9rem;
color: #7a9bb8;
margin-bottom: 1rem;
line-height: 1.5;
}
.footer-address {
font-size: 0.85rem;
color: #7a9bb8;
line-height: 1.7;
}
.footer-parent-link {
color: var(--accent);
opacity: 0.75;
transition: opacity var(--t);
}
.footer-parent-link:hover { opacity: 1; }
.footer-heading {
font-family: var(--f-headline);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #9dbdd4;
margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
font-size: 0.9rem;
color: #8fb3cc;
transition: color var(--t);
}
.footer-links a:hover { color: var(--accent); }
.footer-region {
font-size: 0.83rem;
color: #7a9bb8;
line-height: 1.7;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.05);
padding-top: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-copy {
font-size: 0.82rem;
color: #8fb3cc;
}
.cookie-banner {
position: fixed;
bottom: 1.5rem;
left: 1.5rem;
max-width: 380px;
background: rgba(4,20,36,0.97);
backdrop-filter: blur(16px);
border: 1px solid var(--border);
border-radius: var(--r-lg);
padding: 1.25rem 1.5rem;
z-index: 9999;
box-shadow: 0 8px 40px rgba(0,0,0,0.5);
transform: translateY(calc(100% + 2rem));
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
font-size: 0.88rem;
color: var(--text-muted);
margin-bottom: 1rem;
line-height: 1.55;
}
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-btn {
font-family: var(--f-headline);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
background: var(--accent);
color: var(--navy-dark);
padding: 0.55rem 1.25rem;
border-radius: 0.4rem;
transition: background var(--t);
border: none;
cursor: pointer;
}
.cookie-btn:hover { background: #fff200; }
[data-reveal] {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 1023px) {
.nav-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(1,10,18,0.98);
backdrop-filter: blur(20px);
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
padding: calc(var(--nav-h) + 2rem) var(--pad-x) 3rem;
gap: 0.25rem;
overflow-y: auto;
z-index: 950;
}
.nav-menu.open { display: flex; }
.nav-toggle { display: flex; }
.nav-link {
font-size: 1.4rem;
padding: 0.75rem 0.5rem;
color: var(--text);
width: 100%;
}
.nav-cta {
margin-top: 1.5rem;
margin-left: 0;
font-size: 1rem;
padding: 0.85rem 1.5rem;
width: 100%;
justify-content: center;
text-align: center;
}
.subnav {
position: static;
transform: none;
opacity: 1;
pointer-events: auto;
background: rgba(235,255,0,0.04);
border: 1px solid rgba(235,255,0,0.1);
border-radius: var(--r);
margin-left: 0;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
padding: 0.5rem;
min-width: auto;
width: 100%;
box-sizing: border-box;
box-shadow: none;
display: none;
}
.subnav .subnav-list { gap: 0; }
.subnav .subnav-link { padding: 0.65rem 0.75rem; border-radius: 0.4rem; }
.subnav-list small { padding-left: 0.75rem; font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: -0.3rem; margin-bottom: 0.25rem; }
.nav-item.sub-open .subnav { display: block; }
}
@media (max-width: 900px) {
.services-grid {
grid-template-columns: 1fr 1fr;
}
.service-card--wide {
grid-column: 1 / -1;
}
.audience-grid {
grid-template-columns: 1fr;
}
.why-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
.process-steps {
flex-direction: column;
}
.process-arrow {
transform: rotate(90deg);
margin: 0;
align-self: center;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
}
.footer-col--brand {
grid-column: 1 / -1;
}
.cta-box {
flex-direction: column;
text-align: center;
}
.cta-deco { display: none; }
.cta-buttons { justify-content: center; }
}
@media (max-width: 600px) {
.services-grid {
grid-template-columns: 1fr;
}
.web-sub-cards {
grid-template-columns: 1fr;
}
.hero-h1 {
font-size: clamp(3rem, 14vw, 5rem);
}
.hero-stats {
gap: 1.5rem;
}
.stat-divider { height: 30px; }
.switch-inner {
flex-direction: column;
text-align: center;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.hero-ctas {
flex-direction: column;
}
.hero-ctas .btn { width: 100%; justify-content: center; }
.cookie-banner {
left: 1rem;
right: 1rem;
max-width: none;
}
}
.no-js [data-reveal] {
opacity: 1;
transform: none;
}
.reviews-score-bar {
display: grid;
grid-template-columns: 200px 1fr;
gap: 3rem;
background: #fff;
border: 1px solid rgba(0,38,74,.1);
border-radius: var(--r-lg);
padding: 2rem 2.5rem;
margin-bottom: 2.5rem;
align-items: center;
box-shadow: 0 2px 16px rgba(0,38,74,.06);
}
.reviews-big-num {
font-family: var(--f-display);
font-size: 5rem;
color: var(--navy);
line-height: 1;
letter-spacing: -.02em;
}
.reviews-stars { display: flex; gap: .2rem; margin: .5rem 0 .4rem; }
.star { font-size: 1.5rem; color: #f59e0b; }
.reviews-count { font-size: 0.97rem; color: #4a6278; margin-bottom: .25rem; }
.reviews-count strong { color: var(--navy); }
.reviews-source {
font-family: var(--f-headline);
font-size: .7rem; font-weight: 700;
letter-spacing: .1em; text-transform: uppercase;
color: rgba(0,38,74,.35);
}
.reviews-bar-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.reviews-bar-label {
font-family: var(--f-headline); font-size: .8rem; font-weight: 700;
color: #4a6278; width: 32px; flex-shrink: 0;
}
.reviews-bar-wrap {
flex: 1; height: 8px;
background: rgba(0,38,74,.08);
border-radius: 4px; overflow: hidden;
}
.reviews-bar-fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.reviews-bar-pct { font-size: .8rem; color: #4a6278; width: 20px; text-align: right; flex-shrink: 0; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.review-card {
background: #fff;
border: 1px solid rgba(0,38,74,.1);
border-radius: var(--r-lg);
padding: 1.75rem;
display: flex; flex-direction: column; gap: 1rem;
box-shadow: 0 2px 12px rgba(0,38,74,.05);
transition: box-shadow var(--t), transform var(--t);
}
.review-card:hover {
box-shadow: 0 8px 28px rgba(0,38,74,.1);
transform: translateY(-2px);
}
.review-card-header { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
width: 46px; height: 46px; border-radius: 50%;
background: var(--navy);
display: flex; align-items: center; justify-content: center;
font-family: var(--f-display); font-size: 1.1rem; color: var(--accent);
flex-shrink: 0;
}
.review-name {
font-family: var(--f-headline); font-size: 1rem;
font-weight: 700; letter-spacing: .04em; color: var(--navy);
}
.review-company { font-size: .8rem; color: #7a9bb8; margin-top: .1rem; }
.review-stars { margin-left: auto; font-size: 1.1rem; color: #f59e0b; flex-shrink: 0; letter-spacing: .05em; }
.review-text {
font-size: .96rem; color: #3a5268; line-height: 1.82;
border-left: 3px solid rgba(0,38,74,.1);
padding-left: 1rem; margin: 0;
font-style: normal; flex: 1;
}
.review-footer {
display: flex; justify-content: space-between;
align-items: center; flex-wrap: wrap; gap: .5rem;
}
.review-date {
font-size: .8rem; color: #7a9bb8;
font-family: var(--f-headline); letter-spacing: .05em;
}
.review-verified {
font-size: .78rem; color: #16a34a;
font-family: var(--f-headline); font-weight: 700; letter-spacing: .04em;
}
.reviews-schema { display: none; }
@media (max-width: 900px) {
.reviews-score-bar { grid-template-columns: 1fr; gap: 1.5rem; }
.reviews-grid { grid-template-columns: 1fr; }
}
.wa-float {
position: fixed;
bottom: 1.75rem;
right: 1.75rem;
z-index: 9999;
width: 56px;
height: 56px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 16px rgba(37,211,102,.45);
transition: transform .2s, box-shadow .2s;
text-decoration: none;
will-change: transform;
}
.wa-float:hover {
transform: scale(1.08) translateY(-2px);
box-shadow: 0 8px 24px rgba(37,211,102,.5);
}
.wa-float svg { flex-shrink: 0; }
.wa-float::before {
content: 'WhatsApp';
position: absolute;
right: calc(100% + .75rem);
background: #1a1a1a;
color: #fff;
font-size: .78rem;
font-family: var(--f-body);
padding: .35rem .75rem;
border-radius: .4rem;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity .2s;
}
.wa-float:hover::before { opacity: 1; }
@media (max-width: 480px) {
.wa-float { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
.wa-float::before { display: none; }
}
.section-tinted .section-intro,
.section-tinted .section-h2,
[style*="background:var(--bg-tinted)"] .section-intro {
color: #4a6278;
}
.art-prose .gls-term-en,
.art-prose small {
color: #5a7a94;
}
.h4-label {
display: block;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: .01ms !important;
animation-iteration-count: 1 !important;
transition-duration: .01ms !important;
scroll-behavior: auto !important;
}
#bg-canvas { display: none; }
[data-reveal] {
opacity: 1 !important;
transform: none !important;
}
.wa-float { transition: none; }
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
img[loading="lazy"] {
background: rgba(0,38,74,.08);
}
img {
max-width: 100%;
height: auto;
}
:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 3px;
border-radius: 3px;
}
.btn:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 3px;
}
.notfound-section {
min-height: 80vh;
display: flex;
align-items: center;
position: relative;
z-index: 1;
}
.notfound-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 var(--pad-x);
text-align: center;
}
.notfound-num {
font-family: var(--f-display);
font-size: clamp(8rem, 20vw, 16rem);
line-height: 1;
color: rgba(235,255,0,.06);
letter-spacing: -.02em;
margin-bottom: -2rem;
}
.notfound-h1 {
font-family: var(--f-display);
font-size: clamp(2.5rem, 6vw, 5rem);
color: #fff;
margin-bottom: 1rem;
letter-spacing: .01em;
}
.notfound-sub {
font-size: 1.05rem;
color: var(--text-muted);
max-width: 480px;
margin: 0 auto 2.5rem;
line-height: 1.7;
}
.notfound-links {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.cs-hero {
position: relative; z-index: 1;
padding: calc(var(--nav-h) + 4rem) var(--pad-x) 3rem;
}
.cs-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.cs-results-bar {
display: flex; gap: 0; flex-wrap: wrap;
background: var(--accent);
border-radius: var(--r-lg);
overflow: hidden;
margin: 3rem 0;
max-width: var(--max-w);
padding: 0 var(--pad-x);
}
.cs-result-item {
flex: 1; min-width: 150px;
padding: 1.75rem 2rem;
border-right: 1px solid rgba(0,38,74,.1);
text-align: center;
}
.cs-result-item:last-child { border-right: none; }
.cs-result-num {
font-family: var(--f-display);
font-size: clamp(2.5rem, 5vw, 4rem);
color: var(--navy);
line-height: 1;
letter-spacing: .01em;
}
.cs-result-label {
font-family: var(--f-headline);
font-size: .75rem;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(0,38,74,.6);
margin-top: .4rem;
}
.cs-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 4rem;
max-width: var(--max-w);
margin: 0 auto;
padding: 2rem var(--pad-x) 5rem;
position: relative; z-index: 1;
background: var(--bg-tinted);
}
.cs-prose h2 {
font-family: var(--f-display);
font-size: clamp(1.7rem, 3vw, 2.4rem);
color: var(--navy);
margin: 2.5rem 0 .85rem;
}
.cs-prose h2:first-child { margin-top: 0; }
.cs-prose p { font-size: 1rem; color: #3a5268; line-height: 1.85; margin-bottom: 1.05rem; }
.cs-prose ul { margin: .75rem 0 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.cs-prose ul li { font-size: .97rem; color: #3a5268; padding-left: 1.4rem; position: relative; line-height: 1.65; }
.cs-prose ul li::before { content: '→'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.cs-prose strong { color: var(--text-dark); font-weight: 600; }
.cs-box {
border-radius: var(--r);
padding: 1.25rem 1.5rem;
margin: 1.75rem 0;
}
.cs-box-navy { background: var(--navy); color: var(--text); }
.cs-box-navy p { color: rgba(232,238,245,.8); font-size: .92rem; line-height: 1.7; margin: 0; }
.cs-box-light { background: rgba(0,38,74,.04); border: 1px solid rgba(0,38,74,.1); }
.cs-box-light p { color: #3a5268; font-size: .92rem; line-height: 1.7; margin: 0; }
.cs-box-title { font-family: var(--f-headline); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; }
.cs-box-navy .cs-box-title { color: var(--accent); }
.cs-box-light .cs-box-title { color: var(--navy); }
.ref-teaser {
background: var(--navy-dark);
border: 1px solid rgba(235,255,0,.1);
border-radius: var(--r-lg);
padding: 2.5rem 3rem;
display: grid;
grid-template-columns: 1fr auto;
gap: 2rem;
align-items: center;
transition: border-color var(--t);
}
.ref-teaser:hover { border-color: rgba(235,255,0,.22); }
.ref-teaser-kpi {
display: flex;
gap: 2rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.ref-kpi-item { text-align: center; }
.ref-kpi-num { font-family: var(--f-display); font-size: 2.2rem; color: var(--accent); line-height: 1; }
.ref-kpi-label { font-size: .75rem; font-family: var(--f-headline); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-top: .2rem; }
@media (max-width: 960px) {
.cs-layout { grid-template-columns: 1fr; }
.ref-teaser { grid-template-columns: 1fr; }
.cs-results-bar { margin: 3rem var(--pad-x); padding: 0; }
}
@media (max-width: 600px) {
.cs-result-item { min-width: 45%; border-bottom: 1px solid rgba(0,38,74,.1); }
}
.wa-float{position:fixed;bottom:1.75rem;right:1.75rem;z-index:9999;width:56px;height:56px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,.45);transition:transform .2s,box-shadow .2s;text-decoration:none;will-change:transform;}
.wa-float:hover{transform:scale(1.08) translateY(-2px);box-shadow:0 8px 24px rgba(37,211,102,.5);}
.wa-float::before{content:'WhatsApp schreiben';position:absolute;right:calc(100% + .75rem);background:#1a1a1a;color:#fff;font-size:.76rem;font-family:var(--f-body);padding:.35rem .75rem;border-radius:.4rem;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s;}
.wa-float:hover::before{opacity:1;}
@media(max-width:480px){.wa-float{bottom:1rem;right:1rem;width:50px;height:50px;}.wa-float::before{display:none;}}
.section-tinted .section-intro{color:#4a6278;}
.bg-tinted .section-intro{color:#4a6278;}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:3px;}
@media(prefers-reduced-motion:reduce){
*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important;}
#bg-canvas{display:none;}
[data-reveal]{opacity:1!important;transform:none!important;}
}
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;}
img{max-width:100%;height:auto;}
img[loading="lazy"]{background:rgba(0,38,74,.06);}
.h4-label{display:block;}
.notfound-section{min-height:80vh;display:flex;align-items:center;position:relative;z-index:1;}
.notfound-inner{max-width:var(--max-w);margin:0 auto;padding:0 var(--pad-x);text-align:center;}
.notfound-num{font-family:var(--f-display);font-size:clamp(8rem,20vw,16rem);line-height:1;color:rgba(235,255,0,.06);letter-spacing:-.02em;margin-bottom:-3rem;user-select:none;}
.notfound-h1{font-family:var(--f-display);font-size:clamp(2.5rem,6vw,5rem);color:#fff;margin-bottom:1rem;letter-spacing:.01em;}
.notfound-sub{font-size:1.05rem;color:var(--text-muted);max-width:480px;margin:0 auto 2.5rem;line-height:1.7;}
.notfound-links{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.cs-hero{position:relative;z-index:1;padding:calc(var(--nav-h) + 4rem) var(--pad-x) 3rem;}
.cs-hero-inner{max-width:var(--max-w);margin:0 auto;}
.cs-results-bar{display:flex;flex-wrap:wrap;background:var(--accent);border-radius:var(--r-lg);overflow:hidden;margin:0 auto 4rem;max-width:var(--max-w);position:relative;z-index:1;}
.cs-result-item{flex:1;min-width:160px;padding:1.75rem 2rem;border-right:1px solid rgba(0,38,74,.12);text-align:center;}
.cs-result-item:last-child{border-right:none;}
.cs-result-num{font-family:var(--f-display);font-size:clamp(2.5rem,5vw,4rem);color:var(--navy);line-height:1;}
.cs-result-label{font-family:var(--f-headline);font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(0,38,74,.6);margin-top:.4rem;}
.cs-layout{display:grid;grid-template-columns:1fr 300px;gap:4rem;max-width:var(--max-w);margin:0 auto;padding:3rem var(--pad-x) 5rem;position:relative;z-index:1;background:var(--bg-tinted);}
.cs-prose h2{font-family:var(--f-display);font-size:clamp(1.7rem,3vw,2.4rem);color:var(--navy);margin:2.5rem 0 .85rem;}
.cs-prose h2:first-child{margin-top:0;}
.cs-prose p{font-size:1rem;color:#3a5268;line-height:1.85;margin-bottom:1.05rem;}
.cs-prose ul{margin:.75rem 0 1.25rem;display:flex;flex-direction:column;gap:.5rem;}
.cs-prose li{font-size:.97rem;color:#3a5268;padding-left:1.4rem;position:relative;line-height:1.65;}
.cs-prose li::before{content:'→';position:absolute;left:0;color:var(--navy);font-weight:700;}
.cs-prose strong{color:var(--text-dark);font-weight:600;}
.cs-prose a{color:var(--navy);text-decoration:underline;text-underline-offset:3px;}
.cs-box{border-radius:var(--r);padding:1.25rem 1.5rem;margin:1.75rem 0;}
.cs-box-navy{background:var(--navy);}
.cs-box-navy p{color:rgba(232,238,245,.8);font-size:.93rem;line-height:1.7;margin:0;}
.cs-box-light{background:rgba(0,38,74,.04);border:1px solid rgba(0,38,74,.1);}
.cs-box-light p{color:#3a5268;font-size:.93rem;line-height:1.7;margin:0;}
.cs-box-title{font-family:var(--f-headline);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.5rem;}
.cs-box-navy .cs-box-title{color:var(--accent);}
.cs-box-light .cs-box-title{color:var(--navy);}
.cs-sidebar{position:sticky;top:calc(var(--nav-h) + 2rem);display:flex;flex-direction:column;gap:1.25rem;}
.cs-scard{border-radius:var(--r-lg);padding:1.5rem;}
.cs-scard h3,.cs-scard-title{font-family:var(--f-headline);font-size:.75rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin-bottom:.85rem;}
.cs-scard p{font-size:.88rem;color:rgba(232,238,245,.7);line-height:1.65;margin-bottom:.85rem;}
.cs-link{display:block;font-size:.88rem;color:rgba(232,238,245,.65);padding:.4rem 0;border-bottom:1px solid rgba(255,255,255,.05);transition:color .2s;line-height:1.4;}
.cs-link:hover{color:var(--accent);}
.cs-link:last-child{border-bottom:none;}
.ref-teaser{background:var(--navy-dark);border:1px solid rgba(235,255,0,.1);border-radius:var(--r-lg);padding:2rem 2.5rem;display:grid;grid-template-columns:1fr auto;gap:2rem;align-items:center;transition:border-color var(--t);}
.ref-teaser:hover{border-color:rgba(235,255,0,.22);}
.ref-teaser-kpis{display:flex;gap:2rem;flex-wrap:wrap;margin-top:1.25rem;}
.ref-teaser .btn{margin-top:1.5rem;}
.ref-kpi{text-align:center;}
.ref-kpi-num{font-family:var(--f-display);font-size:2rem;color:var(--accent);line-height:1;}
.ref-kpi-label{font-size:.7rem;font-family:var(--f-headline);font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin-top:.15rem;}
@media(max-width:900px){.cs-layout{grid-template-columns:1fr;}.cs-sidebar{position:static;}.ref-teaser{grid-template-columns:1fr;}}
@media(max-width:600px){.cs-result-item{min-width:48%;}}
.gls-letter-block {
scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.section-tinted .why-text .section-h2 { color: var(--text-dark, #0a1a28); }
.section-tinted .why-text .section-tag {
color: var(--navy);
background: rgba(0,38,74,0.08);
border-color: rgba(0,38,74,0.2);
}
.section-tinted .why-text p { color: #3a5268; }
.section-tinted .check-item strong { color: var(--text-dark, #0a1a28); }
.section-tinted .check-item p { color: #4a6278; }
.section-tinted .check-mark { color: var(--navy); background: var(--accent); }
.hero-inner--split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
}
.hero-content {
}
.hero-q-col {
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 1rem;
}
.hero-q-img {
display: block;
width: auto;
height: clamp(260px, 62vh, 680px);
max-width: 100%;
object-fit: contain;
animation: q-float 7s ease-in-out infinite;
user-select: none;
}
@keyframes q-float {
0%, 100% { transform: translateY(0) rotate(0deg); }
33% { transform: translateY(-14px) rotate(0.4deg); }
66% { transform: translateY(-6px) rotate(-0.3deg); }
}
@media (max-width: 860px) {
.hero-inner--split {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.hero-q-col {
justify-content: center;
padding-right: 0;
}
.hero-q-img {
height: clamp(140px, 35vw, 240px);
animation: none;
}
}
@media (max-width: 560px) {
.hero-q-col { display: none; }
}
/* ═══════════════════════════════════════════════════════════════
   FLATTERBAND-DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.tape-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--pad-x) - 2rem);
  z-index: 10;
  margin-bottom: 2.5rem;
}

.tape-strip {
  position: relative;
  transform: rotate(-1.8deg);
  transform-origin: center center;
  filter:
    drop-shadow(0 4px 10px rgba(0,0,0,0.45))
    drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  overflow: hidden;
  line-height: 0;
}

.tape-svg {
  display: block;
  width: 100%;
  height: 54px;
}

@media (max-width: 768px) {
  .tape-wrap { margin: 0 -1.5rem; margin-bottom: 2rem; }
  .tape-strip { transform: rotate(-2.5deg); }
  .tape-svg { height: 44px; }
}

/* ═══════════════════════════════════════════════════════════════
   ZWEI TYPEN, EINE LÖSUNG – SW-SECTION
   ═══════════════════════════════════════════════════════════════ */
.sw-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.sw-container { position: relative; z-index: 2; }

/* Hintergrund-Arcs */
.sw-bg-arcs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sw-bg-arcs svg {
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: auto;
  min-width: 900px;
}

/* Headline */
.sw-headline {
  text-align: center;
  margin-bottom: 3rem;
}
.sw-badge {
  display: inline-block;
  font-family: var(--f-headline);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(235,255,0,.4);
  border-radius: 2rem;
  padding: .3rem 1rem;
  margin-bottom: 1.25rem;
}
.sw-h2 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .95;
  color: #fff;
  letter-spacing: .01em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.sw-accent { color: var(--accent); }

/* Connector Bar */
.sw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}
.sw-conn-label {
  font-family: var(--f-headline);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding: 0 1rem;
}
.sw-conn-line--left,
.sw-conn-line--right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235,255,0,.5));
}
.sw-conn-line--right {
  background: linear-gradient(90deg, rgba(235,255,0,.5), transparent);
}
.sw-conn-q {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(235,255,0,.6);
  background: rgba(235,255,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* Karten-Grid */
.sw-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}

/* Basis-Karte */
.sw-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.sw-card--wechsel {
  background: rgba(0,38,74,.45);
  border: 1px solid rgba(30,140,255,.25);
}
.sw-card--neustart {
  background: rgba(0,30,20,.45);
  border: 1px solid rgba(100,180,100,.2);
}
.sw-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.sw-card-labels { flex: 1; }
.sw-card-badge {
  font-family: var(--f-headline);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .5rem;
}
.sw-card-h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.sw-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(235,255,0,.3);
  background: rgba(235,255,0,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.sw-card-p {
  font-size: 1.05rem;
  color: rgba(232,238,245,.72);
  line-height: 1.78;
  margin: 0;
}

/* Listen */
.sw-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  list-style: none;
  padding: 0; margin: 0;
  flex: 1;
}
.sw-list li {
  font-size: 1rem;
  color: rgba(232,238,245,.8);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}
.sw-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Service-Icons am Kartenende */
.sw-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.25rem;
  margin-top: auto;
}
.sw-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
  padding: .85rem .5rem;
  border-radius: var(--r);
  background: rgba(0,0,0,.2);
  transition: background var(--t);
}
.sw-service:hover { background: rgba(235,255,0,.06); }
.sw-service-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-service-name {
  font-family: var(--f-headline);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.sw-service-sub {
  font-size: .7rem;
  color: rgba(232,238,245,.45);
  line-height: 1.3;
}

/* Trust Strip */
.sw-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  /* Rand-zu-Rand: aus dem Container ausbrechen */
  width: 100vw;
  margin-top: 2.5rem;
  margin-left: calc(50% - 50vw);
  padding: 1.75rem clamp(1.5rem, 5vw, 5rem);
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.sw-trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,.05);
}
.sw-trust-item:last-child { border-right: none; }
.sw-trust-icon { color: var(--accent); flex-shrink: 0; }
.sw-trust-name {
  display: block;
  font-family: var(--f-headline);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.sw-trust-sub {
  display: block;
  font-size: .75rem;
  color: rgba(232,238,245,.5);
  margin-top: .15rem;
}

/* ── Nav CTA: Filled Yellow Button (Mockup-Style) ─────────────── */
.nav-cta {
  background: var(--accent) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: .5rem 1.25rem !important;
  border-radius: .4rem !important;
  font-family: var(--f-headline) !important;
  font-weight: 800 !important;
  font-size: .82rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover {
  background: #d4e600 !important;
  transform: translateY(-1px) !important;
  color: var(--navy) !important;
}

/* ── Flatterband: Zwei dünne Andeutungs-Streifen ─────────────── */
/* VORHER: einzelner dicker Streifen → JETZT: doppelt, dünn, subtil */
.tape-wrap {
  position: relative;
  height: auto;
  margin: 0 calc(-1 * var(--pad-x));
  z-index: 10;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tape-strip {
  position: relative;
  transform: rotate(-0.8deg);
  transform-origin: center center;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  overflow: hidden;
  line-height: 0;
}
.tape-svg {
  display: block;
  width: 100%;
  height: 18px; /* Dünn statt 54px */
}

/* Responsive */
@media (max-width: 900px) {
  .sw-cards { grid-template-columns: 1fr; }
  .sw-services { grid-template-columns: repeat(4, 1fr); gap: .35rem; }
  .sw-trust { grid-template-columns: 1fr 1fr; }
  .sw-trust-item { padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.05); }
  .sw-trust-item:nth-child(2), .sw-trust-item:nth-child(4) { border-right: none; }
  .sw-conn-label { font-size: .68rem; }
}
@media (max-width: 560px) {
  .sw-services { grid-template-columns: repeat(2, 1fr); }
  .sw-trust { grid-template-columns: 1fr; }
  .sw-trust-item { border-right: none; }
  .tape-svg { height: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONEN – ZWEI TYPEN SEKTION
   ═══════════════════════════════════════════════════════════════ */

/* ── Hintergrund-Arcs: Orbiting Dash + sanftes Pulsieren ──────── */
@keyframes arc-orbit {
  from { stroke-dashoffset: 3267; }
  to   { stroke-dashoffset: 0; }
}
@keyframes arc-pulse-opacity {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1.6; }
}
@keyframes arc-orbit-2 {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -2639; }
}

/* Äußerster Kreis: ein langsamer Dash-Orbit */
.sw-bg-arcs circle:nth-child(1) {
  animation: arc-pulse-opacity 9s ease-in-out infinite;
}

.sw-bg-arcs circle:nth-child(2) {
  animation: arc-pulse-opacity 11s ease-in-out infinite 2s;
}

/* Dritter (Gelb): sanftes Opacity-Pulsieren */
.sw-bg-arcs circle:nth-child(3) {
  animation: arc-pulse-opacity 6s ease-in-out infinite 1s;
}

/* Vierter (innen): anderer Rhythmus */
.sw-bg-arcs circle:nth-child(4) {
  animation: arc-pulse-opacity 8s ease-in-out infinite 2.5s;
}

/* ── Q-Connector-Kreis: Dot-Grid + sanftes Glühen ─────────────── */
.sw-conn-q {
  position: relative;
  overflow: hidden;
  /* Sanfter Border-Glow Puls */
  animation: q-border-glow 4s ease-in-out infinite;
}

/* Dot-Grid als Pseudo-Element */
.sw-conn-q::before {
  content: '';
  position: absolute;
  inset: -4px;   /* etwas größer damit Dots bis Rand reichen */
  border-radius: 50%;
  background-image: radial-gradient(
    circle,
    rgba(235,255,0,0.55) 1px,
    transparent 1px
  );
  background-size: 7px 7px;
  animation: q-grid-drift 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* SVG-Icon bleibt über dem Grid */
.sw-conn-q > svg {
  position: relative;
  z-index: 1;
}

@keyframes q-grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 7px 7px; }
}

@keyframes q-border-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(235,255,0,0);
    border-color: rgba(235,255,0,.4);
  }
  50% {
    box-shadow: 0 0 12px 2px rgba(235,255,0,.18);
    border-color: rgba(235,255,0,.75);
  }
}

/* ── Connector-Linien: Shimmer-Effekt ─────────────────────────── */
.sw-conn-line--left,
.sw-conn-line--right {
  overflow: hidden;
  position: relative;
}
.sw-conn-line--left::after,
.sw-conn-line--right::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(235,255,0,.9), transparent);
  animation: line-shimmer 3s ease-in-out infinite;
}
.sw-conn-line--right::after {
  animation-delay: 1.5s;
  animation-direction: reverse;
}

@keyframes line-shimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

/* Prefers-reduced-motion: alle Animationen abschalten */
@media (prefers-reduced-motion: reduce) {
  .sw-bg-arcs circle,
  .sw-conn-q,
  .sw-conn-q::before,
  .sw-conn-line--left::after,
  .sw-conn-line--right::after { animation: none; }

}

/* ═══════════════════════════════════════════════════════════════
   PROZESS-FLATTERBAND (ptape)
   Oben: schräg + HINQ-Logo | Unten: gerade, breiter
   ═══════════════════════════════════════════════════════════════ */

/* ── Gemeinsamer Basis-Container ─────────────────────────────── */
.ptape {
  position: relative;
  /* Echter Rand-zu-Rand: volle Viewport-Breite */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  z-index: 20;
  line-height: 0;
}

/* ── OBERES TAPE ──────────────────────────────────────────────── */
.ptape--upper {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo sitzt mittig ÜBER dem Band, breiter als das Band */
.ptape-logo {
  position: relative;
  z-index: 2;
  margin-bottom: -14px; /* Logo schwebt zur Hälfte über den Streifen */
}
.ptape-logo-img {
  display: block;
  height: 44px;       /* etwas größer als die Bandbreite */
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Streifen selbst */
.ptape-strip--tilted {
  width: 100%;
  transform: rotate(-1.4deg);
  transform-origin: center center;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  overflow: hidden;
}

/* ── UNTERES TAPE ─────────────────────────────────────────────── */
.ptape--lower {
  margin-top: 0;      /* direkt angehängt, kein Abstand nach oben */
  margin-bottom: 0;
}

/* Gerader Streifen, kein rotate */
.ptape--lower .ptape-strip {
  width: 100%;
  filter: drop-shadow(0 -3px 8px rgba(0,0,0,0.35));
  overflow: hidden;
}

/* SVGs */
.ptape-strip svg,
.ptape-strip--tilted svg {
  display: block;
  width: 100%;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ptape {
    margin-left:  calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
  }
  .ptape-logo-img { height: 36px; margin-bottom: -10px; }
  .ptape-strip--tilted { transform: rotate(-2deg); }
}

/* Prozess-Sektion: reduziertes Padding oben (Tape sitzt direkt oben) */
#prozess { padding-top: clamp(1rem, 2.5vw, 2rem) !important; }

/* Trust-Item Text-Trennung sicherstellen */
.sw-trust-name { display: block; }
.sw-trust-sub  { display: block; margin-top: 0.2rem; }

/* Trust responsive */
@media (max-width: 860px) {
  .sw-trust { grid-template-columns: 1fr 1fr; }
  .sw-trust-item { border-bottom: 1px solid rgba(255,255,255,.05); padding: .9rem 1.25rem; }
  .sw-trust-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .sw-trust { grid-template-columns: 1fr; padding: 1.25rem var(--pad-x); }
  .sw-trust-item { border-right: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PROZESS-SEKTION – VON ANFRAGE BIS ERGEBNIS
   ═══════════════════════════════════════════════════════════════ */

/* Container */
.prozess-container { position: relative; }

/* Badge */
.prozess-badge {
  display: inline-block;
  font-family: var(--f-headline);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid rgba(0,38,74,.35);
  border-radius: 2rem;
  padding: .3rem 1rem;
  margin-bottom: 1.25rem;
}

/* H2 */
.prozess-header { text-align: center; margin-bottom: 3.5rem; }
.prozess-h2 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
  color: var(--navy);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.prozess-dot { color: var(--accent); }

/* Karten-Grid mit Pfeilen */
.prozess-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 3rem;
}

/* Pfeil zwischen Karten */
.prozess-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .75rem;
  color: rgba(0,38,74,.25);
  flex-shrink: 0;
}

/* Einzelne Karte */
.prozess-card {
  background: #fff;
  border: 1px solid rgba(0,38,74,.08);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,38,74,.06);
  transition: box-shadow .2s, transform .2s;
}
.prozess-card:hover {
  box-shadow: 0 6px 28px rgba(0,38,74,.1);
  transform: translateY(-2px);
}

/* Obere Zeile: Nummer + Icon */
.prozess-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* Große verblasste Hintergrundzahl */
.prozess-num {
  font-family: var(--f-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(0,38,74,.07);
  letter-spacing: -.02em;
  user-select: none;
}

/* Icon-Wrapper */
.prozess-icon-wrap {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(0,38,74,.12);
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

/* Titel */
.prozess-card-title {
  font-family: var(--f-headline);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}

/* Gelber Unterstrich */
.prozess-card-line {
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: .9rem;
}

/* Beschreibungstext */
.prozess-card-p {
  font-size: .97rem;
  color: #3a5268;
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* ── Verlaufs-Timeline ─────────────────────────────────────────── */
.prozess-timeline { padding: 0 0 1.5rem; }

.prozess-tl-track {
  position: relative;
  padding: 1.5rem 0 0;
}

/* Verlaufsbalken: Navy → Neongelb */
.prozess-tl-bar {
  position: absolute;
  top: calc(1.5rem + 18px); /* Mitte der Dots */
  left: calc(12.5%);
  right: calc(12.5%);
  height: 3px;
  background: linear-gradient(to right, var(--navy) 0%, var(--navy) 33%, #5a8a00 55%, var(--accent) 100%);
  border-radius: 2px;
}

/* Steps-Wrapper */
.prozess-tl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.prozess-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

/* Dot-Varianten */
.prozess-tl-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-headline);
  font-size: .9rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  background: #fff;
}

/* 1: Gefüllt Navy */
.prozess-tl-dot--filled {
  background: var(--navy);
  color: #fff;
  border: 3px solid var(--navy);
}
/* 2: Navy Outline */
.prozess-tl-dot--navy {
  background: #fff;
  color: var(--navy);
  border: 2.5px solid var(--navy);
}
/* 3: Mittlerer Übergang */
.prozess-tl-dot--mid {
  background: #fff;
  color: #3a6a00;
  border: 2.5px solid #5a9a10;
}
/* 4: Neongelb */
.prozess-tl-dot--accent {
  background: #fff;
  color: #6a7000;
  border: 2.5px solid var(--accent);
}

.prozess-tl-label {
  font-size: .88rem;
  color: #3a5268;
  font-family: var(--f-headline);
  font-weight: 600;
  letter-spacing: .04em;
}

/* Responsive */
@media (max-width: 900px) {
  .prozess-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }
  .prozess-arrow { display: none; }
  .prozess-tl-bar { left: 8%; right: 8%; }
}
@media (max-width: 560px) {
  .prozess-cards { grid-template-columns: 1fr; }
  .prozess-tl-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .prozess-tl-bar { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA – HINQ LOGO GLITCH EFFEKT
   ═══════════════════════════════════════════════════════════════ */

.cta-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem 1rem 1rem;
}

.glitch-logo {
  position: relative;
  display: inline-block;
  width: clamp(140px, 18vw, 220px);
}

.glitch-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Haupt-Layer */
.glitch-img--main {
  position: relative;
  z-index: 2;
  animation: glitch-main 6s steps(1) infinite;
}

/* Roter Channel-Shift (leicht rechts + oben) */
.glitch-img--r {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0;
  filter: saturate(0) brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(310deg);
  animation: glitch-r 6s steps(1) infinite;
}

/* Blauer Channel-Shift (leicht links + unten) */
.glitch-img--b {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0;
  filter: saturate(0) brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(150deg);
  animation: glitch-b 6s steps(1) infinite;
}

/* ── Keyframes ──────────────────────────────────────────────── */

/* Haupt: kurze Clip-Verschiebungen */
@keyframes glitch-main {
  0%, 80%, 100%  { transform: none; clip-path: none; }
  81%            { transform: translate(-2px, 1px); clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%); }
  82%            { transform: translate(2px, -1px); clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%); }
  83%            { transform: translate(-1px, 2px); clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%); }
  84%            { transform: none; clip-path: none; }
  85%            { transform: translate(3px, 0);    clip-path: polygon(0 70%, 100% 70%, 100% 90%, 0 90%); }
  86%            { transform: none; clip-path: none; }
}

/* Roter Layer: zeitversetzt, andere Slice */
@keyframes glitch-r {
  0%, 80%, 100%  { opacity: 0; transform: none; }
  81%            { opacity: 0.6; transform: translate(4px, -2px);
                   clip-path: polygon(0 0%, 100% 0%, 100% 35%, 0 35%); }
  82%            { opacity: 0.5; transform: translate(-3px, 1px);
                   clip-path: polygon(0 60%, 100% 60%, 100% 85%, 0 85%); }
  83%            { opacity: 0; transform: none; }
  85%            { opacity: 0.4; transform: translate(2px, 0);
                   clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%); }
  86%            { opacity: 0; }
}

/* Blauer Layer: nochmal zeitversetzt */
@keyframes glitch-b {
  0%, 81%, 100%  { opacity: 0; transform: none; }
  82%            { opacity: 0.5; transform: translate(-4px, 2px);
                   clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%); }
  83%            { opacity: 0.4; transform: translate(2px, -2px);
                   clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%); }
  84%            { opacity: 0.3; transform: translate(-1px, 1px);
                   clip-path: polygon(0 0%, 100% 0%, 100% 20%, 0 20%); }
  85%            { opacity: 0; }
  86%            { opacity: 0.4; transform: translate(3px, 1px);
                   clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
  87%            { opacity: 0; }
}

/* CTA-Box: flex-direction anpassen wenn Logo drin */
.cta-box {
  flex-direction: row-reverse; /* Logo rechts, Text links */
}

@media (max-width: 860px) {
  .cta-box { flex-direction: column; }
  .cta-logo-wrap { padding: 0 0 1.5rem; }
  .glitch-logo { width: clamp(100px, 35vw, 160px); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .glitch-img--main,
  .glitch-img--r,
  .glitch-img--b { animation: none; }
  .glitch-img--r,
  .glitch-img--b { display: none; }
}
