/* ==========================================================================
   NATVIA PROPOSAL - DESIGN SYSTEM & STYLES (DARK MODE SAAS PREMIUM)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #090d16;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-hover: rgba(24, 33, 53, 0.85);
    --bg-input: rgba(15, 23, 42, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(16, 185, 129, 0.3);

    /* Text Colors */
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Accents - Neon Emerald & Vibrant Purple */
    --emerald-main: #10b981;
    --emerald-neon: #00f59b;
    --emerald-glow: rgba(16, 185, 129, 0.25);
    --emerald-dark: #059669;

    --purple-main: #8b5cf6;
    --purple-neon: #a855f7;
    --purple-glow: rgba(139, 92, 246, 0.25);
    
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20bd5a;

    --amber-warning: #f59e0b;

    /* Fonts & Radii */
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Orbs */
.bg-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
}

.bg-glow-purple {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--purple-main), transparent 70%);
}

.bg-glow-emerald {
    bottom: 10%;
    left: -100px;
    background: radial-gradient(circle, var(--emerald-main), transparent 70%);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, var(--emerald-neon), var(--purple-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-emerald { color: var(--emerald-neon); }
.text-purple { color: var(--purple-neon); }
.text-amber { color: var(--amber-warning); }

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    color: var(--purple-neon);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.brand-logo {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--emerald-dark), var(--purple-main));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 0 15px var(--emerald-glow);
}

.badge-sub {
    font-size: 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-neon);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid var(--border-highlight);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-hero-cta {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--emerald-dark));
    color: #ffffff;
    font-size: 1.1rem;
    padding: 16px 36px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--emerald-neon);
    color: var(--emerald-neon);
}

.btn-emerald {
    background: linear-gradient(135deg, var(--emerald-main), var(--emerald-dark));
    color: #fff;
    box-shadow: 0 6px 20px var(--emerald-glow);
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple-main), #7c3aed);
    color: #fff;
    box-shadow: 0 6px 20px var(--purple-glow);
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-giant-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-size: 1.3rem;
    padding: 20px 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    animation: pulse-glow 2.5s infinite;
}

.btn-giant-whatsapp:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 50px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* 1. HERO SECTION */
.hero-section {
    padding-top: 150px;
    padding-bottom: 70px;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 50px auto;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-highlight);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--emerald-neon);
    margin-bottom: 24px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--emerald-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald-neon);
    animation: blink 1.8s infinite;
}

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

.hero-title {
    font-size: 3.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Delivery Timeframe Banner */
.timeframe-banner {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 36px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.timeframe-icon {
    font-size: 1.8rem;
    color: var(--purple-neon);
}

.timeframe-text {
    display: flex;
    flex-direction: column;
}

.timeframe-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.timeframe-text .value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeframe-text .value small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 4px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats Cards Grid */
.hero-grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-icon.emerald {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-neon);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple-neon);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.stat-info h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 2. ACCORDION / ALCANCE DEL PROYECTO */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-color: var(--border-highlight);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.accordion-icon {
    width: 42px;
    height: 42px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--emerald-neon);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.accordion-icon.purple {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
    color: var(--purple-neon);
}

.accordion-title h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.accordion-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.toggle-icon {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--emerald-neon);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 10px 28px 28px 28px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-list li i {
    margin-top: 4px;
    font-size: 1.1rem;
}

.feature-list strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.feature-list p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--emerald-neon);
}

/* DEMO SIMULATOR SECTION */
.demo-section {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05), transparent 70%);
}

.sim-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-width: 980px;
    margin: 0 auto;
}

.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.badge-demo {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--border-highlight);
    color: var(--emerald-neon);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.sim-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media (max-width: 850px) {
    .sim-body {
        grid-template-columns: 1fr;
    }
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input[type="range"] {
    accent-color: var(--emerald-neon);
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
}

.val-badge {
    align-self: flex-end;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-neon);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 10px;
    border-radius: 6px;
}

.form-group select {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px;
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.checkbox-group {
    gap: 12px;
    margin-top: 6px;
}

.custom-cb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.custom-cb input {
    accent-color: var(--emerald-neon);
    width: 16px;
    height: 16px;
}

.sim-result-card {
    background: rgba(11, 16, 26, 0.9);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.res-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 18px;

}

.res-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;

}

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

.total-row {
    font-size: 1.1rem;
    font-weight: 700;
    align-items: center;

}

.total-price {
    font-size: 1.8rem;
    color: var(--emerald-neon);
    font-weight: 800;

}

.sim-footer-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: var(--radius-sm);
}

/* 3. DELIVERABLES / PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

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

.pricing-card.featured-emerald {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
}

.pricing-card.featured-purple {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.card-badge {
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--border-highlight);
    color: var(--emerald-neon);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 100px;
    margin-bottom: 16px;
}

.card-badge.purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--purple-neon);
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.card-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.card-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.card-price .currency {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.delivery-time-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-neon);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-time-badge.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-neon);
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.card-features li i {
    margin-top: 3px;
    font-size: 0.9rem;
}

.total-investment-box {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.investment-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.investment-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.investment-info strong {
    color: var(--emerald-neon);
    font-size: 1.2rem;
}

.investment-timeline .time-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple-neon);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 4. RECURRENCE & CONDITIONS */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple-neon);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-icon.emerald {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--emerald-neon);
}

.price-highlight {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--emerald-neon);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.info-list li i {
    color: var(--purple-neon);
    margin-top: 4px;
}

.clarification-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #fcd34d;
    margin-top: auto;
}

.payment-schedule {
    margin-bottom: 24px;
}

.payment-schedule h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.milestone-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

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

.step-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--emerald-neon);
}

.step-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 10px;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rules-list li {
    display: flex;
    gap: 12px;
}

.rules-list li i {
    margin-top: 4px;
}

.rules-list p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* 5. FINAL CTA SECTION */
.cta-final-section {
    padding-bottom: 120px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(13, 20, 33, 0.95));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    padding: 60px 36px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    color: var(--emerald-neon);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 24px auto;
}

.cta-delivery-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple-neon);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.cta-button-wrapper {
    margin-bottom: 16px;
}

.cta-subnote {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 36px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(9, 13, 22, 0.95);
}

.footer-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .timeframe-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .btn-giant-whatsapp {
        font-size: 1.05rem;
        padding: 16px 28px;
        width: 100%;
    }
}
