/* Spezielle Anpassung für das OpenInfra-Demo-iframe (Section 2) */

.oem-iframe-container.oem-iframe-openinfra {
    padding-top: 0.1rem;
    padding-bottom: 1.0rem;
    margin-top: 0.1rem;
    background: transparent !important;
    box-shadow: none !important;
}

.oem-iframe-container.oem-iframe-openinfra iframe {
    width: 1100px;
    height: 650px;
    max-width: 100%;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 1200px) {
    .oem-iframe-container.oem-iframe-openinfra iframe {
        width: 95vw;
        height: 60vw;
        min-height: 350px;
        max-height: 70vw;
    }
}

@media (max-width: 768px) {
    .oem-iframe-container.oem-iframe-openinfra {
        display: none;
    }
}
/* Import Sofia Sans Condensed from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@700;800;900&family=Sofia+Sans:ital,wght@0,400;0,700;1,700&display=swap');

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

/* Special: Hide detail content on narrow devices under 768px (<=768px). Keep header/title visible and optimized. */
@media (max-width: 768px) {
    .cocore-details .detail-content {
        /* Animate via max-height instead of display to allow smooth expand/collapse */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .cocore-details.open .detail-content {
        max-height: 3000px; /* sufficiently large to allow expansion */
    }
    .cocore-details .detail-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem; /* tightened spacing between header and feature cards */
    }
    .detail-title {
        font-size: 1.25rem;
        line-height: 1.3;
        text-align: center;
        white-space: normal !important;
        margin: 0;
        max-width: 92%;
        word-break: break-word;
        overflow-wrap: break-word;
        display: block;
        width: 100%;
    }
    .pulse-line {
        flex: none;
        width: 90%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--pig) 25%, var(--pig) 75%, transparent 100%);
        border-radius: 2px;
    }

    /* toggle button (Mehr anzeigen / Show more) - only visible on mobile */
    .detail-toggle, .mobile-only {
        display: inline-flex !important;
        padding: 0.5rem 1rem;
            z-index: 4; /* place above heart visual */
        background: var(--pig);
        color: var(--white);
        border-radius: 999px;
        border: none;
        cursor: pointer;
        font-weight: 700;
        font-size: 0.9rem;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
        align-items: center;
        gap: 0.5rem;
    }
    .detail-toggle:active { transform: translateY(1px) }
    .detail-toggle[aria-expanded="true"] { background: var(--white); color: var(--pig); box-shadow: 0 6px 22px rgba(255,121,201,0.12); }
}

/* Stronger, later override to ensure mobile toggle is visible and positioned for a range of mobile widths */
@media (max-width: 900px) {
    /* More specific selector for higher specificity and to ensure it's shown even if other selectors hide it */
    .cocore-details .detail-header .detail-toggle.mobile-only {
        display: inline-flex !important;
        position: relative; /* keep inside the header flow */
        margin-top: 0.8rem;  /* nudge toggle further down */
        margin-bottom: 0.1rem; /* smaller gap to the cards */
        z-index: 11 !important; /* above heart and header */
        transform: none !important; /* reset any earlier transforms */
        align-self: center;
        box-shadow: 0 8px 28px rgba(77,43,65,0.06);
    }
    /* decorative plus/minus for discoverability */
    .cocore-details .detail-header .detail-toggle.mobile-only::before {
        content: '+';
        display: inline-block;
        margin-right: 0.4rem;
        font-weight: 700;
        font-size: 1.05rem;
        line-height: 1;
    }
    .cocore-details .detail-header .detail-toggle.mobile-only[aria-expanded="true"]::before {
        content: '\2212'; /* unicode minus sign */
    }
}

/* Final mobile override: hide heart in header, show in heartbeat section */
@media (max-width: 768px) {
    .cocore-header {
        position: relative !important;
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }

    /* Hide heart in cocore-header on mobile */
    .cocore-header .cocore-heart-visual {
        display: none !important;
    }
    
    /* Show heart in heartbeat section */
    .heartbeat-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .heartbeat-content .cocore-heart-visual {
        position: relative !important;
        display: flex !important;
        width: 100% !important;
        max-width: 280px !important;
        height: 280px !important;
        margin: 0 auto 2rem;
        order: -1;
    }

    .heartbeat-content .cocore-heart-visual .heart-image {
        width: 240px !important;
        height: auto;
    }

    .heartbeat-content .heart-pulse-ring,
    .heartbeat-content .heart-pulse-ring.ring-delay-1,
    .heartbeat-content .heart-pulse-ring.ring-delay-2 {
        width: 280px;
        height: 280px;
        border-width: 2px;
    }

    .cocore-header-content {
        position: relative;
        z-index: 2;
    }
}

/* Additional mobile rules are appended later to avoid being overwritten */

a {
    text-decoration: none;
}

:root {
    /* CoCoCo Brand Colors */
    --white: #FFFFFF;
    --peach: #FFEFF8;
    --pig: #FF79C9;
    --berry: #4D2B41;
    --moss: #1E4947;
    --black: #000000;
    
    /* Color Assignments */
    --primary-color: #FF79C9;        /* Pig */
    --secondary-color: #4D2B41;      /* Berry */
    --accent-color: #1E4947;         /* Moss */
    --dark-bg: #000000;              /* Black */
    --light-bg: #FFEFF8;             /* Peach */
    --text-dark: #4D2B41;            /* Berry */
    --text-light: #1E4947;           /* Moss */
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #FF79C9 0%, #4D2B41 100%);  /* Pig to Berry */
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(77, 43, 65, 0.1);
    --shadow-md: 0 4px 6px rgba(77, 43, 65, 0.1);
    --shadow-lg: 0 10px 25px rgba(77, 43, 65, 0.15);
    --border-radius: 12px;
}

body {
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-cta-btn {
    /* removed flame pseudo-element */
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-link:focus {
    outline: none;
}

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

.logo-link:focus-visible {
    outline: 2px solid rgba(0,0,0,0.06);
    outline-offset: 2px;
}

.logo-image {
    height: 25px;
    width: auto;
}

.logo h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hide mobile CTA by default (only show in mobile menu) */
.nav-menu .mobile-cta {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 400;
    transition: color 0.3s;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    padding-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.dropdown-arrow {
    font-size: 0.85em;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 0.25rem);
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.1) 0%, rgba(255, 239, 248, 0.5) 100%);
    color: var(--pig);
}

/* Mega Menu (Multi-Column Dropdown) */
.mega-dropdown .dropdown-menu {
    min-width: 420px;
    padding: 1.25rem;
}

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

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.mega-menu-item:hover {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.08) 0%, rgba(255, 239, 248, 0.4) 100%);
    color: var(--pig);
    transform: translateX(4px);
}

.mega-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
}

.mega-item-description {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Single-column layout for dropdowns with few items */
.mega-menu-grid.single-column {
    grid-template-columns: 1fr;
    min-width: 200px;
}

.mega-dropdown .dropdown-menu.mega-menu:has(.single-column) {
    min-width: 200px;
    padding: 1rem;
}

/* Optional: Support for 3-column layout when needed */
.mega-menu-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
    min-width: 600px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Top Banner Section */
.top-banner {
    width: 100%;
    background-color: #4D2B41;
    padding: 60px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    margin-top: 70px;
}

.banner-image-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.banner-image {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0 20px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 121, 201, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: static;
    width: 280px;
    transform: none !important;
    animation: none !important;
}

.badge-scroll-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.badge-scroll-content {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 25s linear infinite; /* Fallback duration - will be overridden by JavaScript */
    will-change: transform;
}

.badge-text {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn {
    font-family: 'Sofia Sans', sans-serif;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px; /* Touch target size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Hero Image with Floating Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.floating-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.floating-card p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 121, 201, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    z-index: -1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    font-family: 'Sofia Sans', sans-serif;
    display: inline-block;
    background: rgba(255, 121, 201, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.section-subtitle {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.section-description {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.inline-link {
    color: var(--pig);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--pig-dark);
    text-decoration: underline;
}

.connectivity-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Expandable Features List */
.expandable-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expandable-feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.expandable-feature-card:hover {
    border-color: var(--pig);
    box-shadow: var(--shadow-lg);
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-feature-card.expanded .feature-preview {
    padding: 2rem 3rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.features .feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    min-width: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.features .expandable-feature-card.expanded .feature-icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    margin-top: 0.5rem;
}

.features .feature-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Decorative colored circle behind each feature icon */
.features .feature-icon {
    position: relative;
    transform-origin: center center;
    will-change: transform;
    transition: transform 220ms cubic-bezier(0.2, 0, 0.2, 1);
}
.features .feature-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    z-index: 1;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
    opacity: 0.95;
}
.features .feature-icon img { z-index: 2; position: relative; }

/* Per-feature color mapping */
.features .feature-coconnect .feature-icon::before,
.features .feature-datamodel .feature-icon::before,
.features .feature-customapps .feature-icon::before,
.features .feature-ai .feature-icon::before { background: var(--peach); }

/* Expand / hover states — slightly enlarge the circle */
.features .expandable-feature-card.expanded .feature-icon,
.features .feature-icon:hover {
    transform: scale(1.12);
}

/* Only apply hover scaling on devices that support hover */
@media (hover: hover) and (pointer: fine) {
    .features .feature-icon:hover { transform: scale(1.12); }
}


.feature-preview > div:last-child {
    flex: 1;
    margin-left: 1rem;
}

.feature-preview h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: normal;
    overflow: hidden;
}

.expandable-feature-card.expanded .feature-preview h3 {
    font-size: 2rem;
    animation: rollOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rollOut {
    0% {
        max-width: 70%;
        opacity: 0.8;
    }
    100% {
        max-width: 100%;
        opacity: 1;
    }
}

.feature-summary {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide summary only when card is NOT expanded */
.expandable-feature-card:not(.expanded) .feature-summary {
    display: block;
}

.expandable-feature-card.expanded .feature-summary {
    display: block;
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

.feature-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-feature-card.expanded .feature-expanded-content {
    max-height: 1000px;
    opacity: 1;
    padding: 0 3rem 2rem 3rem;
}

.feature-details {
    margin-bottom: 2rem;
}

.feature-intro {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-details p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-thumbnails {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-thumbnail {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--peach);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-thumbnail:hover {
    border-color: var(--pig);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 121, 201, 0.3);
}

/* Mobile Responsive für expandable features */
@media (max-width: 768px) {
    .feature-preview {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
    }
    
    .expandable-feature-card.expanded .feature-preview {
        padding: 1.5rem 2rem;
    }
    
    .expandable-feature-card.expanded .feature-expanded-content {
        padding: 0 2rem 1.5rem 2rem;
    }
    
    .feature-thumbnail {
        width: 140px;
        height: 95px;
    }
}

/* Legacy feature card styles (für andere Seiten falls benötigt) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
}

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

.solutions-text h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: var(--text-dark);
}

.solutions-text p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.solutions-list {
    list-style: none;
    margin-bottom: 2rem;
}

.solutions-list li {
    font-family: 'Sofia Sans', sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: bold;
}

.solutions-image {
    position: relative;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.stats-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.stats-card:first-child {
    top: 20%;
    left: -10%;
}

.stats-card:last-child {
    bottom: 20%;
    right: -10%;
}

.stats-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-card p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

/* VAT Disclosure */
.vat-notice {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.vat-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 121, 201, 0.2);
}

/* Reduce top padding on pricing page specifically */
body:has(#pricing) .pricing {
    padding: 00px 0 100px 0;
}

/* Reduce top padding on OEM page intro section specifically */
body:has(#oem-intro) #oem-intro {
    padding: 0px 0 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: 1.25rem;
}

.card-header h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.card-header .plan-subtitle {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

.setup-fee {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--peach);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    min-height: 3rem;
}

.setup-label {
    color: var(--text-light);
}

.setup-amount {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.setup-note {
    color: var(--moss);
    font-weight: 600;
    font-size: 0.8rem;
}

.enterprise-setup {
    border-top: none;
    padding-top: 1rem;
    margin-top: 1rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

/* Selected pricing card (user choice) */
.pricing-card.selected {
    box-shadow: var(--shadow-lg);
    border-color: var(--pig);
    transform: translateY(-6px);
}

/* Support panel styles */
.support-panel {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,255,255,0.97));
    border: 1px solid rgba(77,43,65,0.06);
    box-shadow: 0 6px 24px rgba(77,43,65,0.06);
}
.support-panel .support-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--berry);
}
.support-options {
    margin-bottom: 0.75rem;
}
.support-options-stacked { display: flex; flex-direction: column; gap: 0.75rem; }
.card-support {
    display: block;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(77,43,65,0.06);
    background: #fff;
    cursor: pointer;
    transition: all 0.18s ease;
}
.card-support:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-support.selected { outline: 3px solid rgba(103, 58, 183, 0.12); border-color: var(--pig); background: rgba(255,121,201,0.06); }
.card-support input { display:none; }
.support-main-row { display: flex; flex-direction: column; gap: 0.25rem; }
.support-title-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.support-title { font-family: 'Sofia Sans Condensed', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--berry); flex: 1; }
.support-desc { color: var(--text-light); font-size: 0.85rem; line-height: 1.4; margin-top: 0; opacity: 0.85; }
.support-desc-list { 
    list-style: none; 
    padding: 0; 
    margin: 0.5rem 0 0 0; 
    color: var(--text-light); 
    font-size: 0.85rem; 
    line-height: 1.6;
}
.support-desc-list li { 
    padding: 0.25rem 0 0.25rem 1.25rem; 
    position: relative; 
}
.support-desc-list li:before { 
    content: "•"; 
    position: absolute; 
    left: 0; 
    color: var(--pig); 
    font-weight: 700; 
}
.support-desc-list li strong {
    color: var(--berry);
    font-weight: 700;
}
.support-price { font-weight: 700; color: var(--berry); font-family: 'Sofia Sans Condensed', sans-serif; font-size: 0.85rem; text-align: right; white-space: nowrap; flex-shrink: 0; }
.support-save-hint { font-size: 0.85rem; font-weight: 400; color: var(--pig); margin-left: 0.5rem; }
.support-totals-box .totals-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.support-totals-box .totals-row:not(:last-child) {
    border-bottom: 1px solid var(--peach);
}

.support-totals-box .support-total {
    font-weight: 400;
    padding-top: 0.75rem;
    border-top: 2px solid var(--text-dark);
    margin-top: 0.5rem;
}

.support-totals-box .support-year2 {
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--pig);
    font-weight: 700;
    font-style: normal;
    justify-content: center;
    text-align: center;
}

.support-totals-box .support-year2 .year2-label {
    opacity: 0.85;
}

.support-right { transition: transform 0.18s ease; }
.support-right:hover { transform: translateY(-2px); }

/* Utility */
.hidden { display: none !important; }

/* Enhanced support panel layout (two-column on desktop) */
.support-options-container {
    margin-bottom: 1rem;
}

.support-totals-box {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--peach);
    margin-bottom: 1rem;
}

.support-panel .support-cta {
    width: 100%;
}
.plan-summary {
    margin-top: 0.5rem;
    font-size: 0.96rem;
    color: var(--text-dark);
}
.plan-summary .plan-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--berry);
    margin-bottom: 0.25rem;
}
.plan-summary .plan-subtitle {
    font-size: 0.98rem;
    color: var(--text-light);
    margin-bottom: 0.45rem;
}
.plan-summary .plan-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}
.plan-price {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.plan-price .plan-price-amount {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}
.plan-price .period { color: var(--text-light); font-size: 0.92rem; }
.plan-pricing .plan-setup {
    margin-top: 0.4rem;
    color: var(--text-light);
    font-size: 0.92rem;
}
.included-section { margin-top: 0.8rem; }
.included-section .included-title { font-weight:700; margin-bottom:0.35rem; color:var(--text-dark); }
.included-section ul { list-style: none; padding-left: 0; margin: 0; }
.included-section li { padding: 0.35rem 0; border-bottom: 1px dashed rgba(77,43,65,0.06); color: var(--text-dark); }
.included-section li:last-child { border-bottom: none; }

/* Tidy up support-option radio label spacing and selected indicator */
.support-option { display: inline-flex; align-items: center; gap:0.6rem; padding:0.5rem 0.8rem; }
.support-option input { transform: translateY(1px); }
.support-option.selected { box-shadow: 0 6px 18px rgba(77,43,65,0.06); }

/* Mobile tweaks: make the plan summary more compact */
@media (max-width: 768px) {
    .plan-summary .plan-title { font-size: 1.1rem; }
    .plan-summary .plan-price .plan-price-amount { font-size: 1.5rem; }
    .included-section li { padding: 0.4rem 0; }
}
.support-actions { display:flex; gap:0.5rem; margin-top:1rem; }

@media (max-width: 768px) {
    .support-panel .support-main { flex-direction: column; }
}


.pricing-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0;
    min-height: 4.5rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-right: 0.35rem;
}

.amount {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.amount-custom {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 0.35rem;
}

.price-savings {
    font-size: 0.875rem;
    color: var(--pig);
    margin-top: 0.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.price-savings .strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
    opacity: 0.6;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features .section-heading {
    font-weight: 700;
    padding: 0.35rem 0;
    font-size: 0.75rem;
    color: var(--pig);
    list-style: none;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Pricing-specific feature item styles */
.pricing-feature-item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.35rem 0;
}

.pricing-feature-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: var(--moss);
}

.pricing-feature-text {
    line-height: 1.3;
    color: var(--text-dark);
    font-size: 0.875rem;
    flex: 1;
}


/* Style for excluded (not included) features: use X icon color and keep muted */
.pricing-feature-item.excluded-feature .pricing-feature-icon {
    color: var(--text-light);
}
.pricing-feature-item.excluded-feature .pricing-feature-text {
    color: var(--text-light);
}

/* Pricing note style (gray, italic, no icon) */
.pricing-note {
    list-style: none;
    padding: 0.1rem 0;
    margin: 0.75rem 0 0.5rem 0;
    font-size: 0.75rem;
    color: #969799;
    line-height: 1.5;
    font-style: italic;
}

/* Legacy feature item styles (for other cards) */
.feature-item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.35rem 0;
}

.feature-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: var(--moss);
}

.feature-text {
    line-height: 1.3;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.muted-feature {
    opacity: 0.4;
}

/* Style for excluded (not included) features: use X icon color and keep muted */
.feature-item.excluded-feature .feature-icon {
    color: var(--text-light);
}
.feature-item.excluded-feature .feature-text {
    color: var(--text-light);
}

.divider-line {
    list-style: none;
    margin: 0.5rem 0;
    border-top: 1px solid var(--peach);
    height: 0;
}

.pricing-card .btn {
    width: 100%;
}

.plan-select-btn {
    margin-top: auto;
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Deployment Section */
.deployment-section {
    padding: 80px 0;
    background: var(--white);
}

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

.deployment-section .section-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.deployment-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.deployment-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.deployment-card:hover {
    border-color: var(--peach);
    box-shadow: 0 4px 12px rgba(77, 43, 65, 0.08);
    transform: translateY(-2px);
}

.deployment-card.selected {
    border-color: var(--pig);
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.03), rgba(255, 121, 201, 0.08));
    box-shadow: 0 6px 20px rgba(255, 121, 201, 0.15);
}

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

