/* ============================================================================
   NEWS CSS - höchstmass staff GmbH
   ============================================================================
   Page-specific styles for the News overview pages (DE/EN).
   Uses existing design tokens from base.css (CSS variables).
   ============================================================================ */

/* ============================================
   HERO
============================================ */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.88) 0%, rgba(21, 40, 64, 0.94) 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.22) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.28);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--success);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* BUTTON-FIX: btn-secondary on dark background */
.hero .btn-secondary,
.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover,
.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   SECTION LABEL
============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ============================================
   FEATURED SECTION
============================================ */
.featured-section {
    padding: var(--section-padding);
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    margin-top: 50px;
}

.featured-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 520px;
    box-shadow: var(--shadow-xl);
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-main:hover img {
    transform: scale(1.05);
}

.featured-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 40, 64, 0.92) 0%, rgba(21, 40, 64, 0.35) 60%, transparent 100%);
}

.featured-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.95);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.featured-main-content h3 {
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
}

.featured-main-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 560px;
}

.featured-meta {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.featured-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-side-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 250px;
}

.featured-side-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    background: linear-gradient(to top, rgba(21, 40, 64, 0.9) 0%, rgba(21, 40, 64, 0.3) 70%, transparent 100%);
}

.featured-side-content .category {
    display: inline-block;
    background: rgba(230, 126, 34, 0.95);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-side-content h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.featured-side-content .date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.featured-side-card > a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ============================================
   CATEGORIES
============================================ */
.categories-section {
    padding: 70px 0;
    background: var(--gray-50);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--gray-200);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 126, 34, 0.35);
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    flex-shrink: 0;
}

.category-content h4 {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px;
}

.category-content span {
    color: var(--gray-500);
    font-size: 13px;
}

/* ============================================
   NEWS GRID
============================================ */
.news-section {
    padding: var(--section-padding);
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 1px solid var(--gray-200);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(230, 126, 34, 0.95);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.news-card-content {
    padding: 22px;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 12px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-card-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.news-card > a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.load-more {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(230, 126, 34, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
    padding: 90px 0;
    background: var(--gray-50);
}

.newsletter-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 44px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
}

.newsletter-container h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
}

.newsletter-container p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-300);
    font-size: 15px;
}

.newsletter-form button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.newsletter-note {
    color: var(--gray-500);
    font-size: 13px;
    margin: 0;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.22) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.final-cta h2 span {
    color: var(--accent);
}

.final-cta > .container > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 18px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
}

.trust-badge i {
    color: var(--success);
}

/* Final CTA Badges (alternative badge styling for news detail pages) */
.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.final-cta__badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.final-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 18px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
}

