/* ----------------------------------------
   CSS Custom Properties
   ---------------------------------------- */
   :root {
    /* Neon-Palette passend zum Pulse-Bild */
    --gw-accent: #4f7df7;
    --gw-accent-hover: #3a66e0;
    --gw-accent-soft: rgba(79, 125, 247, 0.07);
    --gw-accent-medium: rgba(79, 125, 247, 0.14);
    --gw-accent-glow: rgba(79, 125, 247, 0.25);
    --gw-accent-vivid: rgba(79, 125, 247, 0.5);
    --gw-neon-pink: #f472b6;
    --gw-neon-orange: #ff6b35;
    --gw-neon-blue: #4f7df7;
    --gw-gradient-hot: linear-gradient(135deg, #4f7df7, #f472b6, #ff6b35);
    --gw-gradient-warm: linear-gradient(135deg, #f472b6, #ff6b35);
    --gw-dark: #0a0a0a;
    --gw-text: #3a3a3a;
    --gw-muted: #777;
    --gw-light: #aaa;
    --gw-border: rgba(0, 0, 0, 0.06);
    --gw-border-strong: rgba(0, 0, 0, 0.1);
    --gw-bg-soft: #f7f7f8;
    --gw-bg-mesh: linear-gradient(160deg, #faf9ff 0%, #eef3ff 40%, #f7f7f8 100%);
    --gw-glass: rgba(255, 255, 255, 0.65);
    --gw-glass-border: rgba(255, 255, 255, 0.3);
    --gw-radius: 18px;
    --gw-radius-sm: 12px;
    --gw-radius-xs: 8px;
    --gw-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --gw-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --gw-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --gw-shadow-accent: 0 8px 30px rgba(79, 125, 247, 0.12);
}

/* ----------------------------------------
   Base
   ---------------------------------------- */
.gw-page {
    overflow-x: hidden;
    color: var(--gw-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gw-page .gradient-background {
    display: none !important;
}

.gw-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----------------------------------------
   Section Base
   ---------------------------------------- */
.gw-section {
    padding: 6.5rem 0;
    position: relative;
}

.gw-section--gray {
    background: var(--gw-bg-soft);
}

.gw-section--dark {
    background: var(--gw-dark);
    color: #fff;
}

.gw-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.gw-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--gw-dark);
}

.gw-section--dark .gw-section-header h2 {
    color: #fff;
}

.gw-section-header p {
    font-size: 1.0625rem;
    color:#000;
    line-height: 1.7;
}

.gw-section--dark .gw-section-header p {
    color: rgba(255, 255, 255, 0.45);
}

.gw-underline {
    color: var(--gw-accent);
}

.gw-accent {
    background: var(--gw-gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
}


/* ========================================
   HERO
   ======================================== */
.gw-hero {
    padding: 10rem 2rem 6rem;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------------
   Animated Pulse Image (Lovable-style)
   Das Bild wird riesig skaliert, zentriert
   und langsam morphend animiert.
   ---------------------------------------- */
.gw-hero-pulse {
    position: absolute;
    width: 180vw;
    max-width: none;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    backface-visibility: hidden;
    z-index: 0;
    pointer-events: none;
    animation: gw-pulse-rotate 20s ease-in-out infinite alternate;
    filter: blur(60px) saturate(1.4);
}

@keyframes gw-pulse-rotate {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: blur(60px) saturate(1.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.12) rotate(15deg);
        filter: blur(80px) saturate(1.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(-10deg);
        filter: blur(60px) saturate(1.4);
    }
}

.gw-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Badge */
.gw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gw-dark);
    background: rgba(255, 255, 255, 0.51);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.gw-hero-badge svg {
    stroke: var(--gw-accent);
    flex-shrink: 0;
}

/* H1 - Oversized with gradient accent */
.gw-hero h1 {
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
    margin-bottom: 1.5rem;
    color: var(--gw-dark);
}

/* Subline */
.gw-hero-sub {
  font-size: 1.1875rem;
  color: #fff;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 3rem;
}

/* Hero Trust Bar - Dark Glass card */
.gw-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    padding: 1rem 2.5rem;
    max-width: 540px;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gw-hero-trust-item {
    text-align: center;
    padding: 0 1.75rem;
}

.gw-hero-trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gw-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.gw-hero-trust-label {
    display: block;
    font-size: 0.625rem;
    color: var(--gw-muted);
    margin-top: 0.2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gw-hero-trust-divider {
    width: 1px;
    height: 32px;
    background: var(--gw-border);
    flex-shrink: 0;
}

/* CTA Group */
.gw-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ========================================
   BUTTONS
   ======================================== */
.gw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9375rem 2.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-family: inherit;
    line-height: 1.2;
}

.gw-btn svg {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.gw-btn:hover svg {
    transform: translateX(3px);
}

.gw-btn--primary {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 20px rgba(244, 114, 182, 0.3);
    background-size: 150% 150%;
    background-position: 0% 50%;
}

.gw-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 114, 182, 0.45);
    background-position: 100% 50%;
}

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

.gw-btn--outline:hover {
    border-color: #fff;
    color: #fff;
    background: var(--gw-accent-soft);
}

.gw-btn--dark {
    background: var(--gw-dark);
    color: #fff;
}

.gw-btn--dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gw-btn--white {
    background: #fff;
    color: var(--gw-dark);
    font-weight: 700;
}

.gw-btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  }




/* ========================================
   INLINE CTA
   ======================================== */
.gw-inline-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gw-bg-mesh);
}


