@font-face {
    font-family: 'Montserrat';
    src: url('/assets/font/Montserrat.woff2') format('woff2');
    font-weight: 400; /* o 'normal' */
    font-style: normal;
    font-display: swap; /* Ayuda a que el texto sea visible mientras carga la fuente */
}

/* Variables y base adaptadas desde src/index.css */
:root {
    --background: hsl(240 20% 99%);
    --foreground: hsl(250 30% 15%);
    --card: hsl(0 0% 100%);
    --card-foreground: hsl(250 30% 15%);
    --primary: hsl(248 53% 58%);
    --primary-foreground: hsl(0 0% 100%);
    --gold: hsl(45 100% 55%);
    --gold-foreground: hsl(250 30% 15%);
    --secondary: hsl(240 20% 97%);
    --accent: hsl(248 40% 95%);
    --accent-foreground: hsl(248 53% 45%);
    --muted: hsl(240 15% 95%);
    --muted-foreground: hsl(250 15% 45%);
    --border: hsl(240 15% 90%);
    --radius: 0.75rem;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 10px 30px rgba(2, 6, 23, 0.06);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    margin-top: 2.5rem;
    font-family: "Montserrat", sans-serif;
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

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

/* Header */
.rrss {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 2rem;
    gap: 1rem;

    a {
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 10px;
            height: auto;
            object-fit: scale-down;
        }
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo {
    height: 48px;
    width: 48px;
    border-radius: 999px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    display: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-desktop a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
}

.cta-desktop {
    display: block;
}

.btn {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    background: var(--gold);
    color: var(--gold-foreground);
    border: none;
    padding: 0.9rem 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.25rem;
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-mobile a {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    text-decoration: none;
}

/* Hero */

.waitlist {
    margin-top: 5rem;
    .hero {
        min-height: 100vh;

        position: relative;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 5rem;
        right: 0;
        width: 384px;
        height: 384px;
        background: hsl(248 53% 58% / 0.05);
        border-radius: 9999px;
        filter: blur(48px);
        z-index: 0;
    }

    .hero::after {
        content: "";
        position: absolute;
        bottom: 5rem;
        left: 0;
        width: 320px;
        height: 320px;
        background: hsl(45 100% 55% / 0.1);
        border-radius: 9999px;
        filter: blur(48px);
        z-index: 0;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 2rem;
        align-items: flex-start;
    }

    .hero-left h1 {
        font-size: 2rem;
        line-height: 1.05;
        margin: 0 0 1rem;
    }

    .hero-left .accent {
        display: block;
        color: var(--primary);
        font-weight: 600;
    }
}

.lead {
    color: var(--muted-foreground);
    max-width: 46rem;
}

.mockup img {
    width: 100%;
    border-radius: 12px;
}

/* Card / Right */
.card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.3),
        rgba(212, 175, 55, 0.1),
        rgba(212, 175, 55, 0.3)
    );
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(8px);
}

.card:hover::before {
    opacity: 1;
}

.card-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid hsl(45 100% 55% / 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover .card-inner {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.4),
        0 16px 48px rgba(212, 175, 55, 0.25);
}

.card-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-top: 2.5px solid rgba(212, 175, 55, 0.6);
    border-left: 2.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 8px 0 0 0;
    transition: all 0.3s ease;
}

.card:hover .card-inner::before {
    border-color: rgba(212, 175, 55, 0.9);
}

.card-inner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-top: 2.5px solid rgba(212, 175, 55, 0.6);
    border-right: 2.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 0 8px 0 0;
    transition: all 0.3s ease;
}

.card:hover .card-inner::after {
    border-color: rgba(212, 175, 55, 0.9);
}

.waitlist {
    .badge {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -16px;
        background: var(--background);
        border: 1.5px solid rgba(212, 175, 55, 0.5);
        border-radius: 999px;
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        z-index: 20;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .badge::before {
        content: "";
        width: 6px;
        height: 6px;
        background: #10b981;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(106, 90, 205, 0.1);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.card:hover .card-header .icon {
    transform: scale(1.08);
}

.card-header h2 {
    margin: 0.5rem 0 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--foreground);
}

.card-header p {
    margin: 0.4rem 0 0;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--foreground);
    display: block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.95;
}

