/* ============================================
   klartext.support - Unique Design System
   Kein Template. Echte Persönlichkeit.
   ============================================ */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
    --color-text: #0a0a0b;
    --color-text-secondary: #52525b;
    --color-text-tertiary: #a1a1aa;
    --color-bg: #fafafa;
    --color-bg-secondary: #f4f4f5;
    --color-bg-dark: #09090b;
    --color-accent: #2563eb;
    --color-accent-light: #3b82f6;
    --color-accent-glow: rgba(37, 99, 235, 0.15);
    --color-purple: #7c3aed;
    --color-emerald: #10b981;
    --color-orange: #f59e0b;
    --color-white: #ffffff;
    --color-border: rgba(0, 0, 0, 0.06);
    --color-border-strong: rgba(0, 0, 0, 0.1);
    --color-glass: rgba(255, 255, 255, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.2);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1180px;
    --container-narrow: 780px;
    --nav-h: 56px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVIGATION - Floating pill style
   ============================================ */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 2rem);
    max-width: 800px;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    top: 0.75rem;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
}

.navbar__logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
    text-decoration: none;
}

.navbar__logo .dot { color: var(--color-accent); }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 0.4em 0.9em;
    border-radius: var(--radius-full);
    transition: all 0.2s;
    text-decoration: none;
}

.navbar__link:hover {
    color: var(--color-text);
    background: var(--color-bg-secondary);
}

.navbar__cta {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-text);
    padding: 0.5em 1.2em;
    border-radius: var(--radius-full);
    transition: all 0.2s;
    text-decoration: none;
    margin-left: 0.5rem;
}

.navbar__cta:hover {
    background: var(--color-accent);
    transform: scale(1.03);
}

/* Mobile Toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar__toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO - Full impact, editorial style
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Animated mesh gradient background */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 60% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, -1%) scale(1.02); }
    66% { transform: translate(-1%, 2%) scale(0.98); }
    100% { transform: translate(1%, -1%) scale(1.01); }
}

/* Subtle grid pattern */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    background: var(--color-accent-glow);
    padding: 0.5em 1.2em;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero__title-line {
    display: block;
}

.hero__title-gradient {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 50%, var(--color-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll-Down Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-tertiary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: bobDown 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-tertiary), transparent);
}

@keyframes bobDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS - Distinctive pill buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.85em 1.8em;
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-text);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
}

.btn--secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn--large {
    font-size: 1rem;
    padding: 1em 2.2em;
}

.btn--ghost {
    background: transparent;
    color: var(--color-text-secondary);
    padding: 0.85em 0;
}

.btn--ghost:hover {
    color: var(--color-accent);
}

.btn__arrow {
    transition: transform 0.2s;
    font-size: 1.1em;
}

.btn:hover .btn__arrow {
    transform: translateX(3px);
}

/* ============================================
   MARQUEE - Lauftext-Band für Social Proof
   ============================================ */
.marquee-section {
    padding: 1.5rem 0;
    background: var(--color-bg-dark);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.marquee__item {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.marquee__dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS - Base styles
   ============================================ */
.section {
    padding: 7rem 0;
    position: relative;
}

.section--dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.section--gray {
    background: var(--color-bg-secondary);
}

.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section--dark .section__eyebrow {
    color: var(--color-accent-light);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section__desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 540px;
}

.section--dark .section__desc {
    color: rgba(255, 255, 255, 0.6);
}

.section__header {
    margin-bottom: 4rem;
}

.section__header--center {
    text-align: center;
}

.section__header--center .section__desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BENTO GRID - Apple-style Leistungen
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.bento-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

/* Feature-Card: span 2 columns */
.bento-card--feature {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
}

.bento-card--feature .bento-card__image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.bento-card--feature .bento-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card--feature:hover .bento-card__image img {
    transform: scale(1.05);
}

/* Tall card */
.bento-card--tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

/* Highlight card with gradient bg */
.bento-card--accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
    color: var(--color-white);
    border: none;
}

.bento-card--accent .bento-card__label {
    color: rgba(255, 255, 255, 0.7);
}

.bento-card--accent .bento-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

.bento-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    background: var(--color-bg-secondary);
    color: var(--color-accent);
}

.bento-card--accent .bento-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.bento-card__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-tertiary);
    margin-bottom: 0.5rem;
}

.bento-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bento-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Number highlight inside card */
.bento-card__stat {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: auto;
    padding-top: 1.5rem;
}

.bento-card--accent .bento-card__stat {
    color: var(--color-white);
}