.deployment-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.deployment-price-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--peach), var(--pig));
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.deployment-price-badge.cloud-price {
    background: linear-gradient(135deg, var(--pig), var(--berry));
}

.deployment-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for deployment cards */
@media (max-width: 768px) {
    .deployment-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ========================================
   PRICING MODAL STYLES
   ======================================== */

.pricing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pricing-modal.active {
    display: flex;
}

.pricing-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 43, 65, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    z-index: 0;
}

.pricing-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(77, 43, 65, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 10;
}

.pricing-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--peach);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.pricing-modal-close:hover {
    background: var(--pig);
    border-color: var(--pig);
    transform: rotate(90deg);
}

.pricing-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--berry);
}

.pricing-modal-close:hover svg {
    stroke: var(--white);
}

/* Modal Header */
.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--peach);
}

.modal-plan-info {
    margin-bottom: 1.5rem;
}

.modal-plan-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.modal-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.modal-price-amount {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pig);
}

.modal-price-period {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Modal Billing Toggle */
.modal-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-billing-option {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.modal-billing-option.active {
    color: var(--pig);
    font-weight: 700;
}

.modal-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    display: inline-block;
    cursor: pointer;
}

.modal-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.modal-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.modal-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.modal-toggle-switch input:checked + .modal-toggle-slider {
    background: linear-gradient(135deg, var(--pig), var(--berry));
}

.modal-toggle-switch input:checked + .modal-toggle-slider:before {
    transform: translateX(24px);
}

.modal-savings-badge {
    background: linear-gradient(135deg, var(--pig), var(--berry));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modal Sections */
.modal-section {
    margin-bottom: 2rem;
}

.modal-section-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

/* Modal Cards (Deployment & Support) */
.modal-deployment-grid,
.modal-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.modal-support-grid {
    grid-template-columns: repeat(4, 1fr);
}

.modal-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.modal-card:hover {
    border-color: var(--peach);
    box-shadow: 0 4px 12px rgba(77, 43, 65, 0.08);
    transform: translateY(-2px);
}

.modal-card.selected {
    border-color: var(--pig);
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05), rgba(255, 121, 201, 0.1));
    box-shadow: 0 6px 20px rgba(255, 121, 201, 0.2);
}

.modal-card-content {
    text-align: center;
}

.modal-card-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.modal-card-price {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pig), var(--pig));
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.modal-card-price.cloud-price {
    background: linear-gradient(135deg, var(--pig), var(--pig));
}

.modal-card-price .currency-symbol {
    color: var(--white);
}

.modal-card-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.modal-support-desc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.6;
}

.modal-support-desc-list li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
}

.modal-support-desc-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--pig);
    font-weight: 700;
}

.modal-support-desc-list li strong {
    color: var(--berry);
    font-weight: 700;
}

/* Modal Summary Section */
.modal-summary-section {
    background: linear-gradient(135deg, rgba(255, 219, 209, 0.2), rgba(255, 121, 201, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.modal-totals-box {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--peach);
}

.modal-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.modal-totals-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 219, 209, 0.4);
}

.modal-totals-row span:last-child {
    font-weight: 600;
    color: var(--berry);
}

.modal-total-final {
    border-top: 2px solid var(--text-dark) !important;
    padding-top: 0.75rem !important;
    margin-top: 0.5rem;
    font-weight: 700;
}

.modal-total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-total-amount {
    font-size: 1.3rem;
    color: var(--pig) !important;
}

.modal-total-ongoing {
    padding-top: 0.75rem !important;
    justify-content: center;
    border-top: none !important;
}

.modal-total-ongoing-text {
    color: var(--pig) !important;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Modal CTA Section */
.modal-cta-section {
    text-align: center;
}

.modal-cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Responsive Design */
@media (max-width: 992px) {
    .modal-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }
    
    .modal-plan-title {
        font-size: 1.75rem;
    }
    
    .modal-price-amount {
        font-size: 2rem;
    }
    
    .modal-deployment-grid,
    .modal-support-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-billing-toggle {
        font-size: 0.9rem;
    }
    
    .modal-section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .pricing-modal {
        padding: 10px;
    }
    
    .pricing-modal-content {
        padding: 1.5rem 1rem;
    }
    
    .modal-header {
        padding-bottom: 1rem;
    }
    
    .pricing-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 121, 201, 0.05);
}

.faq-question h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

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

.faq-answer p {
    font-family: 'Sofia Sans', sans-serif;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer p:last-child {
    padding-bottom: 1.5rem;
}

/* FAQ Lists */
.faq-process-list,
.faq-feature-list {
    padding: 0 1.5rem 1rem 3rem;
    margin: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-process-list li,
.faq-feature-list li {
    margin-bottom: 0.75rem;
}

.faq-process-list li:last-child,
.faq-feature-list li:last-child {
    margin-bottom: 0;
}

.faq-answer .section-subtitle {
    padding: 0 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

/* Terms Section */
.terms {
    padding: 60px 0 100px;
    background: var(--white);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--peach);
}

.lead-text {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-info {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(77, 43, 65, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.terms-section h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--berry);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.terms-list li {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.terms-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pig);
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, var(--peach) 0%, rgba(255, 239, 248, 0.5) 100%);
    border-left: 4px solid var(--pig);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.highlight-box.warning {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.1) 0%, rgba(255, 121, 201, 0.05) 100%);
    border-left-color: var(--berry);
}

.highlight-box h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--berry);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.highlight-box p {
    margin-bottom: 0;
}

.revision-date {
    font-size: 0.9rem;
    color: var(--moss);
    font-style: italic;
    margin-top: 2rem;
}

/* =================== PRIVACY SECTION =================== */
.privacy {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05) 0%, rgba(255, 239, 248, 0.3) 100%);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 3rem;
}

.privacy-section {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.privacy-section h2 {
    color: var(--pig);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--peach);
}

.privacy-section h3 {
    color: var(--berry);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section h3.subsection-heading {
    margin-top: 2rem;
}

.privacy-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pig);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section .info-box {
    background: linear-gradient(135deg, var(--peach) 0%, rgba(255, 239, 248, 0.5) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--pig);
    margin: 1.5rem 0;
}

.privacy-section .info-box h3 {
    margin-top: 0;
    color: var(--pig);
    font-size: 1.2rem;
}

.privacy-section .info-box .address {
    margin-top: 1rem;
    line-height: 1.8;
}

.privacy-section .info-box a {
    color: var(--berry);
    text-decoration: none;
    font-weight: 500;
}

.privacy-section .info-box a:hover {
    text-decoration: underline;
}

.privacy-section .highlight-box {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.1) 0%, rgba(255, 239, 248, 0.5) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--pig);
    margin: 1.5rem 0;
}

.privacy-section .highlight-box h3 {
    margin-top: 0;
    color: var(--pig);
    font-size: 1.2rem;
}

.privacy-section .highlight-box p {
    margin-bottom: 0;
}

.privacy-section .contact-box {
    background: linear-gradient(135deg, rgba(109, 212, 179, 0.15) 0%, rgba(109, 212, 179, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--moss);
    margin-top: 1.5rem;
}

.privacy-section .contact-box h3 {
    margin-top: 0;
    color: var(--moss);
    font-size: 1.2rem;
}

.privacy-section .contact-box .address {
    line-height: 1.8;
}

.privacy-section .contact-box a {
    color: var(--moss);
    text-decoration: none;
    font-weight: 600;
}

.privacy-section .contact-box a:hover {
    text-decoration: underline;
}

.privacy-intro .revision-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive adjustments for Privacy */
@media (max-width: 768px) {
    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

/* Imprint Section */
.imprint {
    padding: 60px 0 100px;
    background: var(--white);
}

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

.imprint-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(77, 43, 65, 0.1);
}

.imprint-section:last-child {
    border-bottom: none;
}

.imprint-section h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.imprint-section p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.imprint-section a {
    color: var(--pig);
    text-decoration: none;
    transition: color 0.3s;
}

.imprint-section a:hover {
    color: var(--berry);
    text-decoration: underline;
}

.info-box {
    background: linear-gradient(135deg, var(--peach) 0%, rgba(255, 239, 248, 0.5) 100%);
    border-left: 4px solid var(--pig);
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--berry);
    margin-top: 0;
    margin-bottom: 1rem;
}

.address {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.managing-directors {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.managing-directors strong {
    color: var(--berry);
    display: block;
    margin-bottom: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--moss);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--berry);
}

.info-value small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

.contact-box {
    background: var(--white);
    border: 2px solid var(--peach);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-label {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-link {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--pig);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--berry);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .info-box h3 {
        font-size: 1.3rem;
    }

    .address,
    .managing-directors {
        font-size: 1rem;
    }

    .info-value {
        font-size: 1.1rem;
    }

    .contact-box {
        padding: 1.25rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Single column layout for contact page */
.contact-single-column .contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-option {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-option p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-meeting {
    background: linear-gradient(135deg, var(--pig) 0%, #ff9ae5 100%);
    padding: 2rem;
    border-radius: 12px;
    color: var(--white);
}

.contact-meeting h2,
.contact-meeting p {
    color: var(--white);
}

.contact-meeting .btn {
    align-self: flex-start;
    background: var(--white);
    color: var(--pig);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
}

.contact-meeting .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--moss);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.6;
    margin: 1rem 0;
}

.contact-divider span {
    letter-spacing: 0.1em;
}

.contact-form-option {
    background: var(--berry);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--berry);
    color: var(--white);
}

.contact-form-option h2,
.contact-form-option p {
    color: var(--white);
}

.contact-form-option #hubspot-form {
    margin-top: 1.5rem;
}

.contact-info h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.contact-item {
    font-family: 'Sofia Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Sofia Sans', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile heart positioning block removed and will be appended near the end for precedence */

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    font-family: 'Sofia Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-section ul li {
    font-family: 'Sofia Sans', sans-serif;
    margin-bottom: 0.5rem;
}

.footer-section a {
    font-family: 'Sofia Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-social {
    margin-top: 1.5rem;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--pig);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-linkedin:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 121, 201, 0.4);
}

.linkedin-icon {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-linkedin:hover .linkedin-icon {
    color: var(--pig);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Sofia Sans', sans-serif;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1000px) {
    .hamburger {
        display: flex;
    }

    /* Hide desktop CTA button on mobile */
    .nav-cta-btn {
        display: none;
    }

    /* Deaktiviere Desktop Hover auf Mobile */
    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover {
        display: none !important;
    }

    /* Mega menu mobile adjustments */
    .mega-dropdown .dropdown-menu {
        min-width: 280px;
        padding: 0;
        position: relative;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: rgba(255, 239, 248, 0.5);
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .mega-dropdown .dropdown-menu.active {
        display: block !important;
        max-height: 500px;
        padding: 1rem;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mega-menu-item {
        padding: 0.65rem 0.85rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
    }

    .nav-menu li {
        margin: 0.25rem 0;
    }

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

    /* Show CTA button in mobile menu */
    .nav-menu .mobile-cta {
        display: block;
        margin-top: 0.75rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {

    /* Hide CoCoCo Platform text on mobile */
    .logo h2 {
        display: none;
    }

    /* Make logo smaller on mobile */
    .logo-image {
        height: 20px;
    }

    .nav-menu .mobile-cta .btn {
        width: 100%;
        display: block;
    }

    .hero .container,
    .solutions-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero badge narrower on tablet */
    .hero-badge {
        width: 300px;
        font-size: 0.85rem;
    }

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

    .hero-image {
        height: 300px;
    }

    /* Brain image smaller on tablet */
    .brain-image {
        width: 500px;
    }

    .visual-circle {
        width: 300px;
        height: 300px;
    }

    /* Top banner responsive on tablet */
    .top-banner {
        padding: 50px 0 30px;
        min-height: 160px;
    }

    .banner-image {
        max-height: 220px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Billing toggle more compact on tablet */
    .billing-toggle {
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .billing-option {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero badge even narrower on mobile */
    .hero-badge {
        width: 260px;
        padding: 0.4rem 1rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Brain image much smaller on mobile */
    .brain-image {
        width: 320px;
    }

    .visual-circle {
        width: 200px;
        height: 200px;
    }

    .hero-image {
        height: 250px;
    }

    /* Top banner responsive on mobile */
    .top-banner {
        padding: 40px 0 20px;
        min-height: 120px;
        margin-top: 60px;
    }

    .banner-image {
        max-height: 150px;
    }
}

/* Back To Top Button */
#back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border: none;
    cursor: pointer;
    z-index: 2000;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
}

#back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

#back-to-top:focus {
    outline: 3px solid rgba(255,255,255,0.15);
}

#back-to-top:hover {
    background: var(--primary-hover);
}

/* Hide back-to-top on very small screens (mobile) */
@media (max-width: 420px) {
    #back-to-top {
        display: none;
    }
}

/* Active nav link styling is kept minimal below (text color only) */

/* ========================================
   NEW SECTIONS STYLES
   ======================================== */

/* Hero Visual (simplified) */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-image {
    position: absolute;
    width: 750px;
    height: auto;
    z-index: 2;
    animation: heartbeat 1.8s ease-in-out infinite;
}

.visual-circle {
    width: 400px;
    height: 400px;
    background: var(--pig);
    border-radius: 50%;
    opacity: 0.2;
    animation: heartbeat-circle 1.8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-brain {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Heartbeat animation - two quick beats followed by pause */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.15);
    }
    40%, 100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Heartbeat animation for background circle - synchronized with brain-image */
@keyframes heartbeat-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    10% {
        transform: scale(1.12);
        opacity: 0.25;
    }
    20% {
        transform: scale(1);
        opacity: 0.2;
    }
    30% {
        transform: scale(1.18);
        opacity: 0.3;
    }
    40%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* Services Section (4 Boxes) */
/* CoCoCo Platform Hero Section - Heart Theme */
.cocore-hero {
    padding: 180px 0 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--peach) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

#hero-canvas-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 600px;
    max-height: 100%;
    z-index: 1;
    pointer-events: none;
}

#hero-canvas-wrapper canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.cocore-header {
    display: block;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.cocore-header-content {
    text-align: left;
    max-width: 85%;
}

.pulse-badge {
    display: inline-block;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.cocore-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 1.5rem 0;
    line-height: 1.2;
    padding-left: 5rem;
}

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

/* Force the highlight text onto the next line for desktop */
@media (min-width: 1024px) {
    .cocore-title .highlight-text {
        display: block;
        margin-top: 0.15rem;
        /* ensure the block flows naturally with h2 spacing */
    }
}

.cocore-tagline {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 5rem;
    margin-bottom: 2rem;}

.cocore-heart-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.heart-image {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(255, 121, 201, 0.3));
}

.pulse-animation {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.12); }
    20% { transform: scale(1); }
    30% { transform: scale(1.08); }
    40%, 100% { transform: scale(1); }
}

.heart-pulse-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px solid var(--pig);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

.ring-delay-1 {
    animation-delay: 0.25s;
}

.ring-delay-2 {
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% { 
        transform: scale(0.85); 
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    100% { 
        transform: scale(1.8); 
        opacity: 0; 
    }
}

.cocore-content-grid {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.cocore-main-content {
    position: relative;
    padding-left: 3rem;
}

.beat-marker {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beat-dot {
    width: 16px;
    height: 16px;
    background: var(--pig);
    border-radius: 50%;
    animation: beat-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--pig);
}

@keyframes beat-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.beat-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--pig) 0%, transparent 100%);
}

.cocore-lead {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cocore-lead:last-child {
    margin-bottom: 0;
}

.cocore-lead strong {
    color: var(--pig);
    font-weight: 700;
}

.cocore-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s;
}

.pulse-card:hover {
    transform: translateY(-5px);
    border-color: var(--pig);
    box-shadow: 0 10px 30px rgba(255, 121, 201, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-label {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.cocore-details {
    margin-bottom: 5rem;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pulse-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--pig) 50%, transparent 100%);
    position: relative;
}

/* Mobile: Stack vertically with lines above and below */
@media (max-width: 768px) {
    .detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-text-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .pulse-line {
        width: 100%;
        max-width: 200px;
        flex: none;
    }
}

.pulse-line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--pig);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.5); }
}

.detail-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.detail-subtitle {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* Default hide mobile-only elements on desktop */
.mobile-only { display: none; }

/* Default: hide detail toggle by default (desktop) */
.detail-toggle { display: none; }

.detail-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.detail-column {
    text-align: center;
}

.detail-icon-wrap {
    margin-bottom: 1.5rem;
}

.detail-icon {
    font-size: 3.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    /* If the icon is an image, ensure proper sizing and containment */
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.detail-column:nth-child(2) .detail-icon {
    animation-delay: 0.5s;
}

.detail-column:nth-child(3) .detail-icon {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.detail-text {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.detail-text strong {
    color: var(--pig);
    font-weight: 700;
}

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

.cocore-feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cocore-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 121, 201, 0.1), transparent);
    transition: left 0.5s;
}

.cocore-feature-card:hover::before {
    left: 100%;
}

.cocore-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--pig);
    box-shadow: 0 15px 40px rgba(255, 121, 201, 0.3);
}

.feature-card-icon {
    font-size: 4.5rem; /* increase size for stronger presence */
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px; /* keep a uniform square so images align perfectly */
    height: 96px;
}

/* Size and contain feature card icons when they are images */
.feature-card-icon img.feature-card-icon-img {
    width: 80px; /* increase image size to match larger icon font */
    height: 80px;
    object-fit: contain;
    display: inline-block;
}

.heartbeat-icon {
    animation: heartbeat-icon 2s ease-in-out infinite;
}

.cocore-feature-card:hover .heartbeat-icon {
    animation: heartbeat-icon 0.8s ease-in-out infinite;
}

@keyframes heartbeat-icon {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}

.cocore-feature-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cocore-feature-card p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card-link {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--pig);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card-link:hover {
    color: var(--berry);
    gap: 1rem;
}

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

.service-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--pig);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-box h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-box p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--pig);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--berry);
}

/* Partners Section */
.partners {
    padding: 60px 0 20px 0;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
}

