/* ==========================================================================
   Photoboother.de - Design System
   Premium Dark Theme CSS
   ========================================================================== */

/* ==========================================================================
   0. GOOGLE FONTS IMPORT
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* ==========================================================================
   1. CSS RESET / NORMALIZE
   ========================================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pb-white);
    background-color: var(--pb-black);
    overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    border: none;
    outline: none;
    background: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

p {
    margin: 0;
}

::selection {
    background-color: var(--pb-orange);
    color: var(--pb-white);
}

::-moz-selection {
    background-color: var(--pb-orange);
    color: var(--pb-white);
}

/* ==========================================================================
   2. DESIGN TOKENS / CSS VARIABLES
   ========================================================================== */

:root {
    /* Brand Colors */
    --pb-orange: #EE7F01;
    --pb-orange-light: #FF9A2E;
    --pb-orange-dark: #CC6C00;
    --pb-black: #0A0A0A;
    --pb-dark: #141414;
    --pb-dark-alt: #1A1A1A;
    --pb-silver: #C0C0C0;
    --pb-silver-light: #D4D4D4;
    --pb-white: #FFFFFF;

    /* Borders & Overlays */
    --pb-border: rgba(255, 255, 255, 0.1);
    --pb-border-light: rgba(255, 255, 255, 0.06);
    --pb-border-hover: rgba(238, 127, 1, 0.4);
    --pb-overlay-dark: rgba(10, 10, 10, 0.85);
    --pb-overlay-gradient: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );

    /* Shadows */
    --pb-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --pb-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --pb-shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.5);
    --pb-shadow-orange: 0 15px 40px rgba(238, 127, 1, 0.35);
    --pb-shadow-orange-sm: 0 8px 24px rgba(238, 127, 1, 0.2);

    /* Typography */
    --pb-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    --pb-font-size-xs: 11px;
    --pb-font-size-sm: 13px;
    --pb-font-size-base: 15px;
    --pb-font-size-md: 18px;
    --pb-font-size-lg: 20px;
    --pb-font-size-xl: 26px;
    --pb-font-size-2xl: clamp(28px, 4vw, 52px);
    --pb-font-size-3xl: clamp(32px, 4vw, 48px);
    --pb-font-size-hero: clamp(42px, 6vw, 72px);
    --pb-font-size-stat: 48px;

    /* Spacing */
    --pb-space-xs: 8px;
    --pb-space-sm: 16px;
    --pb-space-md: 24px;
    --pb-space-lg: 40px;
    --pb-space-xl: 60px;
    --pb-space-2xl: 80px;
    --pb-space-3xl: 120px;

    /* Layout */
    --pb-container-max: 1280px;
    --pb-container-narrow: 960px;
    --pb-container-wide: 1440px;
    --pb-container-padding: 40px;

    /* Transitions */
    --pb-transition-fast: 0.2s ease;
    --pb-transition-base: 0.3s ease;
    --pb-transition-slow: 0.5s ease;
    --pb-transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Z-index Scale */
    --pb-z-base: 1;
    --pb-z-overlay: 10;
    --pb-z-grid: 15;
    --pb-z-content: 20;
    --pb-z-header: 100;
    --pb-z-modal: 200;
    --pb-z-toast: 300;
}

/* ==========================================================================
   3. GLOBAL GRID OVERLAY
   ========================================================================== */

.pb-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--pb-z-grid);
    background-image:
        linear-gradient(rgba(238, 127, 1, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 127, 1, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section-level grid overlay (alternative to fixed) */
.pb-section-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--pb-z-grid);
    background-image:
        linear-gradient(rgba(238, 127, 1, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 127, 1, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ==========================================================================
   4. LAYOUT / CONTAINER UTILITIES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--pb-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pb-container-padding);
    padding-right: var(--pb-container-padding);
}

.container-narrow {
    width: 100%;
    max-width: var(--pb-container-narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pb-container-padding);
    padding-right: var(--pb-container-padding);
}

.container-wide {
    width: 100%;
    max-width: var(--pb-container-wide);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pb-container-padding);
    padding-right: var(--pb-container-padding);
}

/* ==========================================================================
   5. UTILITY CLASSES
   ========================================================================== */

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-grid { display: grid; }

