/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    background: #fff;
    color: #191919;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.64;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    background-color: #ededed;
}
img, picture, video, canvas, svg {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
a {
    color: #191919;
    text-decoration: none;
    transition: color 0.2s;
    outline: none;
}
a:hover, a:focus {
    color: #22436B;
    text-decoration: underline;
}
ul, ol {
    list-style-position: inside;
    margin-left: 0;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}
button {
    cursor: pointer;
}
:focus {
    outline: 2px solid #191919;
    outline-offset: 2px;
}


/* ==== BASIC STRUCTURE, LAYOUT & WRAPPERS ==== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(34, 43, 50, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Global color variables fallback */
:root {
    --color-primary: #191919;
    --color-dark: #121212;
    --color-accent: #FFC93C;
    --color-gray: #ededed;
    --color-contrast: #fff;
    --color-brand: #22436B;
    --color-secondary: #EFEFEF;
    --shadow-card: 0 2px 24px rgba(34, 43, 50, 0.09);
    --radius: 14px;
    --transition: all .21s cubic-bezier(.5,.2,.1,1);
}


/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');

h1, h2, h3, h4, h5 {
    color: #191919;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: .01em;
}
h1 {
    font-size: 2.5rem;
    line-height: 1.21;
    margin-bottom: 12px;
    color: #191919;
}
h2 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #191919;
}
h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: #191919;
    margin-bottom: 8px;
}
h4, h5 {
    font-size: 1.09rem;
    line-height: 1.2;
}
p, li {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #232323;
}
strong {
    font-weight: 700;
    color: #191919;
}
.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}


/* === HEADER & NAVIGATION === */
header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    min-height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
header img {
    height: 48px;
    margin: 10px 0;
}
.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
}
.main-nav a {
    color: #191919;
    padding: 7px 16px;
    border-radius: 7px;
    font-weight: 500;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
    color: #fff;
    background: #191919;
    text-decoration: none;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: #191919;
    font-size: 2.2rem;
    line-height: 1;
    margin-left: 16px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background .12s;
    z-index: 111;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #ededed;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    background: rgba(34, 34, 34, 0.92);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform .33s cubic-bezier(.66,.25,.25,1);
    padding: 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu button.mobile-menu-close {
    background: #191919;
    border: none;
    color: #fff;
    font-size: 2.1rem;
    margin: 30px 35px 12px 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .16s;
}
.mobile-menu button.mobile-menu-close:focus, .mobile-menu button.mobile-menu-close:hover {
    background: #FFC93C;
    color: #191919;
}
.mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    margin-top: 40px;
    padding: 0 40px;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    padding: 14px 0 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    width: 100%;
    display: block;
    transition: color .2s, background .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #FFC93C;
    background: none;
}

@media (max-width: 1000px) {
    .main-nav {
        gap: 18px;
    }
}
@media (max-width: 820px) {
    .main-nav {
        gap: 2vw;
    }
    .container {
        max-width: 97vw;
    }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    header .container {
        gap: 0;
    }
}
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    .mobile-menu {
        display: none !important;
    }
}


/* === BUTTONS & CTAS === */
.cta-btn, .service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #191919;
    color: #fff;
    border-radius: 12px;
    border: none;
    padding: 14px 38px;
    font-size: 1.19rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 12px rgba(34,34,34,0.07);
    margin-top: 18px;
    margin-bottom: 6px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus, .service-btn:hover, .service-btn:focus {
    background: #FFC93C;
    color: #191919;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(34,34,34,0.11);
}


/* ==== GRIDS & FLEX CONTAINERS ==== */
.features-grid, .services-grid, .faq-accordion, .card-container, .content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.features-grid > div, .services-grid .service-card, .faq-accordion > div {
    flex: 1 1 250px;
    background: #f8f8f8;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 26px 20px 24px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 220px;
    transition: box-shadow .21s;
    border: 1px solid #ebebeb;
}
.features-grid > div:hover,
.services-grid .service-card:hover,
.faq-accordion > div:hover {
    box-shadow: 0 6px 36px 0 rgba(34, 43, 50, .13);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    position: relative;
    background: #fff;
    transition: box-shadow .19s;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .content-grid, .features-grid, .services-grid, .faq-accordion, .card-container, .text-image-section {
        flex-direction: column;
    }
    .card, .features-grid > div, .services-grid .service-card, .faq-accordion > div {
        width: 100%;
        min-width: 0;
    }
}


/* === TESTIMONIALS === */
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0;
    justify-content: flex-start;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 24px;
    background: #ffffff;
    color: #191919;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    min-width: 220px;
    max-width: 350px;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    transition: box-shadow .13s, border-color .13s;
}
.testimonial-card strong {
    color: #191919;
    font-size: 1.01rem;
}
.testimonial-card:hover {
    box-shadow: 0 10px 36px 0 rgba(34, 43, 50, .11);
    border-color: #FFC93C;
}

