/* ===== HERO SECTION ===== */

.home-hero {
    position: relative;
    padding: 140px 0 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* layout */
.home-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* text */
.home-hero-content {
    flex: 1;
}

.home-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000000;
}

.home-hero h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 35px 0 20px 0;
    color: #000000;
}

.home-hero p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-lead {
    font-size: 20px;
    font-weight: 500;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* image */
.home-hero-image {
    flex: 1.2;
    text-align: right;
}

.home-hero-image img {
    width: 110%;
    max-width: 780px;
    height: auto;
}


/* ===== PROBLEM SECTION ===== */

.problem-section {
    background: #f6fbf9;
    padding: 120px 0;
    text-align: center;
}

.problem-title {
    font-size: 42px;
    font-weight: 700;
    color: #128c6a;
    margin-bottom: 20px;
}

.problem-subtitle {
    max-width: 800px;
    margin: 0 auto 70px auto;
    color: #666;
    font-size: 18px;
}

/* GRID */

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

/* CARDS */

.problem-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 16px;
    border: 2px solid #b7ded3;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.problem-card p {
    color: #777;
    font-size: 20px;
}

/* Hover efekt */

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: #128c6a;
}

/* Footer statement */

.problem-footer {
    margin-top: 80px;
    font-size: 20px;
    font-weight: 600;
    color: #e57a2e;
}

/* ===== GOVERNANCE SECTION ===== */

.governance-section {
    background: #f6fbf9;
    padding: 120px 0;
    text-align: center;
}

.governance-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #128c6a;
}

.governance-title span {
    border-bottom: 4px solid #e57a2e;
    padding-bottom: 4px;
}

.governance-intro {
    max-width: 800px;
    margin: 0 auto 80px auto;
    font-size: 18px;
    color: #555;
}

/* GRID */

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

/* CARDS */

.governance-card {
    background: #f9fbfa;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #b7ded3;
    text-align: left;
    transition: all 0.3s ease;
}

.governance-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.governance-card p {
    color: #666;
    line-height: 1.5;
    font-size: 20px;
}

/* Hover efekt */

.governance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: #128c6a;
    background: #ffffff;
}

/* poslední karta přes 2 sloupce */

.governance-wide {
    grid-column: span 2;
}

/* ===== BENEFITS SECTION ===== */

.benefits-section {
    background: #eaf3f0;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.section-label {
    display: inline-block;
    background: #d8ebe5;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.benefits-title {
    font-size: 42px;
    font-weight: 700;
    color: #128c6a;
    margin-bottom: 60px;
}

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

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease;
}

.benefit-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.benefit-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: #d8ebe5;
    color: #000000;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    transition: transform 0.6s ease;
}

.benefit-card.animate .benefit-number {
    transform: translateX(-50%) scale(1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(18, 140, 106, 0.3); }
    70% { box-shadow: 0 0 0 15px rgba(18, 140, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(18, 140, 106, 0); }
}

.benefit-card h4 {
    margin-top: 50px;
    font-weight: 600;
    color: #000000;
}

.benefit-card p {
    color: #666;
    margin-top: 10px;
    font-size: 20px;
}

.benefit-divider {
    margin: 60px 0 30px 0;
    font-size: 32px;
    font-weight: bold;
}

.benefit-wide-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8 ease;
}

.benefit-wide-card.animate {
    transform: translateY(0);
    opacity: 1
}

.benefit-wide-card h4 {
    font-weight: 600;
    color: #000000;
}

.benefit-wide-card p {
    font-size: 20px;
}

.highlight-not {
    font-weight: 700;
    color: #e57a2e;
}

/* ===== SOLUTION INTRO ===== */

.solution-intro {
    max-width: 900px;
    margin: 0 auto 80px auto;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
}

/* ===== SYSTEM SECTION ===== */

.system-section {
    background: #eaf3f0;
    padding: 120px 0;
    text-align: center;
}

.system-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.system-title span {
    color: #6a2e9b;
}

.system-subtitle {
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

.system-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: center;
    gap: 40px;
}

.system-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.system-box {
    border: 2px solid #b7ded3;
    padding: 22px;
    border-radius: 14px;
    background: #ffffff;
    font-weight: 500;
    font-size: 20px;
    transition: all 0.3s ease;
}

