/* ===== VIRON GmbH – Enpal/1KOMMA5° Inspired Design ===== */

:root {
    /* Light Theme Colors inspired by Enpal/1KOMMA5° */
    --white: #FFFFFF;
    --off-white: #F7F7F5;
    --light-gray: #F0F0EC;
    --gray-100: #E8E8E4;
    --gray-200: #D1D1CC;
    --gray-300: #A3A3A0;
    --gray-500: #737373;
    --dark: #1A1A1A;
    --dark-soft: #2D2D2D;
    --dark-card: #2A2A2A;
    
    /* Accent – Enpal Yellow */
    --yellow: #FFD000;
    --yellow-hover: #FFDA33;
    --yellow-dark: #E6BB00;
    
    /* Supporting */
    --green: #16a34a;
    --green-light: #dcfce7;
    --blue: #2563eb;
    
    /* Brand colors */
    --buderus: #003366;
    --lambda: #0097D7;
    --viessmann: #E3000B;
    --vaillant: #00843D;
    --bosch: #E20015;
    --byd: #FF6B00;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 100px;
    
    --transition: all 0.25s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* ===== NAVBAR – Enpal "Pill" Style ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.navbar:not(.scrolled) .logo-text {
    color: var(--white);
}

.logo-dot {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--yellow);
}

/* Pill Navigation */
.nav-pill {
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-pill);
    padding: 6px 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #fff;
    font-weight: 600;
}

/* ===== DROPDOWN SUBMENU – Premium Dark ===== */
.has-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link-dropdown svg {
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.has-dropdown:hover .nav-link-dropdown svg {
    transform: rotate(180deg);
    opacity: 1;
}

/* Invisible bridge so mouse can reach dropdown */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 16px;
    z-index: 199;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(10, 12, 18, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 6px;
    min-width: 280px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
    pointer-events: none;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* Divider inside dropdown */
.nav-drop-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 4px 6px;
}

.nav-drop-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    transition: background 0.15s, color 0.15s;
    position: relative;
    overflow: hidden;
}

.nav-drop-item:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

.drop-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.drop-icon svg {
    stroke: rgba(255,255,255,0.6);
    transition: stroke 0.15s;
}

.nav-drop-item:hover .drop-icon {
    background: rgba(255,255,255,0.1);
}

.nav-drop-item:hover .drop-icon svg {
    stroke: #fff;
}

.nav-drop-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.nav-drop-text small {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 1px;
    font-weight: 400;
}

/* Highlighted item (GREENoneTEC) */
.nav-drop-highlight .drop-icon {
    background: rgba(34,197,94,0.15);
}

.nav-drop-highlight .drop-icon svg {
    stroke: #22c55e;
}

.nav-drop-highlight:hover {
    background: rgba(34,197,94,0.08) !important;
}

.nav-drop-highlight .nav-drop-text strong {
    color: #4ade80;
}

/* New badge */
.drop-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    flex-shrink: 0;
}


/* CTA Button in Nav */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    background: var(--yellow);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    z-index: 10;
}

.nav-cta:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 208, 0, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-yellow {
    color: var(--dark);
    background: var(--yellow);
    box-shadow: 0 2px 8px rgba(255, 208, 0, 0.3);
}

.btn-yellow:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.4);
}

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

.btn-dark:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark {
    color: var(--dark);
    background: transparent;
    border: 2px solid var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.energy-flow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 32px;
}

.hero-title-accent {
    color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
    display: flex;
    justify-content: center;
}

.hero-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.trust-item svg {
    color: var(--yellow);
    stroke: var(--yellow);
}

/* ===== PRODUCT SELECTOR (1KOMMA5° Style) ===== */
.product-selector {
    padding: 80px 0 40px;
    background: var(--white);
}

.selector-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--dark);
}

.selector-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.selector-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    cursor: pointer;
    transition: var(--transition);
    border-right: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-500);
}

.selector-card:last-child {
    border-right: none;
}

.selector-card:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.selector-card.active {
    background: var(--off-white);
    color: var(--dark);
    box-shadow: inset 0 -3px 0 var(--dark);
}

.selector-icon {
    margin-bottom: 12px;
}

.selector-icon svg {
    stroke: currentColor;
}

.selector-label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* ===== PRESS SECTION ===== */
.press-section {
    padding: 40px 0;
    background: var(--light-gray);
}

.press-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.press-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    cursor: default;
}

.press-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.press-logo-item svg {
    display: block;
    color: var(--dark);
}

/* FOCUS and ntv keep their colors but are muted */
.press-logo-focus,
.press-logo-ntv {
    filter: grayscale(50%);
    opacity: 0.55;
}

.press-logo-focus:hover,
.press-logo-ntv:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== PRODUCT SHOWCASE (Enpal Style) ===== */
.products-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
    min-height: 480px;
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse > * {
    direction: ltr;
}

.product-showcase-image {
    position: relative;
    overflow: hidden;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-showcase:hover .product-showcase-image img {
    transform: scale(1.03);
}

.product-showcase-content {
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    color: var(--white);
}

.product-badge {
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.product-showcase-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
}

.product-showcase-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.product-showcase-desc strong {
    color: var(--white);
}

.product-showcase-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.product-showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.product-showcase-features li svg {
    flex-shrink: 0;
    stroke: #4ade80;
}

.product-showcase .btn-dark {
    background: var(--white);
    color: var(--dark);
    width: fit-content;
}

.product-showcase .btn-dark:hover {
    background: var(--yellow);
}

/* ===== SPEICHER SECTION ===== */
.speicher-section {
    padding: 0 0 80px;
    background: var(--white);
}

.speicher-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.speicher-image {
    overflow: hidden;
}

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

.speicher-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.speicher-content .product-badge {
    color: var(--gray-500);
}

.speicher-content .product-showcase-title {
    color: var(--dark);
    font-size: 32px;
}

.speicher-content .product-showcase-desc {
    color: var(--gray-500);
}

.speicher-content .product-showcase-desc strong {
    color: var(--dark);
}

/* ===== HOW SECTION ===== */
.how-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
    line-height: 1.2;
}

