/* ======== HERLEKYN Design - Kompletný CSS ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --color-navy: #0A1172;
    --color-navy-dark: #0a1f44;
    --color-ink: #111827;
    --color-muted: #4b5563;
    --color-surface: #ffffff;
    --space-section: 108px;
    --space-section-compact: 72px;
}

html {
    font-size: 16px;
}

html, body {
    font-family: var(--font-sans);
    color: var(--color-ink);
    background-color: var(--color-surface);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
}

h3 {
    font-size: clamp(1.35rem, 1.2rem + 0.8vw, 1.75rem);
}

p, li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-muted);
}

/* ===== HEADER – desktop layout ===== */
.header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e7ecf4;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.header .logo-container img {
    max-height: 72px;
    margin-top: 3px;
    width: auto;
}

/* HAMBURGER – default skrytý (iba pre mobil ho zapneme) */
/* Hamburger ikonka – default skrytá (ukážeme ju len na mobile) */
/* Hamburger – iba pre mobil (desktop skrytý) */
.hamburger-menu {
    display: none;
    margin-left: auto;
    cursor: pointer;
}
.header .hamburger-menu img {
    height: 24px;
}

/* ===== DESKTOP MENU – textové linky à la JetBrains ===== */
.menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    row-gap: 12px;
}

/* Textové položky v menu (PROFIL, PRICING, ERPOLIS, KONTAKT) */
.menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-navy-dark);
    padding-bottom: 4px;
    white-space: nowrap;
}

/* Tenka modrá čiarka pod textom pri hover/active */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--color-navy);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease-out;
}

.menu a:hover {
    color: var(--color-navy);
}
.menu a:hover::after,
.menu a.active::after {
    transform: scaleX(1);
}

/* ===== Jazykový prepínač – v štýle menu ===== */
/* Translations may be longer (DE +40%). Avoid fixed widths. */
.language-switcher {
    margin-left: 12px;
    flex: 0 0 auto;
}

.language-switcher select {
    border: none;
    border-bottom: 1px solid #c4cad8;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 26px 4px 8px;
    min-width: 88px;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: right 4px center;
    /* jednoduchá sivá šípka ▼ */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%23909090'/%3E%3C/svg%3E");
    color: var(--color-navy-dark);
}

.language-switcher select:hover,
.language-switcher select:focus {
    border-bottom-color: #0A1172;
}

/* ===== VIDEO BANNER ===== */
.video-container {
    position: relative;
    margin-top: 0;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #f9f9f9;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}
.overlay-inner {
    text-align: center;
}
.overlay-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.powered-by {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}
.erpolis-logo {
    height: 48px;
    object-fit: contain;
    filter: brightness(200%); /* ak je málo kontrastné logo */
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid #e3e8ee;
}
.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}
.trust-strip__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 520px;
}
.trust-strip__label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-navy);
    font-weight: 600;
}
.trust-strip__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #2b3947;
}
.trust-strip__logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px 24px;
    flex-wrap: wrap;
}
.trust-strip__logos img {
    max-height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
}

/* ===== SWIPER KONTAJNER ===== */
.swiper-outer-wrapper {
    position: relative;
    overflow: visible;
    background: #f0f4f8;
    padding: 48px 0;
}
.swiper-container-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;
    background: #f0f4f8;
}
.swiper-container {
    width: 100%;
    overflow: hidden;
}
.swiper-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.swiper-slide {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 103, 184, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 360px; /* pevná šírka */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
.swiper-slide:hover {
    transform: scale(1.02);
}
.swiper-slide h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.swiper-slide p {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.swiper-slide .button-primary { margin-top: auto; }

/* ===== ŠÍPKY ===== */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.swiper-button-prev {
    left: calc(50% - 600px - 44px); /* mimo kontajner (1200px/2 + šírka) */
}
.swiper-button-next {
    right: calc(50% - 600px - 44px);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    color: #0067b8;
    font-size: 20px;
    font-weight: bold;
}

/* ===== GRID CARDS ===== */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: var(--space-section-compact) 5%;
    background-color: #ffffff;
}
.card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    text-align: left;
}
.card:hover {
    transform: translateY(-5px);
}
.card h4 {
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 15px;
}
.card p {
    color: #444;
}

/* ===== CTA BUTTON ===== */
.button-primary {
    background-color: #0067b8;
    color: #fff;
    border: none;
    padding: 12px 24px;
    margin-top: 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    cursor: pointer;
}
.button-primary:hover {
    background-color: #004e93;
}