.system-wrapper {
    position: relative;
}

.system-from {
    position: absolute;
    left: -60px;              
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 4px;
    color: #5aa2ce;           
}

/* hover efekt */
.system-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: #128c6a;
}

/* zvýraznění pravé strany lehce */
.system-column:last-child .system-box {
    background: #f8fdfb;
}

/* jemně výraznější TO */
.system-center {
    font-size: 36px;
    font-weight: 700;
    color: #e57a2e;
}

/* footer claim */

.system-footer {
    margin-top: 90px;
    font-size: 20px;
    font-weight: 600;
    color: #4a8f75;
}

.system-cta {
    margin-top: 50px;
}

.system-cta .btn {
    padding: 14px 34px;
    font-size: 16px;
    border-width: 2px;
    transition: all 0.3s ease;
}

.system-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* ===== WHO WE SERVE SLIDER ===== */

.serve-section {
    background: #eaf3f0;
    padding: 140px 0 140px 0;
    text-align: center;
}

.serve-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #128c6a;
}

/* GRID */

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

/* CARDS */

.serve-card {
    background: #f9fbfa;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid #b7ded3;
    transition: all 0.3s ease;
}

.serve-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.serve-card p {
    color: #666;
    font-size: 20px;
}

/* hover */

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: #128c6a;
}


/* ===== FINAL CTA ===== */

.final-cta-section {
    background: #f6fbf9;
    padding: 140px 0;
    text-align: center;
}

.final-cta-box {
    background: #ffffff;
    padding: 80px 60px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Title */

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

/* Subtitle */

.cta-subtitle {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 22px;
    color: #555;
}

/* List */

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 60px auto;
    max-width: 480px;
}

.cta-list li {
    margin-bottom: 18px;
    font-size: 20px;
    position: relative;
    padding-left: 28px;
    color: #444;
}

/* custom bullet */

.cta-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #6a2e9b;
    border-radius: 50%;
}

/* Button */

.cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}


/* ===== REFERENCES SECTION ===== */

.references-section {
    background: #f6fbf9;
    padding: 140px 0;
}

.references-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #000000;
}

/* GRID */

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.reference-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Avatar */

.reference-avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
}

/* Text */

.reference-text {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Author */

.reference-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 17px;
}

.reference-role {
    font-size: 15px;
    color: #777;
}

/* CTA */

/* wrapper */
.references-cta {
    margin-top: 80px;
}

/* button */
.references-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    padding: 18px 52px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* hover */
.references-button:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

/* ===== LOGO MARQUEE ===== */

.logos-section {
    padding: 1px 0;
    background: #ffffff;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 50s linear infinite;
}

