/* ================================
   DATA Consult GmbH — Ghost Theme
   Beige + Imperial Blue + Heritage Feel
   ================================ */

:root {
    /* Beige Palette — lighter, less saturated */
    --cream: #fcfaf7;
    --warm-beige: #f5f0ea;
    --mid-beige: #e8e2d9;
    --sand: #d4c9b8;
    --warm-gray: #9e9585;
    --dark-warm: #5c5447;
    --charcoal: #3a342c;
    --deep: #2a2520;

    /* Imperial Blue */
    --teal: #002395;
    --teal-light: #1E4DB5;
    --teal-bright: #3B6DD9;
    --teal-deep: #001A6E;
    --teal-glow: rgba(0, 35, 149, 0.15);

    /* Premium accent — gold, used sparingly */
    --accent: #D4A843;
    --accent-light: #E5B863;

    /* Typography */
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Sizing */
    --max-w: 1160px;
    --pad: 2rem;
    --header-h: 4.5rem;
    --radius: 8px;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 6rem 0; }


/* === Section Header === */
.section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.section__label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}
.section__label::before, .section__label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--sand);
}
.section__label::before { left: 0; }
.section__label::after { right: 0; }

.section__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep);
}
.section__title em {
    font-style: italic;
    color: var(--teal);
}

.section__subtitle {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--dark-warm);
    line-height: 1.7;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.btn--primary {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 2px 12px var(--teal-glow);
}
.btn--primary:hover {
    background: var(--teal-light);
    box-shadow: 0 4px 20px rgba(26, 107, 106, 0.25);
    transform: translateY(-1px);
}
.btn--outline {
    color: var(--teal);
    border: 1.5px solid var(--teal);
    background: transparent;
}
.btn--outline:hover {
    background: var(--teal);
    color: #fff;
}
.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ================================
   NAVIGATION
   ================================ */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-h);
    z-index: 999;
    transition: all 0.3s;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--sand);
}
.header.scrolled {
    background: rgba(250, 246, 240, 1);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav__logo {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    z-index: 10;
}
.nav__logo .site-logo {
    max-height: 2.5rem;
    width: auto;
}
.nav__logo-data {
    font-family: var(--serif);
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 0.02em;
}
.nav__logo-sep {
    color: var(--sand);
    margin: 0 0.4rem;
    font-weight: 300;
}
.nav__logo-rest {
    color: var(--dark-warm);
    font-weight: 400;
    font-size: 1rem;
}
.nav__menu {
    display: flex;
    align-items: center;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__list .nav, ul.nav {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__list .nav li, ul.nav li {
    display: flex;
    align-items: center;
}
.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav__list .nav a, ul.nav a, .nav__link, .nav__actions a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-warm);
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}
.nav__list .nav a::after, ul.nav a::after, .nav__link::after, .nav__actions a:not(.nav__link--primary)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--teal);
    transition: width 0.3s;
}
.nav__list .nav a:hover, ul.nav a:hover, .nav__list .nav li.nav-current-item a, ul.nav li.nav-current-item a, .nav__link:hover, .nav__link.active, .nav__actions a:hover {
    color: var(--teal);
}
.nav__list .nav a:hover::after, ul.nav a:hover::after, .nav__list .nav li.nav-current-item a::after, ul.nav li.nav-current-item a::after, .nav__link:hover::after, .nav__link.active::after, .nav__actions a:not(.nav__link--primary):hover::after {
    width: 100%;
}
.nav__link--primary {
    background: var(--teal);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}