.section-title-small {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo-placeholder {
    font-family: 'Sofia Sans', sans-serif;
    padding: 2rem 3rem;
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 700;
    transition: all 0.3s;
}

.logo-placeholder:hover {
    border-color: var(--pig);
    transform: scale(1.05);
}

/* Partners Carousel */
.partners-carousel {
    position: relative;
    --carousel-gap: 0.45rem;
    min-height: 420px;
    perspective: 1300px;
}

.carousel-track-container {
    overflow: hidden;
}

/* Prevent wheel events from moving the carousel or triggering scroll when hovering the carousel on desktop */
.partners-carousel {
    touch-action: pan-y; /* allow vertical scrolling only; prevent horizontal panning */
}
.partners-carousel::-webkit-scrollbar { display: none; }

.carousel-track {
    display: flex;
    gap: var(--carousel-gap);
    transition: transform 400ms cubic-bezier(.22,.9,.42,1);
    will-change: transform;
    padding: 0;
    margin: 0;
    list-style: none;
    user-select: none;
    cursor: grab;
    transform-style: preserve-3d;
}

.carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    /* Make 3 slides visible by setting each slide width to 1/3 of carousel width minus gap */
    flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
    backface-visibility: hidden;
}

.carousel-slide img {
    max-width: 100%;
    width: 100%;
    height: 340px; /* make screenshots larger so center is visible while scrolling */
    object-fit: cover;
    object-position: center center;
    display: block;
    -webkit-user-drag: none;
    cursor: pointer;
}

/* Center slide highlighting + 3D ring effect */
/* The inner wrapper will be transformed, keeping slide bounding width unchanged */
.carousel-slide .slide-inner {
    transform-origin: center center;
    transition: transform 320ms cubic-bezier(.22,.9,.42,1), z-index 0s ease, filter 320ms ease, opacity 320ms ease;
    transform: translateZ(-40px) scale(0.88) rotateY(0deg);
    opacity: 0.82;
    filter: grayscale(0.25) contrast(0.95);
}
.carousel-slide.is-center .slide-inner {
    transform: translateZ(120px) scale(1.18) rotateY(0deg);
    opacity: 1;
    z-index: 6;
    filter: none;
}
.carousel-slide.is-center .slide-inner img { box-shadow: 0 20px 60px rgba(77,43,65,0.18); border-radius: 8px; }
.carousel-slide.is-left .slide-inner {
    transform: translateX(-7%) translateZ(0px) rotateY(18deg) scale(0.95);
    z-index: 4;
    opacity: 0.9;
}
.carousel-slide.is-right .slide-inner {
    transform: translateX(7%) translateZ(0px) rotateY(-18deg) scale(0.95);
    z-index: 4;
    opacity: 0.9;
}
.carousel-slide.is-left-2 .slide-inner,
.carousel-slide.is-right-2 .slide-inner {
    transform: translateX(-14%) translateZ(-18px) rotateY(26deg) scale(0.88);
    z-index: 3;
    opacity: 0.75;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.06);
    height: 46px;
    width: 46px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(77,43,65,0.06);
    z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

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

.carousel-dots {
    margin-top: 1rem;
    display: none;
    gap: 0.5rem;
    justify-content: center;
}

/* Lightbox overlay (legacy per-carousel lightbox styles) */
.carousel-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}
.carousel-lightbox { display: none; }
.carousel-lightbox[aria-hidden="false"] { display: flex; }
.carousel-lightbox-content { position: relative; max-width: 94vw; max-height: 94vh; display: flex; align-items: center; justify-content: center; }
.carousel-lightbox .lightbox-image { max-width: 100%; max-height: 100%; object-fit: contain; transform-origin: center center; transition: transform 220ms ease; cursor: zoom-in; }
.carousel-lightbox .lightbox-image.zoomed { cursor: -webkit-grab; cursor: grab; }
.lightbox-close, .lightbox-zoom-in, .lightbox-zoom-out { position: absolute; top: 12px; background: rgba(255,255,255,0.95); border: none; padding: 0.45rem 0.7rem; border-radius: 8px; cursor: pointer; font-weight: 700; z-index: 1; }
.lightbox-close { right: 12px; }
.lightbox-zoom-in { left: 12px; }
.lightbox-zoom-out { left: 56px; }
.carousel-lightbox .lightbox-zoom-in, .carousel-lightbox .lightbox-zoom-out { top: 12px; }

/* Global carousel modal styles */
.carousel-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
}
.carousel-modal[aria-hidden="false"] { display: flex; }
.carousel-modal-content { position: relative; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; }
.carousel-modal .modal-image-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.carousel-modal .modal-img { max-width: 100%; max-height: 100vh; object-fit: contain; transform-origin: center center; will-change: transform; }
.carousel-modal .modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.95); border: none; padding: 0.45rem 0.7rem; border-radius: 8px; cursor: pointer; font-weight: 700; z-index: 2; }
.carousel-modal .modal-controls { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.carousel-modal .modal-controls button { background: rgba(255,255,255,0.95); border: none; padding: 0.35rem 0.7rem; border-radius: 8px; cursor: pointer; font-weight: 700; }

/* Hide controls on touch devices (pinch to zoom) */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
    .carousel-modal .modal-controls { display: none; }
}

/* Modal image cursor states - specific selectors to override defaults */
.carousel-modal .modal-img.grabbing { cursor: grabbing !important; }
.carousel-modal .modal-img.zoomed:not(.grabbing) { cursor: grab !important; }
.carousel-modal .modal-img:not(.zoomed):not(.grabbing) { cursor: zoom-in !important; }

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(77, 43, 65, 0.12);
    display: inline-block;
}
.carousel-dot.active { background: var(--pig); }

/* Responsive breakpoints */
@media (max-width: 1100px) {
    /* keep 3-up and consistent width on slightly narrower screens */
    .carousel-slide { flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3); } /* 3-up */
}
@media (max-width: 768px) {
    .carousel-slide { flex: 0 0 calc((100% - var(--carousel-gap)) / 2); } /* 2-up */
    .carousel-slide img { max-height: 80px; }
    .carousel-btn { display: none; } /* hide arrows on mobile, rely on touch */
    .carousel-dots { display: flex; }
    /* reduce 3D for narrow screens */
    .carousel-slide .slide-inner { transform: none; opacity: 1; filter: none; }
    .carousel-slide.is-left .slide-inner, .carousel-slide.is-right .slide-inner, .carousel-slide.is-left-2 .slide-inner, .carousel-slide.is-right-2 .slide-inner { transform: none; z-index: 3; }
}
@media (max-width: 420px) {
    .carousel-slide { flex: 0 0 calc(100% - var(--carousel-gap)); } /* 1-up */
}

.partners-carousel.is-dragging .carousel-track { cursor: grabbing; }


/* Empowering Section */
.empowering {
    padding: 100px 0;
    background: var(--white);
}

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

.empowering-text h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.empowering-text p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.empowering-list {
    list-style: none;
    margin-bottom: 2rem;
}

.empowering-list li {
    font-family: 'Sofia Sans', sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.empowering-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.emp-image {
    position: relative;
}

.image-placeholder-large {
    background: linear-gradient(135deg, var(--peach) 0%, var(--pig) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s;
}

.image-placeholder-large:hover {
    transform: scale(1.05);
}

.image-placeholder-large span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder-large p {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.emp-image-1 .image-placeholder-large {
    transform: translateY(-20px);
}

.emp-image-2 .image-placeholder-large {
    transform: translateY(20px);
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter & Partner Section */
.newsletter-partner-section {
    padding: 100px 0;
    background: var(--white);
}

.newsletter-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--pig) 0%, var(--peach) 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-card {
    background: linear-gradient(135deg, var(--peach) 0%, var(--pig) 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-card h3,
.partner-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.newsletter-card p,
.partner-card p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    flex: 1;
}

.newsletter-card .btn,
.partner-card .btn {
    align-self: flex-start;
    background: var(--white);
    color: var(--pig);
    border: 2px solid var(--white);
}

.newsletter-card .btn:hover,
.partner-card .btn:hover {
    background: var(--berry);
    color: var(--white);
    border-color: var(--berry);
}

.partner-card {
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
}

.partner-card .btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.partner-card .btn:hover {
    background: var(--white);
    color: var(--berry);
}

/* Responsive für Newsletter & Partner */
@media (max-width: 768px) {
    .newsletter-partner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-card,
    .partner-card {
        padding: 2rem;
    }
    
    .newsletter-card h3,
    .partner-card h3 {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--peach) 0%, var(--pig) 100%);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.cta-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-launch-btn {
    margin-top: 2.0rem; /* push button much further down */
    z-index: 6;
    align-self: center;
    background: var(--pig);
    color: var(--white);
    border: 0; /* filled pig look */
    padding: 0.65rem 1.1rem;
    border-radius: 8px;
    transition: background 200ms ease, transform 160ms ease;
    box-shadow: 0 8px 20px rgba(13,12,14,0.08);
}
.cta-launch-btn:hover,
.cta-launch-btn:focus {
    background: var(--berry);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-icon {
    font-size: 8rem;
    z-index: 2;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.cta-icon.cta-rocket {
    width: 12rem; /* match font-size of emoji */
    height: auto;
    display: inline-block;
}

.cta-icon.cta-rocket {
    /* Increase size and rotate ~75deg clockwise for CTA visual. Positioned lower using margin so transform animations don't reset baseline. */
    transform-origin: center center;
    transform: rotate(75deg) scale(1.15);
    margin-top: 60px;
    transition: transform 260ms cubic-bezier(.22,.9,.42,1);
    will-change: transform, opacity; /* GPU-Beschleunigung für smooth animation */
}

/* Rocket wrapper for flame and launch animation */
.cta-rocket-wrap { position: relative; display: inline-block; }

/* Leichtes Schütteln bei Hover direkt über der Rakete (nur Desktop) */
@media (hover: hover) and (pointer: fine) {
    .cta-rocket:hover {
        animation: gentle-shake 0.5s ease-in-out infinite;
    }
}

@keyframes gentle-shake {
    0%, 100% { transform: rotate(75deg) scale(1.15) translate(0, 0); }
    25% { transform: rotate(73deg) scale(1.15) translate(-1px, 1px); }
    50% { transform: rotate(77deg) scale(1.15) translate(1px, -1px); }
    75% { transform: rotate(74deg) scale(1.15) translate(-1px, -1px); }
}

.cta-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

/* Countdown display - positioned relative to rocket */
.cta-countdown {
    position: absolute;
    top: 65%; /* weiter nach unten verschoben */
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 4.5rem;
    color: var(--white);
    z-index: 6;
    display: none;
    pointer-events: none;
    text-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.cta-countdown.visible { display: block; animation: countdown-pulse 340ms ease-in-out both; }
@keyframes countdown-pulse { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9 } 50% { transform: translate(-50%, -50%) scale(1.14); opacity: 1 } 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.95 } }

/* Prelaunch: sanfter fade/scale-intro für epischen Start */
@keyframes prelaunch-intro {
    0% { transform: rotate(75deg) scale(0.95); opacity: 0.6; }
    50% { transform: rotate(75deg) scale(1.08); opacity: 0.9; }
    100% { transform: rotate(75deg) scale(1.15); opacity: 1; }
}
.cta-rocket-wrap.prelaunch .cta-rocket { animation: prelaunch-intro 600ms ease-out both; }

/* Launch trajectory: hardware-accelerated, ultra-smooth flacher Flug */
@keyframes rocket-liftoff {
    /* translate3d für GPU, konstanter Scale für Performance, flache Trajektorie */
    0%   { transform: translate3d(0, 0, 0) rotate(75deg) scale(1.15); opacity: 1; }
    100% { transform: translate3d(150vw, -95vh, 0) rotate(75deg) scale(0.85); opacity: 0; }
}

.cta-rocket-wrap.launching .cta-rocket { 
    animation: rocket-liftoff 3500ms ease-out forwards; 
    /* Zusätzliche Performance-Hints */
    backface-visibility: hidden;
    perspective: 1000px;
}
.cta-rocket-wrap.launched { visibility: hidden; pointer-events: none; }

.cta-text h2 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.cta-text p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--pig);
}

.cta-note {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

/* Navigation Active State */
/* Only highlight direct nav links, not dropdown menu items */
.nav-menu > li > a.active {
    color: var(--pig);
    font-weight: 700;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .empowering-content,
    .cta-content {
        grid-template-columns: 1fr;
    }

    .empowering-images {
        grid-template-columns: 1fr;
    }

    .emp-image-1 .image-placeholder-large,
    .emp-image-2 .image-placeholder-large {
        transform: translateY(0);
    }

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

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

    .cta-content {
        padding: 2rem;
    }

    .cta-visual {
        height: 200px;
    }

    .cta-icon {
        font-size: 5rem;
        display: inline-block;
    }

    .cta-icon.cta-rocket {
        width: 5rem;
        height: auto;
    }

    .cta-icon.cta-rocket {
        transform-origin: center center;
        transform: rotate(60deg) scale(1.35);
        margin-top: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        margin-top: 2rem;
    }

    /* Keep large feature card icons on mobile - match desktop sizes */
    .feature-card-icon {
        width: 96px;
        height: 96px;
        font-size: 4.5rem;
    }
    .feature-card-icon img.feature-card-icon-img {
        width: 80px;
        height: 80px;
    }

    /* Note: detail-content visibility handled by separate breakpoint for exact 768px behavior */
}

@media (max-width: 480px) {
    .partner-logos {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SUBPAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    padding: 150px 0 40px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Solutions Page */
.solutions-page {
    padding: 80px 0;
}

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

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--pig);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-card p {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card ul li {
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 0;
}

/* Contact Page Enhancements */
.contact-item {
    font-family: 'Sofia Sans', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: var(--text-light);
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    font-family: 'Sofia Sans', sans-serif;
    padding: 0.75rem 1.5rem;
    background: var(--peach);
    color: var(--pig);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--pig);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.form-group label {
    font-family: 'Sofia Sans', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Sofia Sans', sans-serif;
    transition: border-color 0.3s;
    background-color: var(--white);
}

.form-group select:focus {
    outline: none;
    border-color: var(--pig);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Sofia Sans', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--pig);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* =================== ABOUT US SECTION =================== */
.about-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05) 0%, rgba(255, 239, 248, 0.3) 100%);
}

.about-intro .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pig);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.problem-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.typewriter-word {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: transparent;
    padding-bottom: 4px;
    white-space: nowrap;
}

.typewriter-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--pig);
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--pig);
}

.typewriter-word.typing::before {
    animation: typewriter 1.2s steps(20) forwards, blink 0.5s step-end infinite;
}

.typewriter-word.typed::before {
    width: 100%;
    border-right: none;
}

.typewriter-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pig) 0%, var(--pig) 100%);
    transition: width 0.8s ease 1.2s;
}

.typewriter-word.typed::after {
    width: 100%;
}

@keyframes typewriter {
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: var(--white);
}

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

.team-member {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05) 0%, rgba(255, 239, 248, 0.3) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 121, 201, 0.3);
    position: relative;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.member-info h3 {
    color: var(--pig);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--berry);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-email {
    margin-bottom: 1rem;
}

.member-email a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.member-email a:hover {
    color: var(--pig);
}

.member-linkedin {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FF79C9;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Sofia Sans', sans-serif;
    transition: background 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.member-linkedin:hover {
    background: #4D2B41;
    box-shadow: var(--shadow-lg);
}

/* Behind the Brand Section */
.behind-brand {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(109, 212, 179, 0.1) 0%, rgba(109, 212, 179, 0.05) 100%);
}

.behind-brand h2 {
    text-align: center;
    color: var(--pig);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.brand-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.brand-co {
    font-size: 4rem;
    font-weight: 800;
    color: var(--pig);
    margin-bottom: 1.5rem;
    font-family: 'Sofia Sans', sans-serif;
}

.brand-item p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-cta .btn {
    background: var(--white);
    color: var(--pig);
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.about-cta .btn:hover {
    background: var(--peach);
    color: var(--pig);
}

/* =================== CAREERS/JOBS SECTION =================== */
.careers-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05) 0%, rgba(255, 239, 248, 0.3) 100%);
}

.careers-intro .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Job Listings */
.job-listings {
    padding: 4rem 0;
    background: var(--white);
}

.job-listings h2 {
    text-align: center;
    color: var(--pig);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.job-card {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05) 0%, rgba(255, 239, 248, 0.3) 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--peach);
}

.job-title-section h3 {
    color: var(--pig);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.job-meta span {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.job-content {
    display: grid;
    gap: 2rem;
}

.job-section h4 {
    color: var(--berry);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.job-section p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.job-list {
    list-style: none;
    padding-left: 0;
}

.job-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #333;
}

.job-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pig);
    font-weight: bold;
    font-size: 1.2rem;
}

/* No Jobs Message */
.no-jobs-message {
    background: linear-gradient(135deg, rgba(109, 212, 179, 0.15) 0%, rgba(109, 212, 179, 0.05) 100%);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.no-jobs-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.no-jobs-message h3 {
    color: var(--pig);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.no-jobs-message p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.no-jobs-quote {
    font-style: italic;
    color: var(--moss);
    font-weight: 600;
    margin-top: 2rem;
}

/* Careers CTA */
.careers-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--moss) 0%, var(--berry) 100%);
    text-align: center;
}

.careers-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.careers-cta p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.careers-cta .btn {
    background: var(--white);
    color: var(--moss);
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.careers-cta .btn:hover {
    background: var(--peach);
    color: var(--pig);
}

/* Responsive adjustments for Careers */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .job-header .btn {
        width: 100%;
        text-align: center;
    }

    .job-title-section h3 {
        font-size: 1.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .careers-cta h2 {
        font-size: 2rem;
    }

    .careers-cta p {
        font-size: 1rem;
    }
}

/* =================== CONTACT SECTION =================== */
.contact {
    padding: 4rem 0;
    background: var(--white);
}

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

.contact-chat-box {
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    padding: 3rem;
    border-radius: 12px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 121, 201, 0.3);
    position: sticky;
    top: 6rem;
}

.contact-chat-box h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-chat-box p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-chat-box .btn {
    background: var(--white);
    color: var(--pig);
    font-weight: 600;
    padding: 1rem 2rem;
    display: inline-block;
}

.contact-chat-box .btn:hover {
    background: var(--peach);
    color: var(--pig);
}

.contact-form-container {
    background: var(--berry);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#hubspot-form {
    min-height: 400px;
}

/* HubSpot Form Styling */
#hubspot-form .hs-form {
    font-family: 'Sofia Sans', sans-serif;
}

#hubspot-form .hs-form-field {
    margin-bottom: 1.5rem;
}

#hubspot-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

#hubspot-form input[type="text"],
#hubspot-form input[type="email"],
#hubspot-form input[type="tel"],
#hubspot-form textarea,
#hubspot-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Sofia Sans', sans-serif;
    transition: border-color 0.3s ease;
}

