
:root {
    --blue-dark: #1e40af;
    --blue-medium: #3b82f6;
    --blue-light: #93c5fd;
    --gray-dark: #1f2937;
    --gray-medium: #4b5563;
    --gray-light: #9ca3af;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}


.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}


#mobile-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobile-menu.show {
    transform: translateY(0);
    opacity: 1;
}


.toggle-label {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: all 0.3s;
    cursor: pointer;
}

input:checked + .toggle-label {
    background-color: #3b82f6;
}

.toggle-dot {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

input:checked + .toggle-label + .toggle-dot {
    transform: translateX(24px);
}

input:checked + .toggle-label .toggle-dot {
    transform: translateX(24px);
}


.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 30;
}


.btn {
    transition: all 0.3s ease;
}

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


.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


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

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}


.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--blue-medium);
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}


.faq-question {
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-medium);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-active .faq-answer {
    max-height: 1000px;
}


a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--blue-medium);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--blue-dark);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}


@media print {
    header, footer, .no-print {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}


@media (prefers-color-scheme: dark) {
    .dark-mode-support {
        background-color: var(--gray-dark);
        color: white;
    }
}


.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-medium);
}


@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-full {
        width: 100%;
    }
    
    .mobile-center {
        text-align: center;
    }
    
    .mobile-mb {
        margin-bottom: 1rem;
    }
}


.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.transition-all {
    transition: all 0.3s ease;
}

.overflow-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


:focus-visible {
    outline: 3px solid var(--blue-medium);
    outline-offset: 2px;
}


.footer-link {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    transform: translateX(5px);
}


#cookie-consent-banner {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#cookie-consent-banner.slide-in {
    transform: translateY(0);
    opacity: 1;
}

#cookie-settings-modal {
    transition: opacity 0.3s ease;
}


@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-fade-in {
    animation: modalFadeIn 0.3s ease-out forwards;
}


.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.price-card.featured {
    position: relative;
    z-index: 1;
}


.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--blue-light);
    transform: translateX(-50%);
}


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

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}


.no-fouc {
    visibility: hidden;
}

.fouc-ready {
    visibility: visible;
}