.nav__link--primary:hover {
    background: var(--teal-light);
}
.nav__link--primary::after {
    display: none;
}
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1004;
    background: transparent;
    padding: 12px;
    transition: transform 0.2s;
    position: relative;
}
.nav__toggle:hover {
    transform: scale(1.05);
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    position: absolute;
    transform-origin: center;
    left: 50%;
    margin-left: -12px;
}
.nav__toggle span:nth-child(1) {
    transform: translateY(-6px);
}
.nav__toggle span:nth-child(2) {
    transform: translateY(0);
}
.nav__toggle span:nth-child(3) {
    transform: translateY(6px);
}
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-h);
    z-index: 999;
    transition: all 0.3s;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--sand);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100vw;
    margin-left:0;
}

    .nav__toggle {
        display: flex;
        z-index: 9999;
    }
    .nav__toggle.active {
        z-index: 9999;
    }
    .nav__logo {
        font-size: 1rem;
        z-index: 1003;
    }
    .nav__logo .site-logo {
        max-height: 2rem;
    }
    .nav__logo-rest {
        font-size: 0.9rem;
    }
	.nav__menu {
		position: fixed;
		top: var(--header-h);
		right: 0;
		width: 100%;
		max-width: none;
		padding: 1.5rem 1.25rem 2rem;
		background: var(--cream);
		box-shadow: none;
		border-top: 1px solid var(--sand);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}


	.nav__menu.show {
		transform: translateX(0);
		right: 0;
	}
    .nav__menu::-webkit-scrollbar {
        width: 4px;
    }
    .nav__menu::-webkit-scrollbar-track {
        background: transparent;
    }
    .nav__menu::-webkit-scrollbar-thumb {
        background: var(--sand);
        border-radius: 2px;
    }
    .nav__menu::-webkit-scrollbar-thumb:hover {
        background: var(--warm-gray);
    }
    .nav__list {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: flex-start !important;
    }
    .nav__list .nav, ul.nav {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: flex-start !important;
    }
    .nav__list .nav li, ul.nav li {
        display: block !important;
        width: 100%;
    }
    .nav__actions {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: flex-start !important;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--sand);
    }
    .nav__list .nav a, ul.nav a, .nav__link, .nav__actions a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s, transform 0.3s;
    }
    .nav__menu.show .nav__list .nav a,
    .nav__menu.show ul.nav a,
    .nav__menu.show .nav__link,
    .nav__menu.show .nav__actions a {
        opacity: 1;
        transform: translateX(0);
    }
    .nav__menu.show .nav__list .nav a:nth-child(1),
    .nav__menu.show ul.nav a:nth-child(1) { transition-delay: 0.1s; }
    .nav__menu.show .nav__list .nav a:nth-child(2),
    .nav__menu.show ul.nav a:nth-child(2) { transition-delay: 0.15s; }
    .nav__menu.show .nav__list .nav a:nth-child(3),
    .nav__menu.show ul.nav a:nth-child(3) { transition-delay: 0.2s; }
    .nav__menu.show .nav__list .nav a:nth-child(4),
    .nav__menu.show ul.nav a:nth-child(4) { transition-delay: 0.25s; }
    .nav__menu.show .nav__list .nav a:nth-child(5),
    .nav__menu.show ul.nav a:nth-child(5) { transition-delay: 0.3s; }
    .nav__actions a:not(.nav__link--primary)::after {
        display: none;
    }
    .nav__toggle { z-index: 9999; }
    .nav__toggle.active { z-index: 9999; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav__list {
        gap: 1.5rem;
    }
    .nav__list .nav, ul.nav {
        gap: 1.8rem;
    }
    .nav__actions {
        gap: 0.8rem;
    }
    .nav__list .nav a, ul.nav a, .nav__link, .nav__actions a {
        font-size: 0.8rem;
    }
    .nav__link--primary {
        padding: 0.4rem 0.8rem;
    }
}

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
}
.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 2rem;
}
.hero__est {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand);
    display: inline-block;
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--deep);
    margin-bottom: 1.25rem;
}
.hero__title em {
    font-style: italic;
    color: var(--teal);
}
.hero__subtitle {
    font-size: 0.95rem;
    color: var(--teal);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.hero__body {
    font-size: 1rem;
    color: var(--dark-warm);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Helix canvas area — full viewport height */
.hero__right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 0;
}
.hero__right canvas {
    position: absolute;
    top: -5%; left: 0;
    width: 100%; height: 110%;
}

/* Scroll Hint — clickable arrow */
.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hero__scroll-hint span {
    font-size: 0.7rem;
    color: var(--warm-gray);
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.hero__scroll-hint:hover span {
    color: var(--teal);
}
.hero__scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    height: 40px;
    position: relative;
}
/* Vertical line */
.hero__scroll-line {
    width: 1px;
    height: 24px;
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--teal);
    animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
    0% { top: -100%; }
    100% { top: 100%; }
}
/* Chevron — two 45° lines meeting at bottom center to form ∨ */
.hero__scroll-chevron {
    width: 16px;
    height: 10px;
    position: relative;
    margin-top: 2px;
}
.hero__scroll-chevron::before,
.hero__scroll-chevron::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 1.5px;
    background: var(--teal);
    border-radius: 1px;
    animation: chevron-in 2s infinite;
}
.hero__scroll-chevron::before {
    right: 50%;
    transform-origin: bottom right;
    transform: rotate(45deg);
    animation-delay: 0s;
}
.hero__scroll-chevron::after {
    left: 50%;
    transform-origin: bottom left;
    transform: rotate(-45deg);
    animation-delay: 0.15s;
}
@keyframes chevron-in {
    0%, 20% {
        opacity: 0;
        width: 0;
    }
    50%, 80% {
        opacity: 1;
        width: 10px;
    }
    100% {
        opacity: 0;
        width: 0;
    }
}
.hero__scroll-hint:hover .hero__scroll-chevron::before,
.hero__scroll-hint:hover .hero__scroll-chevron::after {
    background: var(--teal-light);
    width: 12px;
}