/* === FOOTER === */
footer {
    background: #191919;
    color: #ededed;
    border-top: 1px solid #e2e2e2;
    margin-top: 68px;
    padding: 0;
}
footer .container {
    padding: 36px 20px 20px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer img {
    height: 36px;
    margin-bottom: 18px;
}
.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 22px;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-nav a {
    color: #ededed;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #FFC93C;
    text-decoration: underline;
}
.footer-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 12px 0 8px 0;
    font-size: 1rem;
    flex-wrap: wrap;
}
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ededed;
}
footer p {
    color: #f1f1f1;
    font-size: 0.98rem;
    margin-top: 14px;
}
@media (max-width: 768px) {
    .footer-nav { flex-direction: column; gap: 12px; }
    .footer-contact { flex-direction: column; gap: 10px; }
}


/* === SPECIALTY BLOCKS & UTILS === */
.cta-banner {
    background: #191919;
    border-radius: 16px;
    padding: 48px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    margin-bottom: 0;
    box-shadow: 0 6px 32px rgba(28,28,28,0.12);
}

.search-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ededed;
    padding: 10px 16px;
    border-radius: 10px;
    gap: 6px;
    margin: 16px 0 18px 0;
}
.search-bar input[type="text"] {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    color: #191919;
    font-family: 'Roboto', Arial, sans-serif;
    background: #ededed;
}
.search-bar input[type="text"]::placeholder {
    color: #888;
}