.final-cta__badge i {
    color: var(--success);
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.contact-item a:hover {
    color: var(--accent-light);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1000px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-main {
        height: 460px;
    }

    .featured-side {
        flex-direction: row;
    }

    .featured-side-card {
        height: 220px;
        flex: 1;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 150px 0 100px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .featured-main-content {
        padding: 26px;
    }

    .featured-main-content h3 {
        font-size: 24px;
    }

    .featured-side {
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .final-cta h2 {
        font-size: 34px;
    }
}

/* ============================================================================
   NEWS DETAIL PAGE STYLES
   ============================================================================
   Styles specific to individual news article pages.
   ============================================================================ */

/* ============================================
   HERO META (News Detail)
============================================ */
.hero-meta,
.news-detail-hero .hero-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.hero-meta-item i {
    color: var(--accent);
    opacity: 0.9;
}

/* ============================================
   ARTICLE INTRO
============================================ */
.article-intro {
    padding: var(--section-padding);
    background: var(--white);
}

.article-intro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

.article-intro-content p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 28px;
}

.article-intro-content p:first-of-type {
    font-size: 20px;
    color: var(--gray-700);
    font-weight: 500;
}

.article-intro-content p:last-child {
    margin-bottom: 0;
}

.article-sidebar {
    position: sticky;
    top: 120px;
}

/* ============================================
   COMPANY INFO CARD
============================================ */
.company-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.company-logo {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.company-logo img {
    max-width: 200px;
    height: auto;
}

.company-info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.company-info-card h3 i {
    color: var(--primary);
}

.company-info-card > p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.company-highlight {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--primary);
    margin-bottom: 16px;
}

.company-highlight:last-of-type {
    margin-bottom: 0;
}

.company-highlight-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.company-highlight-text {
    font-size: 15px;
    color: var(--gray-800);
    font-weight: 600;
}

.company-cta {
    margin-top: 24px;
}

.company-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.company-cta a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES SECTION (News Detail)
============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================
   SYNERGY SECTION
============================================ */
.synergy-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.synergy-section .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.synergy-section .section-title {
    color: var(--white);
}

.synergy-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.synergy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.synergy-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.synergy-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 24px;
    flex-shrink: 0;
}

.synergy-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.synergy-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   BENEFITS SECTION
============================================ */
.benefits-section {
    padding: var(--section-padding);
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content .section-label {
    margin-bottom: 18px;
}

.benefits-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.benefits-content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list-icon {
    width: 32px;
    height: 32px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}

.benefits-list-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.benefits-list-text strong {
    color: var(--gray-900);
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.benefits-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.benefits-image-badge span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.benefits-image-badge small {
    font-size: 13px;
    opacity: 0.9;
}

/* ============================================
   PROJECTS SECTION
============================================ */
.projects-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.project-card-image {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-content {
    padding: 28px;
}

.project-card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.project-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.project-card-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.project-stat {
    font-size: 13px;
    color: var(--gray-500);
}

.project-stat strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 700;
}

/* ============================================
   VALUES SECTION
============================================ */
.values-section {
    padding: var(--section-padding);
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.values-image {
    position: relative;
}

.values-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.values-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.values-image-badge span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.values-image-badge small {
    font-size: 13px;
    opacity: 0.9;
}

.values-content .section-label {
    margin-bottom: 18px;
}

.values-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.values-content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.values-content p:last-of-type {
    margin-bottom: 32px;
}

.values-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   RELATED NEWS SECTION
============================================ */
.related-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.related-card-image {
    height: 180px;
    overflow: hidden;
    background: var(--gray-100);
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 28px;
}

.related-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.related-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s;
}

.related-card:hover .related-card-link {
    gap: 12px;
    color: var(--accent);
}

/* ============================================
   PARTNER INFO CARD (Sidebar)
============================================ */
.partner-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.partner-info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.partner-info-card h3 i {
    color: var(--primary);
}

.partner-info-list {
    list-style: none;
}

.partner-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-600);
}

.partner-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.partner-info-list li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.partner-info-list li strong {
    color: var(--gray-800);
    display: block;
}

.partner-cta {
    margin-top: 24px;
}

.partner-cta .btn-outline {
    width: 100%;
    justify-content: center;
}

/* ============================================
   PARTNERSHIP SECTION
============================================ */
.partnership-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.partner-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.partner-card--hoechstmass .partner-logo {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.partner-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.partner-card-header span {
    font-size: 14px;
    color: var(--gray-500);
}

.partner-card > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.partner-features {
    list-style: none;
}

.partner-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.partner-features li:last-child {
    border-bottom: none;
}

.partner-features li i {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================
   SYNERGY CONTENT & VISUAL
============================================ */
.synergy-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.synergy-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
}

.synergy-list {
    list-style: none;
    margin-top: 32px;
}

.synergy-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.synergy-list li:last-child {
    border-bottom: none;
}

.synergy-list-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.synergy-list-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.synergy-list-text strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.synergy-visual {
    position: relative;
}

.synergy-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.synergy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.synergy-card-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.synergy-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.synergy-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.synergy-plus {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.synergy-result {
    background: var(--accent);
    border: none;
}

.synergy-result .synergy-card-icon {
    background: var(--white);
    color: var(--accent);
}

/* ============================================
   BENEFITS GRID 4-COLUMN
============================================ */
.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   SCENARIOS SECTION
============================================ */
.scenarios-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.scenario-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.scenario-icon {
    width: 52px;
    height: 52px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.scenario-card:hover .scenario-icon {
    background: var(--primary);
    color: var(--white);
}

.scenario-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.scenario-card > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.scenario-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scenario-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   QUOTE SECTION
============================================ */
.quote-section {
    padding: var(--section-padding-sm);
    background: var(--white);
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 32px;
}

.quote-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 28px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.quote-author-info {
    text-align: left;
}

.quote-author-info strong {
    display: block;
    font-size: 17px;
    color: var(--gray-900);
    font-weight: 700;
}

.quote-author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   NEWS DETAIL RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .article-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .synergy-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .synergy-visual {
        order: -1;
    }
    
    .benefits-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-detail-hero .hero-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .values-cta {
        flex-direction: column;
    }
    
    .values-cta a {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-image-badge,
    .values-image-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .benefits-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 32px;
    }
    
    .quote-text {
        font-size: 20px;
    }
}

/* ============================================
   ERP / DIGITALISIERUNG NEWS DETAIL STYLES
============================================ */

/* Hero variant for ERP article */
.news-hero--erp {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.94) 0%, rgba(21, 40, 64, 0.97) 100%),
                url('/assets/images/news/digitalisierung-in-der-agentur/erp-dashboard-aa4ea0b29f.webp');
    background-size: cover;
    background-position: center;
}

/* ERP Info Card (sidebar) */
.erp-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.erp-info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.erp-info-card h3 i {
    color: var(--primary);
}

.erp-info-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.erp-info-card__highlight {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--accent);
}