/* Flexbox */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.gap-sm { gap: var(--pb-space-sm); }
.gap-md { gap: var(--pb-space-md); }
.gap-lg { gap: var(--pb-space-lg); }
.gap-xl { gap: var(--pb-space-xl); }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--pb-space-sm); }
.mt-md { margin-top: var(--pb-space-md); }
.mt-lg { margin-top: var(--pb-space-lg); }
.mt-xl { margin-top: var(--pb-space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--pb-space-sm); }
.mb-md { margin-bottom: var(--pb-space-md); }
.mb-lg { margin-bottom: var(--pb-space-lg); }
.mb-xl { margin-bottom: var(--pb-space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

.pt-0 { padding-top: 0; }
.pt-lg { padding-top: var(--pb-space-lg); }
.pt-xl { padding-top: var(--pb-space-xl); }
.pb-0 { padding-bottom: 0; }
.pb-lg { padding-bottom: var(--pb-space-lg); }
.pb-xl { padding-bottom: var(--pb-space-xl); }
.py-lg { padding-top: var(--pb-space-lg); padding-bottom: var(--pb-space-lg); }
.py-xl { padding-top: var(--pb-space-xl); padding-bottom: var(--pb-space-xl); }
.py-2xl { padding-top: var(--pb-space-2xl); padding-bottom: var(--pb-space-2xl); }
.py-3xl { padding-top: var(--pb-space-3xl); padding-bottom: var(--pb-space-3xl); }

/* Width */
.w-full { width: 100%; }
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Visibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Color Utilities */
.text-orange { color: var(--pb-orange); }
.text-silver { color: var(--pb-silver); }
.text-white { color: var(--pb-white); }
.bg-black { background-color: var(--pb-black); }
.bg-dark { background-color: var(--pb-dark); }

/* ==========================================================================
   6. TYPOGRAPHY
   ========================================================================== */

.pb-label {
    font-size: var(--pb-font-size-sm);
    font-weight: 700;
    color: var(--pb-orange);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--pb-space-sm);
    display: block;
}

.pb-title {
    font-size: var(--pb-font-size-3xl);
    font-weight: 800;
    color: var(--pb-white);
    line-height: 1.1;
    margin-bottom: var(--pb-space-md);
}

.pb-description {
    font-size: var(--pb-font-size-md);
    color: var(--pb-silver);
    line-height: 1.7;
    max-width: 700px;
}

.pb-description.centered {
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: linear-gradient(135deg, var(--pb-orange) 0%, var(--pb-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-underline {
    position: relative;
    display: inline-block;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pb-orange), var(--pb-orange-light));
    border-radius: 2px;
}

/* ==========================================================================
   7. BADGE
   ========================================================================== */

.pb-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(238, 127, 1, 0.1);
    border: 1px solid rgba(238, 127, 1, 0.3);
    padding: 12px 24px;
    font-size: var(--pb-font-size-sm);
    font-weight: 600;
    color: var(--pb-orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 35px;
    border-radius: 0;
    line-height: 1;
}

.pb-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.pb-btn-primary {
    background: var(--pb-orange);
    color: var(--pb-white);
    padding: 18px 36px;
    border: none;
    font-weight: 700;
    font-size: var(--pb-font-size-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--pb-transition-base);
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pb-btn-primary:hover {
    background: var(--pb-orange-light);
    transform: translateY(-3px);
    box-shadow: var(--pb-shadow-orange);
}

.pb-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--pb-shadow-orange-sm);
}

.pb-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--pb-transition-base);
}

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

.pb-btn-secondary {
    background: transparent;
    color: var(--pb-white);
    padding: 18px 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: var(--pb-font-size-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--pb-transition-base);
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pb-btn-secondary:hover {
    border-color: var(--pb-orange);
    color: var(--pb-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 127, 1, 0.15);
}

.pb-btn-secondary:active {
    transform: translateY(-1px);
}

.pb-btn-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--pb-transition-base);
}

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

/* Small Button Variant */
.pb-btn-sm {
    padding: 12px 24px;
    font-size: var(--pb-font-size-sm);
}

/* Large Button Variant */
.pb-btn-lg {
    padding: 22px 48px;
    font-size: 17px;
}

/* Button Group */
.pb-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   9. NAVIGATION / HEADER
   ========================================================================== */

.pb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--pb-z-header);
    padding: 20px 0;
    transition: all var(--pb-transition-smooth);
    background: transparent;
}

.pb-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--pb-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.pb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--pb-container-wide);
    margin: 0 auto;
    padding: 0 var(--pb-container-padding);
}

