/* ==========================================================================
   Gigawatt-Experten – Industrial Precision Design System
   Fonts: Space Grotesk (Display) + IBM Plex Sans (Body)
   Colors: Anthracite (#1a1a2e), Amber (#e8a838), Warm White (#f8f6f1)
   ========================================================================== */

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

:root {
    --amber: #e8a838;
    --amber-light: #f0c060;
    --amber-dark: #c88a20;
    --anthracite: #1a1a2e;
    --anthracite-light: #2a2a42;
    --warm-white: #f8f6f1;
    --border-color: #e0ddd5;
    --text-primary: #1a1a2e;
    --text-secondary: rgba(26, 26, 46, 0.6);
    --text-muted: rgba(26, 26, 46, 0.4);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ---------- Container ---------- */
.gw-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .gw-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .gw-container { padding: 0 2rem; }
}

/* ---------- Section Divider ---------- */
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--amber);
    margin-top: 1rem;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #eee; }
::-webkit-scrollbar-thumb { background: #999; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #666; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.gw-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.gw-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--border-color);
}

.gw-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.gw-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gw-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--amber);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--anthracite);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gw-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #fff;
    transition: color 0.3s;
}

.gw-navbar.scrolled .gw-logo-text {
    color: var(--anthracite);
}

.gw-logo-text span {
    color: var(--amber);
}

.gw-nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gw-nav-links { display: flex; }
}

.gw-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.gw-nav-links a:hover {
    color: var(--amber);
}

.gw-navbar.scrolled .gw-nav-links a {
    color: rgba(26, 26, 46, 0.7);
}

.gw-navbar.scrolled .gw-nav-links a:hover {
    color: var(--amber);
}

.gw-nav-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .gw-nav-right { display: flex; }
}

.gw-nav-phone {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.gw-navbar.scrolled .gw-nav-phone {
    color: rgba(26, 26, 46, 0.7);
}

.gw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gw-btn-primary {
    background: var(--amber);
    color: var(--anthracite);
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.gw-btn-primary:hover {
    background: var(--amber-light);
}

.gw-btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.gw-btn-outline {
    background: transparent;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.gw-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

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

/* Mobile Menu Toggle */
.gw-mobile-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
}

.gw-navbar.scrolled .gw-mobile-toggle {
    color: var(--anthracite);
}

@media (min-width: 1024px) {
    .gw-mobile-toggle { display: none; }
}

.gw-mobile-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Mobile Menu */
.gw-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 1.5rem;
}

.gw-mobile-menu.active {
    display: block;
}

.gw-mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: rgba(26,26,46,0.8);
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.gw-mobile-menu .gw-btn-primary {
    margin-top: 1rem;
    display: block;
    text-align: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.gw-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .gw-hero { padding-bottom: 6rem; }
}

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

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

.gw-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.95), rgba(26,26,46,0.6), rgba(26,26,46,0.3));
}

.gw-hero-content {
    position: relative;
    z-index: 10;
}

.gw-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: end;
}

@media (min-width: 1024px) {
    .gw-hero-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.gw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.gw-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.gw-hero-badge span {
    color: var(--amber);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gw-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gw-hero h1 { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
    .gw-hero h1 { font-size: 4rem; }
}

@media (min-width: 1280px) {
    .gw-hero h1 { font-size: 4.5rem; }
}

.gw-hero h1 .accent {
    color: var(--amber);
}

.gw-hero-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    max-width: 36rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .gw-hero-text { font-size: 1.25rem; }
}

.gw-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gw-hero-buttons { flex-direction: row; }
}

.gw-btn-arrow {
    transition: transform 0.3s;
}

.gw-btn-primary:hover .gw-btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.gw-hero-stats {
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.gw-hero-stat {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
}

.gw-hero-stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.gw-hero-stat-header svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 2;
}

.gw-hero-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gw-hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.gw-hero-stat-value .unit {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-left: 0.25rem;
}

/* Diagonal Cut */
.gw-diagonal-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.gw-diagonal-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.gw-diagonal-bottom-up {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/* ==========================================================================
   LEISTUNGEN SECTION
   ========================================================================== */
.gw-leistungen {
    padding: 5rem 0 5rem;
}

@media (min-width: 1024px) {
    .gw-leistungen { padding: 8rem 0 8rem; }
}

.gw-section-header {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .gw-section-header {
        grid-template-columns: 2fr 3fr;
        margin-bottom: 6rem;
    }
}

.gw-section-label {
    color: var(--amber);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gw-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--anthracite);
    line-height: 1.15;
}