@media (max-width: 768px) {
.hero__scroll-hint {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	z-index: 2;
	text-decoration: none;
	cursor: pointer;
	padding: 0.5rem;
}
}

/* ================================
   ABOUT
   ================================ */
.about { position: relative; z-index: 1; background: var(--warm-beige); }
.about__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}
.about__lead {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--deep);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.about__text p {
    color: var(--dark-warm);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.about__text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.stat {
    padding: 1.75rem;
    background: var(--cream);
    border: 1px solid var(--mid-beige);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}
.stat:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 20px var(--teal-glow);
}
.stat__number {
    font-family: var(--serif);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}
.stat__percent {
    font-size: 1.5rem;
}
.stat__unit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}
.stat__desc {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* Values */
.about__values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--mid-beige);
}
.value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-warm);
}
.value__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.6;
}

/* ================================
   SERVICES
   ================================ */
.services {
    position: relative;
    z-index: 1;
    background: var(--cream);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.svc {
    background: var(--cream);
    border: 1px solid var(--mid-beige);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.svc::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.svc:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 30px var(--teal-glow);
    transform: translateY(-3px);
}
.svc:hover::before { transform: scaleX(1); }
.svc__number {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}
.svc__title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.75rem;
}
.svc__text {
    font-size: 0.9rem;
    color: var(--dark-warm);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.svc__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.svc__detail span {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    background: var(--warm-beige);
    border: 1px solid var(--mid-beige);
    border-radius: 4px;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

/* ================================
   WHY US
   ================================ */
.why-us { position: relative; z-index: 1; background: var(--warm-beige); }
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.why__features { display: flex; flex-direction: column; gap: 0; }
.why__feat {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}
.why__feat:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 6.5px;
    top: 14px;
    height: calc(100% + 7px);
    width: 1.5px;
    background: var(--mid-beige);
}
.why__feat-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 7px;
    position: relative;
    z-index: 1;
}
.why__feat h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.4rem;
}
.why__feat p {
    font-size: 0.9rem;
    color: var(--dark-warm);
    line-height: 1.7;
}