.form input,
.form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.75);
    outline: none;
    font-size: 0.9rem;
    color: var(--foreground);
    transition: all 0.25s ease;
    font-family: inherit;
}

.form input::placeholder {
    color: var(--muted-foreground);
    opacity: 0.55;
}

.form input:hover,
.form select:hover {
    border-color: rgba(106, 90, 205, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.form input:focus,
.form select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
}

.form button {
    width: 100%;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: none;
    background: hsl(45 100% 55%);
    color: hsl(250 30% 15%);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px hsl(45 100% 55% / 0.25);
    margin-top: 1rem;
}

.form button:hover {
    background: #e6b800;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.form button:active {
    transform: scale(0.98);
}

.form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.card-foot {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

/* Components del design system (adaptadas) */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
    border-radius: 16px;
}

.glass-card-strong {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 34px rgba(2, 6, 23, 0.08);
    border-radius: 18px;
}

.text-gradient-gold {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Shadow utilities */
.shadow-glass {
    box-shadow: var(--shadow-soft) !important;
}

.shadow-gold {
    box-shadow: var(--shadow-gold) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* Logo styles and subtle animation from App.css */
.logo {
    height: 48px;
    padding: 0.25rem;
    will-change: filter;
    transition: filter 300ms;
}

.logo:hover {
    filter: drop-shadow(0 0 2em rgba(100, 108, 255, 0.67));
}

@keyframes logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .logo.spin {
        animation: logo-spin infinite 20s linear;
    }
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    background: rgba(15, 23, 42, 0.03);
    margin-top: 4rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.logo-small {
    height: 64px;
    width: 64px;
    border-radius: 999px;
    opacity: 0.9;
}

.brand-title {
    font-weight: 700;
}

.divider {
    width: 64px;
    height: 1px;
    background: rgba(15, 23, 42, 0.06);
    margin: 1rem 0;
}

/* Toast */
.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast .item {
    background: #111;
    color: #fff;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .waitlist {
        .hero-grid {
            grid-template-columns: 1fr;
        }
    }

    .nav-desktop {
        display: none;
    }

    .brand-name {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-mobile {
        display: none;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .nav-mobile.active {
        display: flex;
    }

    .cta-desktop {
        display: none;
    }
}

@media (min-width: 901px) {
    .brand-name {
        display: block;
    }
}

/* Commitment Section */

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

.card-small {
    background: rgba(240, 240, 245, 0.6);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.card-small h3 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

/* Features */
.value-section {
    padding: 5rem 1.5rem;
    background-color: hsl(var(--secondary) / 0.3);
}

@media (min-width: 768px) {
    .value-section {
        padding: 7rem 1.5rem;
    }
}

.features-grid {
    display: grid;
    gap: 2rem;
}

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

.feature-card {
    background-color: hsl(0 0% 100% / 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(0 0% 100% / 0.4);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 30px hsl(248 53% 58% / 0.08);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: hsl(var(--primary) / 0.2);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary));
}

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        var(--primary),
        var(--gold),
        var(--muted-foreground)
    );
    display: none;
}

@media (min-width: 768px) {
    .timeline::before {
        display: block;
    }
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-item.current .timeline-icon {
    animation: pulse 2s infinite;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.timeline-icon.completed {
    background: var(--primary);
}

.timeline-icon.current {
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.15);
}

.timeline-icon.upcoming {
    background: rgba(229, 231, 235, 1);
    color: var(--muted-foreground);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-soft);
}

.timeline-item.current .timeline-content {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.2),
        var(--shadow-gold);
}

.timeline-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    font-size: 0.9rem;
}

.status {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-left: 0.5rem;
    font-weight: 600;
    display: inline-block;
}

.status.primary {
    background: rgba(106, 90, 205, 0.1);
    color: var(--primary);
}

.status.gold {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
}

.status.muted {
    background: rgba(107, 114, 128, 0.1);
    color: var(--muted-foreground);
}