/* ===== BANNER ===== */
.banner {
    width: 100%;
    background: linear-gradient(135deg, #003366, #004c99);
    padding: 48px 0;
    color: white;
    border-radius: 8px;
}
.banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.banner-logo {
    height: 50px;
    flex-shrink: 0;
}
.banner-text {
    flex: 1 1 auto;
}
.banner-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.banner-text p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
    color: #FFFFFF;
}
.banner button {
    background-color: #0077aa;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto;
}
.banner button:hover {
    background-color: #005f8a;
}
.banner-margin-top {
    margin-top: 50px;
}

/* MASKOT NA BANNERI */
.banner-mascot {
    height: 170px;
    flex-shrink: 0;
    margin-left: 20px;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.8));
}

/* mobil – nech je pekne pod textom */
@media (max-width: 768px) {
    .banner-mascot {
        height: 150px;
        margin-left: 0;
        margin-top: 16px;
        align-self: center;
    }
}

/* ===== SECTION WRAPPERS ===== */
.white-section {
    background-color: #ffffff;
    padding: var(--space-section-compact) 5%;
}
.content-wrapper {
    max-width: 1400px;
    margin: auto;
}
.content-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
    margin: var(--space-section-compact) 0;
}

.content-section:nth-child(even) {
    direction: rtl;
}
.content-section:nth-child(even) .text {
    direction: ltr;
}
.content-section:nth-child(even) img {
    direction: ltr;
    border-radius: 8px;
}

.content-section .text {
    padding: 0 20px;
}
.security-section {
    margin: var(--space-section-compact) 0;
}
.security-card {
    background: #ffffff;
    border: 1px solid #e3e7ee;
    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}
.security-card__content h2 {
    margin: 0 0 12px;
}
.security-card__list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: #333333;
}
.security-card__cta {
    flex-shrink: 0;
}
.video-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    margin: var(--space-section-compact) 0;
}
.video-section__text h2 {
    margin-bottom: 16px;
}
.video-section__media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    background: #e6e6e6;
}
.video-embed iframe,
.video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-placeholder {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-placeholder__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
}
.video-placeholder__icon::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 22px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid #ffffff;
}
.video-note {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.separator-container {
    margin: 48px 0;
}
.separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #004c99, transparent);
}

.gray-fullwidth {
    width: 100%;
    background-color: #f0f0f0;
    padding: var(--space-section-compact) 5%;
}
.gray-fullwidth .button button {
    background-color: #0077aa;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.gray-fullwidth .button button:hover {
    background-color: #005f8a;
}

.gray-fullwidth .gray-section {
    max-width: 1400px;
    margin: auto;
}
.gray-section {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 10px;
}
.section-column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.column {
    flex: 1 1 45%;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer-strip {
    width: 100%;
    padding: 15px 5%;
    background-color: #f2f2f2;
    font-size: 14px;
    color: #777;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.footer-strip a {
    color: #0067b8;
    text-decoration: none;
}
.footer-strip a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 0 16px;
    }

    .hamburger-menu {
        display: block;       /* na mobile zobrazíme hamburger */
    }

    /* menu je schované, zobrazí sa po kliknutí (class .open) */
    .menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 12px 16px 16px;
        background: #ffffff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
        flex-direction: column;
        gap: 12px;
        display: none;
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        width: 100%;
        padding-bottom: 6px;
    }

    .language-switcher {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }

    .language-switcher select {
        width: 100%;
        background-position: right 10px center;
    }

    .video-overlay {
        font-size: 1.5rem;
        padding: 10px;
    }
    .trust-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .trust-strip__logos {
        justify-content: flex-start;
    }
    .content-section {
        grid-template-columns: 1fr;
    }
    .content-section,
    .content-section:nth-child(even) {
        direction: ltr;
    }
    .video-section {
        grid-template-columns: 1fr;
    }
    .grid-section {
        padding: 40px 20px;
    }
    .card {
        padding: 20px;
    }
    .banner-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .banner-text h2 {
        font-size: 20px;
    }
    .banner button {
        align-self: stretch;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    .section-column {
        flex-direction: column;
    }
    .column {
        width: 100%;
    }
    .content-section .text, .content-section img {
        order: unset !important;
    }
    .security-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }
    .security-card__cta {
        width: 100%;
    }
    .security-card__cta .button-primary {
        width: 100%;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}