.logo {
    flex: 0 0 auto;
    padding: 0 5px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animace */

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

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@media screen and (min-width: 1800px) {

    .container {
        max-width: 1800px;
    }

    .home-hero h1 {
        font-size: 68px;
        line-height: 1.05;
    }

    .home-hero h2 {
        font-size: 40px;
    }

    .home-hero p {
        font-size: 25px;
    }

    .home-hero-image {
        flex: 1.5;
        text-align: right;
    }
    
    .home-hero-image img {
        width: 150%;
        max-width: 1000px;
        height: auto;
    }

    .hero-buttons {
        margin-top: 50px;
        gap: 25px;
    }

    .hero-buttons .btn {
        padding: 18px 36px;
        font-size: 18px;
        min-width: 220px;
    }

    .benefits-section {
        padding: 160px 0;
    }

    .benefits-title {
        font-size: 52px;
        margin-bottom: 80px;
    }

    .benefits-grid {
        gap: 50px;
    }

    .benefit-card {
        padding: 60px 40px;
    }

    .benefit-number {
        width: 110px;
        height: 110px;
        font-size: 34px;
        top: -35px;
    }

    .benefit-wide-card {
        max-width: 1000px;
        padding: 60px;
    }

    .benefit-card h4 {
        font-size: 28px;
    }

    .benefit-card p {
        font-size: 25px;
    }

    .benefit-wide-card h4 {
        font-size: 28px
    }

    .benefit-wide-card p {
        font-size: 25px;
    }

    .problem-section {
        padding: 160px 0;
    }

    .problem-title {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .problem-subtitle {
        font-size: 25px;
        margin-bottom: 90px;
    }

    .problem-grid {
        max-width: 1300px;
        gap: 60px;
    }

    .problem-card {
        padding: 60px 50px;
    }

    .problem-card h4 {
        font-size: 28px;
    }

    .problem-card p {
        font-size: 25px;
    }

    .problem-footer {
        font-size: 25px;
        margin-top: 100px;
    }

    .system-section {
        padding: 160px 0;
    }

    .solution-intro {
        font-size: 40px;
    }

    .system-title {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .system-subtitle {
        font-size: 25px;
    }

    .system-grid {
        gap: 60px;
    }

    .system-box {
        padding: 30px;
        font-size: 25px;
    }

    .system-center {
        font-size: 42px;
    }

    .system-from {
        font-size: 42px;
    }

    .system-footer {
        font-size: 25px;
    }

    .governance-section {
        padding: 160px 0;
    }

    .governance-title {
        font-size: 52px;
    }

    .governance-intro {
        font-size: 25px;
        margin-bottom: 100px;
    }

    .governance-grid {
        max-width: 1300px;
        gap: 60px;
    }

    .governance-card {
        padding: 60px;
    }

    .governance-card h4 {
        font-size: 28px;
    }

    .governance-card p {
        font-size: 25px;
    }

    .serve-title {
        font-size: 52px;
        margin-bottom: 80px;
    }

    .serve-card h4 {
        font-size: 28px;
    }

    .serve-card p {
        font-size: 25px;
    }

    .system-cta .btn {
        padding: 20px 44px;
        font-size: 20px;
    }

    .references-section {
        padding: 180px 0;
    }

    .references-title {
        font-size: 52px;
        margin-bottom: 110px;
    }

    .references-grid {
        gap: 60px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .reference-card {
        padding: 70px 55px;
        border-radius: 28px;
        box-shadow: 0 35px 80px rgba(0,0,0,0.06);
    }

    .reference-avatar {
        width: 140px;
        height: 140px;
        margin-bottom: 40px;
    }

    .reference-text {
        font-size: 26px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .reference-name {
        font-size: 23px;
    }

    .reference-role {
        font-size: 20px;
    }

    .references-button {
        padding: 27px 75px;
        font-size: 25px;
        border-radius: 65px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    }


    .final-cta-section {
        padding: 180px 0;
    }

    .final-cta-box {
        max-width: 1100px;
        padding: 110px 90px;
        border-radius: 32px;
    }

    .cta-title {
        font-size: 52px;
    }

    .cta-subtitle {
        font-size: 28px;
        max-width: 850px;
    }

    .cta-list {
        max-width: 650px;
        margin-bottom: 80px;
    }

    .cta-list li {
        font-size: 25px;
        padding-left: 36px;
    }

    .cta-list li::before {
        width: 14px;
        height: 14px;
        top: 10px;
    }

    .cta-button {
        padding: 27px 75px;
        font-size: 25px;
        border-radius: 65px;
    }

}

@media screen and (max-width: 1220px) {

    .home-hero-inner {
        gap: 50px;
    }

    .home-hero h1 {
        font-size: 42px;
    }

    .home-hero h2 {
        font-size: 24px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-hero-image img {
        max-width: 600px;
    }

    .benefits-section {
        padding: 100px 0;
    }

    .benefits-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .benefits-grid {
        gap: 24px;
    }

    .problem-section {
        padding: 100px 0;
    }

    .problem-title {
        font-size: 36px;
    }

    .problem-subtitle {
        margin-bottom: 60px;
    }

    .system-section {
        padding: 100px 0;
    }

    .system-title {
        font-size: 36px;
    }

    .system-grid {
        gap: 30px;
    }

    .governance-section {
        padding: 100px 0;
    }

    .governance-title {
        font-size: 36px;
    }

    .governance-intro {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .governance-grid {
        gap: 30px;
    }

    .serve-section {
        padding: 120px 0 140px 0;
    }

    .serve-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .serve-slider {
        gap: 30px;
        padding: 30px 40px;
    }

    .final-cta-section {
        padding: 110px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .testimonials-section {
        padding: 110px 0;
    }

    .testimonials-section h3 {
        font-size: 36px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1030px) {

    .home-hero {
        padding: 90px 0 70px 0;
    }

    .home-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .home-hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .home-hero h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .home-hero h2 {
        font-size: 28px;
    }

    .home-hero p {
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
    }

    .home-hero-image {
        text-align: center;
    }

    .home-hero-image img {
        width: 90%;
        max-width: 500px;
        margin-top: 20px;
    }

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

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

    .benefit-card {
        padding: 35px 25px;
    }

    .benefit-number {
        width: 75px;
        height: 75px;
        font-size: 22px;
        top: -24px;
    }

    .problem-grid {
        gap: 30px;
    }

    .problem-card {
        padding: 30px 25px;
    }

    .system-grid {
        grid-template-columns: 1fr 80px 1fr;
        gap: 25px;
    }

    .system-box {
        padding: 16px;
    }

    .system-center {
        font-size: 26px;
    }

    .system-from {
        left: -40px;
        font-size: 22px;
    }

    .governance-card {
        padding: 30px;
    }

    .governance-card h4 {
        font-size: 20px;
    }

    .serve-card {
        flex: 0 0 320px;
        padding: 45px 30px;
    }

    .cta-list {
        margin-bottom: 45px;
    }

    .cta-list li {
        font-size: 17px;
    }

    .cta-button {
        padding: 14px 35px;
    }

    .references-cta .btn {
        padding: 14px 34px;
        font-size: 15px;
    }

}

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

    .home-hero {
        padding: 80px 0 60px 0;
    }

    .home-hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .home-hero h2 {
        font-size: 20px;
    }

    .home-hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }

    .home-hero-image img {
        max-width: 100%;
    }

    .benefits-section {
        padding: 70px 0;
    }

    .benefits-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .benefit-number {
        width: 65px;
        height: 65px;
        font-size: 20px;
        top: -20px;
    }

    .benefit-divider {
        font-size: 24px;
        margin: 40px 0 20px 0;
    }

    .benefit-wide-card {
        padding: 25px;
    }

    .benefit-wide-card p {
        font-size: 14px;
    }

    .problem-section {
        padding: 70px 0;
    }

    .problem-title {
        font-size: 28px;
    }

    .problem-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .problem-card {
        padding: 25px 20px;
    }

    .problem-card h4 {
        font-size: 20px;
    }

    .problem-card p {
        font-size: 16px;
    }

    .problem-footer {
        margin-top: 50px;
        font-size: 18px;
    }

    .system-section {
        padding: 70px 0;
    }

    .system-title {
        font-size: 28px;
    }

    .system-subtitle {
        margin-bottom: 40px;
    }

    /* Grid přepneme na vertikální */
    .system-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .system-center {
        order: 2;
        font-size: 24px;
    }

    .system-column:first-child {
        order: 1;
    }

    .system-column:last-child {
        order: 3;
    }

    /* Zrušíme vertikální FROM */
    .system-from {
        position: static;
        transform: none;
        writing-mode: horizontal-tb;
        margin-bottom: 20px;
    }

    .governance-section {
        padding: 70px 0;
    }

    .governance-title {
        font-size: 28px;
    }

    .governance-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .governance-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* wide karta se vrátí do normálu */
    .governance-wide {
        grid-column: span 1;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .serve-card {
        padding: 45px 30px;
    }

    .serve-title {
        font-size: 34px;
    }

    .final-cta-section {
        padding: 70px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-list {
        max-width: 100%;
        margin-bottom: 35px;
    }

    .cta-list li {
        font-size: 16px;
    }

    .cta-button {
        width: 90%;
        padding: 14px 0;
        font-size: 16px;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reference-card {
        padding: 35px 25px;
    }

    .references-title {
        font-size: 28px;
        margin-bottom: 50px;
    }


    .reference-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .reference-text {
        font-size: 19px;
    }

    .reference-name {
        font-size: 16px;
    }

    .reference-role {
        font-size: 14px;
    }

    .references-cta .btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
    }
}