/* ========================================
   BRANCHEN GRID
   ======================================== */
.gw-branchen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gw-border);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius);
    overflow: hidden;
}

.gw-branche-card {
    padding: 2rem 1.75rem;
    background: #fff;
    transition: all 0.3s;
    position: relative;
}

.gw-branche-card:hover {
    background: var(--gw-accent-soft);
}

.gw-branche-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gw-radius-sm);
    background: var(--gw-accent-soft);
    margin-bottom: 1.25rem;
    transition: background 0.3s, transform 0.3s;
}

.gw-branche-card:hover .gw-branche-icon {
    background: var(--gw-accent-medium);
    transform: scale(1.05);
}

.gw-branche-icon svg {
    stroke: var(--gw-accent);
}

.gw-branche-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gw-dark);
    margin-bottom: 0.5rem;
}

.gw-branche-card p {
    font-size: 0.8125rem;
    color: var(--gw-muted);
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   VERGLEICHSTABELLE
   ======================================== */
.gw-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--gw-radius);
    overflow: hidden;
    font-size: 0.9375rem;
    box-shadow: var(--gw-shadow-md);
    background: #fff;
}

.gw-compare-table thead {
    background: var(--gw-dark);
    color: #fff;
}

.gw-compare-table thead th {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    text-align: left;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.gw-compare-table thead th:first-child {
    width: 28%;
}

.gw-compare-table thead th.gw-compare-highlight {
    background: var(--gw-accent);
    color: #fff;
    position: relative;
}

.gw-compare-table thead th.gw-compare-highlight::before {
    content: 'Empfohlen';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gw-accent-hover);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.75rem;
    border-radius: 0 0 6px 6px;
}

.gw-compare-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gw-border);
    vertical-align: middle;
    background: #fff;
}

.gw-compare-table tbody tr:last-child td {
    border-bottom: none;
    font-weight: 600;
}

/* Highlighted column - subtle gradient bg */
.gw-compare-table tbody td:nth-child(2) {
    background: var(--gw-accent-soft);
    font-weight: 600;
}

.gw-compare-table tbody tr:hover td {
    background: rgba(79, 125, 247, 0.03);
}

.gw-compare-table tbody tr:hover td:nth-child(2) {
    background: var(--gw-accent-medium);
}

.gw-check {
    color: var(--gw-accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.gw-cross {
    color: #d4d4d4;
    font-size: 1.125rem;
}

.gw-partial {
    color: var(--gw-light);
    font-size: 0.8125rem;
    font-weight: 500;
}


/* ========================================
   PROZESS
   ======================================== */
.gw-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connection line */
.gw-process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--gw-neon-blue), var(--gw-neon-pink), rgba(255, 107, 53, 0.15));
    z-index: 0;
}

.gw-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.gw-process-number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gw-accent);
    color: var(--gw-accent);
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--gw-accent-glow);
    transition: all 0.3s;
}

.gw-process-step:hover .gw-process-number {
    background: var(--gw-accent);
    color: #fff;
    transform: scale(1.08);
}

