/*2 Nejlepsi*/
/*:root {*/
/*    --bg-gradient-start: #0d1117;*/
/*    --bg-gradient-end: #161b22;*/
/*    --accent-light: #58a6ff;*/
/*    --accent-medium: #1f6feb;*/
/*    --accent-lighter: #79c0ff;*/
/*    --accent-darker: #0969da;*/
/*    --text-primary: #f0f6fc;*/
/*    --text-secondary: #e6edf3;*/
/*    --text-hover: #c9d1d9;*/
/*    --bg-card: rgba(88, 166, 255, 0.06);*/
/*    --border-color: rgba(88, 166, 255, 0.2);*/
/*    --box-shadow: rgba(88, 166, 255, 0.15);*/
/*    --input-text-color: charcoal;*/
/*}*/

/*:root {*/
/*    --bg-gradient-start: #2d1b4e;*/
/*    --bg-gradient-end: #1a0d2e;*/
/*    --accent-light: #ff006e;*/
/*    --accent-medium: #e60063;*/
/*    --accent-lighter: #ff4d94;*/
/*    --accent-darker: #c20052;*/
/*    --text-primary: #ffffff;*/
/*    --text-secondary: #f5e6ff;*/
/*    --text-hover: #e6ccff;*/
/*    --bg-card: rgba(255, 0, 110, 0.07);*/
/*    --border-color: rgba(255, 0, 110, 0.22);*/
/*    --box-shadow: rgba(255, 0, 110, 0.18);*/
/*    --input-text-color: charcoal;*/
/*}*/

/*F3F4F6 Helm White Color*/
/*Zatim nejlepsi*/
:root {
    --bg-gradient-start: #1f0f3d;
    --bg-gradient-end: #0f051e;
    --accent-light: #00d9ff;
    --accent-medium: #0099cc;
    --accent-lighter: #33e9ff;
    --accent-darker: #0077aa;
    --text-primary: #F3F4F6;
    --text-secondary: #e0f7ff;
    --text-hover: #b3f0ff;
    --bg-card: rgba(0, 217, 255, 0.07);
    --border-color: rgba(0, 217, 255, 0.23);
    --box-shadow: rgba(0, 217, 255, 0.18);
    --input-text-color: charcoal;
}

/*:root {*/
/*    --bg-gradient-start: #654594;*/
/*    --bg-gradient-end: #250e6f;*/
/*    --accent-light: #9B7FEC;*/
/*    --accent-medium: #290e70;*/
/*    --accent-lighter: #A394FF;*/
/*    --accent-darker: #180745;*/
/*    --text-primary: #ffffff;*/
/*    --text-secondary: #e8e8f0;*/
/*    --text-hover: #D4D4D4;*/
/*    --bg-card: rgba(255, 255, 255, 0.1);*/
/*    --border-color: rgba(255, 255, 255, 0.25);*/
/*    --box-shadow: rgba(155, 127, 236, 0.3);*/
/*    --input-text-color: charcoal;*/
/*}*/

/*:root {*/
/*     --bg-gradient-start: #6B3CB7;*/
/*     --bg-gradient-end: #2A0A5C;*/
/*     --accent-light: #A88FFF;*/
/*     --accent-medium: #7B3DBF;*/
/*     --accent-lighter: #C4B7FF;*/
/*     --accent-darker: #1A0242;*/
/*     --text-primary: #ffffff;*/
/*     --text-secondary: #e8e8f0;*/
/*     --text-hover: #D4D4D4;*/
/*     --bg-card: rgba(255, 255, 255, 0.1);*/
/*     --border-color: rgba(255, 255, 255, 0.25);*/
/*     --box-shadow: rgba(196, 183, 255, 0.3);*/
/*     --input-text-color: charcoal;*/
/* }*/

html {
    height: 100%;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 5rem;
}

#cookie-consent-container {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 12px;
    width: 380px;
    background: var(--text-primary);
    color: black;
    border-radius: 8px;
    padding: 16px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

#cookie-consent-container p:first-child {
    font-size: 1.25rem;
    font-weight: 600;
}

#cookie-consent-container button {
    display: inline-block;
    background-color: var(--accent-medium);
    color: var(--text-primary);
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-consent-container button:hover {
    background-color: var(--accent-darker);
}

.toast.success {
    border-left: 4px solid #4caf50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.warning {
    border-left: 4px solid #ff9800;
}

.toast.info {
    border-left: 4px solid #00d9ff;
}

.toast {
    display: none;
    position: absolute;
    top: 12px;
    width: 380px;
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 16px;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.content {
    flex: 1;
}

.title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.message {
    font-size: 14px;
}

.close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 4px;
}