.pb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: calc(var(--pb-z-header) + 1);
}

.pb-logo img {
    height: 38px;
    width: auto;
}

.pb-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--pb-white);
    letter-spacing: -0.02em;
}

.pb-logo-text span {
    color: var(--pb-orange);
}

/* Desktop Navigation */
.pb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pb-nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    transition: color var(--pb-transition-base);
    position: relative;
    letter-spacing: 0.01em;
}

.pb-nav-link:hover,
.pb-nav-link.active {
    color: var(--pb-white);
}

.pb-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--pb-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--pb-transition-base);
}

.pb-nav-link:hover::after,
.pb-nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.pb-nav-cta {
    margin-left: 16px;
}

/* Mobile Menu Toggle */
.pb-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: calc(var(--pb-z-header) + 1);
    background: none;
    border: none;
    padding: 0;
}

.pb-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--pb-white);
    transition: all var(--pb-transition-base);
    transform-origin: center;
}

.pb-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.pb-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.pb-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.pb-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: var(--pb-z-header);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pb-transition-smooth);
}

.pb-mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.pb-mobile-nav .pb-nav-link {
    font-size: 24px;
    font-weight: 700;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.6);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--pb-transition-smooth);
}

.pb-mobile-nav.open .pb-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.pb-mobile-nav.open .pb-nav-link:nth-child(1) { transition-delay: 0.1s; }
.pb-mobile-nav.open .pb-nav-link:nth-child(2) { transition-delay: 0.15s; }
.pb-mobile-nav.open .pb-nav-link:nth-child(3) { transition-delay: 0.2s; }
.pb-mobile-nav.open .pb-nav-link:nth-child(4) { transition-delay: 0.25s; }
.pb-mobile-nav.open .pb-nav-link:nth-child(5) { transition-delay: 0.3s; }
.pb-mobile-nav.open .pb-nav-link:nth-child(6) { transition-delay: 0.35s; }

.pb-mobile-nav .pb-nav-link:hover,
.pb-mobile-nav .pb-nav-link.active {
    color: var(--pb-orange);
}

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */

.pb-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pb-black);
}

.pb-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--pb-z-base);
    overflow: hidden;
}

.pb-hero-video-wrap video,
.pb-hero-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--pb-z-base) + 1);
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.pb-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--pb-z-base) + 2);
    pointer-events: none;
    background-image:
        linear-gradient(rgba(238, 127, 1, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 127, 1, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pb-hero-content {
    position: relative;
    z-index: var(--pb-z-content);
    max-width: var(--pb-container-max);
    margin: 0 auto;
    padding: 140px var(--pb-container-padding) 80px;
    width: 100%;
}

.pb-hero-title {
    font-size: var(--pb-font-size-hero);
    font-weight: 800;
    line-height: 1.05;
    color: var(--pb-white);
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.pb-hero-title .highlight {
    background: linear-gradient(135deg, var(--pb-orange) 0%, var(--pb-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-hero-subtitle {
    font-size: var(--pb-font-size-lg);
    color: var(--pb-silver);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 45px;
}

.pb-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Decorative elements */
.pb-hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 127, 1, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: calc(var(--pb-z-base) + 3);
}

/* ==========================================================================
   11. STATS ROW
   ========================================================================== */

.pb-stats {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.pb-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pb-stat-number {
    font-size: var(--pb-font-size-stat);
    font-weight: 800;
    color: var(--pb-orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pb-stat-label {
    font-size: var(--pb-font-size-sm);
    color: var(--pb-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.3;
}

/* Stats with dividers */
.pb-stats-divided .pb-stat-item {
    position: relative;
    padding-right: 60px;
}

.pb-stats-divided .pb-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--pb-border);
}

/* ==========================================================================
   12. TRUST BAR (Scrolling Logos)
   ========================================================================== */

.pb-trust-bar {
    background: var(--pb-dark);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--pb-border-light);
    border-bottom: 1px solid var(--pb-border-light);
}

.pb-trust-bar::before,
.pb-trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.pb-trust-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--pb-dark), transparent);
}

.pb-trust-bar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--pb-dark), transparent);
}

.pb-trust-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.pb-trust-track:hover {
    animation-play-state: paused;
}

.pb-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--pb-font-size-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--pb-transition-base);
}

.pb-trust-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.pb-trust-item img {
    height: 28px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: all var(--pb-transition-base);
}

