/* Reset & Base Styles */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --primary: #0F2859;
    --text-primary: #0F2859;
    --text-secondary: #6a6a6a;
    --text-light: #FFFFFF;
    --background-light: #FFFFFF;
    --background-dark: #0F2859;
    --border-color: rgba(15, 40, 89, 0.1);
    --accent-color: #5ad9c6;
    --error-color: #ff4d4d;
    --success-color: #4CAF50;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Typography */
.heading-style-h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.heading-style-h6 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.text-weight-semibold {
    font-weight: 600;
}

/* Layout */
.container-small {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-width-large {
    max-width: 800px;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
}

/* Spacing */
.margin-xsmall { margin-bottom: 0.5rem; }
.margin-small { margin-bottom: 1rem; }
.margin-medium { margin-bottom: 1.5rem; }
.margin-large { margin-bottom: 2rem; }

.padding-global {
    padding: 2.5rem 0;
}

.spacer-small {
    height: 1rem;
}

/* Navigation */
.navbar8_component {
    background-color: var(--background-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.navbar8_menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar8_menu-left,
.navbar8_menu-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar8_link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.navbar8_link:hover {
    opacity: 0.8;
}

.navbar8_logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(0.2); /* Makes the light logo darker for better visibility on light background */
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.button.is-get-started {
    background-color: var(--accent-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.button.is-platform-login {
    background-color: var(--primary);
    color: var(--text-light);
}

.button.is-secondary {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* Cards */
.pricing20_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing20_plan {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing20_plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing20_content {
    padding: 2rem;
}

.pricing20_divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1.5rem 0;
}

.pricing20_feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing20_icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Utilities */
.text-align-center {
    text-align: center;
}

.text-color-primary {
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #f5f7fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('https://omnicado-assets.fra1.cdn.digitaloceanspaces.com/pattern.svg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(90, 217, 198, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    animation: slideIn 0.5s ease;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 0.5s ease 0.2s both;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 0.5s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease;
}

.hero-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 217, 198, 0.1) 0%, rgba(15, 40, 89, 0.05) 100%);
    pointer-events: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        align-items: center;
    }
}

/* Search Card */
.search-card {
    background: var(--background-light);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.search-card:hover {
    transform: translateY(-4px);
}

.search-card:target {
    box-shadow: 0 0 0 4px var(--accent-color), 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    animation: highlight 1.5s ease;
}

.ean-form {
    width: 100%;
}

.ean-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.ean-input-wrapper {
    flex: 1;
    position: relative;
}

.ean-counter {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--error-color);
    pointer-events: none;
}

.ean-counter.valid {
    color: var(--success-color);
}

.ean-input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 3.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.ean-input::placeholder {
    color: rgba(15, 40, 89, 0.5);
}

.ean-input.error {
    border-color: var(--error-color);
}

/* Results Section */
.product-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 6px;
    background-color: white;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

.product-details {
    flex: 1;
}

.product-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.marketplace-status {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
}

.marketplace-status.listed {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.marketplace-status.not-listed {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--error-color);
}

/* Vylepšený design pro výsledky vyhledávání */
.marketplace-prices {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.marketplace-price-card {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
}

.marketplace-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.marketplace-logo-container {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    padding: 0.5rem;
}

.marketplace-logo {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.marketplace-price-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-align: center;
}

.marketplace-price-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Potential Sales Styles */
.potential-sales {
    margin-top: auto;
    padding-top: 1rem;
}

.potential-sales-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.potential-sales-bar {
    height: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.potential-sales-progress {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.potential-sales-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

/* Price with info tooltip */
.price-with-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-with-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Speciální styl pro otazník v ceně */
.price-with-info .price:only-child {
    opacity: 0.7;
}

/* Vylepšený styl pro tooltip */
.info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-size: 12px;
    font-weight: bold;
    cursor: help;
    position: relative;
    margin-left: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

.info-tooltip:hover {
    transform: scale(1.1);
    background-color: var(--primary);
}

.info-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: normal;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 8px;
    animation: fadeIn 0.2s ease;
    border-left: 3px solid var(--accent-color);
}

.info-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
    z-index: 10;
    margin-bottom: -5px;
    transform: translateX(-50%) rotate(180deg);
}

/* Footer */
.footer-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    flex: 1 1 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links-column {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-link {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

.footer-marketplace-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 4px;
    object-fit: cover;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--text-light);
}

.text-color-light {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Demo Form Styles */
.demo-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: none;
}

.form-success.visible {
    display: block;
}

.form-error {
    background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid var(--error-color);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: none;
}

.form-error.visible {
    display: block;
}

/* Loading Animation */
.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    width: 100%;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.loading-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: loadingBar 2s linear infinite;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 120, 255, 0.15);
}

.loading-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: opacity 0.5s ease;
}