#hubspot-form input:focus,
#hubspot-form textarea:focus,
#hubspot-form select:focus {
    outline: none;
    border-color: var(--pig);
}

#hubspot-form .hs-button {
    background: var(--pig);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sofia Sans', sans-serif;
}

#hubspot-form .hs-button:hover {
    background: var(--berry);
    transform: translateY(-2px);
}

/* Responsive adjustments for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-single-column .contact-content {
        gap: 2rem;
    }

    .contact-option {
        padding: 1.5rem;
    }

    .contact-meeting {
        padding: 1.5rem;
    }

    .contact-chat-box {
        padding: 2rem;
    }

    .contact-chat-box h2 {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

/* Responsive adjustments for About Us */
@media (max-width: 768px) {
    .problems-grid,
    .team-grid,
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-intro .lead-text {
        font-size: 1.1rem;
    }

    .brand-co {
        font-size: 3rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1rem;
    }
}

/* Billing Toggle Switch */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0rem;
    margin-bottom: 4rem;
}

.billing-option {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    transition: color 0.3s;
}

.billing-option.active {
    color: var(--pig);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--peach);
    border: 2px solid var(--pig);
    border-radius: 30px;
    transition: all 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: var(--pig);
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--pig);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
    background-color: var(--white);
}

.savings-badge {
    font-family: 'Sofia Sans', sans-serif;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 0.5rem;
    display: inline-block;
    white-space: nowrap;
}

/* Responsive for Subpages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

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

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

    .billing-toggle {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .billing-option {
        font-size: 1rem;
    }

    .savings-badge {
        margin-left: 0.35rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        display: inline-block;
        width: auto;
    }

    /* Pricing card padding adjustment */
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }

    .amount {
        font-size: 3rem;
    }

    .amount-custom {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .billing-toggle {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }
    
    .billing-option {
        font-size: 0.9rem;
    }

    /* Pricing cards even more compact on mobile */
    .amount {
        font-size: 2.5rem;
    }

    .amount-custom {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.25rem 1rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    /* Improve touch targets on mobile */
    .nav-menu a {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .faq-question {
        padding: 1.25rem;
    }

    /* Better spacing for support panel on mobile */
    .support-panel {
        padding: 0.75rem;
    }

    .card-support {
        padding: 0.875rem;
    }

    /* Section padding adjustments */
    .features,
    .solutions,
    .pricing,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    /* Platform page mobile adjustments */
    .platform-hero-title {
        font-size: 2.5rem !important;
        padding: 0 1rem;
    }
    
    .connectivity-layout {
        flex-direction: column;
    }
    
    .connection-diagram {
        width: 100%;
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .usp-content {
        flex-direction: column;
    }
    
    .app-builder-mockup {
        width: 100%;
        min-width: 100%;
        overflow-x: auto;
    }
    
    .mockup-content {
        min-width: 280px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   PLATFORM PAGE STYLES
   ============================================ */

/* Platform Hero */
.platform-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 50%, var(--peach) 100%);
    position: relative;
    overflow: hidden;
}

.platform-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
}

.platform-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.platform-hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    /* Force the highlighted phrase onto a new line on larger displays */
    .platform-hero-title #languageCycler {
        display: block;
        margin-top: 0.35rem;
    }
}
.pulse-word {
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: pulse-glow-text 2s ease-in-out infinite;
}

@keyframes pulse-glow-text {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.platform-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.platform-intro {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    text-align: left;
    margin-top: 4rem;
}

.intro-pulse-marker {
    position: absolute;
    left: 1rem;
    top: 2.5rem;
}

.intro-beat-dot {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--pig);
    border-radius: 50%;
    animation: beat-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--pig);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 2rem;
}

.intro-text strong {
    color: var(--pig);
    font-weight: 700;
}

/* Platform Sections */
.platform-section {
    padding: 100px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--berry);
    color: var(--white);
}

.section-highlight {
    background: linear-gradient(180deg, var(--peach) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--pig);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-badge.badge-light {
    background: var(--white);
    color: var(--pig);
}

.section-badge.badge-emphasis {
    background: var(--berry);
    color: var(--white);
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

.section-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title.title-light {
    color: var(--white);
}

.section-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 1rem;
}

/* Content Typography */
.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lead-text.text-light {
    color: var(--peach);
}

.lead-text.centered {
    text-align: center;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.body-text.text-light {
    color: rgba(255, 255, 255, 0.9);
}

/* Platform Content Grid */
.platform-content-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.content-main {
    margin-bottom: 4rem;
}

/* Feature Grid */
.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Mobile: Feature-Grid untereinander */
@media (max-width: 768px) {
    .feature-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-box .feature-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-box .feature-icon img {
        width: 60px;
        height: 60px;
    }
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--peach);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pig);
}

.feature-box.box-emphasis {
    background: var(--white);
    border-color: var(--pig);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.feature-box .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-box h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 0;
    display: block;
    width: 100%;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    display: block;
    width: 100%;
}

/* Connectivity Layout */
.connectivity-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.connectivity-visual {
    flex: 1;
}

.connectivity-content {
    flex: 1;
}

.connection-diagram {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .connection-diagram {
        width: 320px;
        height: 320px;
    }
    
    .central-node {
        width: 90px !important;
        height: 90px !important;
        font-size: 1rem !important;
    }
    
    .satellite-node {
        width: 70px !important;
        height: 70px !important;
        font-size: 0.75rem !important;
    }
}

.connection-node {
    position: absolute;
    background: var(--pig);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(255, 121, 201, 0.4);
    text-align: center;
    line-height: 1.2;
}

/* Platform-specific node label styling */
.connection-diagram .node-label {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: inherit;
    margin: 0;
}

.central-node {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    animation: pulse-node 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulse-node {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.satellite-node {
    width: 100px;
    height: 100px;
    background: var(--peach);
    color: var(--berry);
    font-size: 0.85rem;
    z-index: 5;
}

/* Position satellite nodes in a perfect circle around center (45-degree intervals) */
/* Node 1 - Top (0°) */
.satellite-node.node-1 {
    top: 3%;
    left: 50%;
    transform: translate(-50%, 0);
}

/* Node 2 - Top Right (45°) */
.satellite-node.node-2 {
    top: 14.6%;
    right: 14.6%;
    transform: translate(0, 0);
}

/* Node 3 - Right (90°) */
.satellite-node.node-3 {
    top: 50%;
    right: 3%;
    transform: translate(0, -50%);
}

/* Node 4 - Bottom Right (135°) */
.satellite-node.node-4 {
    bottom: 14.6%;
    right: 14.6%;
    transform: translate(0, 0);
}

/* Node 5 - Bottom (180°) */
.satellite-node.node-5 {
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, 0);
}

/* Node 6 - Bottom Left (225°) */
.satellite-node.node-6 {
    bottom: 14.6%;
    left: 14.6%;
    transform: translate(0, 0);
}

/* Node 7 - Left (270°) */
.satellite-node.node-7 {
    top: 50%;
    left: 3%;
    transform: translate(0, -50%);
}

/* Node 8 - Top Left (315°) */
.satellite-node.node-8 {
    top: 14.6%;
    left: 14.6%;
    transform: translate(0, 0);
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 121, 201, 0.5) 0%, rgba(255, 121, 201, 0.2) 100%);
    opacity: 0.4;
    animation: pulse-line 2s ease-in-out infinite;
    z-index: 1;
}

/* Lines from center to each node - positioned behind central node */
/* Line 1 - Top (0°) */
.connection-line.line-1 {
    width: 2px;
    height: 115px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom center;
}

/* Line 2 - Top Right (45°) */
.connection-line.line-2 {
    width: 2px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(-45deg);
}

/* Line 3 - Right (90°) */
.connection-line.line-3 {
    width: 115px;
    height: 2px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    transform-origin: left center;
}

/* Line 4 - Bottom Right (135°) */
.connection-line.line-4 {
    width: 2px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(45deg);
}

/* Line 5 - Bottom (180°) */
.connection-line.line-5 {
    width: 2px;
    height: 115px;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top center;
}

/* Line 6 - Bottom Left (225°) */
.connection-line.line-6 {
    width: 2px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(135deg);
}

/* Line 7 - Left (270°) */
.connection-line.line-7 {
    width: 115px;
    height: 2px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    transform-origin: right center;
}

/* Line 8 - Top Left (315°) */
.connection-line.line-8 {
    width: 2px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(-135deg);
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.connectivity-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.connectivity-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.connectivity-feature .check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--pig);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.connectivity-feature h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.connectivity-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* USP Content */
.usp-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.usp-text {
    flex: 1;
}

.usp-visual {
    flex: 1;
}

.app-builder-mockup {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(77, 43, 65, 0.15);
}

.mockup-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--peach);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    background: var(--pig);
    border-radius: 50%;
    opacity: 0.4;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mockup-block {
    height: 60px;
    background: linear-gradient(90deg, var(--peach) 0%, var(--white) 100%);
    border-radius: 8px;
    border: 2px dashed var(--pig);
    opacity: 0.7;
}

.mockup-block.block-2 {
    height: 80px;
}

.mockup-block.block-3 {
    height: 50px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Platform-specific benefits grid (overrides homepage styles) */
.platform-section .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.platform-section .benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-section .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pig) 0%, var(--berry) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-section .benefit-card:hover::before {
    transform: scaleX(1);
}

.platform-section .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pig);
}

.platform-section .benefit-number {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0rem;
    opacity: 0.3;
}

.platform-section .benefit-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0rem;
}

.platform-section .benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Platform CTA */
.platform-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--berry) 0%, var(--moss) 100%);
    text-align: center;
}

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

.cta-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--peach);
    margin-bottom: 3rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Responsive adjustments for Platform page */
@media (max-width: 768px) {
    .platform-hero {
        padding: 120px 0 80px;
    }
}

/* ============================================
   DATA MODEL PAGE STYLES
   ============================================ */

/* Data Model Hero */
.data-model-hero {
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.data-model-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 121, 201, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* Data Sections */
.data-section {
    padding: 100px 0;
}

.concept-section {
    background: var(--white);
}

.flexibility-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--peach) 100%);
}

.developer-section {
    background: var(--white);
}

.value-section {
    background: var(--peach);
}

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

.section-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Concept Content */
.concept-content {
    max-width: 1200px;
    margin: 0 auto;
}

.concept-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Data Features Grid */
.data-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.data-feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s ease;
}

.data-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pig);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.data-feature-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.data-feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.9;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.column-text h2 {
    margin-bottom: 1rem;
}

.column-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.column-text p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Flexibility Features */
.flexibility-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.flex-feature {
    padding-left: 1.5rem;
    border-left: 4px solid var(--pig);
}

.flex-feature h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.flex-feature p {
    margin: 0;
    opacity: 0.9;
}

/* Data Model Diagram */
.data-model-diagram {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-node {
    position: absolute;
    background: var(--white);
    border: 3px solid var(--pig);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.diagram-node.central {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    color: var(--white);
    font-size: 1.1rem;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diagram-node.satellite {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

/* Satellite nodes - all at same distance from center (130px from center) */
.diagram-node.sat-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.diagram-node.sat-2 {
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.diagram-node.sat-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.diagram-node.sat-4 {
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
}

.diagram-connection {
    position: absolute;
    width: 2px;
    height: 95px;
    background: linear-gradient(180deg, var(--pig) 0%, transparent 100%);
    z-index: 1;
}

/* Top line */
.diagram-connection.line-1 {
    top: calc(50% - 80px - 47px);
    left: 50%;
    transform: translateX(-50%);
}

/* Right line */
.diagram-connection.line-2 {
    top: 50%;
    left: calc(50% + 80px);
    width: 95px;
    height: 2px;
    background: linear-gradient(90deg, var(--pig) 0%, transparent 100%);
    transform: translateY(-50%);
}

/* Bottom line */
.diagram-connection.line-3 {
    top: calc(50% + 80px);
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

/* Left line */
.diagram-connection.line-4 {
    top: 50%;
    right: calc(50% + 80px);
    width: 95px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--pig) 100%);
    transform: translateY(-50%);
}

/* Developer Section */
.developer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Code Window */
.code-window {
    background: var(--berry);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-dot {
    width: 12px;
    height: 12px;
    background: var(--pig);
    border-radius: 50%;
    opacity: 0.6;
}

.code-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: auto;
    opacity: 0.7;
}

.code-body {
    padding: 2rem 1.5rem;
    background: var(--berry);
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
    overflow-x: auto;
}

.code-body code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--peach);
}

@media (max-width: 768px) {
    .code-window {
        max-width: 100%;
        width: 100%;
    }
    
    .code-window-wrapper {
        max-width: 100%;
        overflow: hidden;
    }
    
    .code-body {
        padding: 0.75rem 0.5rem;
        overflow-x: auto;
        max-width: 100%;
    }
    
    .code-body pre {
        max-width: 100%;
        font-size: 0.6rem;
    }
    
    .code-body code {
        font-size: 0.6rem;
        line-height: 1.4;
        white-space: pre;
        display: block;
    }
    
    .code-header {
        padding: 0.5rem 0.75rem;
    }
    
    .code-title {
        font-size: 0.65rem;
    }
    
    .code-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 430px) {
    .code-body code {
        font-size: 0.5rem;
    }
}

/* Developer Features */
.dev-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.api-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.api-feature {
    padding-left: 1.5rem;
    border-left: 4px solid var(--pig);
}

.api-feature h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.api-feature p {
    margin: 0;
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.6;
}

/* Value Section */
.value-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.value-content h2 {
    margin-bottom: 2rem;
}

.value-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Responsive Data Model Page */
@media (max-width: 1024px) {
    .data-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column-layout,
    .developer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .data-model-diagram {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .data-model-hero {
        padding: 120px 0 80px;
    }

    .data-section {
        padding: 60px 0;
    }

    .section-header-center {
        margin-bottom: 3rem;
    }
    
    /* Data Model Diagram Mobile Optimierung */
    .data-model-diagram {
        height: 280px;
        max-width: 100%;
        overflow: visible;
    }
    
    .diagram-node.central {
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .diagram-node.satellite {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
        white-space: normal;
        text-align: center;
        max-width: 90px;
        line-height: 1.2;
    }
    
    /* Satellites weiter außen für mehr Platz */
    .diagram-node.sat-1 {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .diagram-node.sat-2 {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .diagram-node.sat-3 {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .diagram-node.sat-4 {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Kürzere Verbindungslinien */
    .diagram-connection {
        height: 50px;
        width: 2px;
    }
    
    .diagram-connection.line-1 {
        top: calc(50% - 40px - 25px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .diagram-connection.line-2 {
        left: calc(50% + 40px);
        top: 50%;
        width: 50px;
        height: 2px;
        transform: translateY(-50%);
    }
    
    .diagram-connection.line-3 {
        top: calc(50% + 40px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .diagram-connection.line-4 {
        right: calc(50% + 40px);
        top: 50%;
        width: 50px;
        height: 2px;
        transform: translateY(-50%);
    }
    
    .data-model-diagram-wrapper {
        padding: 1rem 0;
    }
}

/* Alternative: Diagram als Bild auf sehr kleinen Screens */
@media (max-width: 480px) {
    .data-model-diagram {
        height: 260px;
    }
    
    .diagram-node.central {
        width: 70px;
        height: 70px;
        font-size: 0.65rem;
    }
    
    .diagram-node.satellite {
        font-size: 0.6rem;
        padding: 0.35rem 0.5rem;
        max-width: 80px;
    }
}

/* Data Model - Two Column Layouts */

/* Flexibility Section - Dark Background Text Styles */
.section-dark .lead-text,
.section-dark .body-text,
.section-dark .data-feature-item h4,
.section-dark .data-feature-item p {
    color: var(--white);
}

.section-dark .lead-text strong,
.section-dark .body-text strong {
    color: var(--white);
}

/* Two Column Layout for Flexibility Section */
.data-model-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.data-model-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.data-model-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.data-feature-item {
    padding-left: 1.5rem;
    border-left: 4px solid var(--pig);
}

.data-feature-item h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.data-feature-item p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.data-model-diagram-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Developer Section - Two Column Layout */
.section-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 2rem auto 3rem;
    max-width: 900px;
    text-align: center;
}

.developer-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.api-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.api-feature-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s ease;
}

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

.api-feature-item h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.api-feature-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive for Two Column Layouts */
@media (max-width: 1024px) {
    .data-model-two-column,
    .developer-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .code-window-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .data-model-two-column,
    .developer-two-column {
        gap: 2rem;
    }

    .section-intro-text {
        font-size: 1rem;
    }
}

/* ============================================
   AUTOMATION PAGE STYLES
   ============================================ */

/* Automation Core Grid - Reactions & Functions */
.automation-core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.automation-core-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    border: 3px solid var(--pig);
    transition: all 0.3s ease;
    position: relative;
}

.automation-core-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 121, 201, 0.3);
    border-color: var(--berry);
}

/* Core Header - Icon + Title in one row */
.core-header {
    display: flex;
    align-items: center; /* center icon and title vertically */
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.core-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-icon-img {
    width: auto;
    height: auto;
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
    display: block;
}

.core-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ensure title + subtitle center relative to icon */
    gap: 0.125rem;
}

/* Ensure icon wrapper has a fixed square area so different icon artwork centers visually */
.core-icon-wrapper {
    width: 72px;
    height: 72px;
    line-height: 0; /* remove inline img whitespace */
}

.automation-core-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.core-title-wrapper .subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pig);
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.automation-core-card p {
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
}

.automation-core-card p strong {
    color: var(--berry);
    font-weight: 700;
}

/* Automation Result Box */
.automation-result {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.automation-result h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.automation-result p {
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* Integration Compatibility Section (integration.html) */
.integration-compatibility-content {
    margin-top: 2rem;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.compatibility-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 3px solid var(--pig);
    transition: all 0.3s ease;
    text-align: center;
}

.compatibility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 121, 201, 0.25);
    border-color: var(--berry);
}

.compatibility-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--berry);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.compatibility-card p {
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    margin: 0;
}

/* Toolkit Features */
.toolkit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.toolkit-feature {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--peach);
    transition: all 0.3s ease;
}

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

.toolkit-feature h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.toolkit-feature p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.9;
}

.toolkit-feature p strong {
    color: var(--pig);
    font-weight: 700;
}

/* Custom Apps Highlight Section (custom_apps.html) */
.custom-apps-highlight-content {
    margin-top: 2rem;
}

.custom-apps-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.custom-apps-feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 3px solid var(--pig);
    transition: all 0.3s ease;
}

.custom-apps-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 121, 201, 0.25);
    border-color: var(--berry);
}