.gw-process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gw-dark);
}

.gw-process-step p {
    font-size: 0.8125rem;
    color: var(--gw-muted);
    line-height: 1.6;
}


/* ========================================
   ERFAHRUNG / TIMELINE
   ======================================== */
.gw-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.gw-exp-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.gw-exp-text p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.gw-timeline {
    position: relative;
    padding-left: 2rem;
}

.gw-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gw-accent), rgba(255, 255, 255, 0.08));
}

.gw-timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.gw-timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gw-accent);
    margin-left: -4px;
    box-shadow: 0 0 0 4px var(--gw-dark), 0 0 12px var(--gw-accent-glow);
}

.gw-timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gw-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.125rem;
}

.gw-timeline-content strong {
    display: block;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
}

.gw-timeline-content span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}


/* ========================================
   STATISTIKEN
   ======================================== */
.gw-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gw-stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: var(--gw-radius);
    border: 1px solid var(--gw-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient hover */
.gw-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gw-bg-mesh);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gw-stat-card:hover::before {
    opacity: 1;
}

.gw-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gw-shadow-accent);
    border-color: var(--gw-accent-medium);
}

.gw-stat-number {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  font-weight: 800;
  background: var(--gw-gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
}

.gw-stat-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gw-dark);
    margin-bottom: 0.375rem;
    position: relative;
}

.gw-stat-desc {
    font-size: 0.8125rem;
    color: var(--gw-muted);
    line-height: 1.55;
    position: relative;
}

/* Bar Chart */
.gw-bar-chart {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gw-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gw-bar-label {
    flex-shrink: 0;
    width: 200px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gw-dark);
    text-align: right;
}

.gw-bar-track {
    flex: 1;
    height: 40px;
    background: var(--gw-bg-soft);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.gw-bar-fill {
  height: 100%;
  background: var(--gw-gradient-hot);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gw-bar-fill--light {
    background: #e0e0e0;
}

.gw-bar-fill--light .gw-bar-value {
    color: var(--gw-muted);
}

.gw-bar-value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}


/* ========================================
   CTA BANNER
   ======================================== */
.gw-cta-banner {
    text-align: center;
    padding: 5rem 3rem;
    background: var(--gw-dark);
    border-radius: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Gradient orbs for depth */
.gw-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 125, 247, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.gw-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.gw-cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.gw-cta-banner p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-size: 1.0625rem;
}

.gw-cta-banner .gw-btn {
    position: relative;
    z-index: 1;
}

.gw-cta-banner .gw-btn--white {
    background: var(--gw-gradient-hot);
    color: #fff;
    box-shadow: 0 4px 25px rgba(244, 114, 182, 0.35);
    background-size: 150% 150%;
    background-position: 0% 50%;
    transition: all 0.4s;
}

.gw-cta-banner .gw-btn--white:hover {
    background-position: 100% 50%;
    box-shadow: 0 8px 35px rgba(244, 114, 182, 0.5);
}


/* ========================================
   REFERENZEN (Siegburg-Klassen)
   ======================================== */
.gw-ref-section .uix-siegburg-ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gw-ref-section .uix-siegburg-ref-card {
    background: #fff;
    border-radius: var(--gw-radius);
    overflow: hidden;
    border: 1px solid var(--gw-border);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gw-ref-section .uix-siegburg-ref-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gw-shadow-lg);
    border-color: var(--gw-accent-medium);
}

.gw-ref-section .uix-siegburg-ref-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.gw-ref-section .uix-siegburg-ref-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gw-ref-section .uix-siegburg-ref-card:hover .uix-siegburg-ref-img img {
    transform: scale(1.04);
}

.gw-ref-section .uix-siegburg-ref-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gw-accent);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.gw-ref-section .uix-siegburg-ref-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.gw-ref-section .uix-siegburg-ref-cat {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gw-accent);
    font-weight: 700;
}

.gw-ref-section .uix-siegburg-ref-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gw-dark);
    line-height: 1.3;
}

.gw-ref-section .uix-siegburg-ref-desc {
    font-size: 0.8125rem;
    color: var(--gw-muted);
    line-height: 1.55;
}

