* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip link – nur sichtbar beim Fokus (Tastatur/Screenreader) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10010;
    padding: 0.75rem 1.25rem;
    background: var(--flyer-dark);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Sichtbarer Fokus für Tastatur-Nutzung */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-light: rgba(255, 255, 255, 0.95);
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-tertiary: #6c757d;
    /* MD G&G Flyer – dunkelblau + Gold */
    --flyer-dark: #1e2442;
    --flyer-dark-2: #282e50;
    --flyer-banner: #323a5e;
    --accent: #1e2442;
    --accent-hover: #323a5e;
    --accent-gold: #c9a227;
    --accent-gold-dark: #a8841f;
    --accent-gold-light: rgba(201, 162, 39, 0.15);
    --card-border: rgba(0, 0, 0, 0.08);
    --card-border-hover: rgba(201, 162, 39, 0.5);
    --accent-light: rgba(26, 31, 58, 0.08);
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12), 0 10px 10px rgba(0, 0, 0, 0.08);
    --glass-blur: blur(20px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: 16px;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    max-width: 100vw;
    -webkit-tap-highlight-color: var(--accent-gold-light);
    touch-action: manipulation;
}

/* Emergency Call Banner – Flyer: dunkelblau, weiße Schrift */
.emergency-banner {
    background: var(--flyer-dark);
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1001;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-icon {
    display: flex;
    align-items: center;
    color: white;
}

.emergency-text {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.emergency-text strong {
    font-weight: 700;
    color: white;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--flyer-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.emergency-phone:hover {
    background: var(--accent-gold-dark);
    color: var(--flyer-dark);
    transform: translateY(-1px);
}

.emergency-phone svg {
    flex-shrink: 0;
}

section {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Video Section – Layout: Video links (YouTube-Standard 16:9), Sidebar rechts */
.video-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.video-layout {
    display: grid;
    grid-template-columns: minmax(0, 640px) 220px;
    gap: 1.5rem;
    align-items: start;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* YouTube-Standard: 16:9, gleiche Proportion wie auf YouTube */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--card-border);
    background: #000;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    box-shadow: var(--shadow);
}

.video-sidebar-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-sidebar-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.video-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.video-sidebar-list li {
    padding: 0.2rem 0 0.2rem 1rem;
    color: var(--text-primary);
    font-size: 0.75rem;
    position: relative;
}

.video-sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.65rem;
}

.video-sidebar-contact {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.video-sidebar-address {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.video-sidebar-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
}

@media (max-width: 900px) {
    .video-layout {
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 1.5rem;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .video-sidebar {
        position: static;
    }
}

.video-hint {
    margin: 1rem auto 0;
    max-width: 900px;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-align: center;
}

.video-hint code {
    background: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Navigation – hell, klare Linien */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 130px;
}

/* Logo bez obojene pozadine */
.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.95;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.nav-menu a:hover {
    color: var(--accent);
}

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

.nav-cta {
    margin-left: 1.5rem;
}

.btn-nav {
    background: var(--accent-gold);
    color: #1a1a1a;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--accent-gold-dark);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

/* Hero – hell, Frische */
.hero {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Hero Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    text-align: left;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.hero-badge {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    background: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 100%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-item {
    text-align: left;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 0;
    padding-top: 0;
}

.hero .contact-value:hover {
    color: var(--accent);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Buttons - Modern Redesign */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    user-select: none;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: #1a1a1a;
    box-shadow: var(--shadow);
    border: 1px solid var(--accent-gold-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero .btn-secondary {
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: none;
}

.hero .btn-secondary:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Trusted By Section - Cursor Style */
.trusted-by {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    margin: 0;
}

.trusted-by .container {
    max-width: 1200px;
}

.trusted-by-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.trusted-by-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.trusted-logo {
    flex-shrink: 0;
    min-width: 150px;
}

.trusted-logo {
    padding: 1.5rem 2rem;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
}

.trusted-logo:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 4px 16px var(--accent-gold-light);
    transform: translateY(-2px);
}

.partner-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    display: block;
    filter: brightness(1.2);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.trusted-logo:hover .partner-logo {
    opacity: 1;
}

/* Trust Badges - Professional */
.trust-badges {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
    clear: both;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.badge-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.badge-card:hover::before {
    opacity: 1;
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    color: var(--flyer-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.badge-card:hover .badge-icon {
    background: var(--accent-gold-dark);
    color: var(--flyer-dark);
    transform: scale(1.05);
}

.badge-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.badge-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Header - Professional */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gold-light);
    border-radius: 6px;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.services .section-header,
.contact .section-header {
    background: transparent;
    color: var(--text-primary);
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 3rem;
    padding: 2rem 24px;
    border-radius: 0;
}

.services .section-label,
.contact .section-label {
    background: var(--accent-light);
    color: var(--accent);
}

.services .section-header h2,
.contact .section-header h2 {
    color: var(--text-primary);
}

.services .section-header p,
.contact .section-header p {
    color: var(--text-secondary);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.2;
    hyphens: none;
}

.no-break {
    white-space: nowrap;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Team Section - Professional */
.team {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-stat {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.team-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.team-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.team-feature-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--flyer-dark);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
}

.team-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-feature-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Services Section - Professional */
.services {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--card-border);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Process Section - Professional */
.process {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--card-border-hover);
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--flyer-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-content {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.process-content:hover {
    border-color: var(--card-border-hover);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.process-details {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.process-details span {
    background: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--card-border);
}

/* Gallery Section - Professional */
.gallery {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.comparison-sliders {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
}

.comparison-item {
    width: 100%;
}

.comparison-container {
    background: #fff;
    border-radius: 16px;
    border: 2px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.comparison-container:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    border-radius: 4px;
}

.before-after-wrapper:active {
    cursor: grabbing;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: var(--flyer-dark);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: 4px;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 20;
    cursor: ew-resize;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    outline: none;
    opacity: 0;
}

.slider-line {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: white;
    z-index: 15;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
}

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border: 3px solid white;
    border-radius: 4px;
    z-index: 18;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::before {
    content: '↔';
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
}

.comparison-info {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.comparison-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.comparison-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Case Studies Grid - Premium Glass */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-study-type {
    padding: 0.5rem 1rem;
    background: var(--accent-gold-light);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.case-study-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.case-study-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gold-light);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    border: 2px solid var(--card-border);
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 2rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Testimonials Section - Professional */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

/* Why Choose Us - Professional */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.why-choose-item:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    color: var(--flyer-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--accent-gold-dark);
    color: var(--flyer-dark);
    transform: scale(1.05);
}

.why-choose-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-choose-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Professional Proof Section - Professional */
.professional-proof {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.proof-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proof-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.proof-card:hover::before {
    opacity: 1;
}

.proof-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.proof-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.proof-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.proof-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gold-light);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section - Professional */
.faq {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: var(--bg-primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question:hover {
    background: var(--bg-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Pricing Section - Professional */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

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

.pricing-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--card-border);
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--card-border-hover);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    background: var(--bg-primary);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
}

.pricing-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-primary);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--flyer-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.pricing-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-gold);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-top: auto;
}

.pricing-button:hover {
    background: var(--accent-gold-dark);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Section - Professional */
.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
    margin-top: 0;
    margin-bottom: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
}

.info-value:hover {
    color: var(--accent-gold);
}

.why-us-list {
    list-style: none;
}

.why-us-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--card-border);
    font-size: 1rem;
}

.why-us-list li:last-child {
    border-bottom: none;
}

.why-us-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-height: 44px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

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

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

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Certifications Section */
.certifications {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--card-border-hover);
}

.cert-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cert-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cert-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--card-border-hover);
}

.industry-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.industry-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.industry-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Maintenance Section */
.maintenance {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.maintenance-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.maintenance-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maintenance-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.maintenance-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.maintenance-stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.maintenance-stat-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Enterprise Section */
.enterprise {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.enterprise-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.enterprise-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--card-border-hover);
}

.enterprise-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enterprise-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.enterprise-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.enterprise-benefits {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
}

.enterprise-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Equipment Section */
.equipment {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.equipment-category {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.equipment-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--card-border-hover);
}

.equipment-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-category h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.equipment-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-category ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.equipment-category ul li:last-child {
    border-bottom: none;
}

.equipment-category ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Footer – helles Theme */
.footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-contact a,
.footer-contact span {
    color: var(--text-primary);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-bottom .footer-made {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    max-width: 800px;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--text-primary);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-primary);
}

.lightbox-close:hover {
    background: var(--bg-primary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    color: var(--text-primary);
    border: none;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--bg-primary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .emergency-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .emergency-text {
        font-size: 0.8125rem;
    }

    .emergency-phone {
        font-size: 0.875rem;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        box-shadow: var(--shadow-md);
        padding: 1.5rem 0;
        gap: 0.75rem;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-badge {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-badge {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-contact-info {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        text-align: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

    .before-after-wrapper {
        height: 400px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .container,
    section,
    main {
        max-width: 100%;
        box-sizing: border-box;
    }

    .container {
        padding: 0 16px;
        width: 100%;
    }

    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Touch-friendly navigation */
    .nav-menu a {
        padding: 1rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Touch-friendly buttons */
    .btn, button, a.btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Form inputs mobile optimization */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 44px;
        padding: 0.875rem 1rem;
    }
    
    /* Better spacing for mobile */
    section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Improved readability */
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Better table spacing */
    table {
        font-size: 0.875rem;
    }
    
    /* Optimize images */
    img {
        height: auto;
        display: block;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

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

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

    .stat-number {
        font-size: 1.75rem;
    }

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

    .section-header p {
        font-size: 0.9375rem;
    }

    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .services,
    .process,
    .gallery,
    .testimonials,
    .contact,
    .faq,
    .pricing,
    .why-choose,
    .certifications,
    .industries,
    .equipment,
    .enterprise {
        padding: 3rem 0;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .stat-box {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

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

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.9375rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

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

    .emergency-banner {
        padding: 0.625rem 0;
    }

    .emergency-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .emergency-text {
        font-size: 0.75rem;
    }

    .emergency-phone {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 96px;
    }

    .nav-menu {
        padding: 1rem 0;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem 0;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--accent-gold);
    color: var(--flyer-dark);
}

.btn-cookie-accept:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-1px);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-cookie-decline:hover {
    background: var(--bg-primary);
}

/* Legal Pages – Flyer-Farben */
.legal-page {
    padding: 6rem 0 4rem;
    background: var(--bg-primary);
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.last-updated {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

.widerruf-formular {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    margin: 2rem 0;
}

.widerruf-formular p {
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #25D366;
    border: 2px solid var(--border);
}

.whatsapp-button:hover {
    background: var(--bg-glass-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-button:active {
    transform: translateY(-2px);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--bg-glass);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-4px);
}

@media (max-width: 640px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
        border-width: 2px;
    }

    .certifications-grid,
    .industries-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-content,
    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enterprise-features {
        grid-template-columns: 1fr;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
    
    /* Additional mobile optimizations */
    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Performance optimizations */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Prevent text selection on buttons */
    button, .btn, a.btn {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hero section mobile optimizations */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-item {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .section-header p {
        font-size: 0.9375rem !important;
    }
    
    /* Cards mobile optimization */
    .service-card,
    .testimonial-card,
    .pricing-card,
    .cert-card,
    .industry-card,
    .equipment-category {
        padding: 1.5rem !important;
    }
    
    /* Process timeline mobile */
    .process-step {
        padding-left: 0 !important;
        margin-bottom: 2rem;
    }
    
    .process-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1rem !important;
    }
    
    /* Gallery/Case studies mobile */
    .case-studies-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .case-study-card {
        padding: 1.5rem;
    }
    
    .case-study-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .case-study-card h3 {
        font-size: 1.25rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .case-study-card {
        overflow: visible;
    }
    
    .stat-box {
        padding: 0.625rem 0.5rem !important;
        min-width: 0;
    }
    
    .case-study-card .stat-value {
        font-size: 1.25rem !important;
    }
    
    .case-study-card .stat-label {
        font-size: 0.6875rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Trust badges mobile */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    /* Contact form mobile */
    .contact-content {
        grid-template-columns: 1fr !important;
    }
    
    .info-card {
        margin-bottom: 2rem;
        padding: 1.5rem !important;
    }
    
    .info-item {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    .info-label {
        font-size: 0.8125rem !important;
        margin-bottom: 0.5rem;
    }
    
    .info-value {
        font-size: 0.9375rem !important;
        line-height: 1.5;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    /* Team section mobile */
    .team-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem;
    }
    
    .team-stat-number {
        font-size: 1.5rem !important;
    }
    
    /* Enterprise section mobile */
    .enterprise-benefits {
        margin-top: 2rem;
    }
    
    .benefits-list {
        padding-left: 1.25rem;
    }
    
    /* Proof grid mobile */
    .proof-grid {
        grid-template-columns: 1fr !important;
    }
    
    .proof-card {
        padding: 1.5rem;
    }
    
    /* Emergency banner – kompaktnije na mobilu */
    .emergency-banner {
        padding: 0.4rem 0.5rem;
    }
    
    .emergency-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .emergency-text {
        font-size: 0.7rem !important;
        line-height: 1.3;
    }
    
    .emergency-phone {
        font-size: 0.8125rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Navigation mobile improvements */
    .navbar {
        padding: 0;
    }
    
    .nav-content {
        padding: 0.6rem 1rem;
        min-height: 64px;
    }
    
    .logo {
        padding: 0;
    }
    
    .logo-img {
        height: 80px !important;
    }
    
    /* Chat/Contact widget – manji na mobilu, ne prekriva CTA */
    .contact-widget {
        bottom: max(1rem, env(safe-area-inset-bottom)) !important;
        right: max(0.75rem, env(safe-area-inset-right)) !important;
    }

    .cookie-banner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
    
    .contact-widget-toggle {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    .contact-widget-toggle svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    /* Chatbot mobile */
    .chatbot-window {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        bottom: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
    }
    
    /* Better text readability */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        position: relative;
    }
    
    /* Touch targets for interactive elements only */
    .btn, button:not(.nav-toggle), .nav-menu a, .pricing-button,
    .contact-widget-toggle, .emergency-phone {
        min-height: 44px;
    }
    .btn, button:not(.nav-toggle), .pricing-button, .emergency-phone {
        min-width: 44px;
    }
    input, select {
        min-height: 44px;
    }
    
    /* Better spacing for mobile */
    .section-header {
        padding: 0 1rem;
    }
    
}

/* Very small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-img {
        max-height: 220px;
    }

    .logo-img {
        height: 64px !important;
    }

    .badges-grid {
        grid-template-columns: 1fr !important;
    }

    .emergency-text {
        font-size: 0.7rem;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    /* Team: statistike u jedan stubac da se „Zufriedenheit“ ne seče */
    .team-stats {
        grid-template-columns: 1fr !important;
    }
    
    /* Referenzen: 3 stat-kutije u jedan stubac na uskom ekranu */
    .case-study-stats {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet optimizations */
@media (min-width: 641px) and (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== Mobilna verzija – detaljne optimizacije ========== */
@media (max-width: 640px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* Hero – mobil: 4 „Prozore“ full width 2x2, kompaktno, prostor za widget */
    .hero {
        padding: 1.5rem 0 5rem;
        min-height: 0;
    }
    .hero-wrapper {
        gap: 1.25rem;
        display: flex;
        flex-direction: column;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 2;
    }
    .hero-badge {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
        width: 100%;
    }
    .badge-item {
        width: 100%;
        padding: 0.625rem 0.5rem !important;
        font-size: 0.7rem !important;
        text-align: center;
        box-sizing: border-box;
    }
    .hero-title {
        font-size: clamp(1.35rem, 6.5vw, 1.75rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 0.5rem;
    }
    .hero-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem;
    }
    .hero-cta {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .btn-hero {
        width: 100%;
        padding: 0.875rem 1rem !important;
        font-size: 0.9375rem !important;
    }
    .hero-contact-info {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }
    .contact-label {
        font-size: 0.6875rem;
    }
    .contact-value {
        font-size: 1rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    .stat-item {
        padding: 0.75rem 0.5rem !important;
    }
    .stat-number {
        font-size: 1.5rem !important;
    }
    .stat-label {
        font-size: 0.7rem !important;
        word-wrap: break-word;
    }
    .hero-img {
        border-radius: 12px;
        max-height: 240px;
        object-fit: cover;
        object-position: center;
    }

    /* Sekcije – ujednačen ritam */
    section {
        padding: 2.25rem 0 !important;
    }
    .section-header {
        margin-bottom: 1.75rem;
        padding: 0 0.25rem;
    }
    .section-header h2 {
        font-size: clamp(1.375rem, 5.5vw, 1.75rem) !important;
        line-height: 1.3 !important;
    }
    .section-header p {
        font-size: 0.9375rem !important;
        line-height: 1.55;
    }
    .section-label {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }

    /* Kartice – veći tap, manje gužve */
    .service-card,
    .testimonial-card,
    .pricing-card,
    .badge-card,
    .info-card {
        padding: 1.25rem 1rem !important;
        border-radius: 12px;
    }
    .pricing-button {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    .badges-grid {
        gap: 0.75rem !important;
    }
    .badge-card {
        padding: 1.25rem 1rem !important;
    }

    /* Video sekcija */
    .video-section {
        padding: 2rem 0 !important;
    }
    .video-layout {
        gap: 1.25rem;
    }
    .video-sidebar {
        padding: 1rem !important;
    }

    /* Kontakt forma */
    .contact-form {
        padding: 1.5rem 1rem !important;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem !important;
        border-radius: 8px;
    }
    .form-group textarea {
        min-height: 120px;
    }
    .contact-content {
        gap: 1.5rem;
    }

    /* Team – mobil: statistike u 2 kolone ili stubac, ceo tekst vidljiv */
    .team-content {
        gap: 2rem;
    }
    .team-content .team-info {
        order: 1;
    }
    .team-content .team-image {
        order: 2;
    }
    .team-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    .team-stat {
        padding: 1rem 0.75rem !important;
    }
    .team-stat-number {
        font-size: 1.75rem !important;
    }
    .team-stat-label {
        font-size: 0.8125rem !important;
        line-height: 1.25;
        word-wrap: break-word;
    }

    /* Process */
    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 1rem;
    }
    .process-number {
        width: 48px !important;
        height: 48px !important;
        font-size: 0.9375rem !important;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem !important;
    }
    .footer-content {
        gap: 1.75rem;
    }
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
    }

    /* Čitljivost */
    body {
        -webkit-font-smoothing: antialiased;
    }
    p, li {
        line-height: 1.65;
    }
}

/* Veoma mali ekrani */
@media (max-width: 380px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .hero-title {
        font-size: 1.375rem !important;
    }
    .section-header h2 {
        font-size: 1.25rem !important;
    }
    .logo-img {
        height: 56px !important;
    }
    .badges-grid {
        grid-template-columns: 1fr !important;
    }
}
