/* ==========================================================================
   JUSTGREEN WEBSITE CSS - BEREINIGT
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLEN
   ========================================================================== */
   :root {
    --primary: #27b36a;
    --primary-dark: #1d8f4e;
    --secondary: #102a88;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --cta-orange: #FF6B35;
    --cta-orange-dark: #E5521F;

    /* Value Props Farben */
    --value-green: #4CAF50;
    --value-blue: #2196F3;
    --value-orange: #FF9800;
    --value-purple: #9C27B0;

    /* Einheitliche Schatten */
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 6px 20px rgba(0, 0, 0, 0.1);
    --shadow-card-strong: 0 8px 30px rgba(0, 0, 0, 0.1);

    /* Abstände */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-xxl: 24px;

    /* Card Styles */
    --card-padding: var(--spacing-lg);
    --card-padding-lg: 2.5rem;
    --card-radius: var(--radius-lg);
    --card-background: var(--white);
    --card-border: 2px solid transparent;
}

/* Language Flags Container */
.language-flags {
    margin-top: 0.5rem;
    text-align: center;
}

/* Override flag class for language flags to prevent distortion */
.language-flags .flag {
    width: auto;
    height: 1em;
    min-width: 1.3em;
    max-width: 2em;
    display: inline-block;
    vertical-align: -0.15em;
    margin-right: 0.25em;
    object-fit: cover; /* Crops to maintain aspect ratio */
    object-position: center;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.swiss-flag {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    vertical-align: -0.4em;
    margin-right: 0.3em;
}

/* ==========================================================================
   JUSTGREEN NAVBAR - NUR NAVBAR SPEZIFISCHE STYLES
   ========================================================================== */

   .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(39, 179, 106, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(39, 179, 106, 0.2);
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Brand/Logo */
.navbar-brand {
    flex-shrink: 0;
}

.brand-link {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.brand-link:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Desktop Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(39, 179, 106, 0.05);
    border: 1px solid rgba(39, 179, 106, 0.1);
    font-size: 0.9rem;
    height: 52px; /* Gleiche Höhe wie CTA Button */
    box-sizing: border-box;
}

.navbar-phone:hover {
    background: rgba(39, 179, 106, 0.1);
    color: var(--primary);
    transform: translateY(-1px);
}

.navbar-phone i {
    font-size: 0.85rem;
}

.navbar-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    font-size: 0.9rem;
    height: 52px; /* Gleiche Höhe wie CTA Button */
    box-sizing: border-box;
}

.navbar-login:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    transform: translateY(-1px);
}

.navbar-login i {
    font-size: 0.85rem;
}

.btn-navbar-primary {
    background: var(--cta-orange);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 98, 2, 0.2);
    text-decoration: none;
    height: 52px; /* Gleiche Höhe wie andere Buttons */
    box-sizing: border-box;
}

.btn-navbar-primary:hover {
    background: var(--cta-orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 98, 2, 0.3);
    text-decoration: none;
}

.btn-navbar-primary:visited {
    color: white;
}

.btn-navbar-primary i {
    font-size: 1.1rem;
}

.btn-navbar-primary span {
    text-decoration: none;
}

/* Smooth scrolling für die gesamte Seite */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset für fixed navbar */
}

/* Smooth scrolling für alle Anchor-Links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Enhanced smooth scrolling für bessere Performance */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Fallback für ältere Browser ohne native smooth scroll */
@supports not (scroll-behavior: smooth) {
    html {
        scroll-behavior: auto;
    }
}
/* ==========================================================================
   EINHEITLICHES CARD SYSTEM
   ========================================================================== */

/* Base Card Klasse */
.card {
    background: var(--card-background);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--shadow-card);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
}

/* ==========================================================================
   RESET & GLOBALE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px;
}

/* Performance Optimierungen */
img {
    max-width: 100%;
    height: auto;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   TYPOGRAFIE
   ========================================================================== */
h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 4rem;
}