@media (max-width: 1024px) {
    .swiper-button-prev {
        left: -40px;
    }
    .swiper-button-next {
        right: -30px;
    }
}

/* Sticky footer layout */
html, body { height: 100%; }
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* hlavný obsah sa roztiahne, footer odtlačí na spodok */
.site-main { flex: 1 0 auto; }

/* ak v šablóne používaš <footer> alebo .footer */
.site-footer, footer, .footer { margin-top: auto; }

/* voliteľné – zruš spodné medzery posledných blokov, ktoré robia „bielu medzeru“ */
.white-section:last-child,
.content-wrapper:last-child,
.banner-margin-top:last-child { margin-bottom: 0; padding-bottom: 0; }

/* Pricing hero */
.pricing-page { background: #f8fafc; padding-bottom: 72px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.pricing-hero { text-align: center; padding: 56px 16px 24px; }
.pricing-hero h1 { font-size: clamp(2rem, 1.6rem + 1.5vw, 2.6rem); margin: 0 0 10px; color: var(--color-navy-dark); }
.pricing-hero p { color: var(--color-muted); margin: 0; font-size: 1rem; }

.pricing-plans { padding: 8px 0 40px; }
.pricing-summary { margin: 0; color: #4b5563; }
.pricing-cta { display: inline-flex; justify-content: center; align-items: center; padding: 12px 18px; border-radius: 999px; text-decoration: none; }

/* Switch */
.billing-switch { display:inline-flex; gap:8px; margin:18px 0 0; background:#f2f5f7; padding:6px; border-radius:8px; }
.switch-btn { padding:8px 14px; border-radius:6px; text-decoration:none; color:#2b3947; font-weight:600; }
.switch-btn.active { background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.05); }
.save-badge { margin-left:6px; font-size:12px; color:#0a7; }

/* Grid planov */
.pricing-page .pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-bottom: 40px; }
@media (max-width: 900px) { .pricing-page .pricing-grid { grid-template-columns: 1fr; } }

.plan-card { background:#fff; border:1px solid #e6eaee; border-radius:14px; padding:20px; display:flex; flex-direction:column; gap:14px; box-shadow:0 2px 10px rgba(0,0,0,.03); }
.plan-card .plan-header h3{ margin:0 0 4px; font-size:20px; }
.plan-card .trial-badge { display:inline-block; margin:6px 0 2px; padding:6px 10px; border-radius:10px; background:#e0f2fe; color:#0f172a; font-size:12px; font-weight:600; }
.plan-card .price{ font-size:14px; color:#5e6a75; }
.plan-card .amount{ font-size:26px; font-weight:700; color:#1c2a35; margin-right:6px; }
.plan-card .trial{ font-size:12px; color:#5e6a75; margin-top:6px; }

.plan-card .features { list-style:none; padding:0; margin:4px 0 8px; }
.plan-card .features li { padding-left:22px; position:relative; margin:6px 0; }
.plan-card .features li:before { content:'✓'; position:absolute; left:0; top:0; color:#2a7; font-weight:700; }

.btn-primary { background:#1d61d1; color:#fff; border:none; border-radius:8px; padding:10px 14px; cursor:pointer; font-weight:700; }
.btn-primary:hover { filter:brightness(.95); }
.btn-primary.big { width:100%; padding:12px 16px; }

/* Checkout */
.checkout-section {
    padding: 40px 0 60px;
}

.checkout-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

.checkout-card {
    background: #ffffff;
    border: 1px solid #e6eaee;
    border-radius: 20px;
    padding: 26px 26px 28px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
    .checkout-card {
        grid-template-columns: 1fr;
        padding: 22px 18px 24px;
    }
}

/* ľavý stĺpec – zhrnutie plánu */
.plan-summary {
    border-right: 1px solid #e5e7eb;
    padding-right: 18px;
}
@media (max-width: 900px) {
    .plan-summary {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 16px;
        margin-bottom: 10px;
    }
}

.plan-summary-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 6px;
}

.plan-summary-name-row {
    margin-bottom: 10px;
}

.plan-summary .price {
    margin-top: 4px;
    font-size: 14px;
    color: #6b7280;
}
.plan-summary .price .amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}
.plan-summary .price .period {
    font-size: 14px;
}

.plan-summary .trial {
    color: #5e6a75;
    font-size: 13px;
    margin-top: 8px;
}

.plan-summary-points {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    font-size: 13px;
    color: #4b5563;
}
.plan-summary-points li {
    position: relative;
    padding-left: 18px;
    margin: 4px 0;
}
.plan-summary-points li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #1d61d1;
}

/* pravý stĺpec – formulár */
.checkout-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}
.checkout-form-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

/* polia formulára */
.checkout-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.fields-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 10px;
}
@media (max-width: 640px) {
    .fields-2col {
        grid-template-columns: 1fr;
    }
}

.checkout-form label {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="password"],
.checkout-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccd6df;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-form input[type="text"]:focus,
.checkout-form input[type="email"]:focus,
.checkout-form input[type="password"]:focus,
.checkout-form select:focus {
    outline: none;
    border-color: #1d61d1;
    box-shadow: 0 0 0 1px rgba(29, 97, 209, 0.15);
}

/* checkbox skupina */
.checkbox-group {
    margin-top: 12px;
}

.checkbox {
    display: flex;
    gap: 10px;
    margin: 6px 0;
    align-items: flex-start;
    font-size: 13px;
    color: #374151;
}
.checkbox input[type="checkbox"] {
    margin-top: 3px;
}
.checkbox a {
    text-decoration: underline;
    color: #1d61d1;
}
.checkbox a:hover {
    text-decoration: none;
}

/* alert pri chybách */
.alert {
    background: #fff4f4;
    border: 1px solid #f6c1c1;
    border-radius: 8px;
    padding: 10px 12px;
    color: #8a1f1f;
    font-size: 13px;
    margin-top: 8px;
}
.alert ul {
    margin-left: 16px;
}

/* tlačidlo + späť */
.btn-primary.big {
    width: 100%;
    padding: 12px 16px;
    margin-top: 16px;
}

.back {
    margin-top: 10px;
    font-size: 13px;
}
.back a {
    color: #4f46e5;
}
.back a:hover {
    text-decoration: underline;
}

/* FAQ */
.pricing-faq { max-width:900px; margin:0 auto 40px; padding:0 16px; }
.pricing-faq h2{ text-align:center; margin:24px 0 8px; }
.faq-item{ background:#fff; border:1px solid #e6eaee; border-radius:12px; padding:14px 16px; margin-top:10px; }

/* badge na Pro */
.best-badge{
    display:inline-block;
    background:#ffefcc;
    color:#7a4b00;
    border:1px solid #ffd889;
    border-radius:999px;
    padding:4px 10px;
    font-size:12px;
    font-weight:700;
    margin-bottom:8px;
}

/* zvýraznenie Pro karty */
.plan-card.is-popular{
    border-color:#cfe2ff;
    box-shadow:0 6px 18px rgba(29,97,209,.15);
    position:relative;
    transform:translateY(-2px);
}

/* sekundárny riadok ceny pre ročné */
.subprice{
    margin-top:6px;
    font-size:13px;
    color:#44525e;
}
.subprice .save-inline{
    margin-left:6px;
    color:#0a7;
    font-weight:700;
}

/* drobný facelift */
.plan-card .plan-header h3{ display:flex; align-items:center; gap:8px; }

/* nech sú všetky hlavičky rovnako vysoké, ak má Pro badge */
.plan-card .plan-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* na kartách bez badge vložíme prázdny „spacer“ s rovnakou výškou */
.plan-card:not(.is-popular) .plan-header::before {
    content: "";
    display: block;
    height: 26px; /* ≈ výška .best-badge (ak máš inú, uprav tu) */
}

/* ak chceš, môžeš ešte nechať badge „sedieť“ bez medzier naviac */
.plan-card.is-popular .best-badge {
    margin-bottom: 8px; /* už máš – ponechaj / doladíš podľa oka */
}

/* ===== POROVNANIE PLÁNOV ===== */
.plan-comparison {
    margin: 32px auto 40px;
    padding: 0 16px;
}

.plan-comparison-inner {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    padding: 24px 24px 28px;
}

.plan-comparison-title {
    text-align: center;
    font-size: 26px;
    margin: 0 0 10px;
}

.plan-comparison-lead {
    text-align: center;
    margin: 0 0 16px;
    color: #5e6a75;
    font-size: 15px;
}

/* wrapper kvôli mobilom */
.plan-comparison-table-wrap {
    overflow-x: auto;
    margin-top: 8px;
}

/* samotná tabuľka */
.plan-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.plan-comparison-table thead {
    background: #f3f4f6;
}

.plan-comparison-table th,
.plan-comparison-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
}

.plan-comparison-table th {
    font-weight: 600;
    color: #111827;
}

/* stĺpce */
.pc-feature-col {
    text-align: left;
    width: 55%;
}
.pc-plan-col {
    text-align: center;
    width: 22.5%;
}

/* zebra efekt na riadkoch */
.plan-comparison-table tbody tr:nth-child(odd) {
    background-color: #fafbff;
}

/* text v ľavom stĺpci */
.pc-feature {
    color: #111827;
}
.pc-feature-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}
.pc-feature-strong {
    font-weight: 600;
}

/* bunky s hodnotami */
.pc-cell {
    text-align: center;
    white-space: nowrap;
}

.pc-ok {
    color: #16a34a;
    font-weight: 700;
    font-size: 16px;
}
.pc-no {
    color: #9ca3af;
    font-size: 16px;
}
.pc-highlight {
    color: #1d4ed8;
    font-weight: 500;
}
.pc-strong {
    font-weight: 600;
}

/* „pill“ nadpisy Basic / Pro */
.plan-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.plan-pill-basic {
    background: #e5f0ff;
    color: #1d4ed8;
}
.plan-pill-pro {
    background: #fee2e2;
    color: #b91c1c;
}

/* responsívne drobnosti */
@media (max-width: 640px) {
    .plan-comparison-inner {
        padding: 20px 16px 22px;
        border-radius: 16px;
    }
    .plan-comparison-title {
        font-size: 22px;
    }
}
/* --- Customer portal layout --- */
.portal-shell {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.portal-eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #546E7A;
    margin: 0 0 4px;
}

.portal-subtitle {
    color: #607D8B;
    margin: 4px 0 0;
}

.portal-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #455A64;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.portal-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.portal-card .table {
    margin-top: 12px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.table.responsive {
    overflow-x: auto;
}

.table table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid #ECEFF1;
}

.table th {
    font-size: 13px;
    text-transform: uppercase;
    color: #607D8B;
    letter-spacing: .4px;
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ECEFF1;
    color: #455A64;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-paid { background: #E8F5E9; color: #1B5E20; }
.pill-pending { background: #FFF3E0; color: #E65100; }
.pill-failed { background: #FFEBEE; color: #C62828; }
.pill-canceled { background: #ECEFF1; color: #455A64; }

.portal-alert {
    border: 1px solid #F9A825;
    background: #FFF8E1;
    color: #795548;
    padding: 12px 16px;
    border-radius: 8px;
}

.portal-alert ul {
    margin: 0;
    padding-left: 18px;
}

.portal-auth form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portal-auth .form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.portal-auth label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #37474F;
    font-weight: 600;
}

.portal-auth input[type="email"],
.portal-auth input[type="password"] {
    padding: 10px 12px;
    border: 1px solid #CFD8DC;
    border-radius: 8px;
    font-size: 14px;
}

.portal-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mono { font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.muted { color: #78909C; margin: 0; }

@media (max-width: 768px) {
    .portal-header { flex-direction: column; align-items: flex-start; }
    .portal-grid { grid-template-columns: 1fr; }
}
/* ===== LANDING PAGE WIREFRAME ===== */
.landing-page {
    background: #ffffff;
    color: #0f1b2d;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.landing-sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(14, 32, 66, 0.08);
    backdrop-filter: blur(16px);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(140deg, #1d4ed8, #0a1f44);
    color: #f8d57b;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-name {
    margin: 0;
    font-weight: 700;
    color: #0a1f44;
}

.brand-tagline {
    margin: 0;
    font-size: 13px;
    color: #4a5a73;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-mobile-controls {
    display: none;
    align-items: center;
    gap: 12px;
}

.landing-button.header-cta {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
}

.landing-hamburger {
    min-width: 44px;
    min-height: 44px;
    border-radius: 14px;
    border: 1px solid #c8d4f0;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
}

.landing-hamburger span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: #0a1f44;
}

.landing-hamburger span::before,
.landing-hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #0a1f44;
}

.landing-hamburger span::before {
    top: -6px;
}

.landing-hamburger span::after {
    top: 6px;
}

.landing-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid #e7ecf4;
    padding: 8px 20px 16px;
    box-shadow: 0 12px 24px rgba(16, 40, 90, 0.08);
}

.landing-mobile-menu a {
    padding: 14px 0;
    font-size: 14px;
    color: #0a1f44;
    text-decoration: none;
    border-bottom: 1px solid #eef2f8;
}

.landing-mobile-menu a:last-of-type {
    border-bottom: none;
}

.landing-mobile-menu.is-open {
    display: flex;
}

.landing-section {
    padding: var(--space-section) 0;
}

.landing-section.alt-background {
    background: #f5f8fc;
}

.landing-container {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 48px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.25rem);
    color: var(--color-navy-dark);
}

.section-lead {
    font-size: 18px;
    color: var(--color-muted);
    max-width: 720px;
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #2a5db0;
    font-weight: 700;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 2.1rem + 1.8vw, 3.25rem);
    line-height: 1.1;
    margin: 16px 0;
    color: var(--color-navy-dark);
}

.hero-media {
    min-height: 360px;
}

.trust-line {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-muted);
}

.trust-logos {
    font-weight: 600;
    color: var(--color-navy-dark);
}

.bullet-list {
    list-style: disc;
    padding-left: 20px;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
    color: var(--color-muted);
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.text-link {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
    align-self: center;
}

.text-link:hover {
    text-decoration: underline;
}

.landing-button {
    border-radius: 16px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-button.primary {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #f8d57b 140%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(29, 78, 216, 0.24), inset 0 0 0 1px rgba(248, 213, 123, 0.6);
}

.landing-button.gold {
    background: #f8d57b;
    color: #2b210a;
    box-shadow: 0 12px 24px rgba(216, 168, 77, 0.32);
}

.landing-button.secondary {
    background: #ffffff;
    color: #0a1f44;
    border: 1px solid #c8d4f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.landing-button.ghost {
    background: #ffffff;
    color: #1d4ed8;
    border: 1px solid #c8d4f0;
    box-shadow: 0 8px 16px rgba(13, 37, 92, 0.06);
}

.landing-button.inverse {
    background: #ffffff;
    color: #0a1f44;
}

.landing-button:hover {
    transform: translateY(-1px);
}

.landing-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
    background: rgba(29, 78, 216, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}

.landing-link-button:hover {
    background: rgba(29, 78, 216, 0.16);
    color: #0a1f44;
}

.placeholder {
    background: #f1f5fb;
    border: 1px dashed #b6c7e6;
    border-radius: 16px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.placeholder.large {
    min-height: 320px;
}

.form-placeholder {
    min-height: 280px;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid.three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.six-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four-cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 12px;
}

.info-card h3 {
    font-size: 20px;
    color: #0a1f44;
}

.icon-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e2ebfb;
    border: 1px solid #c7d6f4;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 20px;
}

.step-label {
    display: block;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    border-radius: 16px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e1e8f6;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 20px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--color-navy);
    box-shadow: 0 20px 40px rgba(10, 17, 114, 0.18);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0a1f44, #0a1172);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(10, 17, 114, 0.25);
}

.pricing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pricing-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e2ebfb;
    color: var(--color-navy-dark);
}

.pricing-price {
    font-size: 26px;
    font-weight: 700;
    color: #0a1f44;
    margin: 0;
}

.pricing-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: #314158;
}

.comparison-block {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e1e8f6;
    padding: 28px;
    display: grid;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    min-width: 560px;
}

.comparison-table th {
    background: #0a1f44;
    color: #ffffff;
    text-align: left;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.comparison-table th:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.comparison-table th:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
}

.comparison-table td {
    background: #f8fafd;
    padding: 14px 18px;
    color: #314158;
    border: 1px solid #e3eaf6;
}

.comparison-table td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.comparison-table td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
}

.comparison-row .check {
    font-weight: 700;
    color: #1d4ed8;
    text-align: center;
}

.comparison-table .dash {
    font-weight: 700;
    color: #8a97ab;
    text-align: center;
}

.comparison-subtitle {
    margin: 8px 0 0;
    color: #4b5563;
}

.comparison-group td {
    background: #ffffff;
    color: var(--color-navy-dark);
    font-weight: 700;
    border: 0;
    padding: 6px 4px 2px;
}

.pricing-note {
    margin: 12px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.trial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 12px;
}

.product-media {
    min-height: 160px;
}

.product-price {
    font-weight: 700;
    color: #0a1f44;
}

.landing-footer {
    background: #0a1f44;
    color: #ffffff;
    padding-bottom: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.footer-grid h4 {
    margin: 0 0 12px;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-grid a {
    color: #f8d57b;
    text-decoration: none;
}

.footer-grid a:hover {
    text-decoration: underline;
}

.cta-banner {
    background: var(--color-navy-dark);
    color: #ffffff;
    padding: calc(var(--space-section-compact) + 4px) 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-size: clamp(1.9rem, 1.6rem + 1.2vw, 2.4rem);
    line-height: 1.2;
    max-width: 620px;
}

.content-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    padding: 40px 0;
}

.content-block:nth-of-type(even) {
    direction: rtl;
}

.content-block:nth-of-type(even) > * {
    direction: ltr;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 16px;
}

.contact-section {
    margin-top: 72px;
    display: grid;
    gap: 24px;
}

.contact-section__intro h2 {
    margin-bottom: 8px;
}

.contact-card--form {
    padding: 36px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form__field {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: #0f172a;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d7e0ef;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: #ffffff;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__note {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.form-alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
}

.form-alert--success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #86efac;
}

.form-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.advisor-chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: grid;
    gap: 12px;
    justify-items: end;
    font-family: inherit;
}

.advisor-fab {
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
    cursor: pointer;
}

.advisor-panel {
    width: min(320px, 90vw);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    display: none;
}

.advisor-panel.is-open {
    display: block;
}

.advisor-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
}