/* Security */
.security-card {
    background: linear-gradient(
        180deg,
        rgba(248, 248, 250, 1),
        rgba(255, 255, 255, 0.98)
    );
    padding: 1.5rem 1.75rem;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shield {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(14, 165, 164, 0.12),
        rgba(14, 165, 164, 0.06)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.security-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.security-header .lead {
    margin: 0;
    color: var(--accent-foreground);
}

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

.security-item {
    background: transparent;
    padding: 0.75rem;
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.security-item h4 {
    margin: 0;
    font-size: 0.95rem;
}

.security-item p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.security-item .ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(14, 165, 164, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Accordion simple */
.accordion details {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.accordion summary {
    cursor: pointer;
    padding: 0.6rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion .chev {
    transition: transform 0.25s ease;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.accordion details[open] .chev {
    transform: rotate(180deg);
}

.accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.32s ease,
        opacity 0.28s ease;
    padding-left: 0;
}

.accordion details[open] .accordion-body {
    max-height: 600px;
    opacity: 1;
    padding-top: 0.5rem;
}

.accordion p {
    margin: 0.25rem 0 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Focus and keyboard accessibility */
.accordion summary:focus {
    outline: none;
}

.accordion summary:focus-visible {
    box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
    border-radius: 8px;
}

/* Add subtle divider between items like original */
.accordion details + details {
    position: relative;
}

.accordion details + details::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        transparent
    );
}

/* Small helpers */
.muted-small {
    color: var(--muted-foreground);
}

.lead {
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .commitment-grid,
    .features-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .waitlist {
        .hero-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* Missing design tokens and animations from src/index.css (added for parity) */
:root {
    --popover: 0 0% 100%;
    --popover-foreground: 250 30% 15%;
    --input: 240 15% 90%;
    --ring: 248 53% 58%;
    --glass-border: 0 0% 100% / 0.3;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
}

/* Section padding utility used across sections */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* Pulse animation */
@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Accordion animations */
@keyframes accordion-up {
    from {
        height: var(--radix-accordion-content-height);
    }

    to {
        height: 0;
    }
}

@keyframes accordion-down {
    from {
        height: 0;
    }

    to {
        height: var(--radix-accordion-content-height);
    }
}

/* Enter/exit animations */
@keyframes enter {
    from {
        opacity: var(--tw-enter-opacity, 1);
    }
}

@keyframes exit {
    to {
        opacity: var(--tw-exit-opacity, 1);
    }
}

.animate-in {
    animation-name: enter;
    animation-duration: 150ms;
}

/* FAQ Section - Lovable Styles */
.faq-section {
    padding: 5rem 1rem;
    background-color: hsl(240 20% 99%);
}

@media (min-width: 640px) {
    .faq-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 5rem 2rem;
    }
}

.faq-accordion-item {
    background-color: hsl(0 0% 100%);
    border-radius: 0.5rem;
    border: 1px solid hsl(240 15% 90% / 0.5);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: hsl(45 100% 55% / 0.3);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.faq-trigger {
    padding: 1.25rem 1.5rem;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
}

.faq-trigger:hover {
    text-decoration: none;
}

.faq-question {
    font-weight: 500;
    color: hsl(250 30% 15%);
    font-size: 1rem;
    padding-right: 1rem;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.125rem;
    }
}

.faq-trigger:hover .faq-question {
    color: hsl(248 53% 58%);
}

.faq-content {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer-wrapper {
    background-color: hsl(248 53% 58% / 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    border-left: 2px solid hsl(45 100% 55%);
}

.faq-answer {
    color: hsl(250 15% 45%);
    line-height: 1.625;
}

.faq-divider {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.faq-divider-line {
    width: 4rem;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        hsl(45 100% 55% / 0.5),
        transparent
    );
}

/* Additional FAQSection styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item.open .faq-content {
    display: block;
}

.faq-accordion-item .faq-content {
    display: none;
}

.faq-chevron {
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-accordion-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* SecuritySection responsive grid */
@media (min-width: 640px) {
    .security-card {
        text-align: left;
    }
}

/* Container max-width for FAQ */
.container.max-w-3xl {
    max-width: 48rem;
}

/* Security Section - Updated Lovable Styles */
.security-section {
    padding: 5rem 1.5rem;
    background-color: hsl(240 20% 99%);
}

@media (min-width: 768px) {
    .security-section {
        padding: 7rem 1.5rem;
    }
}

.security-card-main {
    background-color: hsl(248 40% 95%);
    border-radius: 1.5rem;
    padding: 2rem;
    animation: fadeIn 0.8s ease-out forwards;
}

@media (min-width: 768px) {
    .security-card-main {
        padding: 3rem;
    }
}

.security-card-main h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.security-description {
    font-size: 1.125rem;
    line-height: 1.625;
    color: hsl(248 40% 20%);
    margin-bottom: 2rem;
}

.security-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: hsl(248 53% 58% / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(248 53% 58%);
}

.security-features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .security-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.security-feature-item h4 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.security-feature-item p {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.security-feature-icon-wrapper {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.security-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(248 53% 58%);
}

/* Roadmap/Timeline Section - Enhanced Lovable Styles */
.roadmap-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(
        135deg,
        hsl(240 20% 99%) 0%,
        hsl(248 40% 97%) 100%
    );
}

@media (min-width: 768px) {
    .roadmap-section {
        padding: 7rem 1.5rem;
    }
}

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

.roadmap-header h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.roadmap-header p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}

/* Timeline container */
.timeline {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        hsl(248 53% 58%),
        hsl(45 100% 55%),
        hsl(240 15% 90%)
    );
}

@media (max-width: 640px) {
    .timeline::before {
        display: none;
    }
}

/* Timeline items */
.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid hsl(240 15% 90%);
    z-index: 10;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-icon.completed {
    background: hsl(248 53% 58%);
    border-color: hsl(248 53% 58%);
}

.timeline-icon.completed svg {
    color: white;
    width: 1.25rem;
    height: 1.25rem;
}

.timeline-icon.current {
    background: hsl(45 100% 55%);
    border-color: hsl(45 100% 55%);
    box-shadow: 0 0 0 6px hsl(45 100% 55% / 0.15);
    animation: pulse 2s infinite;
}

.timeline-icon.current svg {
    color: white;
    width: 1.25rem;
    height: 1.25rem;
}

.timeline-icon.upcoming {
    background: hsl(240 15% 95%);
    border-color: hsl(240 15% 90%);
}

.timeline-icon.upcoming svg {
    color: hsl(240 15% 70%);
    width: 1.25rem;
    height: 1.25rem;
}

/* Timeline content */
.timeline-content {
    flex: 1;
    background: white;
    backdrop-filter: blur(8px);
    border: 1px solid hsl(240 15% 90% / 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
}

.timeline-item.current .timeline-content {
    background: hsl(45 100% 55% / 0.05);
    border-color: hsl(45 100% 55% / 0.3);
    box-shadow: 0 8px 24px hsl(45 100% 55% / 0.1);
}

.timeline-content:hover {
    border-color: hsl(248 53% 58% / 0.3);
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.08);
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.timeline-content p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

@media (max-width: 640px) {
    .timeline {
        gap: 1.5rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-icon {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }
}

/* Pulse animation */
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 6px hsl(45 100% 55% / 0.15);
    }

    50% {
        box-shadow: 0 0 0 8px hsl(45 100% 55% / 0.08);
    }
}

/* Enhanced Status Badges */
.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Base gradient backgrounds with subtle animations */
.status::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.status:hover::before {
    left: 100%;
}

/* Completed - Primary (Violeta) */
.status.primary {
    background: linear-gradient(
        135deg,
        hsl(248 53% 58% / 0.15) 0%,
        hsl(248 53% 58% / 0.08) 100%
    );
    color: hsl(248 53% 58%);
    border: 1px solid hsl(248 53% 58% / 0.3);
    box-shadow: 0 2px 4px hsl(248 53% 58% / 0.1);
}

.status.primary:hover {
    background: linear-gradient(
        135deg,
        hsl(248 53% 58% / 0.2) 0%,
        hsl(248 53% 58% / 0.12) 100%
    );
    box-shadow: 0 4px 8px hsl(248 53% 58% / 0.15);
    transform: translateY(-1px);
}

/* Current - Gold */
.status.gold {
    background: linear-gradient(
        135deg,
        hsl(45 100% 55% / 0.2) 0%,
        hsl(45 100% 55% / 0.1) 100%
    );
    color: hsl(45 100% 40%);
    border: 1px solid hsl(45 100% 55% / 0.4);
    box-shadow: 0 2px 6px hsl(45 100% 55% / 0.15);
    animation: badge-glow 2s ease-in-out infinite;
    font-weight: 800;
}

.status.gold:hover {
    background: linear-gradient(
        135deg,
        hsl(45 100% 55% / 0.25) 0%,
        hsl(45 100% 55% / 0.15) 100%
    );
    box-shadow: 0 4px 12px hsl(45 100% 55% / 0.25);
    transform: translateY(-1px);
}

/* Upcoming - Muted */
.status.muted {
    background: linear-gradient(
        135deg,
        hsl(240 15% 90% / 0.6) 0%,
        hsl(240 15% 90% / 0.4) 100%
    );
    color: hsl(240 15% 60%);
    border: 1px solid hsl(240 15% 85% / 0.5);
    box-shadow: 0 2px 4px hsl(240 15% 70% / 0.08);
}

.status.muted:hover {
    background: linear-gradient(
        135deg,
        hsl(240 15% 90% / 0.7) 0%,
        hsl(240 15% 90% / 0.5) 100%
    );
    box-shadow: 0 4px 8px hsl(240 15% 70% / 0.12);
    transform: translateY(-1px);
}

/* Badge glow animation for "Actual" status */
@keyframes badge-glow {
    0%,
    100% {
        box-shadow: 0 2px 6px hsl(45 100% 55% / 0.15);
    }

    50% {
        box-shadow: 0 4px 12px hsl(45 100% 55% / 0.25);
    }
}

/* Pulse dot indicator for current status */
.status.gold::after {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: hsl(45 100% 55%);
    margin-left: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Timeline header with status badge */
.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.timeline-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

.timeline-header .status {
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-header .status {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* ValueSection - Enhanced Lovable Styles */
.value-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(
        135deg,
        hsl(240 20% 99%) 0%,
        hsl(248 40% 97%) 50%,
        hsl(240 20% 99%) 100%
    );
}

@media (min-width: 768px) {
    .value-section {
        padding: 7rem 1.5rem;
    }
}

.value-section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.value-section > .container > div:first-child p {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

/* Feature Card - Glassmorphism */
.feature-card {
    background-color: hsl(0 0% 100% / 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(0 0% 100% / 0.4);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gradient overlay on hover */
.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, hsl(248 53% 58% / 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    box-shadow: 0 4px 30px hsl(248 53% 58% / 0.08);
    transform: translateY(-4px);
    border-color: hsl(248 53% 58% / 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

/* Feature Icon */
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background-color: hsl(var(--primary) / 0.2);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary));
    transition: color 0.3s ease;
}

/* Feature Title */
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: hsl(var(--primary));
}

/* Feature Description */
.feature-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }
}

/* ValueSection - Refined Lovable Style */
.value-section {
    padding: 5rem 1.5rem;
    background: hsl(240 20% 99%);
}

@media (min-width: 768px) {
    .value-section {
        padding: 7rem 1.5rem;
    }
}

.value-section h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    font-family: "Georgia", "Garamond", serif;
}

.value-section > .container > div:first-child p {
    font-size: 1rem;
    color: hsl(240 15% 45%);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Feature Card - Clean Lovable Style */
.feature-card {
    background-color: hsl(0 0% 100%);
    border: none;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    box-shadow: 0 12px 24px rgb(0 0 0 / 0.12);
    transform: translateY(-4px);
}

/* Feature Icon */
.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: hsl(248 53% 58% / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background-color: hsl(248 53% 58% / 0.15);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(248 53% 58%);
}

/* Feature Title */
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Feature Description */
.feature-card p {
    font-size: 0.875rem;
    color: hsl(240 15% 45%);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 1.375rem;
        height: 1.375rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8125rem;
    }
}

/* ValueSection Header */
.value-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.6s ease-out forwards;
}

.value-header h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-family: "Georgia", "Garamond", serif;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .value-header h2 {
        font-size: 2.5rem;
    }
}

.value-subtitle {
    font-size: 1rem;
    color: hsl(240 15% 45%);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.65;
    text-align: center;
}

@media (max-width: 640px) {
    .value-header {
        margin-bottom: 2.5rem;
    }

    .value-header h2 {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .value-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

/* CommitmentSection - Refined Lovable Styles */
.commitment-section {
    padding: 5rem 1.5rem;
    background-color: hsl(240 20% 99%);
}

@media (min-width: 768px) {
    .commitment-section {
        padding: 7rem 1.5rem;
    }
}

.commitment-card {
    max-width: 56rem;
    margin: 0 auto;
    background-color: hsl(0 0% 100%);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border-left: 4px solid hsl(var(--gold));
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
    padding: 2.5rem;
    transition: box-shadow 0.3s ease;
}

.commitment-card:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
}

@media (min-width: 768px) {
    .commitment-card {
        padding: 3rem;
    }
}

.commitment-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.commitment-header .icons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.icon-circle-gold,
.icon-circle-primary {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-gold {
    background-color: hsl(var(--gold) / 0.1);
}

.icon-circle-gold svg {
    color: hsl(var(--gold));
    width: 1.5rem;
    height: 1.5rem;
}

.icon-circle-primary {
    background-color: hsl(var(--primary) / 0.1);
    margin-left: -0.75rem;
}

.icon-circle-primary svg {
    color: hsl(var(--primary));
    width: 1.5rem;
    height: 1.5rem;
}

.commitment-header h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.25rem 0;
    font-family: "Georgia", "Garamond", serif;
}

.commitment-header p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.commitment-text {
    font-size: 1rem;
    color: hsl(240 15% 45%);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.commitment-text strong {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.commitment-text .text-primary {
    color: hsl(var(--primary));
}

/* Key Points Grid */
.key-points-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .key-points-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.key-point-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: hsl(240 20% 98%);
    border: 1px solid hsl(240 15% 90%);
    transition: all 0.3s ease;
}

.key-point-card:hover {
    background-color: hsl(240 20% 96%);
    border-color: hsl(var(--gold) / 0.3);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
}

.key-point-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.key-point-card p {
    font-size: 0.8125rem;
    color: hsl(240 15% 45%);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .commitment-section {
        padding: 3rem 1rem;
    }

    .commitment-card {
        padding: 1.75rem;
    }

    .commitment-header {
        gap: 1rem;
    }

    .commitment-header h2 {
        font-size: 1.5rem;
    }

    .commitment-text {
        font-size: 0.9375rem;
    }
}

/* CommitmentSection - Lovable Original Design */
.commitment-section {
    padding: 5rem 1.5rem;
    background-color: hsl(240 20% 99%);
}

@media (min-width: 768px) {
    .commitment-section {
        padding: 7rem 1.5rem;
    }
}

.commitment-card {
    max-width: 56rem;
    margin: 0 auto;
    background-color: hsl(0 0% 100%);
    border-radius: 1rem;
    border-left: 6px solid hsl(var(--gold));
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
    padding: 2.5rem;
    transition: box-shadow 0.3s ease;
}

.commitment-card:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
}

@media (min-width: 768px) {
    .commitment-card {
        padding: 3rem;
    }
}

.commitment-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.commitment-header .icons {
    display: flex;
    gap: -0.75rem;
    flex-shrink: 0;
}

.icon-circle-gold,
.icon-circle-primary {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-gold {
    background-color: hsl(var(--gold) / 0.15);
    margin-right: -0.5rem;
    z-index: 2;
}

.icon-circle-gold svg {
    color: hsl(var(--gold));
    width: 1.25rem;
    height: 1.25rem;
}

.icon-circle-primary {
    background-color: hsl(var(--primary) / 0.15);
    z-index: 1;
}

.icon-circle-primary svg {
    color: hsl(var(--primary));
    width: 1.25rem;
    height: 1.25rem;
}

.commitment-header > div {
    flex: 1;
}

.commitment-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.25rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .commitment-header h2 {
        font-size: 2rem;
    }
}

.commitment-header p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    font-weight: 500;
}

.commitment-text {
    font-size: 1rem;
    color: hsl(240 15% 40%);
    line-height: 1.7;
    margin: 2rem 0;
}

.commitment-text strong {
    font-weight: 600;
}

.commitment-text .text-primary {
    color: hsl(var(--primary));
    font-weight: 600;
}

/* Key Points Grid */
.key-points-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .key-points-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.key-point-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: hsl(240 20% 97%);
    border: 1px solid hsl(240 15% 90%);
    transition: all 0.3s ease;
}

.key-point-card:hover {
    background-color: hsl(240 20% 95%);
    border-color: hsl(240 15% 85%);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
}

.key-point-card h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.key-point-card p {
    font-size: 0.8125rem;
    color: hsl(240 15% 45%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .commitment-section {
        padding: 3rem 1rem;
    }

    .commitment-card {
        padding: 1.75rem;
        border-left: 4px solid hsl(var(--gold));
    }

    .commitment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .commitment-header h2 {
        font-size: 1.5rem;
    }

    .commitment-text {
        font-size: 0.9375rem;
        margin: 1.5rem 0;
    }

    .key-points-grid {
        gap: 1rem;
    }
}

/* CommitmentSection - Exact Lovable Original */
.commitment-section {
    padding: 5rem 1.5rem;
    background-color: hsl(240 20% 99%);
}

@media (min-width: 768px) {
    .commitment-section {
        padding: 7rem 1.5rem;
    }
}

.commitment-card {
    max-width: 56rem;
    margin: 0 auto;
    background-color: hsl(0 0% 100%);
    border-radius: 1rem;
    border-left: 8px solid hsl(45 100% 55%);
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .commitment-card {
        padding: 3rem;
    }
}

.commitment-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.commitment-header .icons {
    display: flex;
    gap: -0.5rem;
    flex-shrink: 0;
    position: relative;
}

.icon-circle-gold,
.icon-circle-primary {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-gold {
    background-color: hsl(45 100% 55% / 0.12);
    position: relative;
    z-index: 2;
    margin-right: -0.625rem;
}

.icon-circle-gold svg {
    color: hsl(45 100% 55%);
    width: 1.25rem;
    height: 1.25rem;
}

.icon-circle-primary {
    background-color: hsl(248 53% 58% / 0.12);
    position: relative;
    z-index: 1;
}

.icon-circle-primary svg {
    color: hsl(248 53% 58%);
    width: 1.25rem;
    height: 1.25rem;
}

.commitment-header > div {
    flex: 1;
}

.commitment-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (min-width: 768px) {
    .commitment-header h2 {
        font-size: 2rem;
    }
}

.commitment-header p {
    font-size: 0.8125rem;
    color: hsl(240 15% 50%);
    margin: 0.375rem 0 0 0;
    padding: 0;
    font-weight: 500;
}

.commitment-text {
    font-size: 1rem;
    color: hsl(240 15% 40%);
    line-height: 1.7;
    margin: 2rem 0;
}

.commitment-text strong {
    font-weight: 600;
}

.commitment-text .text-primary {
    color: hsl(248 53% 58%);
    font-weight: 600;
}

/* Key Points Grid */
.key-points-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .key-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.key-point-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: hsl(240 20% 97%);
    border: 1px solid hsl(240 15% 90%);
}

.key-point-card h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.key-point-card p {
    font-size: 0.8125rem;
    color: hsl(240 15% 50%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .commitment-section {
        padding: 3rem 1rem;
    }

    .commitment-card {
        padding: 1.75rem;
        border-left: 4px solid hsl(45 100% 55%);
    }

    .commitment-header {
        gap: 1rem;
    }

    .commitment-header h2 {
        font-size: 1.5rem;
    }

    .commitment-text {
        font-size: 0.9375rem;
    }
}

/* CommitmentSection - Text Left Alignment */
.commitment-section {
    padding: 5rem 1.5rem;
    background-color: hsl(240 20% 99%);
}

@media (min-width: 768px) {
    .commitment-section {
        padding: 7rem 1.5rem;
    }
}

.commitment-card {
    max-width: 56rem;
    margin: 0 auto;
    background-color: hsl(0 0% 100%);
    border-radius: 1rem;
    border-left: 8px solid hsl(45 100% 55%);
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .commitment-card {
        padding: 3rem;
    }
}

.commitment-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.commitment-header .icons {
    display: flex;
    gap: -0.5rem;
    flex-shrink: 0;
    position: relative;
    width: auto;
    min-width: fit-content;
}

.icon-circle-gold,
.icon-circle-primary {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-gold {
    background-color: hsl(45 100% 55% / 0.12);
    position: relative;
    z-index: 2;
    margin-right: -0.625rem;
}

.icon-circle-gold svg {
    color: hsl(45 100% 55%);
    width: 1.25rem;
    height: 1.25rem;
}

.icon-circle-primary {
    background-color: hsl(248 53% 58% / 0.12);
    position: relative;
    z-index: 1;
}

.icon-circle-primary svg {
    color: hsl(248 53% 58%);
    width: 1.25rem;
    height: 1.25rem;
}

.commitment-header > div:last-child {
    flex: 1;
    min-width: 0;
}

.commitment-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (min-width: 768px) {
    .commitment-header h2 {
        font-size: 2rem;
    }
}

.commitment-header p {
    font-size: 0.8125rem;
    color: hsl(240 15% 50%);
    margin: 0.375rem 0 0 0;
    padding: 0;
    font-weight: 500;
}

.commitment-text {
    font-size: 1rem;
    color: hsl(240 15% 40%);
    line-height: 1.7;
    margin: 2rem 0;
}

.commitment-text strong {
    font-weight: 600;
}

.commitment-text .text-primary {
    color: hsl(248 53% 58%);
    font-weight: 600;
}

/* Key Points Grid */
.key-points-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .key-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.key-point-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: hsl(240 20% 97%);
    border: 1px solid hsl(240 15% 90%);
}

.key-point-card h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.key-point-card p {
    font-size: 0.8125rem;
    color: hsl(240 15% 50%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .commitment-section {
        padding: 3rem 1rem;
    }

    .commitment-card {
        padding: 1.75rem;
        border-left: 4px solid hsl(45 100% 55%);
    }

    .commitment-header {
        gap: 1rem;
    }

    .commitment-header h2 {
        font-size: 1.5rem;
    }

    .commitment-text {
        font-size: 0.9375rem;
    }
}

/* =========================================
   PAGINACIÓN ELEGANTE (ESTILO SAAS PRO)
   ========================================= */

.blog-pagination {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--c-border);
    padding-top: 3rem;
    margin-top: 2rem;
}

.cincel-pagination {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--c-bg-card);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-border);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-left: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    padding: 0 0.5rem;
}

.page-nav-btn,
.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0 0.5rem;
    user-select: none;
}

/* Hover para botones inactivos */
.page-nav-btn:hover:not(.disabled),
.page-num:hover:not(.is-active) {
    background-color: var(--c-primary-soft);
    color: var(--c-primary);
}

/* Estado Activo (Página actual) */
.page-num.is-active {
    background-color: var(--c-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(62, 57, 186, 0.25);
}

/* Estado Deshabilitado (Flechas en los extremos) */
.page-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Los 3 puntitos (...) */
.page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--c-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Adaptación Inteligente para Móviles --- */
@media (max-width: 640px) {
    /* Ocultamos los números en móvil para que no se rompa la pantalla */
    .page-num:not(.is-active) {
        display: none;
    }
    .page-dots {
        display: none;
    }
    /* Transformamos el número activo en un indicador de texto */
    .page-num.is-active {
        background: transparent;
        color: var(--c-text-main);
        box-shadow: none;
        min-width: auto;
        padding: 0 1rem;
    }
    .page-num.is-active::before {
        content: "Página ";
        font-weight: 500;
        color: var(--c-text-muted);
        margin-right: 4px;
    }
}
