:root {
    --color-bg: #f8fafc;
    --color-bg-card: #ffffff;
    --color-brand: #10b981;
    --color-brand-light: #34d399;
    --color-accent: #059669;
    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-border: #e2e8f0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-matrix: 'Fira Code', monospace;
}

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

html {
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    word-wrap: break-word;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    word-wrap: break-word;
}

/* Header / Brand */
.brand {
    text-align: center;
    padding: 24px 20px;
    background: #000000;
    border-bottom: 6px solid var(--color-brand);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-text {
    font-family: var(--font-matrix);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--color-brand);
    margin: 0;
    text-shadow: 0 0 10px var(--color-brand), 0 0 20px var(--color-brand), 0 0 30px rgba(16, 185, 129, 0.5);
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.brand.scrolled {
    padding: 16px 20px;
}

.brand.scrolled .brand-text {
    font-size: 20px;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* FAQ Section */
.faq-item {
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 18px;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    color: var(--color-brand);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-question {
    color: var(--color-brand);
}


/* Checklist interactivo */
.checklist {
    max-width: 500px;
    margin: 30px auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--color-brand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.checklist-item.checked {
    border-color: var(--color-brand);
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-2px);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checklist-item.checked .checklist-checkbox {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.checklist-checkbox svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    stroke-width: 3;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checklist-item.checked .checklist-checkbox svg {
    opacity: 1;
}

.checklist-text {
    flex: 1;
    color: var(--color-text);
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.checklist-item.checked .checklist-text {
    color: var(--color-text);
}

.checklist-result {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 20px;
    border: 2px solid var(--color-brand);
    margin-top: 32px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.checklist-result.show {
    opacity: 1;
    transform: translateY(0);
}

.checklist-result h4 {
    color: var(--color-brand);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.checklist-result.no-match {
    background: var(--color-bg-card);
    border-color: var(--color-border);
}

.checklist-result.no-match h4 {
    color: var(--color-text-muted);
}







/* Proceso con íconos */
.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 760px;
    justify-items: center;
}

/* Primeros 3 ocupan 2 columnas cada uno */
.process-steps .step:nth-child(1) { grid-column: 1 / 3; }
.process-steps .step:nth-child(2) { grid-column: 3 / 5; }
.process-steps .step:nth-child(3) { grid-column: 5 / 7; }

/* Pasos 4 y 5 centrados: ocupan 2 cols cada uno, desplazados 1 col */
.process-steps .step:nth-child(4) { grid-column: 2 / 4; }
.process-steps .step:nth-child(5) { grid-column: 4 / 6; }

.step {
    text-align: center;
    padding: 36px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    background: var(--color-bg-card);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-brand);
    stroke-width: 1.5;
    fill: none;
}

.step-text {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps .step:nth-child(1),
    .process-steps .step:nth-child(2),
    .process-steps .step:nth-child(3),
    .process-steps .step:nth-child(4),
    .process-steps .step:nth-child(5) {
        grid-column: span 1;
    }
    .process-steps .step:nth-child(5) {
        grid-column: 1 / 3;
        max-width: 220px;
    }
}



@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 40px;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Hero */
#hero {
    padding-top: 60px;
}

.uppercase {
    text-transform: uppercase;
    font-weight: 800;
}

.highlight-red {
    color: #ef4444;
    font-weight: bold;
}

.highlight-brand {
    color: var(--color-brand);
    font-weight: 700;
}

.subheadline i {
    font-style: italic;
    color: inherit;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 52px);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--color-brand);
    font-weight: 700;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 36px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 650px;
    border-left: none;
    padding-left: 0;
    font-weight: 400;
}

.hero-cta {
    margin-top: 24px;
}

.hero-proof {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-proof p {
    margin: 0;
    font-size: 16px;
    color: var(--color-text);
}

.btn-primary {
    font-size: 20px;
    padding: 20px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
    background: var(--color-accent);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}







.hero-phone {
    width: 280px;
    height: 540px;
    background: #111827;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.hero-phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--color-brand);
    padding: 16px 12px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    background: #000;
    color: var(--color-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.chat-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
}

.chat-status {
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
}

.chat-messages {
    flex: 1;
    padding: 16px 12px;
    background: #e5ddd5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-bubble {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
}

.chat-bubble.received {
    background: #ffffff;
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.sent {
    background: #dcf8c6;
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input {
    padding: 10px 12px;
    background: #f0f0f0;
    color: #999;
    font-size: 12px;
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1,
    .subheadline {
        text-align: center !important;
    }
    
    .subheadline {
        border-left: none;
        padding-left: 0;
    }
    
    .hero-visual {
        margin-bottom: 24px;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Sections */
.section {
    margin-top: 80px;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Specific section adjustments */
#filtro {
    margin-bottom: 0;
}

#faq {
    margin-top: 0;
    padding-top: 0;
}

#filtro::after {
    margin: 0 auto 0;
}

.section:not(:last-child)::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 60px auto 0;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h1,
.section h2,
.section h3,
.section p,
.section > ul,
.section > ol {
    text-align: center;
}

.section p {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem section */
#problema {
    text-align: center;
}

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

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-brand-light);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-brand);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.problem-card p {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.problem-carousel {
    max-width: 700px;
    margin: 48px auto;
    text-align: center;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.carousel-track {
    position: relative;
    width: 100%;
    max-width: 620px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-bg-card);
    border: 1.5px solid var(--color-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateX(20px);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.slide-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-bg-card);
    border: 1.5px solid var(--color-border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.carousel-slide img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    object-position: center;
    padding: 48px 40px 24px;
    background: #f1f5f9;
    display: block;
}

.slide-caption {
    padding: 20px 24px;
    text-align: left;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-card);
}

.slide-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-brand);
    display: block;
    margin-bottom: 6px;
}

.slide-caption p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: var(--color-text-muted) !important;
    margin: 0 !important;
    text-align: left !important;
    max-width: 100% !important;
}

.carousel-btn {
    background: var(--color-bg-card);
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-text);
}

.carousel-btn:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.carousel-btn:hover svg {
    stroke: #ffffff;
}

.carousel-indicators {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 28px;
    height: 4px;
    border-radius: 100px;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator:hover {
    background: var(--color-brand-light);
}

.indicator.active {
    background: var(--color-brand);
    width: 48px;
}

@media (max-width: 768px) {
    .problem-carousel {
        margin: 30px auto;
    }
    
    .carousel-track {
        border-radius: 16px;
    }
    
    .carousel-slide img {
        height: 320px;
        padding: 44px 16px 16px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}

/* Solution Grid — legacy, reemplazado por solution-list */



/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, var(--color-bg-card), rgba(16, 185, 129, 0.05));
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px dashed var(--color-brand-light);
    margin-top: 48px;
    transition: all 0.3s ease;
}



.highlight-card:hover {
    border-style: solid;
    border-color: var(--color-brand);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--color-brand);
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.highlight-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 auto 28px;
    max-width: 600px;
}

.highlight-btn {
    margin-top: 0;
    font-size: 16px;
    padding: 14px 28px;
}

/* Solution list — 1 por fila */
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 48px 0;
}

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.solution-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}