@media (min-width: 1024px) {
    .gw-section-title { font-size: 3rem; }
}

.gw-section-title .faded {
    color: rgba(26,26,46,0.3);
}

.gw-leistungen-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .gw-leistungen-grid {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }
}

.gw-leistungen-image-wrap {
    position: sticky;
    top: 7rem;
}

.gw-leistungen-image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
}

.gw-promise-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--anthracite);
    border-radius: 4px;
}

.gw-promise-box .label {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.gw-promise-box .title {
    color: #fff;
    font-size: 1.125rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.gw-promise-box .desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Service Cards */
.gw-service-card {
    display: block;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s;
    text-decoration: none;
}

.gw-service-card:hover {
    border-color: var(--amber);
}

.gw-service-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.gw-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: rgba(232,168,56,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.gw-service-card:hover .gw-service-icon {
    background: rgba(232,168,56,0.2);
}

.gw-service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 2;
}

.gw-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.gw-service-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--anthracite);
    transition: color 0.3s;
}

.gw-service-card:hover .gw-service-header h3 {
    color: var(--amber);
}

.gw-service-arrow {
    width: 20px;
    height: 20px;
    stroke: rgba(26,26,46,0.3);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s;
}

.gw-service-card:hover .gw-service-arrow {
    stroke: var(--amber);
    transform: translateX(4px);
}

.gw-service-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.gw-service-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--amber);
    background: rgba(232,168,56,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

/* ==========================================================================
   VORTEILE SECTION
   ========================================================================== */
.gw-vorteile {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .gw-vorteile { padding: 8rem 0; }
}

.gw-vorteile-bg {
    position: absolute;
    inset: 0;
}

.gw-vorteile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.gw-vorteile-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.95);
}

.gw-vorteile .gw-section-title {
    color: #fff;
}

.gw-vorteile .gw-section-title .faded {
    color: rgba(255,255,255,0.3);
}

.gw-stats-grid {
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .gw-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .gw-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.gw-stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    padding: 2rem 2.5rem;
}

.gw-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .gw-stat-number { font-size: 3.75rem; }
}

.gw-stat-label {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.gw-stat-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Trust Bar */
.gw-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .gw-trust-bar { gap: 4rem; }
}

.gw-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
}

.gw-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
}

.gw-trust-item span {
    font-size: 0.875rem;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

/* ==========================================================================
   PROZESS SECTION
   ========================================================================== */
.gw-prozess {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .gw-prozess { padding: 8rem 0; }
}

.gw-timeline {
    position: relative;
}

.gw-timeline-step {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .gw-timeline-step {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
        margin-bottom: 0;
    }
}

.gw-timeline-left {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .gw-timeline-left {
        justify-content: flex-end;
        padding-right: 3rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.gw-timeline-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(26,26,46,0.06);
}

@media (min-width: 1024px) {
    .gw-timeline-number { font-size: 5rem; }
}

.gw-timeline-right {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 1024px) {
    .gw-timeline-right {
        padding-left: 3rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        border-left: 2px solid var(--border-color);
    }
}

.gw-timeline-dot {
    display: none;
}

@media (min-width: 1024px) {
    .gw-timeline-dot {
        display: block;
        position: absolute;
        left: -9px;
        top: 3rem;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--amber);
        border: 4px solid var(--warm-white);
    }
}

.gw-timeline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.gw-timeline-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--anthracite);
}

@media (min-width: 1024px) {
    .gw-timeline-header h3 { font-size: 1.5rem; }
}

.gw-timeline-tag {
    font-size: 0.75rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--amber);
    background: rgba(232,168,56,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
}

.gw-timeline-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 32rem;
}

/* ==========================================================================
   ZIELGRUPPEN SECTION
   ========================================================================== */
.gw-zielgruppen {
    padding: 5rem 0;
    background: rgba(232,168,56,0.03);
}

@media (min-width: 1024px) {
    .gw-zielgruppen { padding: 8rem 0; }
}

.gw-zielgruppen-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .gw-zielgruppen-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.gw-zielgruppen-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
}

.gw-zielgruppen-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gw-industry-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gw-industry-grid { grid-template-columns: repeat(2, 1fr); }
}