.erp-info-card__number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.erp-info-card__text {
    font-size: 14px;
    color: var(--gray-500);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-header--light .section-title {
    color: var(--white);
}

.section-header--light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-label--light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step__number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Quality Section */
.quality-section {
    padding: var(--section-padding);
    background: var(--white);
}

.quality-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quality-section__content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.quality-section__content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.quality-list {
    list-style: none;
    margin-top: 32px;
    padding: 0;
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.quality-list li:last-child {
    border-bottom: none;
}

.quality-list__icon {
    width: 32px;
    height: 32px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}

.quality-list span {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.quality-section__image {
    position: relative;
}

.quality-section__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.quality-section__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.quality-section__badge span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.quality-section__badge small {
    font-size: 13px;
    opacity: 0.9;
}

/* Vision Section */
.vision-section {
    padding: var(--section-padding);
    background: var(--white);
}

.vision-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-section__content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.vision-section__content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.vision-section__content p:last-of-type {
    margin-bottom: 32px;
}

.vision-section__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vision-section__image {
    position: relative;
}

.vision-section__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.vision-section__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.vision-section__badge span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.vision-section__badge small {
    font-size: 13px;
    opacity: 0.9;
}

/* Benefits Section Gray variant */
.benefits-section--gray {
    background: var(--gray-50);
}

/* Benefit card success variant */
.benefit-card--success .benefit-card__icon {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

/* ERP Article Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .quality-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .quality-section__image {
        order: -1;
    }
    
    .vision-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vision-section__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .vision-section__cta {
        flex-direction: column;
    }
    
    .vision-section__cta a {
        width: 100%;
        justify-content: center;
    }
    
    .quality-section__badge,
    .vision-section__badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 28px;
    }
}

/* ============================================
   REDESIGN NEWS DETAIL STYLES
============================================ */

/* Hero variant for Redesign article */
.news-hero--redesign {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.94) 0%, rgba(21, 40, 64, 0.97) 100%),
                url('/assets/images/news/redesign-webseite-app-marke/redesign-hero-cb6f844aa6.webp');
    background-size: cover;
    background-position: center;
}

/* Redesign Highlights Card (sidebar) */
.redesign-highlights-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.redesign-highlights-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.redesign-highlights-card h3 i {
    color: var(--accent);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-item:first-of-type {
    padding-top: 0;
}

.highlight-item__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-item__text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.highlight-item__text span {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Feature grid 3 columns variant */
.features-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Feature card list */
.feature-card__list {
    list-style: none;
    margin-top: 16px;
    padding: 0;
}

.feature-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.feature-card__list li:last-child {
    margin-bottom: 0;
}

.feature-card__list li i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Color Section */
.color-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.color-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.color-section__content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.color-section__content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Color Palette */
.color-palette-group {
    margin-bottom: 32px;
}

.color-palette-group:last-child {
    margin-bottom: 0;
}

.color-palette-group__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.color-palette {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.color-swatch__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.color-swatch:hover .color-swatch__circle {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.color-swatch--navy { background: #1e3a5f; }
.color-swatch--orange { background: #e67e22; }
.color-swatch--white { background: #ffffff; }
.color-swatch--gray { background: #6b7280; }

.color-swatch__name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Service Color Items */
.service-color-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-color-item:last-child {
    border-bottom: none;
}

.service-color-item__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-color--petrol { background: #0d9488; }
.service-color--fuchsia { background: #c026d3; }
.service-color--royalblue { background: #2563eb; }
.service-color--gold { background: #c9a227; }

.service-color-item__info {
    flex: 1;
}

.service-color-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.service-color-item__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Color Mockup Browser */
.color-section__visual {
    position: relative;
}

.color-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.color-mockup__browser {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.color-mockup__header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-mockup__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.color-mockup__dot--red { background: #ff5f57; }
.color-mockup__dot--yellow { background: #febc2e; }
.color-mockup__dot--green { background: #28c840; }

.color-mockup__content {
    padding: 20px;
    background: var(--white);
    min-height: 200px;
}

.color-mockup__nav {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.color-mockup__nav-item {
    width: 60px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
}

.color-mockup__nav-item--active {
    background: var(--accent);
}

.color-mockup__block {
    display: flex;
    gap: 20px;
}

.color-mockup__main {
    flex: 1;
}

.color-mockup__sidebar {
    width: 100px;
}

.color-mockup__line {
    height: 10px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 10px;
}

.color-mockup__line--short { width: 60%; }
.color-mockup__line--medium { width: 80%; }
.color-mockup__line--accent { background: var(--accent); width: 40%; }
.color-mockup__line--primary { background: var(--primary); }

.color-mockup__box {
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.color-mockup__box--primary {
    background: rgba(30, 58, 95, 0.1);
}

/* Vision Quote */
.vision-quote {
    background: var(--gray-50);
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 32px 0;
}

.vision-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.vision-quote cite {
    font-size: 14px;
    color: var(--gray-500);
    font-style: normal;
}

/* Redesign Article Responsive */
@media (max-width: 1024px) {
    .features-grid--3 {
        grid-template-columns: 1fr;
    }
    
    .color-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .color-palette {
        justify-content: center;
    }
}

/* ============================================
   UKRAINE-HILFE ARTICLE STYLES
============================================ */

/* News Hero Ukraine Variant */
.news-hero--ukraine {
    background: transparent;
}

.news-hero--ukraine .hero-bg-image {
    z-index: 0;
}

.news-hero--ukraine::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(21, 54, 85, 0.75) 0%, rgba(44, 74, 107, 0.65) 50%, rgba(230, 126, 34, 0.55) 100%);
    z-index: 1;
}

.news-hero--ukraine::after {
    display: none;
}

.news-hero--ukraine .container {
    z-index: 2;
}

/* Impact Card */
.impact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: 100px;
}

.impact-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent);
}

.impact-card h3 svg {
    color: var(--accent);
}

.impact-card__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-card__stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.impact-card__stat:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.impact-card__stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #2c4a6b 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-card__stat-icon svg {
    color: var(--white);
}

.impact-card__stat-content {
    display: flex;
    flex-direction: column;
}

.impact-card__stat-content span {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.impact-card__stat-content small {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    display: flex;
    margin-bottom: 40px;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.timeline__item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline__content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    max-width: 100%;
    transition: var(--transition-normal);
}

.timeline__content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.timeline__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(230, 126, 34, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.timeline__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline__content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.timeline__dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
    z-index: 1;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2c4a6b 100%);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.journey-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.journey-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.journey-card__icon {
    width: 72px;
    height: 72px;
    background: rgba(230, 126, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.journey-card__icon svg {
    color: var(--accent);
}

.journey-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.journey-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content .section-label {
    margin-bottom: 12px;
}

.showcase-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.showcase-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-content h2 {
        font-size: 28px;
    }
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: var(--white);
}

.experience-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-section__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.experience-section__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.experience-section__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 95, 0.95));
    padding: 60px 28px 28px;
}

.experience-section__overlay p {
    font-size: 16px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 8px;
}

.experience-section__overlay span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.experience-section__content .section-label--accent {
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
}

.experience-section__content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0 24px;
}

.experience-section__content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Quote Section Gray Variant */
.quote-section--gray {
    background: var(--gray-50);
}

.quote-section--gray .quote-section__container {
    background: var(--white);
}

/* Outlook Section */
.outlook-section {
    padding: 100px 0;
    background: var(--white);
}

.outlook-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.outlook-section__content .section-label {
    margin-bottom: 12px;
}

.outlook-section__content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.outlook-section__content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.outlook-section__signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.outlook-section__signature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, #d76a14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outlook-section__signature-icon svg {
    color: var(--white);
}

.outlook-section__signature-text {
    display: flex;
    flex-direction: column;
}

.outlook-section__signature-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.outlook-section__signature-text {
    font-size: 14px;
    color: var(--gray-500);
}

.outlook-section__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.outlook-section__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.outlook-section__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.outlook-section__badge span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.outlook-section__badge small {
    font-size: 12px;
    opacity: 0.9;
}

/* Section Header Light Variant */
.section-header--light .section-title,
.section-header--light .section-subtitle {
    color: var(--white);
}

.section-label--light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Ukraine Article Responsive */
@media (max-width: 1024px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline__item:nth-child(odd),
    .timeline__item:nth-child(even) {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 60px;
    }
    
    .timeline__dot {
        left: 20px;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .experience-section__grid,
    .outlook-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-section__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .impact-card {
        position: static;
        margin-top: 32px;
    }
    
    .timeline-section,
    .journey-section,
    .experience-section,
    .outlook-section {
        padding: 60px 0;
    }
    
    .timeline__content {
        padding: 20px;
    }
    
    .experience-section__content h2,
    .outlook-section__content h2 {
        font-size: 28px;
    }
}

/* ============================================
   WEB APP ARTICLE STYLES
============================================ */

/* News Hero Web App Variant */
.news-hero--webapp {
    background: linear-gradient(135deg, var(--primary) 0%, #2c4a6b 50%, #1a3a5c 100%);
}

/* App Preview Card */
.app-preview-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 100px;
}

.app-preview-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2c4a6b 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.app-preview-card__icon svg {
    color: var(--white);
}

.app-preview-card__image,
.app-preview-card img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.app-preview-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.app-preview-card p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

.app-preview-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.app-preview-card__platforms {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.app-preview-card__platforms span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-400);
}

/* Features Grid 2-Column Variant */
.features-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Feature Card Coming Soon */
.feature-card--coming-soon {
    position: relative;
}

.feature-card--coming-soon::before {
    content: 'Demnächst';
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(230, 126, 34, 0.12);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Installation Section */
.installation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #152840) 100%);
    color: var(--white);
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.installation-step {
    text-align: center;
    padding: 0 16px;
}

.installation-step__number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.installation-step h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.installation-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.installation-section__cta {
    text-align: center;
    margin-top: 60px;
}

.installation-section__cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
}

.installation-section__cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Web App Vision Section */
.webapp-vision-section {
    padding: 100px 0;
    background: var(--white);
}

.webapp-vision-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.webapp-vision-section__content .section-label--accent {
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent);
    margin-bottom: 18px;
}

.webapp-vision-section__content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.webapp-vision-section__content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.webapp-vision-section__content p:last-of-type {
    margin-bottom: 32px;
}

.webapp-vision-section__signature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.webapp-vision-section__signature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #2c4a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.webapp-vision-section__signature-text {
    font-size: 15px;
    color: var(--gray-500);
}

.webapp-vision-section__signature-text strong {
    display: block;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 17px;
}

.webapp-vision-section__image {
    position: relative;
}

.webapp-vision-section__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.webapp-vision-section__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.webapp-vision-section__badge span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.webapp-vision-section__badge small {
    font-size: 13px;
    opacity: 0.9;
}

/* Benefits Section - Web App (4 column layout with benefit-cards) */
.benefits-section--cards {
    padding: 100px 0;
    background: var(--gray-50);
}

.benefits-section--cards .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--success, #10b981) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Web App Article Responsive */
@media (max-width: 1024px) {
    .features-grid--2 {
        grid-template-columns: 1fr;
    }
    
    .installation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .webapp-vision-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-section--cards .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-preview-card {
        position: static;
        margin-top: 32px;
    }
    
    .installation-section,
    .webapp-vision-section,
    .benefits-section--cards {
        padding: 60px 0;
    }
    
    .webapp-vision-section__content h2 {
        font-size: 28px;
    }
    
    .webapp-vision-section__badge {
        bottom: -10px;
        right: -10px;
        padding: 16px 20px;
    }
    
    .benefits-section--cards .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UKRAINE GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item__caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item__caption p {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item--large {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }
    
    .gallery-item__caption {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   REDESIGN SECTIONS (English Page Variant)
   ============================================ */

.redesign-section {
    padding: 80px 0;
}

.redesign-section--website {
    background: var(--white);
}

.redesign-section--app {
    background: var(--primary);
    color: var(--white);
}

.redesign-section--app h2,
.redesign-section--app h4 {
    color: var(--white);
}

.redesign-section--app p {
    color: rgba(255, 255, 255, 0.85);
}

.redesign-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.redesign-section__grid--reverse {
    direction: rtl;
}

.redesign-section__grid--reverse > * {
    direction: ltr;
}

.redesign-section__content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
}

.redesign-section__content > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.redesign-section__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.redesign-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.redesign-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.redesign-list li:last-child {
    border-bottom: none;
}

.redesign-list__icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.redesign-list__icon i {
    width: 14px;
    height: 14px;
}

/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.app-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.app-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.app-feature__icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.app-feature__icon i {
    color: var(--white);
}

.app-feature h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.app-feature p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 968px) {
    .redesign-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .redesign-section__grid--reverse {
        direction: ltr;
    }
}

@media (max-width: 640px) {
    .app-features-grid {
        grid-template-columns: 1fr;
    }
}