.advisor-panel__close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
}

.advisor-panel__content {
    padding: 16px;
    display: grid;
    gap: 12px;
}

.advisor-panel__content p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.advisor-panel__actions {
    display: grid;
    gap: 10px;
}

.advisor-quick {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.advisor-quick:hover {
    background: #e2e8f0;
    border-color: #cbd5f5;
}

.landing-section.trust-strip {
    padding: calc(var(--space-section-compact) - 12px) 0;
    background: #f8fafc;
}

.trust-strip-inner {
    display: grid;
    gap: 16px;
}

.trust-strip-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-muted);
    font-weight: 700;
    margin: 0;
}

.trust-strip-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-strip-logos span {
    padding: 10px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e1e8f6;
    color: var(--color-navy-dark);
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: #3b4d66;
}

@media (max-width: 1200px) {
    .landing-container {
        padding: 0 32px;
    }

    .card-grid.four-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid.six-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 960px) {
    .hero-grid,
    .two-col,
    .content-block,
    .contact-grid,
    .pricing-grid,
    .trial-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-grid.three-cols,
    .card-grid.six-cols {
        grid-template-columns: 1fr;
    }

    .sticky-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-actions {
        width: 100%;
        flex-wrap: wrap;
    }

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

    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .header {
        height: 72px;
        padding: 0 16px;
        justify-content: space-between;
    }

    .header .logo-container img {
        max-height: 40px;
        margin-top: 0;
    }

    .hamburger-menu {
        display: flex;
        align-items: center;
    }

    .menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border-bottom: 1px solid #e7ecf4;
        padding: 8px 16px 16px;
        box-shadow: 0 12px 24px rgba(16, 40, 90, 0.08);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        padding: 14px 0;
        font-size: 14px;
        border-bottom: 1px solid #eef2f8;
    }

    .menu a:last-of-type {
        border-bottom: none;
    }

    .language-switcher {
        margin: 12px 0 0;
    }

    .language-switcher select {
        width: 100%;
        font-size: 13px;
        padding: 8px 18px 8px 0;
    }

    .landing-page {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        margin-left: 0;
    }

    .landing-sticky {
        height: 72px;
    }

    .sticky-inner {
        height: 72px;
        padding: 0;
        flex-direction: row;
        align-items: center;
    }

    .sticky-actions {
        display: none;
    }

    .landing-mobile-controls {
        display: flex;
    }

    .landing-mobile-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
    }

    .landing-section {
        padding: 64px 0;
    }

    .landing-container {
        padding: 0 20px;
    }

    .eyebrow {
        font-size: clamp(11px, 2.8vw, 13px);
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 7vw, 34px);
    }

    .section-header h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .section-lead,
    .bullet-list li,
    .info-card p,
    .content-block p,
    .contact-list li {
        font-size: clamp(14px, 3.8vw, 16px);
    }

    .trust-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-group .landing-button {
        width: 100%;
    }

    .card-grid.four-cols,
    .card-grid.six-cols {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        border-spacing: 0 8px;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 13px;
    }

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

    .content-block {
        padding: 32px 0;
    }

    .content-block:nth-of-type(even) {
        direction: ltr;
    }
}