.custom-apps-feature-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--berry);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.custom-apps-feature-card p {
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    margin: 0;
}

/* Responsive Automation & Integration Pages */
@media (max-width: 1024px) {
    .automation-core-grid,
    .toolkit-features,
    .compatibility-grid,
    .custom-apps-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .automation-core-card {
        padding: 2rem 1.5rem;
    }

    .core-icon-img {
        width: 50px;
        height: 50px;
    }

    .core-header {
        gap: 1rem;
    }

    .automation-core-card h3 {
        font-size: 1.5rem;
    }

    .core-title-wrapper .subtitle {
        font-size: 1.1rem;
    }

    .automation-result {
        padding: 2rem;
    }

    .automation-result h3 {
        font-size: 1.5rem;
    }

    .automation-result p {
        font-size: 1.1rem;
    }

    .compatibility-card {
        padding: 2rem 1.5rem;
    }

    .compatibility-card h3 {
        font-size: 1.5rem;
    }

    .custom-apps-feature-card {
        padding: 2rem 1.5rem;
    }

    .custom-apps-feature-card h3 {
        font-size: 1.5rem;
    }
}

/* Language Cycler Animation */
.highlight-text {
    display: inline-block;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.highlight-text.flip-out {
    animation: flipOut 0.3s ease-in forwards;
}

.highlight-text.flip-in {
    animation: flipIn 0.3s ease-out forwards;
}

@keyframes flipOut {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipIn {
    0% {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Connecting Split Animation (scoped to integration hero) */
.integration-hero-title .connecting-split {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    overflow: visible;
    /* Override .highlight-text transparent fill */
    -webkit-text-fill-color: inherit !important;
    color: inherit;
}

.integration-hero-title .connecting-split .conn-left,
.integration-hero-title .connecting-split .conn-right {
    display: inline-block;
    transform: translateX(0);
    opacity: 1;
    will-change: transform, opacity;
}

/* Apply single continuous gradient across both parts */
.integration-hero-title .connecting-split .conn-left {
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 0% 0%;
}

.integration-hero-title .connecting-split .conn-right {
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100% 0%;
}

/* Split animation: slide apart then reconnect */
.integration-hero-title .connecting-split.animating .conn-left {
    animation: conn-split-left 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.integration-hero-title .connecting-split.animating .conn-right {
    animation: conn-split-right 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes conn-split-left {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-80px);
        opacity: 0.85;
    }
    60% {
        transform: translateX(-80px);
        opacity: 0.85;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes conn-split-right {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        transform: translateX(80px);
        opacity: 0.85;
    }
    60% {
        transform: translateX(80px);
        opacity: 0.85;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .integration-hero-title .connecting-split,
    .integration-hero-title .connecting-split .conn-left,
    .integration-hero-title .connecting-split .conn-right {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Autopilot shimmer + underline sweep (scoped to .autopilot-highlight / #autopilot) */
.autopilot-highlight { position: relative; display: inline-block; overflow: visible; will-change: transform, opacity; }

/* animated underline */
.autopilot-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, /*accent*/ #FF79C9 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: autopilot-underline 0.9s ease 0.35s forwards;
}

/* shimmer sweep */
.autopilot-highlight::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-15deg) translateX(-100%);
  animation: autopilot-shimmer 1.2s ease 0.35s forwards;
}

@keyframes autopilot-underline {
  to { transform: scaleX(1); }
}
@keyframes autopilot-shimmer {
  to { transform: skewX(-15deg) translateX(250%); }
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .autopilot-highlight::before,
  .autopilot-highlight::after {
    animation: none;
    display: none;
  }
}

/* Mirror Text Animation (scoped to custom_apps hero) */
.custom-apps-hero-title .mirror-text {
    display: inline-block;
    transform-origin: center;
    will-change: transform;
    /* Start in mirrored state */
    transform: scaleX(-1);
    opacity: 0.7;
}

/* Animate to normal state when animating class is added */
.custom-apps-hero-title .mirror-text.animating {
    animation: mirror-unflip 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Keep in normal state after animation with final-state class */
.custom-apps-hero-title .mirror-text.final-state {
    transform: scaleX(1);
    opacity: 1;
}

@keyframes mirror-unflip {
    0% {
        transform: scaleX(-1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.85;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .custom-apps-hero-title .mirror-text {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Vertical Flip Animation (scoped to upcoming_features hero) */
.upcoming-features-hero-title .vertical-flip {
    display: inline-block;
    transform-origin: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: vertical-flip-continuous 3s ease-in-out infinite;
}

@keyframes vertical-flip-continuous {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(180deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .upcoming-features-hero-title .vertical-flip {
        animation: none !important;
        transform: none !important;
    }
}

/* ============================================
   MANUFACTURERS PAGE - Solutions Styling
   ============================================ */

/* Intro cards for solution distinction */
.solutions-comparison-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.solution-intro-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.solution-intro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Product-specific colors */
.card-openinfra {
    border-color: rgba(122, 219, 203, 0.3);
}

.card-openinfra:hover {
    border-color: rgba(122, 219, 203, 0.5);
    box-shadow: 0 8px 24px rgba(122, 219, 203, 0.15);
}

.card-whitelabel {
    border-color: rgba(255, 121, 201, 0.3);
}

.card-whitelabel:hover {
    border-color: rgba(255, 121, 201, 0.5);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.solution-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.card-openinfra .solution-card-icon {
    color: var(--pond);
}

.card-whitelabel .solution-card-icon {
    color: var(--pig);
}

.solution-intro-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
    letter-spacing: 0.02em;
}

.solution-intro-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.solution-intro-card strong {
    color: var(--white);
    font-weight: 700;
}

/* Product separator */
.product-separator {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(122, 219, 203, 0.5) 25%,
        rgba(255, 121, 201, 0.5) 75%,
        transparent 100%
    );
}

.separator-text {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

/* Product labels */
.product-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.label-openinfra {
    background: linear-gradient(135deg, rgba(122, 219, 203, 0.2) 0%, rgba(122, 219, 203, 0.1) 100%);
    color: var(--pond);
    border: 1px solid rgba(122, 219, 203, 0.3);
}

.label-whitelabel {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.2) 0%, rgba(255, 121, 201, 0.1) 100%);
    color: var(--pig);
    border: 1px solid rgba(255, 121, 201, 0.3);
}

/* Product section backgrounds */
.product-section-openinfra {
    background: linear-gradient(180deg, 
        rgba(122, 219, 203, 0.02) 0%, 
        rgba(255, 255, 255, 1) 100%
    );
}

.product-section-whitelabel {
    background: linear-gradient(180deg, 
        rgba(255, 121, 201, 0.02) 0%, 
        rgba(255, 255, 255, 1) 100%
    );
}

/* Solution detail content sections */
.solution-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.solution-detail-content .lead-text {
    margin-bottom: 1.5rem;
}

.solution-detail-content .body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Solution features list - 3 column layout */
.solution-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.solution-feature-item {
    padding: 2rem;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.solution-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-openinfra {
    border-left: 4px solid var(--pond);
    border: 2px solid rgba(122, 219, 203, 0.25);
    border-left: 4px solid var(--pond);
    background: linear-gradient(135deg, 
        rgba(122, 219, 203, 0.04) 0%, 
        rgba(255, 255, 255, 1) 100%
    );
    box-shadow: 0 2px 12px rgba(122, 219, 203, 0.12);
}

.feature-openinfra:hover {
    border-color: rgba(122, 219, 203, 0.4);
    border-left-color: var(--pond);
    box-shadow: 0 8px 24px rgba(122, 219, 203, 0.2);
}

.feature-whitelabel {
    border-left: 3px solid var(--pig);
}

.feature-whitelabel:hover {
    border-left-color: var(--pig);
    box-shadow: 0 8px 20px rgba(255, 121, 201, 0.15);
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.feature-openinfra .feature-icon {
    color: var(--pond);
}

.feature-whitelabel .feature-icon {
    color: var(--pig);
}

.solution-feature-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Sofia Sans', sans-serif;
}

.solution-feature-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Comparison Grid - Two columns */
.solutions-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.comparison-column {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.comparison-column:first-child {
    border-color: rgba(122, 219, 203, 0.3);
}

.comparison-column:first-child:hover {
    border-color: rgba(122, 219, 203, 0.5);
    box-shadow: 0 8px 24px rgba(122, 219, 203, 0.15);
}

.comparison-column:last-child {
    border-color: rgba(255, 121, 201, 0.3);
}

.comparison-column:last-child:hover {
    border-color: rgba(255, 121, 201, 0.5);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.comparison-header {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
    letter-spacing: 0.02em;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1.25rem;
}

.comparison-column:first-child .comparison-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pond);
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-column:last-child .comparison-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pig);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section for Manufacturers */
.manufacturers-cta {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 121, 201, 0.05) 100%);
    padding: 4rem 2rem;
}

.manufacturers-cta .cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.manufacturers-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.manufacturers-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.manufacturers-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Responsive: Tablet and mobile */
@media (max-width: 1024px) {
    .solution-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-comparison-intro {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions-comparison-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-intro-card {
        padding: 2rem;
    }
    
    .solution-intro-card h3 {
        font-size: 1.5rem;
    }

    .solution-detail-content .lead-text {
        font-size: 0.95rem;
    }

    .solution-features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-feature-item {
        padding: 1.5rem;
    }

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

    .comparison-column {
        padding: 2rem;
    }

    .comparison-header {
        font-size: 1.2rem;
    }
    
    .product-separator {
        gap: 1rem;
    }
    
    .separator-text {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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

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

/* ============================================
   NEW HOMEPAGE DESIGN - 2025
   ============================================ */

/* Hero Section */
.home-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, rgba(255, 121, 201, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.home-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
    letter-spacing: -0.02em;
}

.home-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.home-hero-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: none;
    margin-left: 0rem;
    padding-right: 0rem;
}

.home-hero-text strong {
    color: var(--pig);
    font-weight: 700;
}

.home-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-link {
    color: var(--pig);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.btn-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-headline {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Product Experience Section - Interactive Tabs */
.product-experience {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 121, 201, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.feature-tabs-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    background: var(--pig);
    border-radius: 20px;
    padding: 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Tab Navigation */
.feature-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.feature-tab {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.feature-tab:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.2);
}

.feature-tab.active {
    background: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.tab-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.feature-tab.active .tab-label {
    color: var(--pig);
    font-weight: 700;
}

.tab-headline {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.feature-tab.active .tab-headline {
    color: var(--text-primary);
    font-weight: 700;
}

/* Tab Content Display */
.feature-tabs-display {
    position: relative;
    width: 100%;
    height: 420px;
    background: var(--peach);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-tab-content.active {
    opacity: 1;
    pointer-events: auto;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Image Zoom Functionality */
.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.4s ease, cursor 0.2s ease;
}

.feature-image-container.zoomed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeInZoom 0.3s ease;
}

.feature-image-container.zoomed .feature-content {
    padding: 0;
    max-width: 95vw;
    max-height: 95vh;
}

.feature-image-container.zoomed .feature-image {
    cursor: zoom-out;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   ACCORDION REDESIGN - Replace Tabs
   ============================================ */

/* Product Experience Section - Accordion */
.feature-accordion-container {
    max-width: 1400px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Display Area */
.feature-display-column {
    display: flex;
    flex-direction: column;
    gap: 0.0rem;
}

.feature-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 121, 201, 0.2);
    box-shadow: 0 8px 32px rgba(255, 121, 201, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-content.active {
    opacity: 1;
    pointer-events: auto;
}

.feature-description-container {
    position: relative;
    min-height: 120px;
}

.feature-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: var(--surface);
    border: 2px solid rgba(255, 121, 201, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-description.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.feature-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

/* Right Column - Accordion Navigation */
.feature-accordion-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--white);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 100%;
}

.accordion-item:hover {
    background: rgba(255, 121, 201, 0.03);
    border-color: rgba(255, 121, 201, 0.35);
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(255, 121, 201, 0.12);
}

.accordion-item.active {
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.08) 0%, rgba(122, 219, 203, 0.05) 100%);
    border-left: 4px solid var(--pig);
    border-color: rgba(255, 121, 201, 0.4);
    box-shadow: 0 6px 20px rgba(255, 121, 201, 0.2);
    transform: translateX(-4px);
}

/* Mobile: Kein Transform um Overflow zu vermeiden */
@media (max-width: 768px) {
    .accordion-item:hover,
    .accordion-item.active {
        transform: none;
    }
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-sizing: border-box;
    max-width: 100%;
}

.accordion-header * {
    max-width: 100%;
    box-sizing: border-box;
}

.accordion-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.accordion-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-item.active .accordion-label {
    color: var(--pig);
    font-weight: 700;
}

.accordion-headline {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    display: none;
}

.accordion-item.active .accordion-headline {
    display: block;
    font-weight: 700;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1;
    min-width: 24px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    color: var(--pig);
    font-weight: 400;
}

.accordion-item .icon-minus {
    display: none;
}

.accordion-item .icon-plus {
    display: inline;
}

.accordion-item.active .icon-minus {
    display: inline;
}

.accordion-item.active .icon-plus {
    display: none;
}

/* Responsive Design - Accordion */
@media (max-width: 1024px) {
    .feature-accordion-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-accordion-nav {
        order: -1;
    }
}

@media (max-width: 768px) {
    .feature-accordion-container {
        margin: 1.5rem auto 0;
    }
    
    .feature-image-container {
        aspect-ratio: 4 / 3;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
    }
    
    .accordion-label {
        font-size: 0.8rem;
    }
    
    .accordion-headline {
        font-size: 1rem;
    }
    
    .feature-description p {
        font-size: 0.95rem;
    }
}

/* Heartbeat Section */
.heartbeat-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(122, 219, 203, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.heartbeat-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.heartbeat-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heartbeat-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.heartbeat-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.heartbeat-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.heartbeat-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.heartbeat-body strong {
    color: var(--pig);
    font-weight: 700;
}

/* Core Benefits */
.core-benefits {
    padding: 6rem 2rem;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--pig);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

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

/* Footer CTA */
.footer-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.05) 0%, rgba(122, 219, 203, 0.05) 100%);
    text-align: center;
}

.footer-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heartbeat-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .home-hero-title {
        font-size: 2.5rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .home-hero-text {
        font-size: 1rem;
    }
    
    .home-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .home-hero-buttons .btn,
    .home-hero-buttons .btn-link {
        width: 100%;
        text-align: center;
    }
    
    .trust-logos {
        gap: 2rem;
    }
    
    /* Heartbeat Section Mobile */
    .heartbeat-section {
        padding: 4rem 1.5rem;
        overflow-x: hidden;
    }
    
    .heartbeat-title {
        font-size: 1.8rem;
    }
    
    .heartbeat-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-logo {
        font-size: 0.95rem;
    }
    
    .feature-tabs-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-tabs-nav {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-tab {
        padding: 1rem;
    }
    
    .tab-headline {
        font-size: 1rem;
    }
    
    .feature-tabs-display {
        aspect-ratio: 4 / 3;
    }
    
    .heartbeat-title {
        font-size: 2rem;
    }
    
    .heartbeat-subtitle {
        font-size: 1.1rem;
    }
    
    .heartbeat-body {
        font-size: 0.95rem;
    }
    
    .footer-cta-title {
        font-size: 2rem;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-cta-buttons .btn,
    .footer-cta-buttons .btn-link {
        width: 100%;
    }
}

/* ============================================
   CUSTOM APPS SECTION
   ============================================ */

.custom-apps {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(255, 121, 201, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

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

.custom-apps-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.custom-apps-text strong {
    color: var(--pig);
    font-weight: 700;
}

.section-title-large {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    font-family: 'Sofia Sans Condensed', sans-serif;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

.custom-apps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.custom-apps-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.custom-apps-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pig);
    flex-shrink: 0;
}

.custom-apps-list h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.custom-apps-list p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.custom-apps-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.custom-apps-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 400px;
    padding-top: 15rem;
}

.custom-apps-iframe {
    width: 143%;
    height: 857px;
    border: none;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 8px 32px rgba(255, 121, 201, 0.15);
    transform: scale(0.7);
    transform-origin: top center;
}

/* Responsive: Custom Apps */
@media (max-width: 1024px) {
    .custom-apps-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title-large {
        font-size: 2.2rem;
    }
    
    .custom-apps-visual {
        min-height: 350px;
    }
    
    .custom-apps-iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .custom-apps {
        padding: 4rem 2rem;
    }
    
    .custom-apps-content {
        gap: 2rem;
    }
    
    .section-title-large {
        font-size: 1.8rem;
    }
    
    .custom-apps-list {
        gap: 1.5rem;
    }
    
    .custom-apps-buttons {
        flex-direction: column;
    }
    
    .custom-apps-buttons .btn {
        width: 100%;
    }
    
    .custom-apps-visual {
        display: none;
    }
}

/* ============================================
   FAQ SECTION REDESIGN
   ============================================ */

.faq {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 121, 201, 0.02) 100%);
}

/* The Essentials (Featured) */
.faq-essentials {
    margin-bottom: 5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.1) 0%, rgba(122, 219, 203, 0.05) 100%);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: 16px;
}

.faq-essential-item {
    max-width: 900px;
}

.faq-essential-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.faq-essential-answer {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-essential-answer p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pig);
    font-weight: 800;
    font-size: 1.2rem;
}

/* FAQ Sections */
.faq-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.faq-section {
    max-width: 900px;
}

.faq-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--pig);
}

.faq-section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 2px solid rgba(255, 121, 201, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item:hover {
    border-color: rgba(255, 121, 201, 0.3);
    box-shadow: 0 4px 16px rgba(255, 121, 201, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(255, 121, 201, 0.05);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--pig);
    font-weight: 800;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 121, 201, 0.02);
}

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

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

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Summary Grid (3 Pillars) */
.faq-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-summary-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 121, 201, 0.08) 0%, rgba(122, 219, 203, 0.08) 100%);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.faq-summary-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.faq-summary-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Glossary */
.glossary-subsection {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 121, 201, 0.15);
}

.glossary-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.glossary-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pig);
    margin-bottom: 1.5rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.glossary-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.glossary-item {
    padding: 1.25rem;
    background: rgba(255, 121, 201, 0.03);
    border-left: 4px solid var(--pig);
    border-radius: 4px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.glossary-item strong {
    color: var(--text-primary);
}

/* Responsive: FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 1.5rem;
    }
    
    .faq-essentials {
        padding: 1.5rem;
    }
    
    .faq-essential-title {
        font-size: 1.6rem;
    }
    
    .faq-section-title {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .glossary-item {
        padding: 1rem;
        border-left-width: 3px;
    }
}

/* Accessibility: Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .heartbeat-logo {
        animation: none !important;
    }
    
    .feature-tab,
    .feature-tab-content,
    .feature-image {
        transition: none !important;
    }
}

/* OEM Page - Centered Iframes */
.oem-iframe-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 0;
    margin: 0;
    overflow: hidden;
}

.oem-iframe-container iframe {
    border: none;
    background: transparent;
    display: block;
}

/* Desktop: Tatsächliche Größe des iframe-Inhalts */
@media (min-width: 769px) {
    .oem-iframe-container iframe {
        width: 950px;
        height: 550px;
    }
    
    .oem-iframe-container iframe.iframe-whitelabel {
        width: 950px;
        height: 600px;
    }
}

/* Mobile & Tablet: iframes ausblenden */
@media (max-width: 768px) {
    .oem-iframe-container {
        display: none;
    }
}

/* TODO: Folgenden auskommentierten Code löschen, wenn Mobile-Lösung bestätigt ist
@media (max-width: 768px) {
    .oem-iframe-container {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .oem-iframe-container iframe {
        width: 950px;
        height: 550px;
        transform: scale(0.75);
        transform-origin: top center;
        margin-bottom: -80px;
    }
    
    .oem-iframe-container iframe.iframe-whitelabel {
        height: 600px;
        margin-bottom: -90px;
    }
}

@media (max-width: 480px) {
    .oem-iframe-container {
        padding: 1rem 0;
        overflow-x: hidden;
    }
    
    .oem-iframe-container iframe {
        width: 950px;
        height: 550px;
        transform: scale(0.42);
        transform-origin: top center;
        margin-bottom: -220px;
    }
    
    .oem-iframe-container iframe.iframe-whitelabel {
        height: 600px;
        margin-bottom: -250px;
    }
}
*/

/* ============================================
   NEW INDEX.HTML STYLES - December 2025
   ============================================ */

/* Section 1: New Hero Section */
.new-hero {
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Canvas background for animated particles */
.new-hero #heroNetworkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.new-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 121, 201, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.new-hero .container {
    position: relative;
    z-index: 2;
}

.new-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.new-hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.new-hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.new-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-with-icon svg {
    transition: transform 0.3s ease;
}

.btn-with-icon:hover svg {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .new-hero {
        padding: 5rem 0 4rem;
    }
    
    .new-hero-title {
        font-size: 2.25rem;
    }
    
    .new-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .new-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .new-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Section 2: Audience Gateway */
.audience-gateway {
    padding: 5rem 0;
}

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

.audience-card {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.audience-card:hover {
    border-color: var(--pig);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 121, 201, 0.15);
}

.audience-card-header h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.audience-trigger {
    font-weight: 700;
    color: var(--pig);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.audience-promise {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.audience-card .btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .audience-cards {
        grid-template-columns: 1fr;
    }
}

/* Section 3: AI Reality Check */
.ai-reality-check {
    padding: 5rem 0;
}

.ai-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.ai-stage {
    text-align: center;
}

.ai-stage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 121, 201, 0.1);
    border-radius: 50%;
    color: var(--pig);
}

.ai-stage h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.ai-stage p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ai-stages {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Section 3b: Technology Engine */
.technology-engine {
    padding: 5rem 0;
}

.tech-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.tech-pillar {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.tech-pillar:hover {
    border-color: var(--pig);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.12);
}

.tech-pillar h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 0.5rem;
}

.pillar-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--pig);
}

.tech-pillar p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pillar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-arrow {
    color: var(--pig);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    color: var(--berry);
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .tech-pillars {
        grid-template-columns: 1fr;
    }
}

/* Section 4: Pain Points */
.pain-points {
    padding: 5rem 0;
}

.pain-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 121, 201, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--pig);
}