.gw-industry-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.gw-industry-card:hover {
    border-color: rgba(232,168,56,0.5);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.gw-industry-card svg {
    width: 32px;
    height: 32px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 1rem;
}

.gw-industry-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 0.25rem;
}

.gw-industry-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.gw-faq {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .gw-faq { padding: 8rem 0; }
}

.gw-faq-list {
    max-width: 48rem;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .gw-faq-list { margin-left: 40%; }
}

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

.gw-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--anthracite);
    text-align: left;
    transition: color 0.3s;
}

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

.gw-faq-chevron {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.gw-faq-item.active .gw-faq-chevron {
    transform: rotate(180deg);
}

.gw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.gw-faq-item.active .gw-faq-answer {
    max-height: 300px;
}

.gw-faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

/* ==========================================================================
   KONTAKT SECTION
   ========================================================================== */
.gw-kontakt {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .gw-kontakt { padding: 8rem 0; }
}

.gw-kontakt-bg {
    position: absolute;
    inset: 0;
    background: var(--anthracite);
}

.gw-kontakt-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, rgba(232,168,56,0.3) 1px, transparent 0);
    background-size: 40px 40px;
}

.gw-kontakt-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .gw-kontakt-grid {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }
}

.gw-kontakt .gw-section-title {
    color: #fff;
}

.gw-kontakt .gw-section-title .faded {
    color: rgba(255,255,255,0.3);
}

.gw-kontakt-text {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.gw-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

.gw-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
}

a.gw-contact-item:hover .gw-contact-icon {
    background: rgba(232,168,56,0.2);
}

.gw-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.gw-contact-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.125rem;
}

.gw-contact-value {
    font-family: var(--font-display);
    font-weight: 500;
}

/* Trust Box */
.gw-why-now {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.gw-why-now h4 {
    color: var(--amber);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.gw-why-now li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.gw-why-now-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Form */
.gw-form-wrap {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .gw-form-wrap { padding: 2.5rem; }
}

.gw-form-hint {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.gw-form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gw-form-grid { grid-template-columns: repeat(2, 1fr); }
}

.gw-form-group label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.gw-form-group input,
.gw-form-group select,
.gw-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.3s;
    outline: none;
}

.gw-form-group input::placeholder,
.gw-form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.gw-form-group input:focus,
.gw-form-group select:focus,
.gw-form-group textarea:focus {
    border-color: var(--amber);
}

.gw-form-group select {
    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='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.gw-form-group select option {
    background: var(--anthracite);
    color: #fff;
}

.gw-form-group textarea {
    resize: none;
    min-height: 80px;
}

.gw-form-full {
    grid-column: 1 / -1;
}

.gw-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.gw-form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--amber);
    width: auto;
}

.gw-form-checkbox label {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    line-height: 1.6;
    cursor: pointer;
}

.gw-form-footer {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
}

/* Submit Button */
.gw-btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--amber);
    color: var(--anthracite);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.gw-btn-submit:hover {
    background: var(--amber-light);
}

.gw-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.gw-btn-submit svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Success State */
.gw-form-success {
    text-align: center;
    padding: 3rem;
}

.gw-form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 2;
    margin: 0 auto 1.5rem;
}

.gw-form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.gw-form-success p {
    color: rgba(255,255,255,0.6);
    max-width: 28rem;
    margin: 0 auto;
}

/* Spinner */
.gw-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26,26,46,0.3);
    border-top-color: var(--anthracite);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.gw-footer {
    background: var(--anthracite);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .gw-footer { padding: 4rem 0; }
}

.gw-footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .gw-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.gw-footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 24rem;
    margin-top: 1rem;
}

.gw-footer h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.gw-footer nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gw-footer nav a {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.gw-footer nav a:hover {
    color: var(--amber);
}

.gw-footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .gw-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.gw-footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.gw-footer-bottom .powered {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

.gw-footer-bottom .powered span {
    color: var(--amber);
    font-family: var(--font-display);
    font-weight: 500;
}

/* ==========================================================================
   ANIMATIONS (Fade In on Scroll)
   ========================================================================== */
.gw-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gw-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.gw-delay-1 { transition-delay: 100ms; }
.gw-delay-2 { transition-delay: 200ms; }
.gw-delay-3 { transition-delay: 300ms; }
.gw-delay-4 { transition-delay: 400ms; }
.gw-delay-5 { transition-delay: 500ms; }
.gw-delay-6 { transition-delay: 600ms; }