.pb-trust-item:hover img {
    opacity: 0.8;
    filter: grayscale(0%) brightness(1);
}

.pb-trust-divider {
    width: 6px;
    height: 6px;
    background: var(--pb-orange);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.6;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   13. STATEMENT SECTION
   ========================================================================== */

.pb-statement {
    padding: var(--pb-space-3xl) var(--pb-container-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pb-statement-title {
    font-size: var(--pb-font-size-2xl);
    font-weight: 800;
    color: var(--pb-white);
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto;
}

.pb-statement-title span {
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-statement-subtitle {
    font-size: var(--pb-font-size-md);
    color: var(--pb-silver);
    line-height: 1.7;
    max-width: 640px;
    margin: 30px auto 0;
}

/* ==========================================================================
   14. SECTION HEADER
   ========================================================================== */

.pb-section {
    padding: var(--pb-space-3xl) 0;
    position: relative;
}

.pb-section-header {
    max-width: 700px;
    margin-bottom: var(--pb-space-xl);
}

.pb-section-header.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pb-section-header .pb-label {
    font-size: var(--pb-font-size-sm);
    font-weight: 700;
    color: var(--pb-orange);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.pb-section-header .pb-title {
    font-size: var(--pb-font-size-3xl);
    font-weight: 800;
    color: var(--pb-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.pb-section-header .pb-description {
    font-size: var(--pb-font-size-md);
    color: var(--pb-silver);
    line-height: 1.7;
    max-width: 700px;
}

.pb-section-header.centered .pb-description {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   15. CONCEPT CARDS (Feature Cards with Numbers)
   ========================================================================== */

.pb-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pb-concept-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--pb-transition-smooth);
}

/* Top accent bar */
.pb-concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pb-orange), var(--pb-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--pb-transition-smooth);
}

.pb-concept-card:hover {
    border-color: rgba(238, 127, 1, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(238, 127, 1, 0.08);
}

.pb-concept-card:hover::before {
    transform: scaleX(1);
}

.pb-concept-card-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(238, 127, 1, 0.08);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.pb-concept-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 127, 1, 0.1);
    margin-bottom: 28px;
    border-radius: 0;
}

.pb-concept-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--pb-orange);
}

.pb-concept-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--pb-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pb-concept-card-text {
    font-size: 15px;
    color: var(--pb-silver);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature list with checkmarks */
.pb-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pb-feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.pb-feature-list-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--pb-orange);
    margin-top: 1px;
}

/* ==========================================================================
   16. PRODUCT CARDS
   ========================================================================== */

.pb-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pb-product-card {
    background: var(--pb-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all var(--pb-transition-smooth);
    position: relative;
}

.pb-product-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: var(--pb-shadow-lg);
}

.pb-product-card-image {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(238, 127, 1, 0.05) 0%, rgba(20, 20, 20, 1) 100%);
}

.pb-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--pb-transition-slow);
}

.pb-product-card:hover .pb-product-card-image img {
    transform: scale(1.05);
}

.pb-product-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pb-orange);
    color: var(--pb-white);
    font-size: var(--pb-font-size-xs);
    font-weight: 700;
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    z-index: 2;
}

.pb-product-card-body {
    padding: 32px;
}

.pb-product-card-category {
    font-size: var(--pb-font-size-xs);
    font-weight: 700;
    color: var(--pb-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.pb-product-card-title {
    font-size: var(--pb-font-size-xl);
    font-weight: 700;
    color: var(--pb-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.pb-product-card-text {
    font-size: 14px;
    color: var(--pb-silver);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pb-product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pb-orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--pb-transition-base);
}

.pb-product-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--pb-transition-base);
}

.pb-product-card-link:hover {
    color: var(--pb-orange-light);
    gap: 14px;
}

.pb-product-card-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   17. CTA SECTION
   ========================================================================== */

.pb-cta {
    position: relative;
    padding: var(--pb-space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.pb-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(238, 127, 1, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pb-cta-content {
    position: relative;
    z-index: var(--pb-z-content);
}

.pb-cta-title {
    font-size: var(--pb-font-size-3xl);
    font-weight: 800;
    color: var(--pb-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pb-cta-text {
    font-size: var(--pb-font-size-md);
    color: var(--pb-silver);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 45px;
}

/* Contact Grid in CTA */
.pb-contact-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pb-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.pb-contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 127, 1, 0.1);
    border: 1px solid rgba(238, 127, 1, 0.2);
    flex-shrink: 0;
}

.pb-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--pb-orange);
}

.pb-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pb-contact-label {
    font-size: var(--pb-font-size-xs);
    color: var(--pb-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.pb-contact-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--pb-white);
}

.pb-contact-value a {
    color: var(--pb-white);
    text-decoration: none;
    transition: color var(--pb-transition-base);
}

.pb-contact-value a:hover {
    color: var(--pb-orange);
}

/* ==========================================================================
   18. SPLIT PAGE (Homepage Gewerbe/Privat)
   ========================================================================== */

.pb-split-container {
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.pb-split-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: flex var(--pb-transition-slow);
    cursor: pointer;
}

.pb-split-left {
    background: var(--pb-black);
}

.pb-split-right {
    background: var(--pb-dark);
}

/* Hover expansion */
.pb-split-container:hover .pb-split-side {
    flex: 0.85;
}

.pb-split-container .pb-split-side:hover {
    flex: 1.15;
}

/* Background images/videos for each side */
.pb-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pb-split-bg img,
.pb-split-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--pb-transition-slow);
}