.loading-progress {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
    border-radius: 4px;
    animation: loadingBar 2.5s ease-in-out infinite;
}

.loading-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    max-width: 400px;
    opacity: 0.8;
    line-height: 1.6;
}

.loading-info p {
    margin: 0.5rem 0;
    position: relative;
    padding-left: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.4;
    transform: translateY(5px);
}

.loading-info p.active {
    opacity: 1;
    transform: translateY(0);
    font-weight: 500;
}

.loading-info p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform 0.2s ease, color 0.2s ease;
}

.loading-info p.active:before {
    content: "✓";
    transform: scale(1.2);
    color: #4CAF50;
}

.loading-text.text-change {
    opacity: 0;
    transition: opacity 0.2s ease;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(0, 120, 255, 0.2);
    }
    50% {
        transform: scale(1.05) rotate(180deg);
        box-shadow: 0 0 0 10px rgba(0, 120, 255, 0);
    }
    100% {
        transform: scale(1) rotate(360deg);
        box-shadow: 0 0 0 0 rgba(0, 120, 255, 0);
    }
}

@keyframes loadingBar {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-icon {
    stroke: currentColor;
    flex-shrink: 0;
}

.loading-icon {
    animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

@keyframes highlight {
    0% {
        box-shadow: 0 0 0 4px var(--accent-color), 0 12px 32px rgba(0, 0, 0, 0.15);
    }
    70% {
        box-shadow: 0 0 0 4px var(--accent-color), 0 12px 32px rgba(0, 0, 0, 0.15);
    }
    100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
}

/* Styly pro informaci o limitu vyhledávání */
.search-limit-info {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.search-limit-info-text {
    color: var(--text-secondary);
}

.search-limit-info-text strong {
    color: var(--primary);
}

.search-limit-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--error-color);
}

.search-limit-warning svg {
    stroke: var(--error-color);
}

/* Nové styly pro výsledky vyhledávání */
.results-container {
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.results-title {
    margin: 1rem 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Registration Section Styles */
.registration-section {
    background-color: var(--color-background-light);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.registration-container {
    max-width: 800px;
    margin: 0 auto;
}

.registration-card {
    background-color: var(--color-white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-right: 0.75rem;
    color: var(--color-primary);
}

.registration-price {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.registration-button {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: var(--background-light);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.billing-toggle {
    display: flex;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
    position: relative;
}

.billing-option {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-option.active {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.discount-badge {
    background-color: var(--success-color);
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount.yearly {
    display: none;
}

.billing-toggle[data-frequency="yearly"] .price-amount.monthly {
    display: none;
}

.billing-toggle[data-frequency="yearly"] .price-amount.yearly {
    display: inline;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-feature .feature-icon {
    color: var(--accent-color);
}

.pricing-button {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

/* FAQ Section */
.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .billing-option {
        width: 100%;
        justify-content: center;
    }
}

.pricing-card.custom {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(90, 217, 198, 0.05) 0%, rgba(15, 40, 89, 0.02) 100%);
}

.custom-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(90, 217, 198, 0.2);
}

.custom-price {
    margin: 1.5rem 0;
}

.custom-price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, #5ad9c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button.is-custom {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-custom:hover {
    background: var(--accent-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 217, 198, 0.2);
}

/* Burger Menu Button */
.burger-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .burger-menu-button {
        display: block;
    }

    .navbar8_menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background-light);
        padding: 5rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .navbar8_menu.active {
        right: 0;
    }

    .navbar8_menu-left {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .navbar8_menu-right {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .navbar8_link {
        font-size: 1.25rem;
    }

    /* Burger Menu Animation */
    .burger-menu-button.active .burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger-menu-button.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu-button.active .burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
} 