.pain-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--pig);
}

.pain-content h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pain-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.pain-resolution {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 121, 201, 0.08);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.resolution-text {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.resolution-text strong {
    color: var(--pig);
    font-weight: 700;
}

@media (max-width: 768px) {
    .pain-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .pain-resolution {
        padding: 2rem 1.5rem;
    }
}

/* Section 5: Origin Story */
.origin-story {
    padding: 5rem 0;
    text-align: center;
}

.origin-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.origin-content .lead-text {
    margin-bottom: 2rem;
}

/* Section 6: Ecosystem */
.ecosystem {
    padding: 5rem 0;
}

.ecosystem-cta {
    text-align: center;
    margin-top: 3rem;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.ecosystem-card {
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    border-color: var(--pig);
    background: rgba(255, 121, 201, 0.08);
}

.ecosystem-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.ecosystem-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-arrow-light {
    color: var(--pig);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow-light:hover {
    color: var(--white);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .ecosystem-cards {
        grid-template-columns: 1fr;
    }
}

/* Section 7: Challenge CTA */
.challenge-cta {
    padding: 5rem 0;
    text-align: center;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
}

.challenge-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.challenge-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Section 8: Newsletter */
.newsletter-section {
    padding: 5rem 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-header {
    margin-bottom: 2.5rem;
}

.newsletter-form-wrapper {
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
}

.newsletter-form-placeholder {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 121, 201, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--berry);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--pig);
    box-shadow: 0 0 0 3px rgba(255, 121, 201, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(77, 43, 65, 0.5);
}

.newsletter-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-form-placeholder {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .challenge-title {
        font-size: 2rem;
    }
}

/* Button: Outline Dark (for light backgrounds) */
.btn-outline-dark {
    background: transparent;
    color: var(--berry);
    border: 2px solid var(--berry);
}

.btn-outline-dark:hover {
    background: var(--berry);
    color: var(--white);
}

/* ============================================
   CEO/C-SUITE PAGE STYLES
   ============================================ */

/* Section 1: CEO Hero */
.ceo-hero {
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 100%);
    padding: 140px 0 100px;
}

.ceo-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ceo-hero-text {
    max-width: 600px;
}

.ceo-hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.ceo-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.ceo-hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ceo-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .ceo-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ceo-hero-text {
        order: 1;
    }
    
    .ceo-hero-image {
        order: 2;
        height: auto;
    }
    
    .ceo-hero-title {
        font-size: 2.25rem;
    }

    .ceo-hero-image img {
        height: auto;
        object-fit: contain;
    }
}

/* Section 2: CEO Problem */
.ceo-problem {
    padding: 5rem 0;
}

.ceo-problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ceo-problem-card {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.ceo-problem-card .card-icon {
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ceo-problem-card:hover {
    border-color: var(--pig);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.12);
}

.ceo-problem-card:hover .card-icon {
    transform: translateY(-4px);
    opacity: 1;
}

.ceo-problem-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.ceo-problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .ceo-problem-cards {
        grid-template-columns: 1fr;
    }
}

/* Section 3: CEO Solution */
.ceo-solution {
    padding: 5rem 0;
}

.ceo-solution-interactive {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

.ceo-solution-interactive .solution-card {
    background: rgba(156, 87, 132, 0.4);
    border: 2px solid rgba(77, 43, 65, 0.6);
    border-radius: var(--border-radius);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ceo-solution-interactive .solution-card:hover {
    background: rgba(77, 43, 65, 0.55);
    border-color: rgba(255, 121, 201, 0.4);
    transform: translateY(-4px);
}

.ceo-solution-interactive .solution-card.active {
    background: rgba(255, 121, 201, 0.18);
    border-color: var(--pig);
    border-width: 3px;
}

.ceo-solution-interactive .solution-card.active:hover {
    background: rgba(255, 121, 201, 0.22);
}

.ceo-solution-interactive .solution-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.ceo-solution-interactive .solution-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.solution-demo-area {
    position: relative;
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 500px;
}

.demo-content {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.demo-content.active {
    display: block;
}

.demo-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    padding: 2rem;
    text-align: center;
}

.demo-placeholder p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.placeholder-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 968px) {
    .ceo-solution-interactive {
        flex-direction: column;
        gap: 2rem;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
    }

    .solution-demo-area {
        min-height: 400px;
    }

    .demo-content iframe,
    .demo-placeholder {
        min-height: 400px;
    }
}

.ceo-solution-split {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.ceo-solution-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ceo-feature h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.ceo-feature p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.ceo-solution-demo {
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.dashboard-placeholder p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.placeholder-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 968px) {
    .ceo-solution-split {
        grid-template-columns: 1fr;
    }
}

/* Section 4: CEO Strategic */
.section-blue {
    background: var(--moss);
    padding: 5rem 0;
}

.ceo-strategic-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ceo-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-old,
.comparison-new {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.comparison-old img,
.comparison-new img {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.comparison-old h3,
.comparison-new h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pig);
    margin-bottom: 1rem;
}

.comparison-old p,
.comparison-new p {
    color: var(--berry);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--pig);
    font-weight: bold;
}

/* Section 5: CEO Alignment */
.ceo-alignment {
    padding: 5rem 0;
}

.ceo-hub-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 4rem auto;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--pig);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

/* Connection lines from center outwards */
.hub-center::before,
.hub-center::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 121, 201, 0.3);
    z-index: -1;
}

/* Vertical line (top) - from center edge to IT spoke */
.hub-center::before {
    height: 75px;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
}

/* Vertical line (bottom) - from center edge to Shop Floor spoke */
.hub-center::after {
    height: 75px;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
}

.hub-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.hub-spoke {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 3px solid var(--pig);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--berry);
    font-size: 0.9rem;
    z-index: 2;
}

/* Horizontal lines for Sales and Production */
.hub-spoke::before {
    content: '';
    position: absolute;
    background: rgba(255, 121, 201, 0.3);
    z-index: -1;
}

.hub-it {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* IT spoke - no line needed (handled by center::before) */
.hub-it::before {
    display: none;
}

.hub-production {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Production line - horizontal from center to spoke */
.hub-production::before {
    width: 75px;
    height: 2px;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.hub-floor {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Shop Floor - no line needed (handled by center::after) */
.hub-floor::before {
    display: none;
}

.hub-sales {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Sales line - horizontal from center to spoke */
.hub-sales::before {
    width: 75px;
    height: 2px;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.ceo-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ceo-pillar {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.ceo-pillar .card-icon {
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ceo-pillar:hover .card-icon {
    transform: scale(1.08);
    opacity: 1;
}

.ceo-pillar h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.ceo-pillar p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ceo-benefit {
    margin-top: 4rem;
    padding: 0;
    background: transparent;
}

.benefit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 239, 248, 0.6) 0%, rgba(255, 121, 201, 0.08) 100%);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: all 0.3s ease;
    align-items: center;
}

.benefit-content:hover {
    border-color: var(--pig);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
}

.benefit-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
}

.benefit-lightbulb {
    filter: drop-shadow(0 4px 12px rgba(255, 121, 201, 0.2));
}

.benefit-text {
    grid-column: 2;
}

.benefit-text h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.benefit-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.benefit-text strong {
    color: var(--berry);
    font-weight: 700;
}

@media (max-width: 968px) {
    .ceo-hub-diagram {
        width: 300px;
        height: 300px;
    }
    
    .hub-center {
        width: 120px;
        height: 120px;
    }
    
    /* Adjust vertical lines for smaller diagram */
    .hub-center::before,
    .hub-center::after {
        height: 60px;
    }
    
    .hub-center::before {
        top: -60px;
    }
    
    .hub-center::after {
        bottom: -60px;
    }
    
    .hub-spoke {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    /* Adjust horizontal lines for smaller diagram */
    .hub-production::before,
    .hub-sales::before {
        width: 60px;
    }
    
    .ceo-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .benefit-image img {
        max-width: 250px;
        margin: 0 auto;
    }

    .benefit-text h3 {
        font-size: 1.5rem;
    }

    .benefit-text p {
        font-size: 1.1rem;
    }

    .ceo-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ceo-hero-image {
        order: -1;
    }

    .comparison-old img,
    .comparison-new img {
        max-width: 100%;
    }
}

/* Section 6: CEO Financial */
.ceo-financial {
    padding: 5rem 0;
}

.ceo-financial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ceo-financial-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.ceo-financial-text {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ceo-financial-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pig);
    padding: 2rem;
    background: rgba(255, 121, 201, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--pig);
}

@media (max-width: 768px) {
    .ceo-financial-title {
        font-size: 2.25rem;
    }
    
    .ceo-financial-text {
        font-size: 1.15rem;
    }
    
    .ceo-financial-stat {
        font-size: 1.25rem;
    }
}

/* Section 7: CEO CTA */
.ceo-cta {
    padding: 5rem 0;
}

.ceo-cta-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
}

.ceo-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ceo-cta-text .btn {
    width: auto;
    align-self: flex-start;
}

.ceo-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-cta-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.ceo-cta-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.ceo-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .ceo-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ceo-cta-image {
        order: -1;
    }
    
    .ceo-cta-title {
        font-size: 2rem;
    }
    
    .ceo-cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ceo-cta-grid {
        gap: 1.5rem;
    }
    
    .ceo-cta-title {
        font-size: 1.75rem;
    }
    
    .ceo-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* CEO Hero Buttons */
.ceo-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Smooth Scroll */
.smooth-scroll {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset für sticky header */
}

/* Anchor-Links mit Header-Offset */
section[id] {
    scroll-margin-top: 100px;
}

/* ROI Calculator Styles */
.roi-calculator-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 121, 201, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.roi-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 121, 201, 0.2);
}

.roi-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.roi-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.roi-tab.active {
    color: var(--white);
    border-bottom-color: var(--pig);
}

.tab-icon {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.roi-content {
    margin-bottom: 2rem;
}

.roi-tab-content {
    display: none;
}

.roi-tab-content.active {
    display: block;
}

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

.roi-input-group {
    display: flex;
    flex-direction: column;
}

.roi-input-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.label-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.currency-symbol {
    color: var(--pig);
    font-weight: 700;
}

.input-combo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roi-slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 121, 201, 0.2);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.roi-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--pig);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 121, 201, 0.4);
}

.roi-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--pig);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 121, 201, 0.4);
}

.roi-number-input {
    width: 100%;
    padding: 0.5rem;
    background: rgba(255, 121, 201, 0.1);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-number-input:focus {
    outline: none;
    border-color: var(--pig);
    background: rgba(255, 121, 201, 0.15);
}

.roi-number-input::-webkit-inner-spin-button,
.roi-number-input::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

.roi-number-input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.roi-result {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 121, 201, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 2px solid var(--pig);
}

.result-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.result-amount {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--pig);
    line-height: 1;
    transition: all 0.3s ease;
}

.roi-footer {
    margin-bottom: 1.5rem;
}