.pb-split-side:hover .pb-split-bg img,
.pb-split-side:hover .pb-split-bg video {
    transform: scale(1.05);
}

.pb-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pb-split-left .pb-split-overlay {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.pb-split-right .pb-split-overlay {
    background: linear-gradient(
        225deg,
        rgba(20, 20, 20, 0.92) 0%,
        rgba(20, 20, 20, 0.75) 100%
    );
}

/* Divider line between sides */
.pb-split-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(238, 127, 1, 0.3) 30%,
        rgba(238, 127, 1, 0.3) 70%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none;
}

.pb-split-content {
    position: relative;
    z-index: 5;
    padding: 60px;
    max-width: 540px;
    text-align: center;
}

.pb-split-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(238, 127, 1, 0.1);
    border: 1px solid rgba(238, 127, 1, 0.3);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pb-orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.pb-split-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--pb-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.pb-split-text {
    font-size: 16px;
    color: var(--pb-silver);
    line-height: 1.7;
    margin-bottom: 35px;
}

.pb-split-cta {
    display: inline-flex;
}

/* Hover state for split sides */
.pb-split-side::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pb-orange), var(--pb-orange-light));
    z-index: 10;
    transform: scaleX(0);
    transition: transform var(--pb-transition-smooth);
}

.pb-split-side:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.pb-footer {
    background: var(--pb-dark);
    border-top: 1px solid var(--pb-border-light);
    position: relative;
}

.pb-footer-main {
    padding: 80px 0 60px;
}

.pb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.pb-footer-brand {
    max-width: 320px;
}

.pb-footer-brand .pb-logo {
    margin-bottom: 20px;
}

.pb-footer-brand-text {
    font-size: 14px;
    color: var(--pb-silver);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pb-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pb-footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pb-border);
    color: var(--pb-silver);
    transition: all var(--pb-transition-base);
}

.pb-footer-social-link:hover {
    border-color: var(--pb-orange);
    color: var(--pb-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 127, 1, 0.15);
}

.pb-footer-social-link svg {
    width: 18px;
    height: 18px;
}

.pb-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--pb-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.pb-footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pb-footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all var(--pb-transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pb-footer-link:hover {
    color: var(--pb-orange);
    transform: translateX(4px);
}

/* Footer Bottom Bar */
.pb-footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--pb-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pb-footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.pb-footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pb-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--pb-transition-base);
}

.pb-footer-legal a:hover {
    color: var(--pb-orange);
}

.pb-footer-legal-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   20. ADDITIONAL COMPONENTS
   ========================================================================== */

/* --- Accordion / FAQ --- */

.pb-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pb-accordion-item {
    border: 1px solid var(--pb-border);
    overflow: hidden;
    transition: border-color var(--pb-transition-base);
}

.pb-accordion-item.active,
.pb-accordion-item:hover {
    border-color: rgba(238, 127, 1, 0.3);
}

.pb-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    transition: background var(--pb-transition-base);
    background: transparent;
    width: 100%;
    text-align: left;
    color: var(--pb-white);
}

.pb-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pb-accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pb-white);
    line-height: 1.4;
}

.pb-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--pb-transition-base);
    color: var(--pb-silver);
}

.pb-accordion-item.active .pb-accordion-icon {
    transform: rotate(180deg);
    color: var(--pb-orange);
}

