/* ============================================
   MIG — IA APLICADA AL NEGOCIO REAL
   Design System / Shared Styles
   ============================================ */

:root {
    --mig-red: #B2040D;
    --mig-red-glow: rgba(178, 4, 13, 0.4);
    --mig-black: #0B0B0F;
    --mig-surface: #121218;
    --mig-card: #18181F;
    --mig-border: rgba(255,255,255,0.06);
    --mig-text: #E8E8ED;
    --mig-muted: #8A8A9A;
    --mig-accent-soft: rgba(178, 4, 13, 0.12);
    --mig-green: #10B981;
    --mig-amber: #F59E0B;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 2.5rem;
}

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

::selection {
    background: rgba(178, 4, 13, 0.3);
    color: #fff;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Instrument Sans', 'Noto Sans', system-ui, sans-serif;
    background: var(--mig-black);
    color: var(--mig-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.font-display {
    font-family: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, var(--mig-red) 0%, #FF4D4D 50%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-subtle {
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass panels */
.glass-panel {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-panel-strong {
    background: rgba(11,11,15,0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

/* Cards */
.mig-card {
    background: var(--mig-card);
    border: 1px solid var(--mig-border);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mig-card:hover {
    border-color: rgba(178, 4, 13, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px -15px rgba(178, 4, 13, 0.15);
}

/* Primary CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--mig-red);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 0 0 var(--mig-red-glow),
                0 8px 30px -8px var(--mig-red-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px 5px var(--mig-red-glow),
                0 15px 40px -10px var(--mig-red-glow);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* Ghost CTA */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--mig-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875rem;
    transition: gap 0.3s;
}

.btn-ghost:hover { gap: 0.5rem; }

/* Badge / Pill */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pill-red {
    background: var(--mig-accent-soft);
    color: var(--mig-red);
    border: 1px solid rgba(178, 4, 13, 0.2);
}

.pill-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--mig-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Section spacing */
.section {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.section-tight { padding: 4rem 1.5rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }

/* Noise texture overlay */
.noise::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mig-black); }
::-webkit-scrollbar-thumb { background: var(--mig-red); border-radius: 3px; }

/* Counter animation */
.counter-value {
    font-variant-numeric: tabular-nums;
}

/* Pain indicator bar */
.pain-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.pain-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mig-red), #FF4D4D);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0;
}

.pain-bar-fill.animated {
    width: var(--target-width);
}

/* FAQ accordion */
details summary {
    list-style: none;
}

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

details[open] .faq-icon {
    transform: rotate(45deg);
}

/* Diagnostic quiz styles */
.quiz-option {
    background: var(--mig-card);
    border: 2px solid var(--mig-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quiz-option:hover {
    border-color: rgba(178, 4, 13, 0.3);
    background: rgba(178, 4, 13, 0.05);
}

.quiz-option.selected {
    border-color: var(--mig-red);
    background: rgba(178, 4, 13, 0.1);
    box-shadow: 0 0 20px rgba(178, 4, 13, 0.15);
}

.quiz-option .radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quiz-option.selected .radio {
    border-color: var(--mig-red);
    background: var(--mig-red);
}

.quiz-option.selected .radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* Progress bar for quiz */
.progress-track {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--mig-red);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Score gauge */
.score-ring {
    transform: rotate(-90deg);
}

.score-ring circle {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .section { padding: 3.5rem 1rem; }
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.75rem !important; }
    .btn-primary { width: 100%; }
    .btn-secondary { width: 100%; }
}

/* Sticky bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 1rem 1.5rem;
    background: rgba(11,11,15,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--mig-border);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-bar.visible {
    transform: translateY(0);
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: var(--mig-border);
}

/* Tag "No vendehumo" */
.anti-humo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 0.75rem;
    color: #EF4444;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Timeline / Sessions */
.session-card {
    position: relative;
    padding-left: 3rem;
}

.session-card::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 2.5rem;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, var(--mig-red) 0%, transparent 100%);
}

.session-card:last-child::before {
    display: none;
}

.session-number {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--mig-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison table */
.compare-col-them {
    background: rgba(255,255,255,0.02);
}

.compare-col-us {
    background: rgba(178, 4, 13, 0.05);
    border: 1px solid rgba(178, 4, 13, 0.15);
}

/* Price card featured */
.price-featured {
    border: 2px solid var(--mig-red) !important;
    box-shadow: 0 0 40px rgba(178, 4, 13, 0.15);
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .price-featured { transform: none; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--mig-card);
    border: 1px solid var(--mig-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
    border-color: rgba(178, 4, 13, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.4);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars .material-symbols-outlined {
    font-size: 1rem;
    color: #F59E0B;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--mig-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mig-red), #FF4D4D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.7rem;
    color: var(--mig-muted);
}

/* ============================================
   PAYMENT METHODS SECTION
   ============================================ */
.payment-showcase {
    background: #fff;
    border-radius: var(--radius-3xl);
    padding: 2.5rem;
    box-shadow: 0 25px 80px -15px rgba(0,0,0,0.4);
    transition: box-shadow 0.4s;
}

.payment-showcase:hover {
    box-shadow: 0 30px 100px -15px rgba(178, 4, 13, 0.15);
}

.payment-category-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.payment-logo-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.payment-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.payment-logo-card img {
    height: 24px;
    display: block;
}

@media (min-width: 768px) {
    .payment-logo-card img { height: 30px; }
    .payment-showcase { padding: 3rem 4rem; }
}

/* ============================================
   FORMAT / STACK SECTION
   ============================================ */
.format-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.format-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.format-icon .material-symbols-outlined {
    color: var(--mig-red);
    font-size: 1.5rem;
}

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

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

.stack-item-box {
    padding: 0.75rem 1rem;
    background: var(--mig-card);
    border-radius: 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.stack-item-box.highlighted {
    background: var(--mig-red);
    box-shadow: 0 0 20px var(--mig-red-glow);
}

.stack-item-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--mig-muted);
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ============================================
   OBJECTIVE SELECTOR TABS
   ============================================ */
.objective-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.objective-tab {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: rgba(255,255,255,0.05);
    color: var(--mig-muted);
    font-family: inherit;
}

.objective-tab:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.objective-tab.active {
    background: var(--mig-red);
    color: #fff;
    box-shadow: 0 0 20px var(--mig-red-glow);
}

.objective-content {
    display: none;
    animation: fadeSlideIn 0.4s ease-out;
}

.objective-content.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER SOCIAL ICONS
   ============================================ */
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mig-muted);
    text-decoration: none;
    border: 1px solid var(--mig-border);
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
}

.social-icon:hover {
    color: #fff;
    background: rgba(178, 4, 13, 0.15);
    border-color: rgba(178, 4, 13, 0.3);
    transform: translateY(-2px);
}

.social-icon.wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s;
}

.social-icon:hover svg,
.social-icon:hover .material-symbols-outlined {
    transform: scale(1.1);
}

/* ============================================
   CHECKOUT FORM STYLES (Vanilla)
   ============================================ */
.checkout-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-form-panel {
    background: rgba(11,11,15,0.85);
    backdrop-filter: blur(30px);
    border: 1px solid var(--mig-border);
    border-radius: var(--radius-3xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.checkout-summary-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--mig-border);
    border-radius: var(--radius-3xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

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

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--mig-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(18,18,24,0.6);
    border: 1px solid var(--mig-border);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: var(--mig-text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: rgba(138,138,154,0.5);
}

.form-input:focus {
    border-color: var(--mig-red);
    box-shadow: 0 0 0 3px rgba(178, 4, 13, 0.15);
}

.form-select {
    width: 100%;
    background: rgba(18,18,24,0.6);
    border: 1px solid var(--mig-border);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: var(--mig-text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238A8A9A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select:focus {
    border-color: var(--mig-red);
    box-shadow: 0 0 0 3px rgba(178, 4, 13, 0.15);
}

.form-select option {
    background: var(--mig-card);
    color: var(--mig-text);
}

.summary-total-box {
    background: rgba(178, 4, 13, 0.08);
    border: 1px solid rgba(178, 4, 13, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

/* Checkout payment logos inline */
.checkout-payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    filter: grayscale(1);
    transition: all 0.5s;
}

.checkout-payment-logos:hover {
    opacity: 1;
    filter: grayscale(0);
}

.checkout-payment-logos img {
    height: 16px;
}

/* ============================================
   CONFIRMATION / THANK YOU PAGES
   ============================================ */
.confirmation-card {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(11,11,15,0.85);
    backdrop-filter: blur(30px);
    border: 1px solid var(--mig-border);
    border-radius: var(--radius-3xl);
    padding: 3rem;
    position: relative;
}

.success-icon-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mig-card), var(--mig-surface));
    border: 1px solid var(--mig-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.success-icon-ring .material-symbols-outlined {
    font-size: 3.5rem;
    color: var(--mig-green);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.success-icon-glow {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.2);
    filter: blur(30px);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.upfront-contract {
    background: rgba(18,18,24,0.6);
    border: 1px solid var(--mig-border);
    border-radius: var(--radius-2xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.upfront-contract li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.upfront-contract li:last-child {
    margin-bottom: 0;
}

.steps-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 0.75rem;
    background: rgba(178, 4, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mig-red);
    font-weight: 700;
    font-size: 0.85rem;
    font-style: italic;
    flex-shrink: 0;
}

/* Upsell section */
.upsell-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(178, 4, 13, 0.2);
    border-radius: var(--radius-3xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.upsell-card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(178, 4, 13, 0.08);
    border-radius: 50%;
    filter: blur(60px);
}