.featured-tips {
    background: #232323;
    color: #fff;
    border-radius: 13px;
    padding: 20px 24px;
    margin-top: 18px;
    box-shadow: 0 4px 24px rgba(34,34,34,.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.featured-tips h3 {
    color: #FFC93C;
}

.usp-block {
    background: #ededed;
    border-radius: 11px;
    padding: 18px 20px;
    margin-top: 20px;
    box-shadow: var(--shadow-card);
}

.time-saving {
    background: #232323;
    color: #fff;
    border-radius: 11px;
    margin-top: 24px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(34,34,34,0.09);
}
.time-saving h3 {
    color: #FFC93C;
}

.how-to-join {
    background: #ededed;
    border-radius: 12px;
    padding: 20px 18px;
    margin-top: 20px;
    box-shadow: var(--shadow-card);
}

.customer-service {
    background: #ededed;
    border-radius: 10px;
    padding: 18px 14px;
    box-shadow: var(--shadow-card);
    margin-top: 22px;
}

/* help-topics (Kontakt page) */
.help-topics {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.help-topics li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px 16px;
    min-width: 140px;
    font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 820px) {
    .help-topics {
        flex-direction: column;
        gap: 14px;
    }
}


/* Article List (Porady) */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

.short-tips li {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-accordion > div {
    cursor: pointer;
    transition: box-shadow .12s, border-color .13s;
}
.faq-accordion > div h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #191919;
}
.faq-accordion > div:hover {
    border-color: #22436B;
    box-shadow: 0 7px 30px rgba(34,43,50,.13);
}


/* === PRICING BADGES === */
.price {
    display: inline-block;
    color: #fff;
    background: #22436B;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 7px 0 7px 0;
    margin-top: 7px;
    margin-bottom: 5px;
}
.services-grid .service-card {
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: var(--shadow-card);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px 30px 24px;
    min-width: 250px;
    margin-bottom: 20px;
    transition: box-shadow .19s;
}


/* === TABLES (for policies) === */
table {
    border-collapse: collapse;
    margin: 24px 0;
    width: 100%;
    background: #fff;
}
th, td {
    border: 1px solid #e2e2e2;
    padding: 13px 19px;
    text-align: left;
}
th {
    background: #ededed;
    font-family: 'Montserrat', Arial, sans-serif;
}


/* === MODALS, COOKIES === */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #232323;
    color: #fff;
    width: 100vw;
    z-index: 45000;
    box-shadow: 0 -2px 40px rgba(28,28,28,.13);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', Arial, sans-serif;
    padding: 20px 0 18px 0;
    transition: transform .35s cubic-bezier(.5,.3,.2,1), opacity .17s;
}
.cookie-banner.hide {
    opacity: 0; transform: translateY(100%);
    pointer-events: none;
}
.cookie-banner .cookie-banner-content {
    max-width: 780px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cookie-banner .cookie-btns {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 2px;
}
.cookie-banner button {
    background: #FFC93C;
    color: #232323;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    padding: 10px 21px;
    margin: 0;
    transition: background .17s, color .14s, box-shadow .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
    background: #fff;
    color: #191919;
    box-shadow: 0 2px 8px rgba(28,28,28,0.10);
}
.cookie-banner .cookie-btns .cookie-reject {
    background: #ededed;
    color: #191919;
}
.cookie-banner .cookie-btns .cookie-settings {
    background: #232323;
    color: #fff;
    border: 1px solid #FFC93C;
}
.cookie-banner .cookie-btns .cookie-settings:hover {
    background: #fff0ca;
    color: #191919;
}

/* COOKIE MODAL */
.cookie-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 45999;
    background: rgba(34,34,34,.44);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .25s, transform .35s cubic-bezier(.5,.3,.2,1);
}
.cookie-modal.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(60px);
}
.cookie-modal-content {
    background: #fff;
    color: #191919;
    border-radius: 13px;
    max-width: 410px;
    width: 100%;
    box-shadow: 0 8px 58px rgba(25,25,25,.12);
    padding: 38px 28px 30px 28px;
    font-family: 'Roboto', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 17px;
    position: relative;
}
.cookie-modal .modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    color: #191919;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: background .12s;
}
.cookie-modal .modal-close:focus,
.cookie-modal .modal-close:hover {
    background: #FFC93C;
    color: #232323;
}
.cookie-modal h2 {
    font-size: 1.31rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 11px 0 16px 0;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ededed;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category .toggle {
    width: 46px;
    height: 26px;
    background: #fff;
    border-radius: 19px;
    border: 1px solid #ccc;
    position: relative;
    margin-left: 8px;
}
.cookie-category .toggle input {
    opacity: 0;
    width: 0; height: 0;
    position: absolute;
}
.cookie-category .toggle-slider {
    position: absolute;
    cursor: pointer;
    left: 2px;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #22436B;
    border-radius: 50%;
    transition: .21s;
}
.cookie-category .toggle input:checked + .toggle-slider {
    background: #FFC93C;
    left: 22px;
}
.cookie-category .toggle[disabled] {
    opacity: 0.85;
    background: #e0e0e0;
    pointer-events: none;
}
.cookie-category[disabled] {
    opacity: 0.7;
}

.cookie-modal .cookie-btns {
    display: flex;
    gap: 15px;
    margin-top: 0;
}
.cookie-modal .cookie-btns button {
    background: #191919;
    color: #FFC93C;
    border-radius: 6px;
    border: none;
    padding: 10px 21px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    transition: background .15s, color .11s;
}
.cookie-modal .cookie-btns button:hover, .cookie-modal .cookie-btns button:focus {
    background: #FFC93C;
    color: #191919;
}


/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1100px) {
    .container { max-width: 980px; }
}
@media (max-width: 950px) {
    h1 { font-size: 2.17rem; }
    h2, .cta-banner h2 { font-size: 1.44rem; }
}
@media (max-width: 700px) {
    .section { padding: 24px 8px; }
    .cta-banner { padding: 28px 10px; }
}
@media (max-width: 540px) {
    h1 { font-size: 1.39rem; }
    h2 { font-size: 1.17rem; }
    .section { padding: 14px 0; }
}
@media (max-width: 480px) {
    .container { padding-left: 6px; padding-right: 6px; }
    footer .container { padding: 18px 5px 8px 5px; }
}

/* === FORMS, LINKS, DETAILS (policies, checkboxes, etc.) === */
input[type="checkbox"], input[type="radio"] {
    accent-color: #22436B;
}
label {
    font-family: 'Roboto', Arial, sans-serif;
    color: #191919;
}

/* === ANIMATIONS & TRANSITIONS === */
.card, .features-grid > div, .services-grid .service-card, .faq-accordion > div, .testimonial-card {
    transition: box-shadow 0.16s, border-color 0.17s, transform .17s;
}
.card:hover, .features-grid > div:hover, .services-grid .service-card:hover, .faq-accordion > div:hover, .testimonial-card:hover {
    box-shadow: 0 8px 44px rgba(25,25,25,0.13);
    transform: translateY(-2px) scale(1.013);
    border-color: #22436B;
}
.cta-btn, .service-btn, .footer-nav a, .main-nav a, .mobile-nav a {
    transition: var(--transition);
}


/* === MONOCHROME DRAMATIC EFFECTS === */
h1, h2, h3, h4, h5, .cta-btn, .service-btn {
    text-shadow: 0px 2px 10px rgba(34,43,107,0.07);
}
.section, .card, .testimonial-card {
    box-shadow: 0 4px 36px rgba(0,0,0,0.07), 0 1.5px 12px rgba(25,25,25,0.09);
}

/* === Utility Classes === */
.mb-20 { margin-bottom: 20px; }
.mt-36 { margin-top: 36px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }

/**** END ****/