.solution-row--reverse {
    direction: rtl;
}

.solution-row--reverse > * {
    direction: ltr;
}

.solution-row-img {
    overflow: hidden;
    background: #f1f5f9;
    min-height: 280px;
    max-height: 340px;
}

.solution-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.solution-row-img--contain img {
    object-fit: contain;
    object-position: center;
    padding: 16px;
    background: #f8fafc;
}

.solution-row:hover .solution-row-img img {
    transform: scale(1.03);
}

.solution-row-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.solution-row-num {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-brand);
}

.solution-row-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    text-align: left;
}

.solution-row-body p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--color-text-muted) !important;
    margin: 0 !important;
    text-align: left !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .solution-row,
    .solution-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .solution-row-img {
        min-height: 220px;
        max-height: 260px;
    }

    .solution-row-body {
        padding: 28px 24px;
    }
}



.section h2 {
    position: relative;
    display: block;
    width: max-content;
    margin: 0 auto;
    padding-bottom: 12px;
    text-align: center;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-brand);
    border-radius: 2px;
}

/* Typography */
h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 24px;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 24px;
    padding: 18px 36px;
    background: var(--color-brand);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-brand);
    position: relative;
    overflow: hidden;
    font-size: 18px;
}

.btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.whatsapp-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.2em;
}

/* Cards */
.card, .step, .faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card {
    padding: 32px;
    border-radius: 20px;
    margin-top: 32px;
    transition: all 0.3s ease;
    background: var(--color-bg-card);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.product-name, h1, h2 {
    color: var(--color-text);
}

.section strong {
    color: var(--color-brand);
    font-weight: 600;
}

/* Lists */
ul, ol {
    padding-left: 0;
    margin: 24px auto;
    max-width: 550px;
    text-align: left;
    color: var(--color-text);
    list-style-position: inside;
    font-size: 18px;
    line-height: 1.6;
}

li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

li:last-child {
    border-bottom: none;
}

ul li::marker {
    color: var(--color-brand);
}

ol li::marker {
    color: var(--color-accent);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .brand {
        padding: 16px 20px;
    }

    .brand-text {
        font-size: 20px;
    }

    .container {
        padding: 30px 20px;
    }

    .section {
        margin-top: 60px;
    }

    h1 {
        font-size: 32px;
    }
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero {
    padding-top: 60px;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}
.subheadline {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: left;
    max-width: 550px;
    border-left: 4px solid var(--color-brand);
    padding-left: 20px;
    font-weight: 400;
}

.subheadline strong {
    color: var(--color-text);
    font-weight: 600;
}
.hero-proof {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
}
.hero-image img {
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-load:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-on-load:nth-child(3) {
    animation-delay: 0.4s;
}

/* Footer */
.matrix-footer {
    text-align: center;
    padding: 48px 20px;
    border-top: 6px solid var(--color-brand);
    margin-top: 80px;
    font-size: 16px;
    font-family: var(--font-matrix);
    background: #000000;
}

.matrix-footer p {
    color: var(--color-brand);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* CTA Final Section */
#cta {
    text-align: center;
    padding: 64px 48px;
    background: linear-gradient(135deg, var(--color-bg-card), rgba(16, 185, 129, 0.15));
    border-radius: 24px;
    margin-top: 100px;
    border: 2px solid var(--color-brand);
    overflow: hidden;
}

#cta {
    text-align: center;
    padding: 64px 48px;
    background: linear-gradient(135deg, var(--color-bg-card), rgba(16, 185, 129, 0.15));
    border-radius: 24px;
    margin-top: 100px;
    border: 2px solid var(--color-brand);
    overflow: hidden;
    max-width: 100%;
}

#cta h2 {
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

#cta p {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    #cta {
        padding: 40px 20px;
        margin-top: 60px;
    }

    #cta h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    #cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        font-size: 18px;
    }
}

.cta-description {
    font-size: 20px;
    color: var(--color-text);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}