.roi-controls {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.operating-days-control label,
.currency-control label {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.segmented-control {
    display: flex;
    background: rgba(255, 121, 201, 0.1);
    border-radius: 8px;
    padding: 3px;
    gap: 3px;
}

.segment {
    flex: 1;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.segment:hover {
    color: var(--white);
}

.segment.active {
    background: var(--pig);
    color: var(--white);
}

.currency-dropdown {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 121, 201, 0.1);
    border: 2px solid rgba(255, 121, 201, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-dropdown:focus {
    outline: none;
    border-color: var(--pig);
}

.currency-dropdown option {
    background: var(--berry);
    color: var(--white);
}

.roi-cta {
    text-align: center;
}

@media (max-width: 968px) {
    .roi-input-row {
        grid-template-columns: 1fr;
    }
    
    .roi-controls {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TODO: DELETE AFTER ALL SOLUTIONS PAGES REFACTORED
   ============================================
   OLD CEO/LEADERSHIP PAGE CLASSES - REPLACED BY .platform-section VARIANTS
   
   The following classes are deprecated and should be deleted once all
   solutions pages have been refactored to use the unified platform design system:
   
   Lines ~10000-10740 (approximate):
   - .ceo-problem → REPLACED BY .platform-section.section-light
   - .ceo-solution → REPLACED BY .platform-section.section-dark
   - .ceo-strategic → REPLACED BY .platform-section.section-highlight
   - .ceo-alignment → REPLACED BY .platform-section.section-light
   - .ceo-financial → REPLACED BY .platform-section.section-dark
   - .ceo-cta → REPLACED BY .platform-section.section-highlight
   
   KEPT (hero and component-specific styles):
   - .ceo-hero (unique hero design)
   - .ceo-problem-cards, .ceo-problem-card (card layout)
   - .ceo-solution-split, .ceo-solution-text, .ceo-solution-demo (feature grid)
   - .ceo-strategic-content, .ceo-comparison (comparison layout)
   - .ceo-hub-diagram, .ceo-pillars, .ceo-pillar (organization diagram)
   - .roi-calculator-card and all ROI calculator components (interactive tool)
   - .ceo-cta-title, .ceo-cta-subtitle (CTA text styling)
   ============================================ */

/* ============================================
   SOLUTIONS - PRODUCTION MANAGER PAGE
   ============================================ */

/* Section 1: Hero */
.prod-hero {
    padding: 140px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.prod-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.prod-hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.prod-hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Split Visual */
.prod-split-visual {
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.split-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.split-chaos {
    background: linear-gradient(135deg, rgba(77, 43, 65, 0.95), rgba(77, 43, 65, 0.85)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,121,201,0.2)"/><circle cx="80" cy="30" r="2" fill="rgba(255,121,201,0.2)"/><circle cx="40" cy="70" r="2" fill="rgba(255,121,201,0.2)"/><circle cx="70" cy="80" r="2" fill="rgba(255,121,201,0.2)"/></svg>');
    filter: blur(1px);
}

.split-control {
    background: linear-gradient(135deg, rgba(77, 43, 65, 0.7), rgba(77, 43, 65, 0.6));
}

.split-divider {
    background: var(--pig);
    box-shadow: 0 0 20px rgba(255, 121, 201, 0.5);
}

.split-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.split-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.split-overlay h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.split-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Section 2: Daily Struggle */
.prod-struggle {
    padding: 5rem 0;
}

/* DEPRECATED - MARK FOR DELETION: Replaced with .benefits-grid and .benefit-card */
/*
.struggle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.struggle-card {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
}

.struggle-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: var(--pig);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.struggle-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.struggle-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}
*/

/* Section 3: Floor Visibility */
.prod-visibility {
    padding: 5rem 0;
}

.visibility-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.visibility-feature {
    text-align: center;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 121, 201, 0.1);
    border: 2px solid var(--pig);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-large {
    width: 48px;
    height: 48px;
}

.visibility-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.visibility-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Fleet View Graphic */
.fleet-view-graphic {
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.fleet-machines {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
}

.fleet-machine {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.machine-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.fleet-machine span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.fleet-flow-arrows {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.flow-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pig), transparent);
}

.fleet-dashboard {
    text-align: center;
    background: var(--pig);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
}

.dashboard-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Section 4: Kiosk Mode */
.kiosk-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.kiosk-card {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.kiosk-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pig);
}

.kiosk-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.kiosk-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.kiosk-image-container {
    margin: 0 auto;
    max-width: 900px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.kiosk-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .kiosk-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Old Kiosk Styles - Keep for other pages if needed */
.prod-kiosk {
    padding: 5rem 0;
}

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

.kiosk-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.kiosk-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.kiosk-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kiosk-benefit {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--berry);
    margin-bottom: 0.5rem;
}

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

/* Tablet Mockup */
.tablet-mockup {
    background: linear-gradient(135deg, var(--berry), #3d2538);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.tablet-screen {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
}

.mock-app-header {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--berry);
    padding: 1rem;
    background: var(--peach);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.mock-app-status {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 0.75rem;
}

.mock-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-btn {
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

.mock-btn-start {
    background: #4ade80;
    color: white;
}

.mock-btn-pause {
    background: #fbbf24;
    color: white;
}

.mock-btn-issue {
    background: var(--pig);
    color: white;
}

/* Section 5: Proactive */
.prod-proactive {
    padding: 5rem 0;
}

/* Section 5: Reactive to Proactive - SVG Animation */
.simulation-wrapper { 
    width: 100%; 
    max-width: 900px; 
    margin: 3rem auto 0; 
    background: var(--white); 
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.main-svg { 
    width: 100%; 
    height: auto; 
    display: block; 
    font-family: 'Inter', sans-serif; 
}

.label-badge { 
    font-size: 10px; 
    font-weight: 700; 
    text-transform: uppercase; 
    alignment-baseline: middle; 
}

.label-badge.new { 
    fill: var(--pig); 
}

.label-badge.old { 
    fill: var(--text-light); 
}

.label-text { 
    font-size: 14px; 
    font-weight: 600; 
    fill: var(--berry); 
    alignment-baseline: middle; 
}

.status-label { 
    font-size: 14px; 
    fill: var(--text-light); 
    font-family: monospace; 
}

.status-value-normal, 
.status-value-delayed, 
.status-value-optimized { 
    font-size: 14px; 
    font-family: monospace; 
}

@media (max-width: 968px) {
    .simulation-wrapper {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .main-svg {
        font-size: 12px;
    }
    
    .label-badge {
        font-size: 8px;
    }
    
    .label-text {
        font-size: 12px;
    }
    
    .status-label,
    .status-value-normal,
    .status-value-delayed,
    .status-value-optimized {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .simulation-wrapper {
        padding: 1rem;
    }
    
    .main-svg {
        font-size: 10px;
    }
    
    .label-badge {
        font-size: 7px;
    }
    
    .label-text {
        font-size: 10px;
    }
}

/* DEPRECATED - scenario-comparison elements replaced with SVG animation */
/*
.scenario-comparison {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.scenario {
    background: rgba(255, 121, 201, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
}

.scenario-badge {
    position: absolute;
    top: -1rem;
    left: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scenario-badge-bad {
    background: #ef4444;
    color: white;
}

.scenario-badge-good {
    background: #10b981;
    color: white;
}

.scenario-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-step {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-arrow {
    color: var(--pig);
    font-size: 2rem;
    flex-shrink: 0;
}
*/

.proactive-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Section 6: Technical Proof */
.prod-technical {
    padding: 5rem 0;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.technical-card {
    background: var(--white);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
}

.technical-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.technical-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.technical-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Section 7: CTA */
.prod-cta {
    padding: 5rem 0;
}

.prod-cta-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.prod-cta-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .prod-hero-title {
        font-size: 2.5rem;
    }
    
    .prod-split-visual {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 4px 1fr;
        height: auto;
    }
    
    .split-divider {
        height: 4px;
        width: 100%;
    }
    
    .split-side {
        min-height: 200px;
    }
    
    /* DEPRECATED - MARK FOR DELETION */
    /*
    .struggle-grid {
        grid-template-columns: 1fr;
    }
    */
    
    .visibility-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fleet-machines {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .fleet-machine {
        flex-basis: calc(50% - 0.5rem);
    }
    
    .kiosk-layout {
        grid-template-columns: 1fr;
    }
    
    .tablet-mockup {
        transform: none;
    }
    
    .scenario-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .prod-cta-title {
        font-size: 2.25rem;
    }
}


@media (max-width: 768px) {
    .roi-calculator-card {
        padding: 1.5rem 1rem;
    }
    
    .roi-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .roi-tab {
        border-bottom: 2px solid rgba(255, 121, 201, 0.2);
        padding: 0.75rem 1rem;
    }
    
    .tab-label {
        font-size: 0.9rem;
    }
    
    .result-amount {
        font-size: 2.25rem;
    }
    
    .ceo-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ceo-hero-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   TODO: DELETE AFTER ALL SOLUTIONS PAGES REFACTORED
   ============================================
   OLD PRODUCTION MANAGER PAGE CLASSES - REPLACED BY .platform-section VARIANTS
   
   The following classes are deprecated and should be deleted once all
   solutions pages have been refactored to use the unified platform design system:
   
   Lines ~10837-11360 (approximate):
   - .prod-struggle → REPLACED BY .platform-section.section-light
   - .prod-visibility → REPLACED BY .platform-section.section-dark
   - .prod-kiosk → REPLACED BY .platform-section.section-light
   - .prod-proactive → REPLACED BY .platform-section.section-dark
   - .prod-technical → REPLACED BY .platform-section.section-light
   - .prod-cta → REPLACED BY .platform-section.section-highlight
   
   KEPT (hero and component-specific styles):
   - .prod-hero (unique hero design with split visual)
   - .prod-split-visual, .split-chaos, .split-control (split comparison)
   - .struggle-grid, .struggle-card (challenge cards)
   - .visibility-features, .visibility-feature (solution grid)
   - .fleet-view-graphic, .fleet-machines, .fleet-dashboard (fleet diagram)
   - .kiosk-layout, .kiosk-benefits, .tablet-mockup (kiosk interface)
   - .scenario-comparison, .scenario-timeline (before/after comparison)
   - .technical-grid, .technical-card (technology cards)
   - .prod-cta-title, .prod-cta-subtitle (CTA text styling)
   ============================================ */

/* Button: Outline Light (for dark backgrounds) */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--pig);
}

/* ============================================
   SOLUTIONS - WORKFLOW MANAGER PAGE
   ============================================ */

/* Section 1: Hero */
.workflow-hero {
    padding: 140px 0 100px;
    background: var(--berry);
    position: relative;
}

.workflow-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 121, 201, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 121, 201, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.workflow-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.workflow-hero-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.workflow-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pipeline Visual */
.pipeline-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pipeline-chaos,
.pipeline-clean {
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
}

.chaos-lines,
.clean-lines {
    width: 100%;
    height: 150px;
}

.pipeline-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.pipeline-transform {
    font-size: 3rem;
    color: var(--pig);
    font-weight: 800;
}

/* Section 2: Struggle */
.workflow-struggle {
    padding: 5rem 0;
}

.struggle-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.struggle-block {
    background: var(--white);
    border: 3px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.struggle-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pig);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.struggle-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.struggle-heading {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.struggle-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Section 3: Solution */
.workflow-solution {
    padding: 5rem 0;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.solution-feature {
    position: relative;
    padding-left: 4rem;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--pig);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: "Sofia Sans Condensed", sans-serif;
}

.solution-feature-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.solution-feature-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Data Flow Container - Two Column Layout */
.data-flow-container {
    display: grid;
    grid-template-columns: 1.9fr 1fr;  /* Links 1.9 Teile, Rechts 1 Teil = ca. 65% zu 35% */
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.data-flow-left iframe {
    display: block;
}

.data-flow-right {
    display: flex;
    align-items: center;
    min-height: 450px;
}

/* Terminal Window Styling */
.terminal-window {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 121, 201, 0.3);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #d1d1d1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    width: 100%;
    backdrop-filter: blur(5px);
}

.terminal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    padding-bottom: 4px;
    color: #fff;
    font-size: 0.8rem;
}

.terminal-indicator {
    color: var(--pig);
}

.log-line {
    margin-bottom: 0.4rem;
}

.log-time {
    color: #888;
    margin-right: 8px;
    user-select: none;
    font-size: 0.75em;
}

.log-dir-out {
    color: var(--pig);
    font-weight: bold;
    margin-right: 4px;
}

.log-dir-in {
    color: #FFEFF8;
    font-weight: bold;
    margin-right: 4px;
}

.log-sys {
    color: #fff;
    font-weight: bold;
}

.log-val {
    color: #eee;
}

.cursor {
    display: inline-block;
    width: 7px;
    height: 13px;
    background: var(--pig);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 4px;
}

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

/* Responsive */
@media (max-width: 968px) {
    .data-flow-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .data-flow-right {
        min-height: auto;
    }
    
    .data-flow-left iframe {
        height: 350px;
    }
    
    .terminal-window {
        font-size: 0.7rem;
        padding: 14px;
    }
    
    .terminal-header {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .struggle-icon svg[style*="scale(2.0)"] {
        transform: scale(1.5) !important;
        top: 6px !important;
    }
    
    .data-flow-left iframe {
        height: 300px;
    }
    
    .terminal-window {
        font-size: 0.65rem;
        padding: 12px;
    }
    
    .log-time {
        display: block;
        margin-bottom: 2px;
    }
    
    .toolkit-iframe-mobile {
        width: 280px;
        height: 498px;
    }
    
    .toolkit-iframe-tablet {
        height: 350px;
    }
    
    .toolkit-app-container {
        min-height: 350px;
    }
}

/* OLD Data Flow Diagram Styles */
.data-flow-diagram {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    overflow: hidden;
}

.data-flow-diagram iframe {
    display: block;
}



.flow-node-cococo {
    background: var(--pig);
    transform: scale(1.1);
}

.node-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.node-label {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.node-sublabel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.connector-arrow {
    font-size: 2rem;
    color: var(--pig);
    font-weight: 800;
}

.connector-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flow-bidirectional {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.flow-bid-left {
    left: 20%;
    bottom: 1rem;
}

.flow-bid-right {
    right: 20%;
    bottom: 1rem;
}

.bid-arrow {
    font-size: 1.5rem;
    color: rgba(255, 121, 201, 0.6);
}

.bid-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: "JetBrains Mono", monospace;
}

/* Section 4: Toolkit */
.workflow-toolkit {
    padding: 5rem 0;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.toolkit-card {
    background: var(--white);
    border: 3px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.toolkit-card:hover {
    border-color: var(--pig);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.toolkit-app-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 667px;
}

.toolkit-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.toolkit-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.toolkit-iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.toolkit-iframe-mobile {
    width: 375px;
    height: 667px;
    max-width: 100%;
}

.toolkit-iframe-tablet {
    width: 100%;
    height: 667px;
    max-width: 100%;
}

.toolkit-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.toolkit-text {
    color: var(--text-light);
    line-height: 1.7;
}

.toolkit-cta {
    text-align: center;
}

/* Section 5: Integration */
.workflow-integration {
    padding: 5rem 0;
}

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

.integration-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.integration-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.integration-specs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.spec-icon {
    width: 32px;
    height: 32px;
    background: var(--pig);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    flex-shrink: 0;
}

.spec-content h4 {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.spec-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.standards-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 121, 201, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.2);
    border-radius: var(--border-radius);
}

.standard-badge {
    background: var(--berry);
    border: 2px solid var(--pig);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Section 6: CTA */
.workflow-cta {
    padding: 5rem 0;
}

.workflow-cta-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.workflow-cta-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .workflow-hero-title {
        font-size: 2.5rem;
    }
    
    .pipeline-visual {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .pipeline-transform {
        transform: rotate(90deg);
    }
    
    .struggle-blocks {
        grid-template-columns: 1fr;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .data-flow-diagram {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flow-connector {
        flex-direction: row;
    }
    
    .connector-arrow {
        transform: rotate(90deg);
    }
    
    .flow-bidirectional {
        position: relative;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .toolkit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toolkit-app-container {
        min-height: 400px;
    }
    
    .toolkit-iframe-mobile {
        width: 320px;
        height: 568px;
    }
    
    .toolkit-iframe-tablet {
        height: 400px;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
    }
    
    .standards-box {
        grid-template-columns: 1fr;
    }
    
    .workflow-cta-title {
        font-size: 2.25rem;
    }
}

/* ============================================
   TODO: DELETE AFTER ALL SOLUTIONS PAGES REFACTORED
   ============================================
   OLD WORKFLOW PAGE CLASSES - REPLACED BY .platform-section VARIANTS
   
   The following classes are deprecated and should be deleted once all
   solutions pages have been refactored to use the unified platform design system:
   
   Lines ~11461-11890 (approximate):
   - .workflow-struggle → REPLACED BY .platform-section.section-light
   - .workflow-solution → REPLACED BY .platform-section.section-dark
   - .workflow-toolkit → REPLACED BY .platform-section.section-light
   - .workflow-integration → REPLACED BY .platform-section.section-dark
   - .workflow-cta → REPLACED BY .platform-section.section-highlight
   
   KEPT (hero and component-specific styles):
   - .workflow-hero (unique hero design with pipeline visual)
   - .pipeline-visual, .pipeline-chaos, .pipeline-clean (hero animation)
   - .struggle-blocks, .struggle-block (challenge cards)
   - .solution-features, .solution-feature (solution grid)
   - .data-flow-diagram, .flow-node, .flow-connector (data flow diagram)
   - .toolkit-grid, .toolkit-card (toolkit cards)
   - .integration-content, .integration-specs, .standards-box (integration display)
   - .workflow-cta-title, .workflow-cta-subtitle (CTA text styling)
   ============================================ */

/* ============================================
   SOLUTIONS - DEVELOPER PAGE
   ============================================ */

/* Section 1: Hero - Developer Experience */
.dev-hero {
    padding: 140px 0 100px;
    background: var(--peach);
    position: relative;
    overflow: hidden;
}

.dev-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 121, 201, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 121, 201, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* ============================================
   TODO: DELETE - Old dev-hero-content (replaced by ceo-hero-grid)
   ============================================ */
/* .dev-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.dev-hero-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 3.75rem;
    color: var(--berry);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.dev-hero-subtitle {
    font-size: 1.35rem;
    color: var(--berry);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.dev-hero-subtitle strong {
    color: var(--pig);
    font-weight: 700;
} */
/* ============================================ */

/* Terminal Window */
.terminal-window {
    max-width: 1000px;
    margin: 0 auto;
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.terminal-header {
    background: #161b22;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #30363d;
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.terminal-title {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    color: #8b949e;
}

.terminal-body {
    padding: 1.5rem;
    overflow-x: auto;
}

.code-block {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c9d1d9;
    margin: 0;
}

.code-comment {
    color: #6a9955; /* VS Code Grün */
    font-style: italic;
}

.code-key {
    color: #9cdcfe; /* VS Code Hellblau für Properties */
}

.code-string {
    color: #ce9178; /* VS Code Orange/Braun für Strings */
}

.code-number {
    color: #b5cea8; /* VS Code Hellgrün für Zahlen */
}

.code-keyword {
    color: #c586c0; /* VS Code Lila für Keywords */
    font-weight: bold;
}

.code-const {
    color: #4fc1ff; /* VS Code Blau für Konstanten */
}

.code-function {
    color: #dcdcaa; /* VS Code Gelb für Funktionen */
}

.code-param {
    color: #9cdcfe; /* VS Code Hellblau für Parameter */
}

/* Section 2: The Problem */
.dev-problem {
    padding: 5rem 0;
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--peach);
    border: 3px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--pig);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    /* High-res images (256x256) für perfekte Retina-Darstellung */
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.problem-heading {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.problem-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Section 3: The Solution */
.dev-solution {
    padding: 5rem 0;
    background: var(--berry);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: var(--peach);
    border: 2px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--pig);
    background: var(--peach, 0.95);
    transform: translateY(-4px);
}

.solution-number {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    background: var(--pig);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.solution-heading {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.solution-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.inline-code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9em;
    background: rgba(255, 121, 201, 0.15);
    color: var(--pig);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.text-link {
    color: var(--pig);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.text-link:hover {
    color: #ff5eb0;
    transform: translateX(4px);
}

/* Architecture Diagram */
.architecture-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.3);
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.arch-node {
    background: rgba(77, 43, 65, 0.6);
    border: 2px solid rgba(255, 121, 201, 0.4);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.arch-node:hover {
    border-color: var(--pig);
    transform: scale(1.05);
}

.arch-node-primary {
    background: var(--pig);
    border-color: var(--pig);
    transform: scale(1.1);
}

.arch-node-primary:hover {
    transform: scale(1.15);
}

.arch-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.arch-label {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.arch-sublabel {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.arch-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 121, 201, 0.5);
}

.arrow-head {
    font-size: 2rem;
    color: var(--pig);
    font-weight: 800;
    margin-top: -1rem;
}

.arrow-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: "JetBrains Mono", monospace;
    text-align: center;
    line-height: 1.3;
}

/* Architecture Diagram Iframe Wrapper */
.architecture-diagram-wrapper {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 121, 201, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.architecture-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    background: transparent;
}

/* Section 4: Customization */
.dev-customization {
    padding: 5rem 0;
    background: var(--white);
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.custom-card {
    background: var(--white);
    border: 3px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-card:hover {
    border-color: var(--pig);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.custom-icon {
    color: var(--pig);
    margin-bottom: 1.5rem;
}

.custom-heading {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.custom-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Code Example */
/* VS Code Editor Simulation */
.code-example {
    background: #1e1e1e; /* Original VS Code Dark Background */
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Der Header (Tabs & Traffic Lights) */
.code-example-header {
    background: #252526; /* VS Code Header Grau */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1e1e1e;
}

/* Simuliert die Mac-Ampel-Buttons */
.code-example-header::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56; /* Rot */
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f; /* Gelb & Grün */
    margin-right: 60px; /* Abstand zum Filename */
}

/* Der Dateiname als "Tab" */
.code-filename {
    color: #ffffff;
    background: #1e1e1e;
    padding: 5px 15px;
    border-radius: 5px 5px 0 0;
    font-size: 13px;
    border-top: 2px solid #FF79C9; /* Pinker Akzent für CoCoCo Branding */
}

.code-language {
    display: none; /* Brauchen wir visuell nicht, Dateiendung reicht */
}

/* Der Code Body */
.code-example-body {
    padding: 20px;
    color: #d4d4d4; /* Standard VS Code Textfarbe */
    overflow-x: auto;
}

/* Section 5: Tech Stack */
.dev-tech-stack {
    padding: 5rem 0;
    background: var(--berry);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.tech-category {
    text-align: center;
}

.tech-category-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-badge {
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 121, 201, 0.15);
    border: 2px solid var(--pig);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--pig);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 121, 201, 0.3);
}

/* Section 6: CTA */
.dev-cta {
    padding: 5rem 0;
    background: var(--white);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--pig) 0%, #4d2b41 100%);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 239, 248, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 239, 248, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.dev-cta-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.dev-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* TODO: DELETE - Old dev-hero styles (now using ceo-hero-title)
    .dev-hero-title {
        font-size: 2.5rem;
    }

    .dev-hero-subtitle {
        font-size: 1.1rem;
    } */

    .dev-hero .terminal-window {
        margin-top: 3rem;
    }

    .terminal-body {
        padding: 1.2rem;
    }

    .code-block {
        font-size: 0.75rem;
        line-height: 1.5;
    }

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

    .problem-icon img {
        width: 56px;
        height: 56px;
    }

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

    .architecture-diagram {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .architecture-diagram-wrapper {
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .architecture-iframe {
        height: 350px;
    }

    .arch-arrow {
        flex-direction: row;
    }

    .arrow-line {
        width: 2px;
        height: 60px;
    }

    .arrow-head {
        transform: rotate(90deg);
        margin-top: 0;
        margin-left: -1rem;
    }

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

    .code-example {
        font-size: 13px;
        margin-top: 30px;
    }

    .code-example-header::before {
        width: 10px;
        height: 10px;
        box-shadow: 16px 0 0 #ffbd2e, 32px 0 0 #27c93f;
        margin-right: 45px;
    }

    .code-filename {
        font-size: 12px;
        padding: 4px 12px;
    }

    .code-example-body {
        padding: 15px;
        font-size: 12px;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dev-cta-title {
        font-size: 2.25rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .problem-icon img {
        width: 48px;
        height: 48px;
    }

    .dev-hero .terminal-window {
        margin-top: 2rem;
    }

    .terminal-body {
        padding: 1rem;
    }

    .code-block {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .terminal-header {
        padding: 0.6rem 0.8rem;
    }

    .terminal-title {
        font-size: 0.75rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .architecture-diagram-wrapper {
        padding: 1rem;
        margin-top: 2rem;
    }

    .architecture-iframe {
        height: 300px;
    }

    .code-example {
        font-size: 12px;
        margin-top: 25px;
    }

    .code-example-header::before {
        width: 8px;
        height: 8px;
        box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #27c93f;
        margin-right: 35px;
    }

    .code-filename {
        font-size: 11px;
        padding: 3px 10px;
    }

    .code-example-body {
        padding: 12px;
        font-size: 11px;
    }
}

/* ============================================
   TODO: DELETE AFTER REFACTORING ALL SOLUTIONS PAGES
   OLD SECTION-SPECIFIC CLASSES - NOW USING .platform-section
   ============================================ */

/*
.dev-problem { ... } → REPLACED BY .platform-section.section-light
.dev-solution { ... } → REPLACED BY .platform-section.section-dark  
.dev-customization { ... } → REPLACED BY .platform-section.section-light
.dev-tech-stack { ... } → REPLACED BY .platform-section.section-dark
.dev-cta { ... } → REPLACED BY .platform-section.section-highlight

DELETE THESE AFTER ALL SOLUTIONS PAGES ARE REFACTORED:
- Lines 12009-12060 (.dev-problem section styles)
- Lines 12061-12070 (.dev-solution section styles)
- Lines 12284-12290 (.dev-customization section styles)
- Lines 12350-12360 (.dev-tech-stack section styles)
- Lines 12380-12400 (.dev-cta section styles)
*/

/* ============================================
   PARTNER PROGRAM PAGE
   ============================================ */

/* Section 1: Hero - Business Opportunity */
.partner-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--berry) 0%, #4d2b41 100%);
    position: relative;
}

.partner-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.partner-hero-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 3.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.partner-hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.partner-hero-subtitle strong {
    color: var(--pig);
    font-weight: 700;
}

/* Growth Chart */
.growth-chart {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.chart-container {
    position: relative;
    margin-bottom: 2rem;
}

.chart-line {
    margin-bottom: 2rem;
}

.line-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--berry);
}

.chart-svg {
    width: 100%;
    height: 120px;
}

.chart-axis {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 0 1rem;
}

/* Section 2: The Partner Trap */
.partner-trap {
    padding: 5rem 0;
    background: var(--white);
}

.trap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.trap-card {
    background: #f8f9fa;
    border: 3px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trap-card:hover {
    border-color: var(--pig);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.trap-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.trap-heading {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.trap-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Section 3: The Solution */
.partner-solution {
    padding: 5rem 0;
    background: var(--peach);
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.partner-feature {
    background: var(--white);
    border: 3px solid var(--pig);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 121, 201, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Section 4: Business Case */
.partner-business-case {
    padding: 5rem 0;
    background: var(--white);
}

.business-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    border: 3px solid var(--peach);
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--pig);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.benefit-number {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--pig);
    line-height: 1;
}

.benefit-card .benefit-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--berry);
    margin: 0;
}

.benefit-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Revenue Bar */
.benefit-visual {
    margin-top: 1rem;
}

.revenue-bar {
    background: #f0f0f0;
    border-radius: 12px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.revenue-fill {
    background: linear-gradient(90deg, var(--pig) 0%, #ff5eb0 100%);
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
}

.revenue-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.service-tag {
    background: var(--peach);
    color: var(--berry);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--pig);
}

/* Stickiness Metric */
.stickiness-metric {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.metric-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pig) 0%, #ff5eb0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 121, 201, 0.3);
}

.metric-value {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.metric-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Section 5: Partner Success */
.partner-success {
    padding: 5rem 0;
    background: var(--peach);
}

.success-profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.profile-card {
    background: var(--white);
    border: 3px solid var(--pig);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 121, 201, 0.2);
}

.profile-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.profile-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--berry);
    margin-bottom: 1rem;
}

.profile-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.profile-benefit {
    margin-top: 1.5rem;
}

.benefit-badge {
    display: inline-block;
    background: var(--pig);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Section 6: CTA */
.partner-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--berry) 0%, #4d2b41 100%);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-cta-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.partner-cta-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Partner Stats */
.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--pig);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .partner-hero-title {
        font-size: 2.5rem;
    }

    .partner-hero-subtitle {
        font-size: 1.1rem;
    }

    .growth-chart {
        padding: 2rem;
    }

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

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

    .benefit-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-number {
        font-size: 3rem;
    }

    .stickiness-metric {
        justify-content: center;
    }

    .success-profiles {
        grid-template-columns: 1fr;
    }

    .partner-cta-title {
        font-size: 2.5rem;
    }

    .partner-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   TODO: DELETE AFTER REFACTORING ALL SOLUTIONS PAGES
   OLD PARTNER-SPECIFIC CLASSES - NOW USING .platform-section
   ============================================ */

/*
.partner-trap { ... } → REPLACED BY .platform-section.section-light
.partner-solution { ... } → REPLACED BY .platform-section.section-highlight
.partner-business-case { ... } → REPLACED BY .platform-section.section-light
.partner-success { ... } → REPLACED BY .platform-section.section-highlight
.partner-cta { ... } → REPLACED BY .platform-section.section-dark

DELETE THESE AFTER ALL SOLUTIONS PAGES ARE REFACTORED:
- Lines ~12580-12600 (.partner-trap section styles)
- Lines ~12620-12640 (.partner-solution section styles)
- Lines ~12700-12720 (.partner-business-case section styles)
- Lines ~12830-12850 (.partner-success section styles)
- Lines ~12900-12920 (.partner-cta section styles)
*/

/* ============================================
   NEWSLETTER PAGE
   ============================================ */

.newsletter-page {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.newsletter-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left Column: Value Proposition */
.newsletter-value {
    max-width: 600px;
}

.newsletter-eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pig);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.newsletter-headline {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--berry);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.newsletter-subline {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.benefit-text strong {
    color: var(--berry);
    font-weight: 700;
}

.newsletter-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--peach);
    border-bottom: 2px solid var(--peach);
    margin-bottom: 1.5rem;
}

.social-proof-number {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--pig);
    line-height: 1;
}

.social-proof-text {
    font-weight: 600;
    color: var(--berry);
    font-size: 1.1rem;
}

.newsletter-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Right Column: Form Card */
.newsletter-form-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--peach);
    width: 100%;
    max-width: 500px;
    min-height: 400px;
}

#hubspot-newsletter-container {
    min-height: 350px;
}

/* Newsletter CTA Wrapper on Index */
.newsletter-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .newsletter-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-headline {
        font-size: 2.5rem;
    }

    .newsletter-value {
        max-width: 100%;
    }

    .newsletter-form-card {
        padding: 2rem;
    }
}

/* ============================================
   LANDING PAGE STYLES
   Reusable styles for event/webinar landing pages
   ============================================ */

/* Landing Page Body */
body.landing-page {
    background: var(--white);
}

/* Landing Hero Section */
.landing-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--white) 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L30 60 M0 30 L60 30" stroke="rgba(77,43,65,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Partnership Split Layout */
.partnership-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.partner-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(77, 43, 65, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(77, 43, 65, 0.12);
}

.partner-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.partner-block h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--berry);
    margin-bottom: 0.5rem;
}

.partner-slogan {
    font-size: 1rem;
    color: var(--moss);
    font-weight: 600;
    font-style: italic;
}

/* Partnership Connector */
.partnership-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--pig) 0%, var(--berry) 100%);
}

.connector-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pig);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 121, 201, 0.3);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--berry);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--moss);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Hero Date */
.hero-date {
    font-size: 1.3rem;
    color: var(--pig);
    margin: 1rem 0 1.5rem;
    font-weight: 600;
}

.hero-date strong {
    font-weight: 800;
}

/* Who This Is For Grid */
.who-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.who-for-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 121, 201, 0.05);
    border-radius: 12px;
    border: 2px solid var(--peach);
    transition: all 0.3s ease;
}

.who-for-item:hover {
    transform: translateY(-4px);
    border-color: var(--pig);
    box-shadow: 0 8px 24px rgba(255, 121, 201, 0.15);
}

.who-for-item .check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--pig);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.who-for-item .feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .who-for-item .feature-icon {
        width: 48px;
        height: 48px;
    }
}

.who-for-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ============================================
   ANIMATED HERO SECTION (IPN)
   ============================================ */

/* Animated Hero Container */
.ipn-hero-animated {
    background: #486a8d;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

/* Canvas Background */
.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Dark Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(11, 17, 32, 0.7) 0%,
        rgba(11, 17, 32, 0.5) 50%,
        rgba(11, 17, 32, 0.8) 100%
    );
    z-index: 2;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
}

/* Logo Partnership */
.logo-partnership {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.partner-column:first-child {
    justify-self: end;
}

.partner-column:last-child {
    justify-self: start;
}

.logo-separator-column {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 6px;
    margin-top: 37px;
    gap: 0;
    padding: 0;
}

.logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.partner-logo {
    height: 100%;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* IPN Logo - Crop excess padding */
.ipn-logo {
    object-fit: cover;
    object-position: center;
    height: 75px;
    width: 220px;
}

/* CoCoCo Logo - Match height */
.cococo-logo {
    height: 75px;
    width: auto;
}

/* Logo Connection */
.logo-connection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    height: 6px;
    margin: 0;
    padding: 0;
}

.connection-line {
    height: 6px;
    width: 80px;
    border-radius: 3px;
    margin: 0 -4px;
    position: relative;
}

.connection-line.ipn-line {
    background: linear-gradient(to right, rgba(72, 106, 141, 0.3), #486a8d);
    transform-origin: left;
    transform: scaleX(0);
    animation: grow-to-right 1.5s ease-out forwards;
}

.connection-line.cococo-line {
    background: linear-gradient(to left, rgba(255, 121, 201, 0.3), #FF79C9);
    transform-origin: right;
    transform: scaleX(0);
    animation: grow-to-left 1.5s ease-out forwards;
}

.connection-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #486a8d, 0 0 0 6px #FF79C9;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: scale(0);
    animation: appear-dot 0.6s ease-out 1.4s forwards, glow-dot 2s ease-in-out 2s infinite;
}

/* Connection Animation - Lines grow from logos to center using scale */
@keyframes grow-to-right {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes grow-to-left {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Dot appears when lines meet */
@keyframes appear-dot {
    0% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0 0 #486a8d, 0 0 0 0 #FF79C9;
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 3px #486a8d, 0 0 0 6px #FF79C9;
    }
}

/* Subtle glow after connection is made */
@keyframes glow-dot {
    0%, 100% { 
        box-shadow: 0 0 0 3px #486a8d, 0 0 0 6px #FF79C9;
    }
    50% { 
        box-shadow: 0 0 0 4px #486a8d, 0 0 0 8px #FF79C9, 0 0 12px rgba(255, 121, 201, 0.5);
    }
}

/* Logo Separator (old style, keep for fallback) */
.logo-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    display: none;
}

.slogan-divider {
    display: none;
}

/* Slogan Styles */
.slogan {
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.ipn-slogan {
    color: rgba(255, 255, 255, 0.9);
}

.cococo-slogan {
    color: #FF79C9;
}

/* Hero Content - Override for dark theme */
.ipn-hero-animated .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ipn-hero-animated .hero-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ipn-hero-animated .hero-date {
    font-size: 1.4rem;
    color: #FF66CC;
    margin: 1rem 0 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 102, 204, 0.5);
}

.ipn-hero-animated .hero-date strong {
    font-weight: 800;
}

.ipn-hero-animated .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ipn-hero-animated .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ipn-hero-animated .btn-primary {
    background: #FF66CC;
    color: #FFFFFF;
    font-weight: 700;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 102, 204, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ipn-hero-animated .btn-primary:hover {
    background: #FF99DD;
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 102, 204, 0.6);
}

/* Landing Sections */
.landing-section {
    padding: 80px 20px;
}

.landing-section:nth-child(even):not(.offer-section) {
    background: var(--peach);
}

.section-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    color: var(--berry);
    margin-bottom: 2rem;
}

/* Intro Section */
.intro-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(77, 43, 65, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(77, 43, 65, 0.12);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--berry);
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--moss);
    line-height: 1.5;
}

/* Event Timeline */
.event-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-timeline.single-event {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(77, 43, 65, 0.1);
    position: relative;
    border-top: 4px solid var(--pig);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(77, 43, 65, 0.15);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pig) 0%, var(--berry) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 121, 201, 0.3);
}

.event-date-badge .date-icon {
    font-size: 1.1rem;
}

.event-date-badge strong {
    font-weight: 700;
}

.event-badge {
    display: inline-block;
    background: var(--pig);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.event-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--berry);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

/* Topics Grid Layout */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.topic-item {
    padding: 1.5rem;
    background: rgba(255, 121, 201, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--pig);
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: rgba(255, 121, 201, 0.1);
    border-left-color: var(--berry);
    transform: translateX(4px);
}

.topic-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--berry);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.topic-description {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.9;
}