/* Security Panel */
.sec-panel {
    background: var(--deep);
    color: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.sec-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-bright));
}
.sec-panel__icon { font-size: 1.5rem; margin-bottom: 1rem; }
.sec-panel h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.sec-panel > p {
    color: rgba(250, 246, 240, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.sec-panel__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.sec-panel__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(250, 246, 240, 0.85);
}
.sec-panel__list li::before {
    content: '✓';
    color: var(--teal-bright);
    font-weight: 700;
    font-family: var(--mono);
}
.sec-panel__badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 35, 149, 0.15);
    border: 1px solid rgba(59, 109, 217, 0.25);
    border-radius: var(--radius);
}
.sec-panel__badge span {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--teal-bright);
    font-weight: 700;
    letter-spacing: 0.12em;
}
.sec-panel__badge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--teal), transparent);
}

/* ================================
   CTA
   ================================ */
.cta {
    position: relative;
    z-index: 1;
    background: var(--deep);
    text-align: center;
    padding: 5rem 0;
}
.cta__content {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta__title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.cta__title em { font-style: italic; color: var(--teal-bright); }
.cta__text {
    color: rgba(250, 246, 240, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.cta .btn--primary {
    background: var(--teal-bright);
}
.cta .btn--primary:hover {
    background: #4B7FDB;
}

/* ================================
   CONTACT
   ================================ */
.contact { position: relative; z-index: 1; }
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact__card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--warm-beige);
    border: 1px solid var(--mid-beige);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.contact__card:hover { border-color: var(--teal); }
.contact__card-icon { font-size: 1.2rem; margin-top: 2px; }
.contact__card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 0.2rem;
}
.contact__card p {
    font-size: 0.85rem;
    color: var(--dark-warm);
    line-height: 1.5;
}

/* Form */
.contact__form-wrap {
    background: #fff;
    border: 1px solid var(--mid-beige);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.form__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form__input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--cream);
    border: 1px solid var(--mid-beige);
    border-radius: var(--radius);
    color: var(--charcoal);
    outline: none;
    transition: all 0.2s;
}
.form__input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}
.form__input::placeholder { color: var(--sand); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__check-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}
.form__check {
    width: 18px; height: 18px;
    accent-color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}
.form__check-label {
    font-size: 0.85rem;
    color: var(--dark-warm);
    line-height: 1.5;
}
.form__check-label a {
    color: var(--teal);
    text-decoration: underline;
}

/* CloudFlare Turnstile Widget */
.cf-turnstile {
    margin: 1rem 0;
}

/* Form messages */
.form__msg {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--deep);
    padding: 4rem 0 0;
    position: relative;
    z-index: 1;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 201, 184, 0.15);
}
.footer__logo {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer__logo .nav__logo-data { color: var(--teal-bright); font-family: var(--serif); }
.footer__logo .nav__logo-sep { color: rgba(212,201,184,0.3); }
.footer__logo .nav__logo-rest { color: rgba(250,246,240,0.6); }
.footer__desc {
    font-size: 0.85rem;
    color: rgba(250,246,240,0.4);
    line-height: 1.7;
    max-width: 300px;
}
.footer__col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(250,246,240,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.footer__col ul, .footer__col ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
.footer__col ul li, .footer__col ul.nav li {
    margin: 0;
    padding: 0.3rem 0;
    display: block;
}
.footer__col ul li a, .footer__col ul.nav a, .footer__col a {
    font-size: 0.85rem;
    color: rgba(250,246,240,0.4);
    transition: color 0.2s;
    display: inline-block;
}
.footer__col ul li a:hover, .footer__col ul.nav a:hover, .footer__col a:hover { color: var(--teal-bright); }
.footer__logo .site-logo {
    max-height: 2rem;
    width: auto;
}
.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(250,246,240,0.25);
}
.footer__powered {
    margin-top: 0.5rem;
}
.footer__powered a {
    color: var(--teal-bright);
    text-decoration: underline;
}

/* ================================
   BACK TO TOP
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid var(--mid-beige);
    color: var(--teal);
    border-radius: var(--radius);
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 100;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Premium slide-in for service cards */
.svc-slide {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.3s;
}
.svc-slide[data-side="left"] {
    transform: translateX(-60px) rotate(-2deg);
}
.svc-slide[data-side="right"] {
    transform: translateX(60px) rotate(2deg);
}
.svc-slide.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) rotate(0deg);
}

