/* index.css – styles extracted from index.html */

/* index-only responsive safety layer: keep desktop look, improve small-screen behavior */
img,
video,
svg {
    max-width: 100%;
    height: auto;
}

.has-promo-banner {
    --promo-banner-height: 58px;
    --index-type-body: 16px;
    --index-type-body-strong: 17px;
    --index-type-lead: 18px;
    --index-type-h3: clamp(28px, 3vw, 34px);
    --index-type-hero: clamp(40px, 5vw, 52px);
    --index-type-fine: 13px;
}

.hero h1 {
    font-size: var(--index-type-hero);
}

.hero-intro,
.hero-bonus-line,
.invoicing-outro,
.agenda-outro,
.faq-section .faq-answer,
.cta-form-box p {
    font-size: var(--index-type-body);
}

.hero-intro-strong,
.invoicing-problem,
.agenda-problem,
.solution-content p.subtitle,
.invoicing-lead,
.agenda-lead {
    font-size: var(--index-type-lead);
}

.invoicing-checklist li,
.agenda-checklist li,
.hero-checklist li {
    font-size: var(--index-type-body-strong);
}

.invoicing-feature-section .solution-content h3,
.agenda-feature-section .agenda-content h3,
#sluzby .solution-content h3,
#roles .solution-content h3,
.agp-pricing h3,
.testimonials-section h2,
.faq-section h2 {
    font-size: var(--index-type-h3);
    line-height: 1.18;
}

.promo-top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #dff4f5 0%, #eef9fa 100%);
    border-bottom: 1px solid rgba(14, 44, 72, 0.08);
    box-shadow: 0 6px 18px rgba(19, 58, 88, 0.06);
}

.promo-top-banner-inner {
    min-height: var(--promo-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.promo-top-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #16384e;
    flex: 0 0 auto;
}

.promo-top-banner-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.promo-top-banner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #8fe1a9;
    color: #12344d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.promo-top-banner-text {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #11324b;
}