.gw-ref-section .uix-siegburg-ref-tags {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.gw-ref-section .uix-siegburg-ref-tag {
    font-size: 0.6875rem;
    background: var(--gw-accent-soft);
    color: var(--gw-accent);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-weight: 600;
}

.gw-ref-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.gw-ref-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gw-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1.5px solid var(--gw-accent-medium);
    border-radius: 100px;
    transition: all 0.25s;
}

.gw-ref-more:hover {
    background: var(--gw-accent);
    color: #fff;
    border-color: var(--gw-accent);
    box-shadow: 0 4px 20px var(--gw-accent-glow);
}


/* ========================================
   TESTIMONIALS
   ======================================== */
.gw-tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gw-tm-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--gw-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.gw-tm-card:hover {
  border-color: rgba(79, 125, 247, 0.2);
  background: rgba(79, 125, 247, 0.04);
}

.gw-tm-stars {
    color: var(--gw-accent);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.gw-tm-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.gw-tm-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gw-tm-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(79, 125, 247, 0.3);
}

.gw-tm-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
}

.gw-tm-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}


  /* ========================================
  PRICING (Section mit Pulse-Bild wie Hero)
  ======================================== */
.gw-section--pricing-dark {
  background: #fff;
  position: relative;
  overflow: hidden;
  }

.gw-section--pricing-dark .gw-container {
  position: relative;
  z-index: 2;
  }

.gw-pricing-pulse {
  position: absolute;
  width: 180vw;
  max-width: none;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  backface-visibility: hidden;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px) saturate(1.4);
  animation: gw-pulse-rotate 20s ease-in-out infinite alternate;
  }

.gw-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  }

.gw-pricing-explain h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gw-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  }

.gw-pricing-explain p {
  color: #000;
  line-height: 1.7;
  margin-bottom: 1rem;
  }

.gw-pricing-explain p strong {
  color: var(--gw-dark);
  }

  /* Glassmorphism Card */
.gw-pricing-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  }

  /* Gradient top bar */
.gw-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gw-gradient-hot);
  }

.gw-pricing-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gw-accent);
  background: var(--gw-accent-soft);
  border: 1px solid var(--gw-accent-medium);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  }

.gw-pricing-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gw-dark);
  margin-bottom: 0.75rem;
  }

.gw-pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gw-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
  }

.gw-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gw-muted);
  }

.gw-pricing-note {
  font-size: 0.8125rem;
  color: var(--gw-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gw-border);
  }

.gw-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  }

.gw-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gw-text);
  }

.gw-pricing-features li svg {
  stroke: var(--gw-accent);
  flex-shrink: 0;
  }

  .gw-pricing-card .gw-btn--white {
  background: var(--gw-dark);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .gw-pricing-card .gw-btn--white:hover {
  background: #222;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  }

  .gw-pricing-math {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gw-border);
  }

  .gw-pricing-math p {
  font-size: 0.8125rem;
  color: var(--gw-muted);
  line-height: 1.6;
  margin: 0;
  }

  .gw-pricing-math strong {
  color: var(--gw-dark);
  }


/* ========================================
   FAQ ACCORDION
   ======================================== */
.gw-faq-list {
    max-width: 780px;
    margin: 0 auto;
}

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

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

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

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

.gw-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--gw-light);
}

.gw-faq-item.active .gw-faq-icon {
    transform: rotate(45deg);
    stroke: var(--gw-accent);
}

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

.gw-faq-answer-inner {
    padding: 0 0 1.5rem 0;
    font-size: 0.9375rem;
    color: var(--gw-muted);
    line-height: 1.7;
}


/* ========================================
   KONTAKTFORMULAR (Anfrage-Style)
   ======================================== */
.gw-form-section {
    padding: 6.5rem 0;
    background: var(--gw-bg-mesh);
    position: relative;
}

.gw-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.gw-form-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gw-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.gw-form-info > p {
    font-size: 1.0625rem;
    color: var(--gw-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.gw-form-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.gw-form-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gw-text);
}

.gw-form-badge svg {
    stroke: var(--gw-accent);
    flex-shrink: 0;
}

.gw-nrw-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--gw-radius-sm);
    border: 1px solid var(--gw-border);
    margin-bottom: 2rem;
    box-shadow: var(--gw-shadow-sm);
}

.gw-nrw-badge img {
    flex-shrink: 0;
}

.gw-nrw-badge strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gw-dark);
}