/* ============================================
   CONSULTING - Split Layout mit Overlay
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-section__image {
    position: relative;
    overflow: hidden;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.split-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 5rem;
}

.consulting-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.consulting-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.consulting-feature__marker {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.consulting-feature:nth-child(1) .consulting-feature__marker { background: rgba(37, 99, 235, 0.1); color: var(--color-accent); }
.consulting-feature:nth-child(2) .consulting-feature__marker { background: rgba(124, 58, 237, 0.1); color: var(--color-purple); }
.consulting-feature:nth-child(3) .consulting-feature__marker { background: rgba(16, 185, 129, 0.1); color: var(--color-emerald); }
.consulting-feature:nth-child(4) .consulting-feature__marker { background: rgba(245, 158, 11, 0.1); color: var(--color-orange); }

.consulting-feature__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.consulting-feature__text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ============================================
   WHY US - Großes Statement + Karten
   ============================================ */
.statement-block {
    text-align: center;
    padding: 6rem 2rem;
}

.statement-block__text {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.statement-block__text em {
    font-style: normal;
    color: var(--color-accent-light);
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 4rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.3s;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.trust-card__value {
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PROCESS - Horizontaler Timeline Stil
   ============================================ */
.process-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting line */
.process-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 1px;
    background: var(--color-border-strong);
}

.process-card {
    text-align: center;
}

.process-card__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.process-card:nth-child(1) .process-card__number {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.process-card:nth-child(2) .process-card__number {
    background: var(--color-purple);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.process-card:nth-child(3) .process-card__number {
    background: var(--color-emerald);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.process-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-card__text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   IMAGE BREAK - Panorama
   ============================================ */
.panorama {
    position: relative;
    overflow: hidden;
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
}

.panorama img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panorama__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, transparent 20%, transparent 80%, var(--color-bg) 100%);
}

.panorama__text {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    color: var(--color-white);
}

.panorama__text h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FAQ - Clean Accordion
   ============================================ */
.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--color-accent); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-text-secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--color-accent);
}

.faq-item.active .faq-icon svg {
    stroke: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer__inner {
    padding-bottom: 1.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 90%;
}

/* ============================================
   CONTACT - Modern split
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info__headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-info__text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-detail__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
}

.contact-detail__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-tertiary);
}

.contact-detail__value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.contact-detail__value a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail__value a:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75em 1em;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--color-accent);
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form .btn {
    width: 100%;
}

.form-notice {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* ============================================
   FOOTER - Minimal, modern
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer__logo .dot { color: var(--color-accent); }

.footer__tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
}

.footer__list li { margin-bottom: 0.6rem; }

.footer__list a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    text-decoration: none;
}

.footer__list a:hover { color: var(--color-white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__legal-links a:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 3rem));
    z-index: 9999;
    width: calc(100% - 2rem);
    max-width: 520px;
    background: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner__text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-banner__text a {
    color: var(--color-accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.65em 1em;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cookie-btn--accept {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-btn--accept:hover { background: var(--color-accent-light); }

.cookie-btn--decline {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-btn--decline:hover { background: rgba(255, 255, 255, 0.12); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Scale-in variation */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: calc(var(--nav-h) + 5rem);
    padding-bottom: 6rem;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-page h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.legal-page ul li { color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 4px; }
.legal-page a { color: var(--color-accent); }

.placeholder {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card--feature {
        grid-column: span 2;
    }

    .bento-card--tall {
        grid-row: span 1;
        min-height: auto;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section__image {
        height: 350px;
    }

    .split-section__content {
        padding: 3rem 2rem;
    }

    .trust-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .navbar {
        width: calc(100% - 1rem);
        border-radius: var(--radius);
        top: 0.5rem;
    }

    .navbar__links {
        position: fixed;
        top: calc(var(--nav-h) + 1.5rem);
        left: 0.5rem;
        right: 0.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--radius);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid var(--color-border);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .navbar__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar__link {
        width: 100%;
        text-align: center;
        padding: 0.75em;
        font-size: 1rem;
    }

    .navbar__cta {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
        padding: 0.75em;
    }

    .navbar__toggle { display: flex; }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-h) + 4rem) 1.5rem 3rem;
    }

    .hero__title { letter-spacing: -0.03em; }
    .hero__scroll { display: none; }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card--feature {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .bento-card--feature .bento-card__image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-track {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-track::before { display: none; }

    .trust-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .statement-block { padding: 3rem 1.5rem; }
    .marquee__item { font-size: 0.6875rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
}

/* --- Print --- */
@media print {
    .navbar, .cookie-banner, .marquee-section, .hero__bg, .hero__scroll { display: none; }
    .hero { padding-top: 2rem; min-height: auto; }
    body { color: #000; }
}
