:root {
    --primary-blue: #1e3a8a;
    --secondary-indigo: #4f46e5;
    --teal-accent: #0d9488;
    --dark-bg: #0f172a;
    --medium-bg: #1e293b;
    --light-bg: #334155;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #06b6d4;
    --neutral: #64748b;
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #4f46e5 100%);
    --gradient-section: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-card: linear-gradient(145deg, #1e40af 0%, #6366f1 100%);
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-revolutionary {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 20px;
    align-items: center;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-item:hover::before {
    left: 0;
}

.nav-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

.lang-switch {
    background: var(--gradient-card);
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-section {
    background: var(--gradient-hero);
    padding: 180px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #e0e7ff;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--gradient-card);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.section-grid {
    padding: 100px 20px;
    background: var(--gradient-section);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid-nine-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-box {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.grid-box:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

.box-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-card);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #fff;
}

.grid-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e0e7ff;
}

.grid-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

.box-highlight {
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.section-selection {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.section-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: -30px auto 60px;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.selection-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.selection-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.6);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.25);
}

.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    z-index: 10;
}

.selection-card h3 {
    padding: 30px 30px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #e0e7ff;
}

.card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.selection-card p {
    padding: 0 30px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e1;
}

.section-contributions {
    padding: 100px 20px;
    background: var(--gradient-section);
}

.contributions-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e0e7ff;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

.contributions-visual {
    position: relative;
}

.visual-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--gradient-card);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #e0e7ff;
    line-height: 1.4;
}

.section-simulator {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.simulator-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.simulator-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.control-group label {
    font-size: 16px;
    font-weight: 600;
    color: #e0e7ff;
}

.input-display {
    background: rgba(15, 23, 42, 0.6);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.input-display input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    width: 100%;
    outline: none;
}

.currency {
    color: var(--teal-accent);
    font-weight: 600;
    font-size: 16px;
}

.slider {
    height: 8px;
}

.noUi-target {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 8px;
}

.noUi-connect {
    background: var(--gradient-card);
}

.noUi-horizontal .noUi-handle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--secondary-indigo);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.simulator-results {
    background: var(--gradient-hero);
    padding: 40px;
    border-radius: 16px;
}

.simulator-results h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-card.highlight {
    background: rgba(13, 148, 136, 0.2);
    border-color: var(--teal-accent);
}

.result-card.primary {
    background: var(--gradient-card);
    border: none;
}

.result-label {
    font-size: 14px;
    color: #e0e7ff;
    margin-bottom: 12px;
    font-weight: 500;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.results-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.6;
}

.section-contact {
    padding: 100px 20px;
    background: var(--gradient-section);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #e0e7ff;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.6);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #e0e7ff;
}

.form-group input,
.form-group textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

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

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-indigo);
}

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

.checkbox-label a:hover {
    color: var(--secondary-indigo);
}

.btn-submit {
    background: var(--gradient-card);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.iti, #phone {
    width: 100%;
}

.footer-main {
    background: var(--dark-bg);
    border-top: 1px solid rgba(79, 70, 229, 0.2);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--teal-accent);
}

.language-switcher {
    margin-top: 20px;
}

.lang-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-card);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
    color: var(--neutral);
}

.thanks-section {
    padding: 180px 20px 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: #fff;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #e0e7ff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
    color: #fff;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.contact-quick {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray);
}

.contact-item i {
    color: var(--teal-accent);
    font-size: 18px;
}

.policy-section {
    padding: 180px 20px 100px;
    min-height: 100vh;
}

.update-date {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #c7d2fe;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.policy-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.policy-content a {
    color: var(--teal-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--secondary-indigo);
}

.cookie-settings-button {
    text-align: center;
    margin-top: 50px;
}

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    z-index: 9999;
    border-top: 2px solid rgba(79, 70, 229, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-consent-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.cookie-consent-text a {
    color: var(--teal-accent);
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Manrope', sans-serif;
}

.cookie-btn-accept {
    background: var(--gradient-card);
    color: #fff;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--teal-accent);
    border: 1px solid var(--teal-accent);
}

.cookie-btn-settings:hover {
    background: rgba(13, 148, 136, 0.1);
}

#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#cookie-settings-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--medium-bg);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cookie-modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #e0e7ff;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-category {
    background: rgba(15, 23, 42, 0.6);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

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

.cookie-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e7ff;
}

.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: rgba(100, 116, 139, 0.4);
    transition: 0.3s;
    border-radius: 26px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gradient-card);
}

.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-category p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.cookie-modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cookie-modal-actions .cookie-btn {
    flex: 1;
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 40px;
    }
    
    .grid-nine-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .simulator-controls {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .nav-revolutionary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .contributions-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent-content {
        flex-direction: column;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 140px 20px 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .grid-nine-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-grid,
    .section-selection,
    .section-contributions,
    .section-simulator,
    .section-contact {
        padding: 60px 20px;
    }
    
    .simulator-container {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content h1 {
        font-size: 32px;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .cookie-modal-content {
        padding: 25px 20px;
    }
}