:root {
    --primary-dark: #0A0E27;
    --primary-darker: #050812;
    --primary-accent: #1E88E5;
    --primary-accent-light: #42A5F5;
    --secondary-teal: #00BCD4;
    --secondary-purple: #7C4DFF;
    --secondary-green: #00E676;
    --neutral-dark: #1A1F3A;
    --neutral-medium: #2D3354;
    --neutral-light: #4A5177;
    --neutral-lighter: #6B7199;
    --text-primary: #FFFFFF;
    --text-secondary: #B8BFDB;
    --text-muted: #8B92B0;
    --bg-primary: #0A0E27;
    --bg-secondary: #131829;
    --bg-card: #1A1F3A;
    --bg-overlay: rgba(10, 14, 39, 0.95);
    --accent-blue: #1E88E5;
    --accent-cyan: #00BCD4;
    --accent-success: #00E676;
    --accent-warning: #FFB300;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.iti {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.uk-navbar-nav > li > a {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: none;
    transition: color 0.3s ease;
    position: relative;
}

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.uk-navbar-nav > li > a:hover,
.uk-navbar-nav > li.uk-active > a {
    color: var(--text-primary);
}

.uk-navbar-nav > li > a:hover::after,
.uk-navbar-nav > li.uk-active > a::after {
    width: 80%;
}

.header-contact {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-item i {
    color: var(--primary-accent);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--text-primary);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--neutral-dark);
    border-radius: 20px;
}

.lang-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    color: var(--primary-accent);
}

.lang-separator {
    color: var(--border-subtle);
}

#mobile-menu .uk-offcanvas-bar {
    background: var(--bg-secondary);
    padding: 2rem;
}

#mobile-menu .uk-nav-default > li > a {
    color: var(--text-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

#mobile-menu .uk-nav-default > li > a:hover,
#mobile-menu .uk-nav-default > li.uk-active > a {
    color: var(--text-primary);
    padding-left: 1rem;
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.mobile-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-contact i {
    color: var(--primary-accent);
}

.mobile-contact a {
    color: var(--text-secondary);
    text-decoration: none;
}

.layered-section {
    position: relative;
    padding: 6rem 0;
    margin-top: -3rem;
    z-index: 1;
}

.layered-section:first-of-type {
    margin-top: 80px;
}

.layered-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: -1;
}

.layered-section:nth-child(even)::before {
    transform: skewY(2deg);
    background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--bg-secondary) 100%);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(30%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-chart {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.uk-button-primary {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-teal) 100%);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.uk-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    background: linear-gradient(135deg, var(--primary-accent-light) 0%, var(--secondary-teal) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.metric-chart {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-accent) 0%, var(--primary-accent) var(--percentage), var(--neutral-medium) var(--percentage), var(--neutral-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.metric-chart::after {
    content: attr(data-percentage) '%';
    position: absolute;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.services-comparison {
    margin-top: 4rem;
}

.services-comparison img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-timeline {
    position: relative;
    padding-left: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-accent) 0%, var(--secondary-teal) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 2rem;
}

.timeline-number {
    position: absolute;
    left: -4rem;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: var(--neutral-dark);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.stat-name {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.timeline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

.results-grid {
    margin-bottom: 4rem;
}

.result-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.result-chart {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-chart {
    max-height: 100px;
}

.results-dashboard img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.uk-accordion {
    border: none;
}

.uk-accordion-title {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.uk-accordion-title::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%231E88E5' width='13' height='1' x='0' y='6'/%3E%3Crect fill='%231E88E5' width='1' height='13' x='6' y='0'/%3E%3C/svg%3E");
}

.uk-open > .uk-accordion-title::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%231E88E5' width='13' height='1' x='0' y='6'/%3E%3C/svg%3E");
}

.uk-accordion-title:hover {
    background: var(--neutral-dark);
    border-color: var(--primary-accent);
}

.uk-accordion-content {
    background: var(--neutral-dark);
    color: var(--text-secondary);
    padding: 1.5rem 2rem;
    border-radius: 0 0 8px 8px;
    margin-top: -1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
    border-top: none;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.uk-input,
.uk-textarea {
    background: var(--neutral-dark);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.uk-input:focus,
.uk-textarea:focus {
    background: var(--neutral-medium);
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.uk-input::placeholder,
.uk-textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--primary-accent-light);
}

.site-footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: 6rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

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

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-accent);
}

.footer-contact i {
    color: var(--primary-accent);
    width: 20px;
}

.footer-language {
    margin-top: 1.5rem;
}

.language-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: var(--neutral-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-link:hover {
    color: var(--primary-accent);
    background: var(--neutral-medium);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.thanks-content {
    text-align: center;
    background: var(--bg-card);
    padding: 4rem 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-success) 0%, var(--secondary-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-info {
    background: var(--neutral-dark);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thanks-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.thanks-steps i {
    color: var(--primary-accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.thanks-contact {
    margin: 2rem 0;
}

.thanks-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-accent);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: var(--primary-accent-light);
    transform: scale(1.05);
}

.legal-section {
    padding: 6rem 0;
    margin-top: 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-subtle);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-block {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
}

.legal-block h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-block h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.legal-block p {
    margin-bottom: 1rem;
}

.legal-block ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: var(--primary-accent-light);
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: var(--neutral-dark);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-subtle);
}

.cookie-table th {
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-secondary);
}

.legal-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-subtle);
}

.footer-simple {
    text-align: center;
}

.footer-contact-simple {
    margin-bottom: 1.5rem;
}

.footer-contact-simple p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2rem;
}

.footer-contact-simple i {
    color: var(--primary-accent);
}

.footer-contact-simple a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-simple a:hover {
    color: var(--primary-accent);
}

.footer-links-simple {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links-simple a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-simple a:hover {
    color: var(--primary-accent);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (max-width: 960px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .process-timeline {
        padding-left: 2rem;
    }

    .process-timeline::before {
        left: 15px;
    }

    .timeline-number {
        left: -2rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-item {
        padding-left: 1rem;
    }

    .timeline-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-contact-simple p {
        display: flex;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer-links-simple {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .result-value {
        font-size: 2rem;
    }

    .thanks-title {
        font-size: 2rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--primary-accent);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

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

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cookie-consent-text a {
    color: var(--primary-accent);
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-settings {
    background: var(--neutral-dark);
    color: var(--text-primary);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-teal) 100%);
    color: var(--text-primary);
}

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

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 2rem;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.cookie-settings-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

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

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--neutral-dark);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-title {
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-category-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-medium);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.cookie-settings-footer button {
    flex: 1;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-settings-modal {
        padding: 1rem;
    }

    .cookie-settings-content {
        padding: 1.5rem;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }
}