:root {
    --primary-color: #1D2C5E;
    --action-color: #2ECC71;
    --bg-main: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --border-color: #DEE2E6;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Space for sticky header */
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--action-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.login-link {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; margin-bottom: 24px; }
h3 { font-size: 24px; }
p { font-size: 16px; }
small { font-size: 14px; }

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

section {
    padding: 96px 0;
    position: relative;
}

/* Hero Section */
.hero {
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A3F7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-text p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.email-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    outline: none;
    border-color: var(--action-color);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--action-color) 0%, #27AE60 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.btn-primary:active::before {
    width: 300px;
    height: 300px;
}

.reassurance-text {
    color: var(--text-secondary);
    font-size: 14px;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-visual {
    position: relative;
    height: 400px;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

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

.visual-3d {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 44, 94, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.invoice-animation {
    width: 200px;
    height: 250px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    animation: invoiceFloat 4s ease-in-out infinite;
}

@keyframes invoiceFloat {
    0% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(-5deg); }
}

.coins-animation {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    animation: coinsAppear 4s ease-in-out infinite;
}

@keyframes coinsAppear {
    0%, 40% { opacity: 0; transform: scale(0.5); }
    60%, 100% { opacity: 1; transform: scale(1); }
}

.coin {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.coin:nth-child(1) { top: 0; left: 0; }
.coin:nth-child(2) { top: 20px; left: 30px; }
.coin:nth-child(3) { top: 40px; left: 10px; }

/* Pain Points Section */
.pain-points {
    background: var(--bg-white);
}

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

.card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--action-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(29, 44, 94, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Calculator Section */
.calculator-section {
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.calculator-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.calculator-section h2 {
    color: white;
    margin-bottom: 48px;
}

.calculator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.calculator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--action-color), var(--primary-color), var(--action-color));
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes pulseGreen {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.result.updated .result-amount {
    animation: pulseGreen 0.5s ease-out;
}

.calculator-field {
    margin-bottom: 24px;
    text-align: left;
}

.calculator-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
}

.info-tooltip {
    display: inline-block;
    margin-left: 8px;
    color: var(--action-color);
    cursor: help;
    font-size: 14px;
    vertical-align: middle;
    position: relative;
}

.info-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    z-index: 1000;
}

.calculator-field input,
.calculator-field select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.calculator-field input:focus,
.calculator-field select:focus {
    outline: none;
    border-color: var(--action-color);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}

.result {
    margin-top: 32px;
    padding: 0;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 12px;
    border: 2px solid var(--action-color);
    overflow: hidden;
}

.commission-indicator {
    padding: 8px 16px;
    background: rgba(29, 44, 94, 0.3);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.commission-indicator span {
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.result-breakdown {
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
}

.result-label {
    color: var(--text-secondary);
    font-weight: 400;
}

.result-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 18px;
}

.result-value.commission {
    color: #E74C3C;
    font-size: 16px;
}

.result-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 0;
}

.result-total {
    padding-top: 16px;
}

.result-total .result-label {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}

.result-amount {
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--action-color);
    text-shadow: 0 0 30px rgba(46, 204, 113, 0.5);
}

.result-notice {
    padding: 16px 24px;
    background: rgba(46, 204, 113, 0.15);
    border-top: 1px solid rgba(46, 204, 113, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.result-notice svg {
    margin-right: 8px;
}

.btn-calculator {
    margin-top: 24px;
    background: var(--action-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

/* How it Works Section */
.how-it-works {
    background: var(--bg-white);
}

/* Security Section */
.security-section {
    background: var(--bg-main);
    position: relative;
}

.security-content {
    text-align: center;
}

.security-content h2 {
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--action-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    margin-bottom: -20px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.step p {
    color: var(--text-secondary);
}

/* Trust Section */
.trust-section {
    background: var(--bg-main);
    text-align: center;
}

.logos-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-item {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Lead Capture Section */
.lead-capture {
    background: var(--bg-white);
}

.lead-capture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-form {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-field {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-field {
    flex: 1;
    margin-bottom: 0;
}

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

.form-field input:not([type="checkbox"]),
.form-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-field input:not([type="checkbox"]):focus,
.form-field select:focus {
    outline: none;
    border-color: var(--action-color);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--action-color) 0%, #27AE60 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

/* Styles pour checkbox RGPD - Nouvelle approche simple */
.checkbox-field {
    margin: 24px 0;
}

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

/* Reset complet de la checkbox native */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Nouvelle checkmark robuste */
.checkmark {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex: 0 0 20px;
    margin-top: 1px;
    transition: all 0.2s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--action-color);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--action-color);
    border-color: var(--action-color);
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-label input:checked ~ .checkmark::after {
    opacity: 1;
}

/* SOLUTION FINALE: Checkbox robuste avec float */
div.form-field.checkbox-field label.checkbox-label span.checkmark {
    background: white !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    display: block !important;
    position: relative !important;
    float: left !important;
    margin-right: 12px !important;
    margin-top: 1px !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

/* Hover state */
div.form-field.checkbox-field label.checkbox-label:hover span.checkmark {
    border-color: var(--action-color) !important;
}

/* Checked state */
div.form-field.checkbox-field label.checkbox-label input:checked ~ span.checkmark {
    background: var(--action-color) !important;
    border-color: var(--action-color) !important;
}

/* Checkmark icon */
div.form-field.checkbox-field label.checkbox-label span.checkmark::after {
    content: '' !important;
    position: absolute !important;
    left: 6px !important;
    top: 2px !important;
    width: 6px !important;
    height: 10px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
}

/* Show checkmark when checked */
div.form-field.checkbox-field label.checkbox-label input:checked ~ span.checkmark::after {
    opacity: 1 !important;
}

/* Adaptation du label pour le float */
div.form-field.checkbox-field label.checkbox-label {
    display: block !important;
    overflow: hidden !important;
}

/* Fix mobile positioning */
@media (max-width: 768px) {
    div.form-field.checkbox-field label.checkbox-label span.checkmark {
        float: none !important;
        display: inline-block !important;
        vertical-align: top !important;
        margin-right: 8px !important;
        margin-top: 1px !important;
    }
    
    div.form-field.checkbox-field label.checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0 !important;
        overflow: visible !important;
    }
    
    /* Mobile: Policy link below text */
    .checkbox-text {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .policy-link {
        display: block !important;
        margin-top: 8px !important;
    }
}


.success-message {
    text-align: center;
    padding: 40px;
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--action-color) 0%, #27AE60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

/* FAQ Section */
.faq {
    background: var(--bg-main);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 48px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 48px 0;
    text-align: center;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 16px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--bg-main);
    text-align: center;
    padding: 60px 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-card .obfuscated-email {
    color: var(--action-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card .obfuscated-email:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* About Preview Section */
.about-preview-section {
    background: var(--bg-main);
    text-align: center;
    padding: 80px 0;
}

.about-preview-section h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-preview-section p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.founders-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 200px;
}

.founder-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--action-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.founder-info h3 {
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 18px;
}

.founder-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A3F7F 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 44, 94, 0.2);
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 44, 94, 0.3);
}

.btn-about i {
    width: 18px;
    height: 18px;
}

/* About Page Styles */
.about-page {
    background: var(--bg-white);
    padding: 120px 0 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.story-section,
.mission-section,
.team-section,
.values-section,
.location-section,
.cta-section {
    margin-bottom: 80px;
}

.story-section h2,
.mission-section h2,
.team-section h2,
.values-section h2,
.location-section h2,
.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.timeline {
    background: var(--bg-main);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--action-color);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

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

.timeline-date {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

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

.mission-card {
    background: var(--bg-main);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--action-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    margin-top: 48px;
}

.team-member {
    display: flex;
    gap: 32px;
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--action-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.photo-placeholder i {
    width: 48px;
    height: 48px;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 24px;
}

.member-info h4 {
    color: var(--action-color);
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 16px;
}

.member-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.member-experience {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.experience-item {
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--action-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.experience-item strong {
    color: var(--primary-color);
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--action-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info i {
    width: 16px;
    height: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-main);
    border: 2px solid var(--action-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--action-color);
    transform: scale(1.1);
}

.value-icon i {
    width: 32px;
    height: 32px;
    color: var(--action-color);
    transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.location-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.location-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.location-visual {
    text-align: center;
}

.map-placeholder {
    width: 200px;
    height: 200px;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.map-pin {
    width: 48px;
    height: 48px;
    background: var(--action-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.map-pin i {
    width: 24px;
    height: 24px;
    color: white;
}

.map-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.cta-section {
    text-align: center;
    background: var(--bg-main);
    padding: 60px;
    border-radius: 20px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 44, 94, 0.2);
}

/* Login Page Styles */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-main) 0%, white 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    padding: 48px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.login-form {
    text-align: left;
}

.login-form .form-field {
    margin-bottom: 24px;
}

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

.login-form input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--action-color);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--action-color) 0%, #27AE60 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.error-message {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    color: #E53E3E;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    display: none;
}

.back-link {
    margin-top: 24px;
    text-align: center;
}

.back-link a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-left {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
    
    .hero-content,
    .lead-capture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .cards-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .calculator {
        padding: 32px 20px;
    }
    
    .result-amount {
        font-size: 24px;
    }
    
    .result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .result-total {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .login-container {
        padding: 32px 24px;
    }

    .legal-content {
        max-width: 800px;
    }
    
    .privacy-table table {
        font-size: 14px;
    }
    
    .privacy-table th,
    .privacy-table td {
        padding: 8px 12px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-privacy {
        flex-direction: column;
        gap: 20px;
    }

    /* About page responsive */
    .about-content h1 {
        font-size: 36px;
    }
    
    .lead-text {
        font-size: 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .location-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .founders-preview {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: var(--bg-white);
    padding: 120px 0 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.intro-text {
    background: var(--bg-main);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--action-color);
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--action-color);
    display: inline-block;
}

.legal-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin: 24px 0 12px 0;
}

.legal-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    margin: 16px 0 8px 0;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.legal-section ul {
    margin: 16px 0 16px 20px;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: var(--action-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Privacy Policy Specific Styles */
.privacy-table {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.privacy-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.privacy-table th {
    background: var(--primary-color);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.privacy-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    vertical-align: top;
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

.privacy-table tr:nth-child(even) {
    background: var(--bg-main);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.right-item {
    background: var(--bg-main);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--action-color);
}

.right-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.right-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.contact-info-privacy {
    display: flex;
    gap: 40px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1;
    min-width: 200px;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.legal-footer {
    text-align: center;
    padding: 32px 0;
    margin-top: 40px;
    border-top: 2px solid var(--border-color);
    background: var(--bg-main);
    border-radius: 12px;
}

.legal-footer p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 4px 0;
}

.back-navigation {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--action-color) 0%, #27AE60 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.btn-back i {
    width: 18px;
    height: 18px;
}

/* ==========================================
   COOKIE CONSENT BANNER
========================================== */

.cookie-consent-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #FFFFFF !important;
    border-top: 3px solid #1D2C5E !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    z-index: 999999 !important;
    transform: translateY(100%) !important;
    transition: transform 0.4s ease !important;
    display: block !important;
    font-family: 'Inter', sans-serif !important;
}

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

.cookie-consent-content {
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 24px !important;
}

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

.cookie-consent-text h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.cookie-consent-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    padding: 12px 24px !important;
    background: #2ECC71 !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.btn-cookie-accept:hover {
    background: #27AE60;
    transform: translateY(-1px);
}

.btn-cookie-decline {
    padding: 12px 24px !important;
    background: transparent !important;
    color: #6C757D !important;
    border: 2px solid #DEE2E6 !important;
    border-radius: 6px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.btn-cookie-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-cookie-settings {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-cookie-settings:hover {
    color: var(--action-color);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

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

.cookie-settings-content {
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-settings-header h2 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}

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

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

.cookie-settings-body {
    padding: 32px;
}

.cookie-category {
    margin-bottom: 32px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

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

.cookie-category-header h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
}

.cookie-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle label {
    display: block;
    width: 50px;
    height: 28px;
    background: var(--border-color);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle label::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 4px;
    left: 4px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input[type="checkbox"]:checked + label {
    background: var(--action-color);
}

.cookie-toggle input[type="checkbox"]:checked + label::after {
    transform: translateX(22px);
}

.cookie-toggle.essential-toggle input[type="checkbox"]:disabled + label {
    background: var(--action-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.cookie-category small {
    color: var(--text-secondary);
    font-size: 12px;
    font-style: italic;
}

.cookie-settings-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.btn-save-settings {
    padding: 14px 32px;
    background: var(--action-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-save-settings:hover {
    background: #27AE60;
    transform: translateY(-1px);
}

.cookie-settings-footer p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--action-color);
}

/* Lien de révocation des cookies dans le footer */
footer .cookie-revoke-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 16px;
    transition: color 0.3s ease;
}

footer .cookie-revoke-link:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-consent-actions {
        justify-content: center;
    }
    
    .cookie-settings-content {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 20px;
    }
}