.pb-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--pb-transition-smooth);
}

.pb-accordion-item.active .pb-accordion-body {
    max-height: 500px;
}

.pb-accordion-content {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--pb-silver);
    line-height: 1.7;
}

/* --- Testimonial Card --- */

.pb-testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--pb-border);
    padding: 40px;
    position: relative;
}

.pb-testimonial-quote {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
}

.pb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pb-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(238, 127, 1, 0.3);
}

.pb-testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--pb-white);
}

.pb-testimonial-role {
    font-size: 13px;
    color: var(--pb-silver);
    margin-top: 2px;
}

.pb-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.pb-testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--pb-orange);
}

/* --- Gallery Grid --- */

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

.pb-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.pb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--pb-transition-slow);
}

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

.pb-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(238, 127, 1, 0);
    transition: background var(--pb-transition-base);
}

.pb-gallery-item:hover::after {
    background: rgba(238, 127, 1, 0.15);
}

/* --- Form Elements --- */

.pb-form-group {
    margin-bottom: 24px;
}

.pb-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pb-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.pb-form-input,
.pb-form-textarea,
.pb-form-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--pb-border);
    color: var(--pb-white);
    font-family: var(--pb-font-family);
    font-size: 15px;
    border-radius: 0;
    transition: all var(--pb-transition-base);
    outline: none;
}

.pb-form-input:focus,
.pb-form-textarea:focus,
.pb-form-select:focus {
    border-color: var(--pb-orange);
    background: rgba(238, 127, 1, 0.04);
    box-shadow: 0 0 0 3px rgba(238, 127, 1, 0.1);
}

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

.pb-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.pb-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C0C0C0' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

/* --- Pricing Table --- */

.pb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pb-pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--pb-border);
    padding: 48px 40px;
    text-align: center;
    transition: all var(--pb-transition-smooth);
    position: relative;
}

.pb-pricing-card.featured {
    border-color: rgba(238, 127, 1, 0.4);
    background: rgba(238, 127, 1, 0.04);
}

.pb-pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pb-orange), var(--pb-orange-light));
}

.pb-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(238, 127, 1, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pb-pricing-plan {
    font-size: 14px;
    font-weight: 700;
    color: var(--pb-orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.pb-pricing-price {
    font-size: 52px;
    font-weight: 800;
    color: var(--pb-white);
    line-height: 1;
    margin-bottom: 8px;
}

.pb-pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--pb-silver);
}

.pb-pricing-period {
    font-size: 14px;
    color: var(--pb-silver);
    margin-bottom: 32px;
}

.pb-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    text-align: left;
}

.pb-pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.pb-pricing-feature svg {
    width: 18px;
    height: 18px;
    color: var(--pb-orange);
    flex-shrink: 0;
}

/* --- Tags / Chips --- */

.pb-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--pb-border);
    color: var(--pb-silver);
    transition: all var(--pb-transition-base);
}

.pb-tag:hover {
    border-color: var(--pb-orange);
    color: var(--pb-orange);
}

.pb-tag-orange {
    background: rgba(238, 127, 1, 0.1);
    border-color: rgba(238, 127, 1, 0.3);
    color: var(--pb-orange);
}

/* --- Icon Box (for feature sections) --- */

.pb-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
}

.pb-icon-box-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 127, 1, 0.1);
    margin-bottom: 24px;
    transition: all var(--pb-transition-base);
}

.pb-icon-box:hover .pb-icon-box-icon {
    background: rgba(238, 127, 1, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(238, 127, 1, 0.15);
}

.pb-icon-box-icon svg {
    width: 32px;
    height: 32px;
    color: var(--pb-orange);
}

.pb-icon-box-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pb-white);
    margin-bottom: 12px;
}

.pb-icon-box-text {
    font-size: 14px;
    color: var(--pb-silver);
    line-height: 1.7;
}

/* --- Divider --- */

.pb-divider {
    width: 100%;
    height: 1px;
    background: var(--pb-border);
    margin: var(--pb-space-xl) 0;
}

.pb-divider-orange {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--pb-orange), var(--pb-orange-light));
}

/* --- Notification / Toast --- */

.pb-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--pb-z-toast);
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--pb-dark);
    border: 1px solid var(--pb-border);
    padding: 18px 24px;
    box-shadow: var(--pb-shadow-lg);
    transform: translateY(120%);
    opacity: 0;
    transition: all var(--pb-transition-smooth);
}