.gw-nrw-badge span {
    display: block;
    font-size: 0.8125rem;
    color: var(--gw-muted);
}

.gw-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.gw-contact-sidebar .contact-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gw-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.gw-contact-sidebar .contact-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--gw-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.gw-contact-sidebar .contact-link:hover {
    color: var(--gw-accent);
}

.gw-contact-sidebar .contact-link svg {
    stroke: var(--gw-muted);
    flex-shrink: 0;
}

/* Form Card - Glass effect */
.gw-form-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--gw-border);
    padding: 2.5rem;
    box-shadow: var(--gw-shadow-md);
    position: relative;
}

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

.gw-form-card label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gw-dark);
    margin-bottom: 0.375rem;
}

.gw-form-card input,
.gw-form-card textarea,
.gw-form-card select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: 1.5px solid var(--gw-border-strong);
    border-radius: var(--gw-radius-xs);
    background: #fff;
    color: var(--gw-dark);
    transition: all 0.25s;
    box-sizing: border-box;
    font-family: inherit;
}

.gw-form-card input:focus,
.gw-form-card textarea:focus,
.gw-form-card select:focus {
    outline: none;
    border-color: var(--gw-accent);
    box-shadow: 0 0 0 3px var(--gw-accent-soft);
}

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

.gw-form-card .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gw-accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px var(--gw-accent-glow);
}

.gw-form-card .btn-submit:hover {
    background: var(--gw-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gw-accent-vivid);
}

.gw-form-card .btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gw-form-card .btn-submit .btn-loading {
    display: none;
}

.gw-form-card .btn-submit.loading .btn-text {
    display: none;
}

.gw-form-card .btn-submit.loading .btn-loading {
    display: inline;
}

.gw-form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.gw-form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gw-accent);
    margin-bottom: 0.75rem;
}

.gw-form-success p {
    color: var(--gw-muted);
    line-height: 1.65;
}

/* Honeypot */
.gw-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}


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

    .gw-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gw-process-grid::before {
        display: none;
    }

    .gw-experience-grid,
    .gw-pricing-layout,
    .gw-form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gw-ref-section .uix-siegburg-ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gw-hero {
        padding: 7rem 1.5rem 4rem;
    }

    .gw-hero h1 {
        font-size: 2.5rem;
    }

    .gw-section {
        padding: 4rem 0;
    }

    .gw-section-header {
        margin-bottom: 2.5rem;
    }

    .gw-hero-trust {
        flex-direction: column;
        gap: 0.75rem;
        border-radius: var(--gw-radius);
        padding: 1.25rem 1.5rem;
    }

    .gw-hero-trust-divider {
        width: 60%;
        height: 1px;
    }

    .gw-branchen-grid {
        grid-template-columns: 1fr;
    }

    .gw-compare-table {
        font-size: 0.8125rem;
        display: block;
        overflow-x: auto;
    }

    .gw-compare-table th,
    .gw-compare-table td {
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }

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

    .gw-stats-grid {
        grid-template-columns: 1fr;
    }

    .gw-bar-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.375rem;
    }

    .gw-bar-label {
        width: auto;
        text-align: left;
    }

    .gw-cta-banner {
        padding: 3rem 1.5rem;
        border-radius: var(--gw-radius);
    }

    .gw-ref-section .uix-siegburg-ref-grid,
    .gw-tm-grid {
        grid-template-columns: 1fr;
    }

    .gw-cta-group {
        flex-direction: column;
        align-items: center;
    }

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

    .gw-form-section {
        padding: 4rem 0;
    }

    .gw-form-card {
        padding: 1.75rem;
        border-radius: var(--gw-radius);
    }
}

@media (max-width: 480px) {
    .gw-hero-pulse,
    .gw-pricing-pulse {
        width: 300vw;
        filter: blur(40px) saturate(1.5);
    }

    .gw-hero h1 {
        font-size: 2rem;
    }

    .gw-hero-sub {
        font-size: 1rem;
    }

    .gw-section-header h2 {
        font-size: 1.625rem;
    }

    .gw-container {
        padding: 0 1.25rem;
    }

    .gw-pricing-card {
        padding: 2rem 1.5rem;
    }

    .gw-compare-table thead th.gw-compare-highlight::before {
        display: none;
    }
}
