:root {
    --brand: #4F46E5;
    --brand-gradient: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    --dark: #0F172A;
    --light: #F8FAFC;
    --text: #334155;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.logo span {
    color: var(--brand);
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #EEF2FF;
    color: var(--brand);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.pricing-badge-wrapper {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}

/* Features */
.features {
    padding: 6rem 0;
    background: white;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-item p {
    color: var(--text);
    font-size: 0.9375rem;
}

/* Buttons */
.btn-primary {
    background: var(--brand);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
    transition: transform 0.2s;
}

.btn-secondary {
    background: #F1F5F9;
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

.btn-text {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--brand);
}

/* Mockup & Visuals */
.mockup-container {
    padding: 0;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.05));
    mix-blend-mode: multiply;
    /* Removes the white background of the image */
}

@media (max-width: 768px) {
    .hero-illustration {
        max-width: 320px;
    }
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
    background-color: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

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

.showcase-item img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 4px solid #f1f5f9;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: translateY(-10px);
}

.showcase-item span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

/* Pro Section (Administradores) */
.pro-section {
    padding: 8rem 0;
    background-color: var(--dark);
    color: white;
}

.pro-section h2 {
    color: white;
    font-size: 3rem;
    margin: 1.5rem 0;
}

.pro-section h2 span {
    color: var(--brand);
}

.pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.pro-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.2);
    color: #A5B4FC;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pro-features {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pro-feature strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #A5B4FC;
}

.pro-feature p {
    color: #94A3B8;
}

.pro-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pro-icon-item {
    background: rgba(255, 255, 255, 0.05);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pro-icon-item span {
    font-size: 2.5rem;
}

.pro-icon-item small {
    color: #94A3B8;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-icon-item:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: var(--brand);
    transform: translateY(-5px);
}

.pro-icon-item:hover small {
    color: white;
}


/* How it Works Section */
.how-it-works {
    background: #fdfdfd;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 3.5rem;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #e2e8f0 0%, #4F46E5 50%, #e2e8f0 100%);
        opacity: 0.3;
        z-index: 1;
    }
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out both;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.3s;
}

.step-card:nth-child(3) {
    animation-delay: 0.5s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-num {
    width: 4rem;
    height: 4rem;
    background: white;
    color: var(--brand);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover .step-num {
    border-color: var(--brand);
    background: var(--brand);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2);
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--brand);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.pricing-card.featured {
    border: 2px solid var(--brand);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 160px;
    /* Aumentado para mayor seguridad */
    display: flex;
    flex-direction: column;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.calculator {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f1f5f9;
}

.calculator label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
}

input[type="range"] {
    width: 100%;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.price-display {
    text-align: center;
    margin-bottom: 1rem;
    height: 120px;
    /* Altura fija estricta */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fdfdfd;
    border-radius: 1rem;
}

.total-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    height: 4.5rem;
    /* Caja fija para que todos los precios tengan el mismo eje */
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.price-label {
    text-align: center;
    font-weight: 700;
    color: var(--brand);
}

.btn-full {
    width: 100%;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    background: white;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 2rem;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.modal-header h3 {
    font-size: 1.25rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.onboard-form {
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.form-section h4 {
    margin-bottom: 1.25rem;
    color: var(--brand);
    font-size: 1rem;
    border-bottom: 1px solid #EEF2FF;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 0.9375rem;
    background-color: white;
    /* Ensure white background for select */
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        height: 95vh;
        display: flex;
        flex-direction: column;
    }

    #onboard-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .modal-step {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 2rem;
    }

    .modal-footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
    }

    .modal-footer .btn-primary,
    .modal-footer .btn-text {
        width: auto;
        flex: 1;
        font-size: 0.875rem;
        padding: 0.75rem 0.5rem;
    }
}

.footer {
    padding: 4rem;
    text-align: center;
    background: white;
    color: var(--text-muted);
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .navbar {
        padding: 1rem 0;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn-secondary) {
        display: block;
        font-size: 1.25rem;
    }

    .nav-links a.btn-secondary {
        width: 80%;
        text-align: center;
        padding: 1rem;
    }

    .hero {
        padding: 4rem 1.5rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.75rem;
        /* Smaller font on mobile */
        letter-spacing: -0.02em;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-btns .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .mockup-container {
        transform: none;
        /* Remove 3D tilt on mobile for clarity */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .pro-section {
        padding: 5rem 0;
    }

    .pro-section h2 {
        font-size: 2.25rem;
        margin: 1rem 0 2rem;
        line-height: 1.2;
    }

    .pro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .pro-badge {
        margin: 0 auto;
    }

    .pro-features {
        align-items: center;
        gap: 2.5rem;
    }

    .pro-feature {
        max-width: 100%;
        padding: 0 1rem;
    }

    .pro-icon-grid {
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 480px) {
        .pro-icon-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .showcase {
        padding: 5rem 0;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .showcase-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .showcase-item img {
        max-width: 280px;
        width: 100%;
        display: block;
        margin: 0 auto 1.5rem;
    }

    .showcase-item span {
        display: block;
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .total-price {
        font-size: 3rem;
    }
}

/* Payment & Summary */
.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:has(input:checked) {
    border-color: var(--brand);
    background: #f5f3ff;
}

.order-summary-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.summary-line.total {
    margin-top: 1rem;
    font-weight: 800;
}

.modal-step.hidden,
.hidden {
    display: none !important;
}

.modal-price-badge {
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 0.5rem;
    font-weight: 700;
    color: var(--brand);
    font-family: 'Outfit';
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cookie Banner Premium Style */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 850px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.15);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cookieSlideUp {
    from {
        transform: translate(-50%, 150%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 1rem;
        padding: 1.5rem;
        text-align: center;
        gap: 1.25rem;
    }
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.cookie-content strong {
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
}

.cookie-content a {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

/* Modal Config Estilizado */
.cookie-modal-content {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cookie-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.cookie-option-card:hover {
    border-color: #e2e8f0;
    background: #f1f5f9;
}

.cookie-option-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    color: #1e293b;
}

.cookie-option-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748B;
}

.cookie-badge-active {
    background: #e0e7ff;
    color: #4F46E5;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    letter-spacing: 0.05em;
}

/* Switch Toggle Style */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: #4F46E5;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

input:disabled+.slider {
    background-color: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.7;
}


.cookie-details {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.4rem;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fdfdfd 0%, #f1f5f9 100%);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-gradient);
}

.contact-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-content h2 span {
    color: var(--brand);
    display: block;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    padding: 1rem 2rem;
    border-radius: 999px;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-email:hover {
    background: white;
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.1);
}

.email-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2.5rem 1.5rem;
    }

    .contact-content h2 {
        font-size: 1.75rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--dark);
}

.lang-btn.active {
    background: white;
    color: var(--brand);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .lang-selector {
        order: -1;
        margin-bottom: 1.5rem;
    }
}