.pb-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.pb-toast-icon svg {
    width: 22px;
    height: 22px;
    color: var(--pb-orange);
}

.pb-toast-message {
    font-size: 14px;
    color: var(--pb-white);
    font-weight: 500;
}

.pb-toast-close {
    margin-left: 16px;
    cursor: pointer;
    color: var(--pb-silver);
    transition: color var(--pb-transition-fast);
    background: none;
    border: none;
    padding: 0;
}

.pb-toast-close:hover {
    color: var(--pb-white);
}

/* --- Modal / Lightbox --- */

.pb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: var(--pb-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pb-transition-base);
}

.pb-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.pb-modal {
    background: var(--pb-dark);
    border: 1px solid var(--pb-border);
    max-width: 640px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--pb-transition-smooth);
}

.pb-modal-overlay.open .pb-modal {
    transform: scale(1) translateY(0);
}

.pb-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--pb-border-light);
}

.pb-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pb-white);
}

.pb-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pb-silver);
    transition: all var(--pb-transition-base);
    background: none;
    border: none;
}

.pb-modal-close:hover {
    color: var(--pb-white);
    background: rgba(255, 255, 255, 0.05);
}

.pb-modal-body {
    padding: 32px;
}

.pb-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--pb-border-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* ==========================================================================
   21. LOADING / SKELETON
   ========================================================================== */

.pb-skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 0;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.pb-skeleton-text {
    height: 14px;
    margin-bottom: 10px;
}

.pb-skeleton-title {
    height: 28px;
    width: 60%;
    margin-bottom: 16px;
}

.pb-skeleton-image {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* ==========================================================================
   22. SCROLL ANIMATIONS (Intersection Observer classes)
   ========================================================================== */

.pb-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.pb-fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pb-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.pb-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pb-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.pb-scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pb-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for grid children */
.pb-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pb-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.pb-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.pb-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.pb-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.pb-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.pb-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.pb-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.pb-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }
.pb-stagger.visible > *:nth-child(9) { transition-delay: 0.45s; }

.pb-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   23. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet and Below: 980px */
@media screen and (max-width: 980px) {

    :root {
        --pb-container-padding: 30px;
        --pb-space-3xl: 80px;
    }

    /* Navigation */
    .pb-nav {
        display: none;
    }

    .pb-menu-toggle {
        display: flex;
    }

    /* Hero */
    .pb-hero {
        min-height: 80vh;
    }

    .pb-hero-content {
        padding-top: 120px;
    }

    .pb-hero-subtitle {
        font-size: 18px;
    }

    /* Stats */
    .pb-stats {
        gap: 40px;
    }

    .pb-stats-divided .pb-stat-item {
        padding-right: 40px;
    }

    .pb-stat-number {
        font-size: 38px;
    }

    /* Grids */
    .pb-concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pb-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pb-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pb-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .pb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pb-footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    /* Split Page */
    .pb-split-container {
        flex-direction: column;
    }

    .pb-split-side {
        min-height: 50vh;
    }

    .pb-split-container:hover .pb-split-side {
        flex: 1;
    }

    .pb-split-container .pb-split-side:hover {
        flex: 1;
    }

    .pb-split-divider {
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        transform: translateY(-50%);
    }

    .pb-split-content {
        padding: 40px 30px;
    }

    /* Contact Grid */
    .pb-contact-grid {
        gap: 40px;
    }
}