.hero-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-headline {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-headline span {
    color: var(--primary);
}

/* Modern Hero Image */
.modern-hero-image {
    width: 100%;
    height: 800px;
    background: url('/images/landsonne.jpg') center 30% no-repeat;
    background-size: 120% auto;
    transform: translate3d(0, 0, 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
    max-width: 1400px;
    padding: 0 2rem;
}

.hero-brand {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-brand .just-part {
    color: var(--bg-light);
}

.hero-brand .green-part {
    color: var(--primary);
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--bg-light);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.scroll-down-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(39, 179, 106, 0.3);
    text-decoration: none; /* Add this line to remove underline */
}

.scroll-down-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 179, 106, 0.4);
    text-decoration: none;
    color: white;
}

.scroll-down-btn i {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

.hero-accent {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 179, 106, 0.05) 0%, transparent 70%);
    z-index: 2;
}

.hero-accent-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    animation: pulse 15s ease-in-out infinite;
}

.hero-accent-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation: pulse 18s ease-in-out infinite reverse;
}

/* ==========================================================================
   HERO PROCESS SECTION
   ========================================================================== */
.hero-process {
    margin-top: 2rem;
}

.hero-core-message {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-core-message h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Hybrid Layout */
.hero-hybrid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Value Highlights */
.value-highlights {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: var(--spacing-lg) 0;
    contain: layout;
}

.value-highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: var(--card-background);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
    position: relative;
}

.value-highlight:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
    border-left-color: var(--primary-dark);
}

.value-icon {
    background: linear-gradient(135deg, var(--primary), #45a049);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: transform 0.3s ease;
}

.value-highlight:hover .value-icon {
    transform: scale3d(1.1, 1.1, 1);
}

.value-icon i {
    font-size: 1.4rem;
}

/* Spezielle Akzente für verschiedene Value Props */
.value-highlight:nth-child(1) {
    border-left-color: var(--value-green);
}

.value-highlight:nth-child(1) .value-icon {
    background: linear-gradient(135deg, var(--value-green), #45a049);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.value-highlight:nth-child(2) {
    border-left-color: var(--value-blue);
}

.value-highlight:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--value-blue), #1976D2);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.value-highlight:nth-child(3) {
    border-left-color: var(--value-orange);
}

.value-highlight:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--value-orange), #F57C00);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.value-highlight:nth-child(4) {
    border-left-color: var(--value-purple);
}

.value-highlight:nth-child(4) .value-icon {
    background: linear-gradient(135deg, var(--value-purple), #7B1FA2);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.3);
}

.value-content h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.value-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* App Image */
.hero-app-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding: 2rem 0;
}

.app-hybrid-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* CTA Button */
.hero-simple-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-simple-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ==========================================================================
   LOGO BAR
   ========================================================================== */
   .logo-bar {
    background: var(--bg-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.logo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--primary) 50%, transparent 100%);
}

.logo-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-header h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -2rem;
}

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: 200%;
}

.logo-item {
    flex-shrink: 0;
    width: 240px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo-item img {
    max-width: 180px;
    max-height: 70px;
    filter: none;
    opacity: 1;
    transition: all 0.2s ease;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.customer-badge {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   SHOWCASE SECTION
   ========================================================================== */
.showcase-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.showcase-header h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.showcase-wrapper {
    /* Nutzt einheitliches Card-System */
    background: var(--card-background);
    border-radius: var(--radius-xxl);
    padding: var(--card-padding-lg);
    box-shadow: var(--shadow-card-strong);
    contain: layout;
}

/* Tab Navigation */
.showcase-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid #e9ecef;
    justify-content: center;
}

.showcase-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.showcase-tab-btn:hover {
    background: #e9ecef;
    color: var(--primary);
}

.showcase-tab-btn.active {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(39, 179, 106, 0.15);
}

.showcase-tab-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e9ecef;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.showcase-tab-btn.active .showcase-tab-number {
    background: var(--primary);
    color: white;
}

.tab-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0;
    transition: width 0.3s ease;
}

.showcase-tab-btn.active .tab-progress-bar {
    animation: progressBar 8s linear;
}

/* Display Area */
.showcase-display {
    position: relative;
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e9ecef;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.25rem;
    color: var(--text-light);
}

.showcase-arrow:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.showcase-arrow-prev {
    left: -28px;
}

.showcase-arrow-next {
    right: -28px;
}

/* Steps */
.showcase-step {
    display: none;
    animation: showcaseFadeIn 0.4s ease;
}

.showcase-step.active {
    display: block;
}

.showcase-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.showcase-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    display: block;
}

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