.promo-top-banner-link {
    color: #11324b;
    font-size: 17px;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.promo-top-banner-link:hover,
.promo-top-banner-link:focus {
    color: #0a5ec2;
}

.has-promo-banner .site-header {
    top: var(--promo-banner-height);
}

.has-promo-banner .hero {
    padding-top: calc(140px + var(--promo-banner-height));
}

.hero-intro-strong {
    max-width: 620px;
    font-size: 21px;
    line-height: 1.45;
    color: #102a43;
    margin-bottom: 24px;
}

.hero-checklist-area {
    max-width: 640px;
}

.hero-checklist {
    margin-bottom: 24px;
}

.hero-checklist li {
    margin-bottom: 16px;
    line-height: 1.55;
}

.hero-checklist li strong {
    font-weight: 800;
}

.hero-bonus-line {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.55;
    color: #14324a;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 106%;
    max-width: 680px;
    margin-left: 0;
}

.hero-benefits-relocated {
    padding-top: 18px;
    padding-bottom: 10px;
}

.hero-benefits-relocated .hero-bottom-bar {
    margin-top: 0;
    padding-top: 26px;
}

/* FAQ accordion look like reference: full-width rows with plus/minus */
.faq-section .faq-list {
    max-width: 100%;
    margin: 10px auto 0;
    display: block;
    border-top: 1px solid rgba(15, 23, 42, 0.15);
}

.faq-section .faq-accordion-item {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
    box-shadow: none;
    border-radius: 0;
}

.faq-section .faq-accordion-item > summary {
    list-style: none;
}

.faq-section .faq-accordion-item > summary::-webkit-details-marker {
    display: none;
}

.faq-section .faq-question {
    margin: 0;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    color: #2f3b4d;
}

.faq-section .faq-toggle::before {
    content: "+";
    font-size: 44px;
    line-height: 1;
    color: #26a133;
    font-weight: 400;
}

.faq-section .faq-accordion-item[open] .faq-toggle::before {
    content: "\2212";
}

.faq-section .faq-answer {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #465769;
    max-width: 92%;
}

.faq-section .faq-accordion-item[open] .faq-answer {
    color: #000;
}

.faq-section .faq-cta {
    margin-top: 34px !important;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .faq-section .faq-question {
        font-size: 22px;
        padding: 18px 0;
    }

    .faq-section .faq-toggle::before {
        font-size: 34px;
    }

    .faq-section .faq-answer {
        max-width: 100%;
    }

    .faq-section .faq-cta {
        margin-top: 28px !important;
        margin-bottom: 14px;
    }
}

@media (max-width: 768px) {
    .faq-section .faq-question {
        font-size: 16px;
        font-weight: 600;
    }

    .faq-section .faq-toggle::before {
        font-size: 28px;
    }

    .faq-section .faq-answer {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* Homepage section spacing: keep layout airy but remove excessive white gaps */
.invoicing-feature-section,
.agenda-feature-section,
#sluzby.section,
#roles.section,
.hero-benefits-relocated,
.growth-cta,
.testimonials-section,
.agp-pricing,
.enterprise-section,
.faq-section,
.jazdy-final-cta-section {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* Keep more breathing room before FAQ heading after enterprise block */
.faq-section {
    padding-top: 44px !important;
}

@media (max-width: 992px) {
    .invoicing-feature-section,
    .agenda-feature-section,
    #sluzby.section,
    #roles.section,
    .hero-benefits-relocated,
    .growth-cta,
    .testimonials-section,
    .agp-pricing,
    .enterprise-section,
    .faq-section,
    .jazdy-final-cta-section {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .faq-section {
        padding-top: 30px !important;
    }
}

.invoicing-feature-section {
    padding-top: 22px;
    padding-bottom: 12px;
    margin-top: -16px;
}

.invoicing-feature-section .solution-grid {
    margin-top: 0;
    gap: clamp(24px, 3.4vw, 48px);
    align-items: center;
}

.invoicing-feature-section .solution-image {
    flex: 0 1 43%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.invoicing-feature-section .solution-content {
    flex: 0 1 57%;
    max-width: 760px;
    padding-top: 4px;
}

.invoicing-feature-section .solution-content h3 {
    margin-bottom: 12px;
    max-width: 20ch;
    line-height: 1.02;
}

.invoicing-feature-section .subtitle {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    max-width: 42ch;
    color: #506577;
}

.invoicing-problem {
    font-size: 17px;
    line-height: 1.55;
    color: #18344d;
    max-width: 58ch;
    margin-bottom: 12px;
}

.invoicing-lead {
    margin-bottom: 10px;
    font-size: 15px;
    color: #102a43;
}

.invoicing-checklist {
    margin: 0 0 20px;
    max-width: 42rem;
}

.invoicing-checklist li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.invoicing-outro {
    max-width: 44rem;
    font-size: 16px;
    line-height: 1.5;
    color: #18344d;
}

.invoicing-feature-section .invoice-left-img {
    width: 112%;
    max-width: 640px;
    margin-top: 0;
    margin-left: -28px;
    filter: none;
    mix-blend-mode: normal;
    border-radius: 18px;
}

.invoicing-feature-section .solution-actions {
    margin-top: 22px !important;
}

.solution-actions-inline {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.solution-inline-btn {
    margin: 0;
    padding: 12px 24px;
}

.solution-actions-spacious {
    margin-top: 35px;
}

.bonus-cta-btn {
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
}

.agenda-feature-section {
    padding-top: 20px;
    padding-bottom: 14px;
}

.agenda-feature-section .agenda-layout {
    gap: clamp(0px, 1vw, 12px);
    align-items: center;
    margin-top: 0;
}

.agenda-feature-section .agenda-content {
    flex: 0 1 74%;
    max-width: none;
    padding-right: 0;
    margin-right: -88px;
    position: relative;
    z-index: 2;
}

.agenda-feature-section .agenda-content h3 {
    margin-bottom: 12px;
    max-width: none;
    line-height: 1.04;
}

.agenda-problem {
    font-size: 18px;
    line-height: 1.55;
    color: #18344d;
    max-width: none;
    margin-bottom: 14px;
}

.agenda-lead {
    margin-bottom: 10px;
    font-size: 16px;
    color: #102a43;
}

.agenda-checklist {
    margin: 0 0 20px;
    max-width: none;
}

.agenda-checklist li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.agenda-outro {
    max-width: none;
    font-size: 16px;
    line-height: 1.6;
    color: #18344d;
}

.agenda-outro strong {
    font-weight: 800;
}

.agenda-feature-section .agenda-visual {
    flex: 0 1 30%;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.agenda-feature-section .agenda-v2l-img {
    width: 146%;
    max-width: 940px;
    margin: -88px auto 0;
    display: block;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    mix-blend-mode: normal;
}

.agenda-feature-section .agenda-v2l-img:hover {
    transform: scale(1.02);
}

.invoice-mobile-inline {
    display: none;
}

@media (max-width: 1200px) {
    .has-promo-banner {
        --promo-banner-height: 64px;
    }

    .promo-top-banner-inner {
        gap: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .promo-top-banner-icon {
        width: 26px;
        height: 26px;
    }

    .promo-top-banner-text,
    .promo-top-banner-link {
        font-size: 15px;
    }

    .hero {
        padding-top: calc(126px + var(--promo-banner-height));
        padding-bottom: 44px;
    }

    .hero-main-grid {
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
        gap: 24px;
        align-items: start;
    }

    .hero-content {
        max-width: none;
    }

    .hero-intro-strong {
        max-width: 100%;
        font-size: 19px;
    }

    .hero h1 {
        width: 100%;
        font-size: clamp(38px, 4.8vw, 50px);
        margin-bottom: 18px;
        line-height: 1.1;
        pointer-events: auto;
    }

    .hero-image {
        align-self: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 520px;
        margin-left: 0;
    }

    .invoicing-feature-section .solution-grid {
        gap: 28px;
    }

    .agenda-feature-section .agenda-layout {
        gap: 10px;
    }

    .agenda-feature-section .agenda-content {
        margin-right: -34px;
    }

    .agenda-problem {
        max-width: 100%;
    }

    .agenda-feature-section .agenda-v2l-img {
        width: 132%;
        max-width: 820px;
        margin: -52px auto 0;
    }

    .invoicing-image-frame {
        width: min(100%, 460px);
        padding: 10px;
    }

    .invoicing-problem {
        font-size: 18px;
        max-width: 100%;
    }

    .invoicing-feature-section .solution-content {
        max-width: 520px;
    }

    .hero-bottom-bar {
        gap: 24px;
    }

    .header-container {
        gap: 12px;
    }

    .enterprise-grid {
        gap: 20px !important;
    }

    .enterprise-grid .enterprise-header,
    .enterprise-grid .enterprise-content {
        flex: 1 1 100% !important;
    }

    .enterprise-grid .enterprise-header-img,
    .enterprise-grid .enterprise-image img {
        max-width: 100% !important;
    }
}

.enterprise-grid-layout {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.enterprise-header-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 0 0 760px;
}

.enterprise-image-offset {
    text-align: left;
    margin-top: -8px;
}

.enterprise-header-img-offset {
    max-width: 760px;
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-8px);
}

.enterprise-title-left {
    margin: 0;
    text-align: left;
}

.enterprise-content-full {
    flex: 1 1 100%;
    margin-top: 0;
}

@media (max-width: 1100px) {
    .has-promo-banner {
        --promo-banner-height: 72px;
    }

    .promo-top-banner-inner {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .promo-top-banner-icon {
        width: 24px;
        height: 24px;
    }

    .promo-top-banner-badge {
        padding: 6px 10px;
        font-size: 12px;
    }

    .promo-top-banner-text,
    .promo-top-banner-link {
        font-size: 14px;
    }

    .hero-bonus-line {
        font-size: 17px;
    }

    .site-header {
        padding: 12px 0 8px;
    }

    .header-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 8px;
    }

    .main-nav {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        margin-top: 0;
        justify-self: end;
        position: relative;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(360px, calc(100vw - 20px));
        max-height: min(72vh, 520px);
        overflow-y: auto;
        flex-direction: column;
        gap: 8px;
        background: #fff;
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
        z-index: 1200;
    }

    .nav-menu.active > li > a {
        display: block;
        padding: 10px 8px;
        font-size: 16px;
        line-height: 1.35;
    }

    .nav-menu.active .has-submenu::after {
        display: none;
    }

    .nav-menu.active .submenu {
        display: block;
        position: static;
        min-width: unset;
        box-shadow: none;
        border-radius: 10px;
        background: transparent;
        border: 0;
        margin-top: 2px;
        padding: 4px 0 4px 14px;
    }

    .nav-menu.active .submenu a {
        font-size: 16px;
        line-height: 1.35;
        padding: 8px 0;
        white-space: normal;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .header-actions .header-gps-link {
        display: none;
    }

    .header-actions .btn-login {
        padding: 9px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .header-container:has(.nav-toggle.active) .nav-menu.active {
        top: calc(100% + 52px);
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 22px;
    }

    .hero-content,
    .hero-content h1,
    .hero-intro,
    .hero-checklist-area,
    .hero-checklist-area p,
    .hero-checklist,
    .hero-checklist li,
    .hero-outro {
        text-align: left;
    }

    .hero-checklist {
        margin-left: 0;
    }

    .jazdy-layout .solution-content,
    .jazdy-layout .solution-content h3,
    .jazdy-layout .solution-content .subtitle,
    .jazdy-layout .solution-content p {
        text-align: left;
    }

    .agenda-feature-section .agenda-layout {
        flex-direction: column;
        gap: 24px;
    }

    .agenda-feature-section .agenda-content,
    .agenda-feature-section .agenda-visual {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .agenda-feature-section .agenda-content {
        order: 1;
    }

    .agenda-feature-section .agenda-visual {
        order: 2;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    .agenda-feature-section .agenda-v2l-img {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .invoicing-feature-section .solution-grid {
        flex-direction: column;
        gap: 24px;
    }

    .invoicing-feature-section .solution-image,
    .invoicing-feature-section .solution-content {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .invoicing-feature-section .solution-image {
        order: 1;
    }

    .agenda-feature-section .agenda-v2l-img {
        max-width: 520px;
    }

    .invoicing-feature-section .solution-content {
        order: 2;
        padding-top: 0;
    }

    .invoicing-image-frame {
        width: min(100%, 420px);
        padding: 10px;
        border-radius: 20px;
    }

    .invoicing-feature-section .solution-content h3 {
        max-width: 14ch;
    }

    .jazdy-layout .jazdy-features-grid {
        justify-content: start;
    }

    .auto-tankovanie-img {
        width: auto;
        max-width: min(52vw, 360px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .hero-image {
        order: -1;
        text-align: center;
    }

    .hero-image img {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-bottom-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #roles .solution-grid {
        gap: 6px;
        min-height: auto;
        margin-top: 0;
        align-items: flex-start;
    }

    #roles.section {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    #roles .solution-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    #roles .solution-image .collaboration-img {
        margin-left: 0;
        width: auto;
        max-width: min(62vw, 430px);
        max-height: 420px;
        height: auto;
        object-fit: contain;
    }

    #roles .solution-content {
        margin-top: 0;
    }

    .enterprise-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .enterprise-feature-card {
        min-height: 86px;
        padding: 16px 14px;
        border-radius: 14px;
    }

    .enterprise-feature-card h6 {
        font-size: 16px;
        line-height: 1.2;
    }

    .enterprise-feature-card .feature-check {
        font-size: 32px;
        right: 10px;
        bottom: 8px;
    }
}

@media (max-width: 992px) {
    .invoicing-feature-section {
        margin-top: -8px;
    }

    .hero {
        padding-top: 116px;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 24px;
    }

    .hero h1 {
        width: 100%;
        font-size: clamp(32px, 6.9vw, 44px);
        line-height: 1.12;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        width: 100%;
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-bottom-bar {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
        padding-top: 24px;
    }

    .growth-cta-container {
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .vcela-growth-side {
        position: static;
        transform: none;
        width: min(320px, 70vw);
        margin: 0 auto 16px;
    }

    .growth-cta-content {
        text-align: center;
        padding-left: 0;
    }

    .solution-grid {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        gap: 24px;
        margin-top: 0;
    }

    .solution-section.reversed .solution-grid {
        flex-direction: column;
    }

    .solution-section.reversed .solution-grid .solution-content {
        order: 1;
    }

    .solution-section.reversed .solution-grid .solution-image {
        order: 2;
    }

    .solution-section.reversed .solution-grid > .solution-image {
        display: none;
    }

    .solution-section.reversed .invoice-mobile-inline {
        display: block;
        margin: 12px 0 18px;
        text-align: center;
    }

    .solution-section.reversed .invoice-mobile-inline img {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        display: block;
    }

    .solution-grid .solution-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    #roles .solution-image .collaboration-img {
        max-width: min(74vw, 360px);
        max-height: 340px;
    }

    #roles.section {
        padding-top: 2px;
        padding-bottom: 2px;
    }

    #roles .solution-content {
        margin-top: 0;
    }

    .auto-tankovanie-img,
    .invoice-left-img {
        margin-top: 0;
    }

    .invoicing-feature-section .invoice-left-img {
        width: 100%;
        max-width: min(100%, 640px);
        margin-left: 0;
        margin-right: 0;
        display: block;
        object-fit: contain;
    }

    .testimonials-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .benefits-content-collapsible {
        padding: 20px 16px;
    }

    .benefit-row-3col {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px;
    }

    .benefits-content-collapsible .benefit-box {
        width: 100%;
        max-width: 100%;
        min-height: 140px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .has-promo-banner {
        --promo-banner-height: 88px;
    }

    .promo-top-banner-inner {
        gap: 6px 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .promo-top-banner-badge {
        padding: 5px 9px;
        font-size: 11px;
    }

    .promo-top-banner-text,
    .promo-top-banner-link {
        font-size: 13px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero {
        padding-top: calc(176px + var(--promo-banner-height));
        padding-bottom: 28px;
    }

    .invoicing-problem {
        font-size: 17px;
    }

    .agenda-problem {
        font-size: 17px;
    }

    .agenda-outro {
        font-size: 16px;
    }

    .invoicing-outro {
        font-size: 16px;
    }

    .hero-intro-strong {
        font-size: 18px;
        line-height: 1.4;
    }

    .hero-checklist li {
        margin-bottom: 14px;
    }

    .hero-main-grid {
        gap: 14px;
    }

    .hero-image {
        margin-top: 6px;
    }

    .hero-image img {
        max-width: 400px;
    }

    .auto-tankovanie-img {
        max-width: min(56vw, 300px);
    }

    .hero-checklist-area,
    .hero-checklist-area p,
    .hero-checklist,
    .hero-checklist li {
        text-align: left;
    }

    .hero-checklist {
        padding-left: 18px;
        margin-left: 0;
    }

    .site-header {
        padding: 12px 0 8px;
    }

    .header-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 8px;
    }

    .main-nav {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        margin-top: 0;
        justify-self: end;
        position: relative;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .header-actions .header-gps-link {
        display: none;
    }

    .header-actions .btn-login {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-menu.active {
        top: calc(100% + 10px);
        right: 0;
        width: min(350px, calc(100vw - 16px));
        max-height: min(68vh, 460px);
        overflow-y: auto;
    }

    .header-container:has(.nav-toggle.active) .nav-menu.active {
        top: calc(100% + 48px);
    }

    .benefit-row-3col {
        grid-template-columns: 1fr !important;
    }

    .solution-content,
    .solution-content h3,
    .solution-content .subtitle,
    .solution-content p {
        text-align: left;
    }

    .solution-actions {
        justify-content: flex-start;
    }

    #roles .solution-image {
        display: flex;
        justify-content: center;
        flex: 0 0 auto;
        min-height: 0;
        margin-bottom: 8px;
    }

    #roles .solution-image .collaboration-img {
        margin-left: 0;
        width: auto;
        max-width: 320px;
        max-height: 380px;
        height: auto;
        object-fit: contain;
    }

    .hero-bottom-bar {
        grid-template-columns: 1fr;
    }

    .enterprise-features-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .enterprise-feature-card {
        min-height: 72px;
        padding: 14px 12px;
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(11,18,29,0.08);
    }

    .enterprise-feature-card h6 {
        font-size: 15px;
    }

    .enterprise-feature-card .feature-check {
        font-size: 26px;
    }

    .cta-section h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .cta-subtitle {
        font-size: clamp(16px, 4.2vw, 20px);
    }

    .cta-form {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .has-promo-banner {
        --promo-banner-height: 96px;
    }

    .promo-top-banner-text,
    .promo-top-banner-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(168px + var(--promo-banner-height));
    }

    .invoicing-image-frame {
        width: min(100%, 340px);
        padding: 8px;
        border-radius: 18px;
    }

    .hero-intro-strong {
        font-size: 17px;
    }

    .hero-image img {
        max-width: 340px;
    }

    #roles .solution-image .collaboration-img {
        width: auto;
        max-width: 270px;
        max-height: 320px;
        height: auto;
    }

    .brand-name {
        font-size: 20px;
    }

    .auto-tankovanie-img {
        max-width: min(62vw, 240px);
    }

    .agenda-feature-section .auto-tankovanie-img {
        max-width: 320px;
    }

    .tagline {
        font-size: 11px;
    }

    .hero-intro,
    .hero-outro,
    .faq-answer,
    .cta-form-box p {
        font-size: 15px;
        line-height: 1.55;
    }
}

/* OBNOVENÝ CENNÍK AGENDA PLUS */
            .agp-pricing {
                padding: 66px 0 64px;
                background: #ffffff;
            }

            .agp-pricing .container {
                max-width: 1320px;
            }

            .agp-pricing h2 {
                color: #0f172a;
            }

            .agp-pricing h3 {
                color: #0f172a;
                font-size: clamp(2.1rem, 2.8vw, 3rem);
                line-height: 1.15;
                font-weight: 800;
                margin-bottom: 0;
            }

            .agp-pricing .text-muted {
                color: #64748b !important;
            }

            .agp-pricing .plan-border {
                width: 64px;
                height: 4px;
                border-radius: 999px;
                background: linear-gradient(90deg, #0ba6df, #faa533);
            }

            .agp-pricing-grid {
                margin-top: 10px;
                align-items: flex-start;
                justify-content: center;
                --bs-gutter-x: 22px;
                --bs-gutter-y: 16px;
            }

            .agp-pricing-grid > div[class*="col-"] {
                flex: 0 1 382px;
                max-width: 382px;
            }

            @media (min-width: 992px) {
                .agp-pricing-grid {
                    display: grid;
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                    gap: 22px;
                    align-items: start;
                }

                .agp-pricing-grid > div[class*="col-"] {
                    width: 100%;
                    max-width: none;
                    flex: initial;
                    align-self: start;
                }
            }

            .agp-plan-card {
                height: auto;
                border-radius: 24px;
                border: 1px solid rgba(255, 255, 255, 0.22);
                background: #ffffff;
                box-shadow: 0 16px 34px rgba(15, 23, 42, 0.26);
                display: flex;
                flex-direction: column;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .agp-plan-side {
                transform: translateY(12px) scale(0.97);
                opacity: 0.9;
            }

            .agp-plan-featured {
                transform: translateY(-10px);
                box-shadow: 0 28px 56px rgba(11, 166, 223, 0.33);
                z-index: 2;
                opacity: 1;
            }

            /* Keep plan cards independent in height: opening one info detail must not stretch neighbors. */
            .row.agp-pricing-grid {
                align-items: flex-start !important;
            }

            .row.agp-pricing-grid > div[class*="col-"] {
                align-self: flex-start !important;
            }

            .row.agp-pricing-grid > div[class*="col-"] > .agp-plan-card,
            .row.agp-pricing-grid > div[class*="col-"] > .agp-plan-card .agp-plan-body {
                height: auto !important;
            }

            .agp-plan-head {
                position: relative;
                padding: 18px 16px 36px;
                color: #ffffff;
            }

            .agp-plan-head::after {
                content: "";
                position: absolute;
                left: -2%;
                right: -2%;
                bottom: -26px;
                height: 54px;
                background: #ffffff;
                transform: rotate(-2.4deg);
                transform-origin: center;
            }

            .agp-plan-left .agp-plan-head {
                background: linear-gradient(165deg, #d5daeb 0%, #c9d0e3 100%);
                color: #2f3a53;
            }

            .agp-plan-main .agp-plan-head {
                background: linear-gradient(158deg, #0ba6df 0%, #2f78de 52%, #faa533 100%);
            }

            .agp-plan-right .agp-plan-head {
                background: linear-gradient(162deg, #334a9a 0%, #1f2e6f 100%);
            }

            .agp-plan-badge {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 999px;
                padding: 8px 18px;
                font-size: 14px;
                font-weight: 800;
                letter-spacing: 0.01em;
                margin-bottom: 12px;
                border: 1px solid #cbd5e1;
                background: #f1f5f9;
                color: #1e293b;
            }

            .agp-plan-left .agp-plan-badge {
                color: #243247;
                background: #eef2ff;
                border-color: #c8d3ea;
            }

            .agp-plan-main .agp-plan-badge {
                color: #ffffff;
                background: rgba(17, 24, 39, 0.22);
                border-color: rgba(255, 255, 255, 0.35);
            }

            .agp-plan-right .agp-plan-badge {
                color: #ffffff;
                background: rgba(255, 255, 255, 0.16);
                border-color: rgba(255, 255, 255, 0.3);
            }

            .agp-plan-featured::before {
                content: "ODPORÚČANÝ";
                position: absolute;
                top: 16px;
                right: -50px;
                transform: translateY(1px) rotate(35deg);
                transform-origin: center;
                background: #0f172a;
                color: #ffffff;
                font-size: 11px;
                font-weight: 800;
                letter-spacing: 0.03em;
                padding: 8px 48px 7px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1.05;
                text-align: center;
                z-index: 5;
            }

            .agp-plan-body {
                padding: 18px 20px 16px;
                display: flex;
                flex-direction: column;
                height: auto;
                text-align: left;
            }

            .agp-plan-title {
                            font-size: 14px;
                line-height: 1.2;
                font-weight: 800;
                margin: 0 0 4px;
            }

            .agp-plan-price {
                margin: 2px 0 4px;
                display: flex;
                align-items: baseline;
                justify-content: center;
                gap: 4px;
                line-height: 1;
                font-weight: 900;
                letter-spacing: -0.02em;
            }

            .agp-plan-price .agp-plan-amount {
                font-size: 58px;
                font-weight: 900;
                line-height: 1;
            }

            .agp-plan-price span:not(.agp-plan-cycle) {
                font-size: 30px;
                font-weight: 800;
            }

            .agp-plan-cycle {
                            font-size: 12px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.92);
                letter-spacing: 0.02em;
            }

            .agp-plan-left .agp-plan-price,
            .agp-plan-left .agp-plan-cycle,
            .agp-plan-left .agp-plan-title {
                color: #2f3a53;
            }

            .agp-plan-left .agp-plan-cycle {
                color: #46556f;
            }

            .agp-brief {
                margin: 0;
                font-size: 15px;
                line-height: 1.4;
                color: rgba(255, 255, 255, 0.95);
                font-weight: 700;
                text-align: left;
                padding-left: 6px;
            }

            .agp-plan-left .agp-brief {
                color: #46556f;
            }

            .agp-brief + .agp-brief {
                margin-top: 4px;
            }

            .agp-subtitle {
                margin: 12px 0 6px;
                font-size: 18px;
                font-weight: 800;
                color: #0f172a;
                text-align: left;
            }

            .agp-list,
            .agp-limits {
                list-style: none;
                padding: 0;
                margin: 0;
                display: grid;
                gap: 4px;
                text-align: left;
            }

            .agp-list li,
            .agp-limits li {
                            font-size: 14px;
                line-height: 1.32;
                font-weight: 600;
                color: #0f172a;
            }

            .agp-limit-note {
                margin: 10px 0 0;
                text-align: left;
                font-size: 20px;
            }

            .agp-plan-right .agp-limit-note {
                color: #0f172a;
            }

            .agp-list,
            .agp-limits {
                gap: 6px;
            }

            .agp-divider {
                margin: 9px 0;
                border: 0;
                height: 1px;
                background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.7), rgba(148, 163, 184, 0));
            }

            .agp-plan-btn {
                margin-top: auto;
                width: 100%;
                min-height: 42px;
                border-radius: 9px;
                border: 1px solid transparent;
                font-size: 16px;
                font-weight: 800;
                padding: 9px 14px;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s ease;
            }

            .agp-plan-body .mt-3 {
                margin-top: 14px !important;
            }

            .agp-trial-note {
                margin: 8px 2px 0;
                            font-size: 13px;
                line-height: 1.35;
                color: #475569;
                text-align: left;
                font-weight: 500;
            }

            .agp-trial-info {
                margin-top: 8px;
            }

            .agp-trial-info summary {
                list-style: none;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .agp-trial-info summary::-webkit-details-marker {
                display: none;
            }

            .agp-info-icon {
                width: 22px;
                height: 22px;
                border-radius: 50%;
                border: 1px solid #64748b;
                color: #64748b;
                font-size: 13px;
                font-weight: 800;
                line-height: 1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s ease;
            }

            .agp-trial-info[open] .agp-info-icon,
            .agp-trial-info summary:hover .agp-info-icon {
                background: #64748b;
                color: #ffffff;
            }

            .agp-trial-info .agp-trial-note {
                margin-top: 8px;
            }

            .agp-plan-body .mt-4 {
                margin-top: 14px !important;
            }

            .agp-plan-btn-side {
                background: #465379;
                border-color: #465379;
                color: #ffffff;
                box-shadow: 0 8px 16px rgba(70, 83, 121, 0.24);
            }

            .agp-plan-btn-side:hover {
                background: #374264;
                border-color: #374264;
                color: #ffffff;
            }

            .agp-plan-btn-main {
                background: #22c55e;
                color: #ffffff;
                border-color: #16a34a;
                box-shadow: 0 10px 20px rgba(34, 197, 94, 0.45);
            }

            .agp-plan-btn-main:hover {
                background: #16a34a;
                color: #ffffff;
                box-shadow: 0 12px 24px rgba(22, 163, 74, 0.5);
            }

            .agp-billing-wrap {
                margin: 18px auto 8px;
                max-width: 780px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                flex-wrap: wrap;
                position: relative;
                padding: 0;
            }

            .agp-billing-arrow {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: 1px solid #cbd5e1;
                background: #ffffff;
                color: #0f172a;
                font-size: 18px;
                font-weight: 800;
                line-height: 1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all .2s ease;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 3;
            }

            #agp-billing-prev {
                left: -52px;
            }

            #agp-billing-next {
                right: -52px;
            }

            .agp-billing-arrow:hover {
                background: #f8fafc;
                border-color: #94a3b8;
            }

            .agp-billing-switch {
                display: inline-grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 8px;
                padding: 8px;
                border-radius: 999px;
                border: 1px solid #dbe1ea;
                background: #ffffff;
                min-width: 640px;
            }

            .agp-billing-option {
                border: 1px solid transparent;
                border-radius: 999px;
                min-height: 38px;
                padding: 6px 12px;
                background: transparent;
                color: #334155;
                font-size: 14px;
                font-weight: 700;
                white-space: nowrap;
                transition: all .2s ease;
                cursor: pointer;
            }

            .agp-billing-option:hover {
                background: #f8fafc;
                border-color: #e2e8f0;
            }

            .agp-billing-option.active {
                background: #0ba6df;
                color: #ffffff;
                border-color: #0ba6df;
                box-shadow: 0 8px 16px rgba(11, 166, 223, 0.28);
            }

            .agp-billing-option.yearly-active {
                background: #22c55e;
                border-color: #16a34a;
                color: #ffffff;
                box-shadow: 0 10px 18px rgba(34, 197, 94, 0.35);
            }

            .agp-billing-discount {
                display: inline-flex !important;
                align-items: center;
                justify-content: center;
                margin: 10px auto 0;
                padding: 10px 20px;
                width: min(820px, 100%) !important;
                min-width: min(820px, 100%);
                max-width: 820px;
                box-sizing: border-box;
                border-radius: 999px;
                border: 1px solid #86efac;
                background: #ecfdf5;
                color: #166534;
                font-size: 24px;
                font-weight: 900;
                letter-spacing: 0.01em;
                text-transform: uppercase;
                line-height: 1.1;
                min-height: 56px;
                white-space: nowrap;
                transform-origin: center;
            }

            .agp-billing-discount.agp-first-visit-pulse {
                animation: agp-heartbeat 3s ease-in-out 5;
            }

            @keyframes agp-heartbeat {
                0% {
                    transform: scale(1);
                }

                14% {
                    transform: scale(1.08);
                }

                28% {
                    transform: scale(1);
                }

                42% {
                    transform: scale(1.12);
                }

                70% {
                    transform: scale(1);
                }

                100% {
                    transform: scale(1);
                }
            }

            .agp-yearly-note {
                display: none;
                margin: 0 0 6px;
                            font-size: 15px;
                line-height: 1.35;
                font-weight: 800;
                text-align: left;
            }

            .agp-plan-left .agp-yearly-note {
                color: #334155;
            }

            .agp-plan-main .agp-yearly-note,
            .agp-plan-right .agp-yearly-note {
                color: #ffffff;
            }

            .agp-yearly-save {
                color: #22c55e;
            }

            .agp-yearly-note.is-visible {
                display: block;
            }

            .agp-billing-discount.is-visible {
                display: inline-flex !important;
                width: min(820px, 100%) !important;
            }

            @media (max-width: 991px) {
                .agp-pricing {
                    padding: 56px 0;
                }

                .agp-billing-switch {
                    min-width: 100%;
                    grid-template-columns: 1fr 1fr;
                }

                .agp-billing-wrap {
                    max-width: 100%;
                    padding: 0;
                }

                .agp-billing-arrow {
                    position: static;
                    transform: none;
                }

                .agp-billing-discount {
                    font-size: 22px;
                }

                .agp-pricing-grid > div[class*="col-"] {
                    flex: 0 1 100%;
                    max-width: 100%;
                }

                .agp-plan-side,
                .agp-plan-featured {
                    transform: none;
                    opacity: 1;
                }

                .agp-plan-head::after {
                    transform: rotate(-1.2deg);
                }

                .agp-plan-featured {
                    margin-top: 16px;
                }
            }