/* Stat cards slide-in */
.stat-slide {
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(40px) scale(0.95);
}
.stat-slide.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* Security panel slide-in */
.sec-panel-slide {
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(50px) rotate(1deg);
}
.sec-panel-slide.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) rotate(0deg);
}

/* Encryption Matrix effect for SICHERHEIT */
.sec-panel__matrix {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    padding: 0.85rem 1rem;
    background: rgba(0, 35, 149, 0.08);
    border: 1px solid rgba(59, 109, 217, 0.2);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.sec-panel__matrix-char {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--teal-bright);
    text-shadow: 0 0 8px rgba(59, 109, 217, 0.4);
    transition: color 0.15s, text-shadow 0.15s;
    display: inline-block;
    min-width: 1ch;
    text-align: center;
}
.sec-panel__matrix-char.scrambled {
    color: rgba(59, 109, 217, 0.25);
    text-shadow: none;
}
.sec-panel__matrix-char.revealed {
    color: var(--teal-bright);
    text-shadow: 0 0 12px rgba(59, 109, 217, 0.6), 0 0 4px rgba(59, 109, 217, 0.3);
}

/* Random hover colors — applied via JS */
.hover-accent {
    border-color: var(--accent) !important;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.15) !important;
}
.svc.hover-accent::before {
    background: var(--accent) !important;
}

/* Styled SVG icons */
.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}
.icon-circle svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact__card-icon.icon-circle {
    margin-top: 0;
    margin-bottom: 0;
}
.sec-panel__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 109, 217, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.sec-panel__icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal-bright);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__body { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__right { display: none; }
    .about__grid { grid-template-columns: 1fr; }
    .about__stats { flex-direction: row; justify-content: center; }
    .stat { flex: 1; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    :root { --pad: 1.25rem; }
    .section { padding: 4rem 0; }
    .services__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .form__row { grid-template-columns: 1fr; }
    .about__stats { flex-direction: column; }
}

/* ================================
   GHOST KOENIG EDITOR STYLES
   ================================ */
.kg-width-wide {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.kg-width-full {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   GDPR COOKIE CONSENT
   ================================ */
.cookie-consent {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(42, 37, 32, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-consent__container {
    max-width: 600px;
    width: 100%;
}

.cookie-consent__content {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-consent__content h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 1rem;
}

.cookie-consent__content p {
    font-size: 0.95rem;
    color: var(--dark-warm);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-consent__content p a {
    color: var(--teal);
    text-decoration: underline;
}

.cookie-consent__options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookie-consent__option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--warm-beige);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-consent__option:hover {
    background: var(--mid-beige);
}

.cookie-consent__option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--teal);
    flex-shrink: 0;
}

.cookie-consent__option span {
    font-weight: 600;
    color: var(--deep);
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-consent__option small {
    font-size: 0.85rem;
    color: var(--dark-warm);
    font-weight: 400;
}

.cookie-consent__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-consent__buttons .btn {
    width: 100%;
    justify-content: center;
}

.btn--text {
    background: none;
    border: none;
    color: var(--dark-warm);
    font-size: 0.9rem;
    padding: 0.5rem;
    text-decoration: underline;
}

.btn--text:hover {
    color: var(--teal);
}

/* Cookie Settings Trigger */
.cookie-settings-trigger {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--teal);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,35,149,0.3);
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-trigger:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,35,149,0.4);
}

.cookie-settings-trigger svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent__content {
        padding: 2rem 1.5rem;
    }

    .cookie-consent__content h3 {
        font-size: 1.25rem;
    }

    .cookie-settings-trigger {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .cookie-settings-trigger svg {
        width: 20px;
        height: 20px;
    }
}