.close:hover {
    transition: color 0.3s ease-in-out;
    color: var(--text-primary);
}

a.animated-underline {
    position: relative;
    color: inherit;
    text-decoration: none;
}

a.animated-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

a.animated-underline:hover::after,
a.animated-underline:focus::after {
    width: 100%;
}

nav {
    background-color: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
}

.nav-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1200px;
}

.nav-content ul {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: auto;
}

.logo-container:hover {
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--text-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    font-size: 0.875rem;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    object-fit: cover;
    display: block;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-medium);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-darker);
}

.cta-button a {
    text-decoration: none;
    color: var(--text-primary);
}

.feature-showcase-image img {
    width: 100%;
    border-radius: 0.5rem;
}

.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#features{
    margin-top: 3rem;
}

.cta-section div, .cta-section-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.section h2, .testimonials h2, .faq-section h2 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    text-align: left;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.table-section h2 {
    max-width: fit-content;
}

.section p, .faq-section p {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-text h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: left;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-cards {
    padding: 2rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.pricing-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.pricing-card h4 {
    color: var(--text-secondary);
}

.pricing-card h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
}

.pricing-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--accent-light);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

footer {
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    padding: 8rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-column a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-column select {
    background-color: var(--bg-card);
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-column select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 6px;
}

.footer-column select:hover,
.footer-column select:focus {
    background-color: var(--accent-darker);
    outline: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-primary);
    line-height: 1.6;
}

#features:target {
    scroll-margin-top: 3rem;
}

.waitlist-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    gap: 8px;
    flex-direction: row;
}

.waitlist-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--text-primary);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--border-color);
}

.waitlist-input::placeholder {
    color: var(--input-text-color);
    opacity: 0.5;
}

.image-div {
    width: 100%;
    min-height: 750px;
    margin-bottom: 3rem;
    margin-top: 3rem;
    border-radius: 10px;
    background-color: var(--bg-card);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}
thead th {
    background: var(--accent-medium);
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 16px 13px;
    color: var(--text-primary);
}
thead th:first-child {
    text-align: left;
}
tbody td {
    padding: 16px 13px;
    text-align: left;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}
tbody tr:last-child td {
    border-bottom: none;
}
tbody td:nth-child(2), tbody td:nth-child(3) {
    text-align: center;
}
.check {
    color: var(--text-primary);
    font-size: 1.4em;
    font-weight: 500;
}
.cross {
    color: var(--text-primary);
    font-size: 1.4em;
    font-weight: 500;
}
.note {
    color: var(--text-secondary);
    font-size: 0.93em;
    margin-top: 12px;
    text-align: left;
    opacity: 0.8;
}

.pricing-card-featured {
    position: relative;
    background-color: var(--bg-card);
    border: 2px solid var(--accent-light);
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--box-shadow);
    transition: all 0.3s ease;
}

.pricing-card-featured:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px var(--box-shadow);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
    white-space: nowrap;
}

.pricing-card:not(.pricing-card-featured) {
    transition: all 0.3s ease;
}

.pricing-card:not(.pricing-card-featured):hover {
    transform: scale(1.02);
    background-color: var(--bg-card);
}

.faq-hero {
    padding: 4rem 2rem 2rem 2rem;
    text-align: left;
}

.faq-hero h1 {
    max-width: 500px;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 auto 1rem auto;
}

.faq-hero p {
    margin: 0 auto 0.25rem auto;
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--text-primary);
    position: initial;
    left: initial;
    transform: initial;
    text-align: left;
}

.faq-section {
    padding: 2rem;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: initial;
    line-height: 1.75rem;
    position: initial;
    left: initial;
    transform: initial;
    text-align: left;
}

.faq-item{
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-section {
    max-width: 500px;
    padding: 2rem 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 217, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    user-select: none;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-title {
    color: var(--accent-light);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--accent-light);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s ease;
    padding: 0 1.25rem;
}

.faq-item.active .faq-content {
    max-height: 500px;
}


@media (max-width: 768px) {
    .logo-text, #join-waitlist {
        display: none;
    }

    .pricing-card-featured {
        transform: scale(1.02);
    }

    .pricing-card-featured:hover {
        transform: scale(1.04);
    }

    .best-value-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .section, .pricing-cards {
        padding: 2rem 0.75rem;
    }

    .hero, .testimonials {
        padding: 4rem 0.75rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .nav-content {
        padding: 0.75rem 0.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
    nav ul {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

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

    .waitlist-input {
        flex: 1;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        padding: 0.95rem 2rem;
    }

    .faq-hero h1 {
        font-size: 1.75rem;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-header {
        padding: 1rem;
    }

    .faq-title {
        font-size: 1rem;
    }
}