.powered-by {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pig);
    font-style: italic;
    margin-top: 0.5rem;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--moss);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--peach);
}

.date-icon {
    font-size: 1.3rem;
}

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

.event-topics li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(77, 43, 65, 0.1);
    line-height: 1.6;
    color: var(--text-dark);
}

.event-topics li:last-child {
    border-bottom: none;
}

.event-topics li strong {
    color: var(--berry);
    display: block;
    margin-bottom: 0.5rem;
}

.event-topics li br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

/* Offer Section - Highlighted */
.offer-section {
    background: var(--berry);
    color: white;
}

.offer-section .section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Offer Steps Layout */
.offer-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.offer-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF79C9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 121, 201, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-subtitle {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #FF79C9;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.step-description {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.7;
}

.offer-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-content {
    flex: 1;
}

.offer-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 300px;
}

.offer-icon-item {
    width: 120px;
    height: 120px;
    background: rgba(255, 121, 201, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 121, 201, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.offer-icon-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 121, 201, 0.35);
    border-color: #FF79C9;
    box-shadow: 0 12px 32px rgba(255, 121, 201, 0.3);
}

.offer-features {
    margin-top: 2rem;
}

.offer-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-feature:last-child {
    border-bottom: none;
}

.offer-feature .check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #FF79C9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
}

.offer-feature h4 {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 0.25rem 0;
    color: white;
}

.offer-feature p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .offer-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-step {
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .offer-layout {
        flex-direction: column;
        gap: 3rem;
    }
    
    .offer-icon-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
        gap: 1rem;
    }
    
    .offer-icon-item {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .offer-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Registration Section */
.registration-section {
    background: var(--white);
}

.registration-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--moss);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(77, 43, 65, 0.1);
}

.form-placeholder {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(77, 43, 65, 0.2);
    border-radius: 8px;
}

/* Responsive Design for Landing Pages */
@media (max-width: 968px) {
    .landing-hero {
        padding: 80px 20px 60px;
    }

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

    .partnership-connector {
        flex-direction: row;
        margin: 1rem 0;
    }

    .connector-line {
        width: 60px;
        height: 2px;
    }

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

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

    .hero-date {
        font-size: 1.1rem;
    }

    /* Animated Hero Mobile */
    .ipn-hero-animated {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .logo-partnership {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-column:first-child,
    .partner-column:last-child {
        justify-self: center;
    }

    .logo-separator-column {
        display: none;
    }
    
    .logo-connection {
        height: 4px;
    }
    
    .connection-line {
        width: 40px;
        height: 4px;
    }
    
    .connection-dot {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 2px #486a8d, 0 0 0 4px #FF79C9;
    }

    .logo-wrapper {
        height: 60px;
        padding: 0.75rem 1.5rem;
        max-width: 100%;
    }

    .ipn-logo,
    .cococo-logo {
        height: 55px;
    }

    .ipn-logo {
        width: 170px;
    }

    .logo-separator {
        font-size: 2rem;
    }

    .partnership-slogans {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .slogan-divider {
        display: none;
    }

    .slogan {
        font-size: 0.85rem;
    }

    .ipn-hero-animated .hero-title {
        font-size: 2.2rem;
    }

    .ipn-hero-animated .hero-date {
        font-size: 1.1rem;
    }

    .ipn-hero-animated .hero-subtitle {
        font-size: 1.1rem;
    }

    .ipn-hero-animated .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        max-width: 100%;
        padding: 0 20px;
    }

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

    .who-for-item {
        padding: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .event-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-timeline.single-event {
        max-width: 100%;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .event-date-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .topic-item {
        padding: 1.25rem;
    }
    
    .topic-title {
        font-size: 1.05rem;
    }
    
    .topic-description {
        font-size: 0.9rem;
    }

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

    .form-container {
        padding: 2rem;
    }

    .landing-section {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .partner-block {
        padding: 1.5rem;
    }

    .partner-block h3 {
        font-size: 1.5rem;
    }

    .partner-icon {
        font-size: 2.5rem;
    }

    .event-card {
        padding: 2rem 1.5rem;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .offer-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}