/* Mobile: 768px */
@media screen and (max-width: 768px) {

    :root {
        --pb-container-padding: 20px;
        --pb-space-3xl: 60px;
        --pb-space-2xl: 50px;
        --pb-space-xl: 40px;
    }

    /* Hero */
    .pb-hero {
        min-height: 85vh;
    }

    .pb-hero-content {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .pb-hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .pb-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 40px;
    }

    /* Full-width buttons on mobile */
    .pb-hero-actions .pb-btn-primary,
    .pb-hero-actions .pb-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Stats */
    .pb-stats {
        flex-direction: column;
        gap: 28px;
    }

    .pb-stats-divided .pb-stat-item {
        padding-right: 0;
        padding-bottom: 28px;
    }

    .pb-stats-divided .pb-stat-item:not(:last-child)::after {
        right: auto;
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        width: 60px;
        height: 1px;
    }

    .pb-stat-number {
        font-size: 36px;
    }

    /* Grids: stack single column */
    .pb-concept-grid,
    .pb-product-grid,
    .pb-pricing-grid {
        grid-template-columns: 1fr;
    }

    .pb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Concept Cards */
    .pb-concept-card {
        padding: 32px 28px;
    }

    .pb-concept-card:hover {
        transform: translateY(-4px);
    }

    /* Product Cards */
    .pb-product-card-image {
        height: 200px;
    }

    .pb-product-card-body {
        padding: 24px;
    }

    /* Section Header */
    .pb-section-header .pb-description {
        font-size: 16px;
    }

    /* Statement */
    .pb-statement {
        padding: 60px var(--pb-container-padding);
    }

    /* Contact Grid */
    .pb-contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .pb-contact-item {
        width: 100%;
        max-width: 320px;
    }

    /* CTA */
    .pb-cta-text {
        font-size: 16px;
    }

    /* Footer */
    .pb-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pb-footer-brand {
        grid-column: 1;
    }

    .pb-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .pb-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Split Page */
    .pb-split-container {
        height: auto;
        min-height: 100vh;
    }

    .pb-split-side {
        min-height: 50vh;
    }

    .pb-split-content {
        padding: 40px 20px;
    }

    .pb-split-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    /* Buttons */
    .pb-btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .pb-btn-group .pb-btn-primary,
    .pb-btn-group .pb-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Accordion */
    .pb-accordion-header {
        padding: 18px 20px;
    }

    .pb-accordion-content {
        padding: 0 20px 20px;
    }

    /* Modal */
    .pb-modal {
        width: 95%;
        max-height: 85vh;
    }

    .pb-modal-header {
        padding: 18px 20px;
    }

    .pb-modal-body {
        padding: 24px 20px;
    }

    .pb-modal-footer {
        padding: 16px 20px;
    }

    /* Toast */
    .pb-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    /* Trust Bar */
    .pb-trust-bar::before,
    .pb-trust-bar::after {
        width: 60px;
    }
}

/* Small Mobile: 480px */
@media screen and (max-width: 480px) {

    :root {
        --pb-container-padding: 16px;
    }

    .pb-hero-content {
        padding-top: 100px;
    }

    .pb-badge {
        padding: 10px 18px;
        font-size: 11px;
    }

    .pb-stat-number {
        font-size: 32px;
    }

    .pb-concept-card {
        padding: 28px 22px;
    }

    .pb-concept-card-icon {
        width: 56px;
        height: 56px;
    }

    .pb-concept-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .pb-split-content {
        padding: 30px 16px;
    }

    .pb-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3px;
    }
}

/* ==========================================================================
   24. PRINT STYLES
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    .pb-header,
    .pb-footer,
    .pb-grid-overlay,
    .pb-trust-bar,
    .pb-mobile-nav,
    .pb-menu-toggle,
    .pb-toast,
    .pb-modal-overlay {
        display: none !important;
    }

    .pb-hero {
        min-height: auto;
        padding: 20pt 0;
    }

    .pb-section {
        padding: 20pt 0;
        page-break-inside: avoid;
    }

    .container,
    .container-narrow,
    .container-wide {
        max-width: 100%;
        padding: 0;
    }
}

/* ==========================================================================
   25. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .pb-trust-track {
        animation: none;
    }

    .pb-concept-card:hover,
    .pb-product-card:hover,
    .pb-pricing-card:hover,
    .pb-btn-primary:hover,
    .pb-btn-secondary:hover {
        transform: none;
    }

    .pb-fade-in,
    .pb-fade-in-left,
    .pb-fade-in-right,
    .pb-scale-in,
    .pb-stagger > * {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   26. HIGH CONTRAST MODE
   ========================================================================== */

@media (forced-colors: active) {
    .pb-btn-primary,
    .pb-btn-secondary {
        border: 2px solid ButtonText;
    }

    .pb-concept-card,
    .pb-product-card,
    .pb-pricing-card,
    .pb-testimonial-card {
        border: 1px solid CanvasText;
    }

    .highlight {
        -webkit-text-fill-color: unset;
        background: none;
        color: LinkText;
    }
}

/* ==========================================================================
   27. VIDEO BACKGROUND
   ========================================================================== */

.pb-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.pb-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    z-index: 1;
}

@media (max-width: 768px) {
    .pb-video-bg video {
        display: none;
    }

    .pb-video-bg::after {
        background: var(--pb-black);
    }
}