.section-title-dark.center {
    text-align: center;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    margin-top: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    transition: height 0.3s;
}
/* Step 1 – Amber/Gold */
.step-card:nth-child(1)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.step-card:nth-child(1):hover { border-color: #f59e0b; }
.step-card:nth-child(1) .step-icon { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(251,191,36,0.08)); color: #d97706; }
.step-card:nth-child(1) .step-number { color: rgba(245,158,11,0.18); }

/* Step 2 – Blue */
.step-card:nth-child(2)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.step-card:nth-child(2):hover { border-color: #3b82f6; }
.step-card:nth-child(2) .step-icon { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(96,165,250,0.08)); color: #2563eb; }
.step-card:nth-child(2) .step-number { color: rgba(59,130,246,0.18); }

/* Step 3 – Teal */
.step-card:nth-child(3)::before { background: linear-gradient(90deg, #0d9488, #2dd4bf); }
.step-card:nth-child(3):hover { border-color: #0d9488; }
.step-card:nth-child(3) .step-icon { background: linear-gradient(135deg, rgba(13,148,136,0.15), rgba(45,212,191,0.08)); color: #0f766e; }
.step-card:nth-child(3) .step-number { color: rgba(13,148,136,0.18); }

/* Step 4 – Green */
.step-card:nth-child(4)::before { background: linear-gradient(90deg, #22c55e, #4ade80); }
.step-card:nth-child(4):hover { border-color: #22c55e; }
.step-card:nth-child(4) .step-icon { background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(74,222,128,0.08)); color: #16a34a; }
.step-card:nth-child(4) .step-number { color: rgba(34,197,94,0.18); }

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.step-card:hover::before {
    height: 6px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
    transition: color 0.3s;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.step-card:hover .step-icon {
    transform: scale(1.08);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== BRANDS ===== */
.brands-section {
    padding: 100px 0;
    background: var(--white);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-card-new {
    width: calc(33.333% - 14px);
}

.brand-card-new {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.brand-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-300);
}

.brand-logo-wrapper {
    margin-bottom: 16px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    max-height: 70px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.press-logo-img {
    display: block;
    height: auto;
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
}

.buderus-color { color: var(--buderus); }
.lambda-color { color: var(--lambda); }
.viessmann-color { color: var(--viessmann); }
.vaillant-color { color: var(--vaillant); }
.bosch-color { color: var(--bosch); }
.byd-color { color: var(--byd); }

.brand-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.brand-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== LIFESTYLE SECTION (1KOMMA5° Style) ===== */
.lifestyle-section {
    padding: 100px 0;
    background: var(--off-white);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lifestyle-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.lifestyle-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.lifestyle-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lifestyle-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.lifestyle-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.lifestyle-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.lifestyle-stat {
    display: flex;
    flex-direction: column;
}

.lifestyle-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.lifestyle-stat-plus {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.lifestyle-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ===== BENEFITS ACCORDION ===== */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--gray-300);
}

.benefit-card.open {
    border-color: var(--dark);
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.benefit-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.benefit-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--gray-500);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.benefit-card.open .benefit-toggle {
    transform: rotate(45deg);
}

.benefit-body {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    display: none;
}

.benefit-card.open .benefit-body {
    display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    text-align: center;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--dark);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.contact-item p {
    font-size: 15px;
    color: var(--gray-500);
    margin: 0;
}

.contact-item a:hover {
    color: var(--dark);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--white);
}

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

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
}

.form-privacy a {
    color: var(--dark);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo .logo-text {
    color: var(--white) !important;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .product-showcase.reverse {
        direction: ltr;
    }
    
    .product-showcase-image {
        height: 300px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .speicher-card {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-pill {
        display: none;
    }
    
    .nav-pill.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        border-radius: var(--radius-lg);
        padding: 12px;
    }
    
    .nav-pill.active .nav-links {
        flex-direction: column;
    }
    
    .nav-pill.active .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }
    
    .selector-grid {
        flex-direction: column;
    }
    
    .selector-card {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .selector-card:last-child {
        border-bottom: none;
    }
    
    .product-showcase-content {
        padding: 32px 24px;
    }
    
    .product-showcase-title {
        font-size: 28px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .press-logos {
        gap: 24px;
    }
}

/* ===== FINANZIERUNG CHECKBOX ===== */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(34,197,94,0.2);
    background: rgba(34,197,94,0.04);
    cursor: pointer;
    margin-bottom: 20px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.form-checkbox-label:hover {
    border-color: rgba(34,197,94,0.4);
    background: rgba(34,197,94,0.07);
}
.form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.form-checkbox-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 2px solid rgba(34,197,94,0.35);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all 0.18s ease;
}
.form-checkbox-box svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.18s ease;
    stroke: #fff;
}
.form-checkbox-label input:checked ~ .form-checkbox-box {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}
.form-checkbox-label input:checked ~ .form-checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}
.form-checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.form-checkbox-text strong {
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}
.form-checkbox-text small {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: rgba(10,22,40,0.45);
    font-weight: 400;
}

/* Mobile responsive styles are centralized in mobile.css */