.showcase-zoom-hint {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-image-wrapper:hover .showcase-zoom-hint {
    opacity: 1;
}

.showcase-details h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showcase-details p {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid rgba(39, 179, 106, 0.2);
    transition: all 0.3s ease;
}

.showcase-benefit-item:hover {
    background: #e6f9ed;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(39, 179, 106, 0.1);
}

.showcase-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.showcase-benefit-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
}

/* Footer */
.showcase-footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.showcase-footer-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.showcase-footer-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.showcase-cta-button {
    background: var(--cta-orange);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.showcase-cta-button:hover {
    background: var(--cta-orange-dark); /* Braucht neue Variable */
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 98, 2, 0.3);
    color: white;
    text-decoration: none;
}

.showcase-cta-button:visited {
    color: white;
}

.showcase-text-link {
    color: var(--cta-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.showcase-text-link:hover {
    gap: 0.75rem;
    color: var(--cta-orange-dark);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.solution-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-card-clean {
    /* Nutzt einheitliches Card-System */
    background: var(--card-background);
    padding: var(--card-padding-lg);
    margin-top: var(--spacing-xl);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card-strong);
}

.contact-options-clean {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-option-clean {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.contact-icon-clean {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.contact-icon-clean i {
    font-size: 1.2rem;
}

.contact-option-clean h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-main {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-cta {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-cta:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-sub {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ==========================================================================
   VISION SECTION
   ========================================================================== */
.vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.vision-card {
    /* Nutzt einheitliches Card-System */
    background: var(--card-background);
    padding: 40px 30px;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
}

.vision-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #28a745 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.vision-icon i {
    font-size: 1.8rem;
}

.vision-card h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.vision-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   SECTIONS (GEMEINSAME STYLES)
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    /* Nutzt einheitliches Card-System */
    background: var(--card-background);
    padding: var(--card-padding);
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(39, 179, 106, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    /* Nutzt einheitliches Card-System */
    background: var(--bg-light);
    padding: var(--card-padding);
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.author-info strong {
    display: block;
    color: var(--secondary);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.rating {
    color: #ffc107;
    margin-top: 1rem;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
   .pricing-section {
    padding: 1rem 0;
    background: var(--bg-light);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--primary);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle-switch.annual::after {
    transform: translateX(30px);
}

.pricing-grid-centered {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    /* Nutzt einheitliches Card-System mit Anpassungen */
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: var(--card-background);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translate3d(0, -4px, 0);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-single {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
    line-height: 1.2;
}

.price-single small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 0.25rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.pricing-features-list i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   EINFACHE PRICING CTA SECTION - OHNE DOPPELTE RAHMEN
   ========================================================================== */
   .pricing-cta-section {
    text-align: center;
    margin: 2.5rem auto 1.5rem;
    padding: 2rem 1.5rem;
    max-width: 700px;
}

.pricing-cta-section h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.4rem;
    font-weight: 700;
}

.pricing-buttons-global {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn-free-trial,
.btn-consultation {
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
    text-decoration: none;
}

/* Primary Button - Gratis testen */
.btn-free-trial {
    background: var(--cta-orange);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 3px 12px rgba(255, 98, 2, 0.25);
}

.btn-free-trial:hover {
    background: var(--cta-orange-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(255, 98, 2, 0.35);
}

.btn-free-trial:visited {
    color: white;
}

/* Secondary Button - Beratung */
.btn-consultation {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(7, 30, 85, 0.08);
}

.btn-consultation:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(7, 30, 85, 0.25);
}

.btn-consultation:visited {
    color: var(--secondary);
}

.btn-consultation:hover:visited {
    color: white;
}

/* Icons in buttons */
.btn-free-trial i,
.btn-consultation i {
    font-size: 0.9rem;
}

/* Text unter den Buttons - ohne extra Container */
.pricing-additional-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    /* Nutzt einheitliches Card-System */
    background: var(--card-background);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--shadow-card-hover);
}

/* Team Image - Optimiert für bessere Gesichtsdarstellung */
.team-img {
    width: 100%;
    height: 350px; /* Höher: von 300px auf 350px für bessere Proportionen */
    object-fit: cover;
    object-position: center 20%; /* Fokus auf Gesicht/Oberkörper */
}

.team-content {
    padding: 2rem;
}

.team-content h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.team-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

.team-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #e8f5f1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-8px);
    height: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 1rem;
}

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

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-white {
    background: var(--cta-orange);
    color: white;
    text-decoration: none;
}

.btn-white:hover {
    background: var(--cta-orange-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 98, 2, 0.3);
}

.btn-white:visited {
    color: white;
}

/* Zweiter Button - transparent mit weissem Rand */
.btn-white-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
}

.btn-white-outline:hover {
    background: white;
    color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-white-outline:visited {
    color: white;
}

.btn-white-outline:hover:visited {
    color: var(--primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   BUTTONS (GEMEINSAME STYLES)
   ========================================================================== */
.btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 5px 20px rgba(39, 179, 106, 0.3);
}

/* Focus States für Accessibility */
.showcase-tab-btn:focus,
.showcase-tab-btn:focus-visible,
.showcase-tab-btn:active {
    outline: none;
    box-shadow: none; /* Entfernt auch eventuelle Box-Shadow-Rings */
}

.testimonials-grid,
.features-grid,
.team-grid {
    contain: layout;
}

/* ==========================================================================
   MODAL STYLES
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1400px;
    top: 50%;
    transform: translateY(-50%);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* ADD this line */
}


.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    max-height: 85vh;
    max-width: 100%;
    display: block; /* ADD this line - removes white space around image */
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ==========================================================================
   VERSTECKTE ELEMENTE
   ========================================================================== */

#newsletter-section {
    display: none;
}

.footer {
    display: none;
}

/* ==========================================================================
   JUSTGREEN MOBILE & TABLET RESPONSIVE STYLES - SIMPLIFIED
   ========================================================================== */

/* ==========================================================================
   TABLET STYLES (768px - 1024px)
   ========================================================================== */
   @media screen and (max-width: 1024px) {
    /* Hero Layout */
    .hero-hybrid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-app-right {
        justify-content: center;
    }

    /* Showcase Content */
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-details {
        order: -1;
    }

    /* Pricing Grid */
    .pricing-grid-centered {
        gap: 1.5rem;
    }

    /* Contact Options */
    .contact-options-clean {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 800px;
    }

    .team-img {
        height: 300px; /* Slightly smaller on tablet */
    }

    .team-content {
        padding: 1.5rem;
    }

    .team-content h4 {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.95rem;
    }

    .team-bio {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   MOBILE STYLES (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* Fix white space issue - adjust body padding */
    body {
        padding-top: 70px; /* Reduced from 80px */
    }

    /* Navbar Height Adjustment */
    .navbar {
        height: 70px;
    }

    /* Hide Desktop Navigation */
    .navbar-nav,
    .navbar-actions {
        display: none;
    }

    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Image - Remove gap and gray overlay */
    .modern-hero-image {
        height: 500px;
        margin-top: -70px; /* Negative margin to remove gap */
        padding-top: 70px; /* Add padding to compensate */
        background-size: cover;
        background-position: center center;
    }

    /* Remove/reduce hero overlay on mobile */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.2); /* Much lighter overlay */
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    /* Typography Scale */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Hero Content */
    .hero-brand {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    /* Value Highlights */
    .value-highlights {
        gap: 1.5rem;
    }

    .value-highlight {
        padding: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

/* Fix Logo Bar Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-track {
    animation: scroll 10s linear infinite; /* Slower for better visibility */
    width: 200%; /* Ensure seamless loop */
}

/* Mobile logo sizing */
.logo-item {
    width: 200px;
    height: 80px;
    margin: 0 1rem;
}

.logo-item img {
    max-width: 150px;
    max-height: 60px;
}

    /* Showcase Wrapper - Better mobile layout */
    .showcase-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    /* Showcase Section - More compact on mobile */
    .showcase-section {
        padding: 3rem 0; /* Reduced from 5rem */
    }

    .showcase-header {
        margin-bottom: 2rem; /* Reduced spacing */
    }

    /* Make showcase content stack better on mobile */
    .showcase-content {
        gap: 1.5rem; /* Reduced gap */
    }

    /* Showcase image more compact */
    .showcase-image-wrapper {
        margin-bottom: 1rem;
        max-height: 300px; /* Limit height on mobile */
        overflow: hidden;
    }

    .showcase-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    /* Hide zoom hint on mobile */
    .showcase-zoom-hint {
        display: none;
    }

    /* More compact details section */
    .showcase-details {
        padding: 0;
    }

    .showcase-details h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .showcase-details p {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    /* Compact benefits */
    .showcase-benefits {
        gap: 0.5rem;
    }

    .showcase-benefit-item {
        padding: 0.75rem 1rem;
        background: #f0fdf4;
        border: 1px solid rgba(39, 179, 106, 0.2);
        border-radius: 8px;
    }

    .showcase-benefit-text {
        font-size: 0.9rem;
    }

    /* Showcase tabs - horizontal scroll on mobile */
    .showcase-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .showcase-tab-btn {
        flex: 1 1 calc(50% - 1rem); /* Zwei Tabs pro Zeile */
        min-width: 140px;
        max-width: 200px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }



    /* Fix left-aligned buttons - Center all CTAs */
    .btn,
    .btn-primary,
    .hero-simple-btn,
    .showcase-cta-button,
    .btn-free-trial,
    .btn-consultation {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    /* Showcase footer actions */
    .showcase-footer-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Pricing Section */
    .pricing-grid-centered {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    /* Center pricing buttons */
    .pricing-buttons-global {
        flex-direction: column;
        align-items: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Final CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-white {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Form inputs - prevent zoom on iOS */
    input,
    select,
    textarea {
        font-size: 16px;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
    }

        /* Team Grid - Single column on mobile */
        .team-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .team-card {
            margin-bottom: 1rem;
        }

        .team-img {
            height: 250px; /* Smaller on mobile but still good proportion */
            object-position: center 30%; /* Better face positioning */
        }

        .team-content {
            padding: 1.5rem;
        }

        .team-content h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .team-role {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .team-bio {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .team-link {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
}

/* ==========================================================================
   SMALL MOBILE ADJUSTMENTS (max-width: 480px)
   ========================================================================== */
@media screen and (max-width: 480px) {
    /* Even smaller typography */
    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    /* Compact spacing */
    section {
        padding: 3rem 0;
    }

    .section-container {
        padding: 0 1rem;
    }

    /* Smaller cards */
    .value-highlight,
    .showcase-wrapper,
    .testimonial-card,
    .pricing-card {
        padding: 1rem;
    }

    /* Trust stats */
    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .team-grid {
        gap: 1rem;
        max-width: 100%;
    }

    .team-img {
        height: 200px; /* More compact on small screens */
    }

    .team-content {
        padding: 1rem;
    }

    .team-content h4 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .team-bio {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .team-link {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   MOBILE MENU FIX
   ========================================================================== */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh; /* Volle Höhe */
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    flex-shrink: 0;
}

.mobile-brand {
    display: flex;
    align-items: center;
}

.mobile-logo {
    height: 30px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.375rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 1rem 0;
    min-height: 0;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(39, 179, 106, 0.05);
    color: var(--primary);
    padding-left: 2rem;
}

.mobile-nav-link:hover::before {
    width: 4px;
}

/* Mobile Action Buttons */
.mobile-actions {
    padding: 1rem 1.5rem;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    position: static;
    margin-top: 2rem;
    z-index: auto;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border: 1px solid rgba(39, 179, 106, 0.1); /* Wie Desktop */
    border-radius: 6px;
    font-weight: 500; /* Wie Desktop */
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(39, 179, 106, 0.05); /* Wie Desktop */
}

.mobile-phone-btn:hover {
    background: rgba(39, 179, 106, 0.1); /* Wie Desktop */
    color: var(--primary);
    transform: translateY(-1px); /* Wie Desktop */
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #2563eb; /* Wie Desktop */
    text-decoration: none;
    padding: 0.75rem;
    border: 1px solid rgba(37, 99, 235, 0.1); /* Wie Desktop */
    border-radius: 6px;
    font-weight: 500; /* Wie Desktop */
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.05); /* Wie Desktop */
}

.mobile-login-btn:hover {
    background: rgba(37, 99, 235, 0.1); /* Wie Desktop */
    color: #1d4ed8; /* Wie Desktop */
    transform: translateY(-1px); /* Wie Desktop */
}

.btn-mobile-primary {
    background: var(--cta-orange);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-decoration: none;
}

.btn-mobile-primary:hover {
    background: var(--cta-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Mobile Menu - Show on Mobile */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Compact Mobile Menu for Small Heights */
@media (max-height: 600px) {
    .mobile-menu-header {
        padding: 0.5rem 1rem;
    }

    .mobile-nav {
        padding: 0.5rem 0;
    }

    .mobile-nav-link {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .mobile-actions {
        padding: 0.75rem;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .navbar,
    .mobile-menu-overlay,
    .btn,
    .modal {
        display: none !important;
    }
}


/* ==========================================================================
   FOKUSSIERTE ANMELDUNG - MINIMAL & KLAR - FINAL VERSION
   ========================================================================== */

/* Hero - Nur das Nötigste */
.signup-hero {
    background: var(--primary);    ;
    color: white;
    padding: 1.4rem 0;
    text-align: center;
}

.signup-hero-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.signup-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.signup-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Main Container - Feste Höhe für nahtlosen Wechsel */
.main-signup-container {
    background: var(--white);
    min-height: 600px;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.step-container {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

.step-container.hidden {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.step-container.show {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Branche wählen - Klare Boxen */
.industry-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.industry-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.industry-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 179, 106, 0.15);
}

.industry-option.selected {
    border-color: var(--primary);
    background: rgba(39, 179, 106, 0.05);
    box-shadow: 0 8px 25px rgba(39, 179, 106, 0.15);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-icon i {
    font-size: 1.25rem;
}

.industry-text {
    flex: 1;
}

.industry-text h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.industry-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Anmeldeformular Layout - PERFEKTE ZENTRIERUNG */
.signup-form-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: none;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.signup-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Selected Industry Badge - gleiche Breite wie Form */
.selected-industry-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    width: 600px; /* Feste Breite wie Formular */
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}


.back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.signup-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar - ABSOLUT RECHTS POSITIONIERT */
.next-steps-sidebar {
    position: absolute;
    left: calc(50% + 300px + 3rem); /* 300px = halbe Formularbreite + 1rem Gap */
    top: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

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

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

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-input::placeholder {
    color: #adb5bd;
}

/* Feldkalender Optionen */
.field-calendar-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.option-card {
    background: white;
    border: 1px solid #e3e8ef; /* Gleich wie plan-card */
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); /* Gleich wie plan-card */
}

.option-card:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 179, 106, 0.08);
}

.option-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(39, 179, 106, 0.02); /* Gleich wie plan-card selected */
    box-shadow: 0 4px 12px rgba(39, 179, 106, 0.1);
}

/* Check Icon - genau wie bei plan-cards */
.option-card:has(input:checked)::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 12px;
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.8;
}

.option-card input {
    display: none; /* Radio button bleibt versteckt */
}

.option-content {
    text-align: center;
}

.option-content strong {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.option-content span {
    color: var(--text-light);
    font-size: 0.85rem; /* Gleiche Größe wie plan-employees */
    font-weight: 400;
}

/* Submit Button */
.btn-signup {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(39, 179, 106, 0.3);
}

.btn-signup:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 179, 106, 0.4);
}

/* Trust Info unter Button */
.trust-info {
    text-align: center;
    margin-top: 1rem;
}

.trust-info p {
    margin: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.trust-info p:last-child {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Next Steps Card */
.next-steps-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
}

.next-steps-card h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Kontakt Info */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.contact-link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.contact-link i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-link span {
    font-weight: 500;
    font-size: 0.9rem;
}
/* ==========================================================================
   CLEAN TABBED PLAN SELECTION
   ========================================================================== */
   .plan-selection-clean {
    margin-bottom: 2rem;
}

.plan-question {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.plan-display {
    background: rgba(39, 179, 106, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(39, 179, 106, 0.2);
}

.plan-name {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.plan-price {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.plan-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.plan-sublabel {
    background: rgba(39, 179, 106, 0.08);
    border: 1px solid rgba(39, 179, 106, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    text-align: center;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.employee-tabs {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 1.5rem;
    gap: 2px;
}

.employee-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-light);
}

.employee-tab.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-card);
    position: relative;
}

.plan-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .employee-tabs {
        flex-wrap: wrap;
    }

    .employee-tab {
        min-width: calc(50% - 1px);
        gap: 0.3rem;
        font-size: 0.85rem;
    }

    .tab-check-icon {
        font-size: 0.7rem;
    }

    .plan-price {
        font-size: 2rem;
    }
}

/* Functions Link - auch sanfter */
.functions-link-container {
    text-align: center;
    margin: 1.5rem 0 1rem 0;
}

.functions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem; /* Kleiner */
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(39, 179, 106, 0.03); /* Sehr subtil */
    border: 1px solid rgba(39, 179, 106, 0.1);
}

.functions-link:hover {
    background: rgba(39, 179, 106, 0.06);
    color: var(--primary-dark);
    transform: translateY(-1px);
    border-color: rgba(39, 179, 106, 0.15);
}

.functions-link i {
    font-size: 0.75rem;
}


/* reCAPTCHA */
.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* ========================================
   Responsive Styles für Mobile & Tablet
   ======================================== */

/* Tablet: max-width 768px */
@media (max-width: 768px) {
  .signup-hero h1 {
    font-size: 2rem;
  }

  .signup-hero p {
    font-size: 1rem;
  }

  .industry-selection {
    padding: 0 1rem;
  }

  .signup-form-layout {
    flex-direction: column;
    align-items: center;
  }

  .signup-form-container,
  .selected-industry-badge {
    width: 100%;
    padding: 1 1rem;
    gap: 0.5rem;
  }

  .next-steps-sidebar {
    position: static;
    width: 100%;
    margin-top: 2rem;
    padding: 0 1rem;
  }

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

  .option-card {
    text-align: left;
  }

  .showcase-display {
    min-height: 640px; /* Feste Mindesthöhe für den äußeren Container */
}
}

/* Smartphone: max-width 480px */
@media (max-width: 480px) {
  .signup-hero h1 {
    font-size: 1.6rem;
  }

  .signup-hero p {
    font-size: 0.95rem;
  }

  .industry-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-icon {
    width: 40px;
    height: 40px;
  }

  .industry-text h3 {
    font-size: 1rem;
  }

  .industry-text p {
    font-size: 0.85rem;
  }

  .selected-industry-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .form-input {
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  .btn-signup {
    font-size: 1rem;
    padding: 1rem;
  }

  .contact-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-display {
    min-height: 640px; /* Etwas kleiner für kleine Bildschirme */
}
}
