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

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #41e2ba;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo img {
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
}

.header p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.8;
}

/* Step Sections */
.step-section {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.step-section.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

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

/* ===== NOVOS ESTILOS PARA PRD V2 ===== */

/* Banner de Introdução */
.intro-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.intro-header h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-emoji {
    font-size: 2rem;
}

.close-intro-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.close-intro-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.intro-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.intro-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    background: white;
    color: #667eea;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.intro-explanation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.explanation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.explanation-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.explanation-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.explanation-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Tooltip/Help Button para Ghost Points */
.ghost-points-help {
    background: #41e2ba;
    border: none;
    color: #000000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(65, 226, 186, 0.3);
}

.ghost-points-help:hover {
    background: #35c5a1;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(65, 226, 186, 0.4);
}

.help-icon {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Modal de Ghost Points */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
}

.modal-body {
    padding: 25px 30px;
}

.modal-body p {
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.modal-body p:last-of-type {
    margin-bottom: 20px;
}

.modal-benefits {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
}

.modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Alerta de Ultrapassagem de Pontos */
.points-overflow-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    z-index: 999;
    max-width: 600px;
    width: 90%;
    opacity: 0;
    transition: all 0.3s ease;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-text {
    flex: 1;
}

.alert-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.alert-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.btn-upgrade {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.btn-upgrade:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
}

.alert-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: -5px;
    right: -5px;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Notificação sobre ROI */
.roi-disclaimer {
    background: #e6fffa;
    border: 1px solid #81e6d9;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.disclaimer-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.roi-disclaimer p {
    margin: 0;
    color: #234e52;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsividade para as novas funcionalidades */
@media (max-width: 768px) {
    .intro-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .intro-step {
        padding: 12px;
    }
    
    .intro-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .points-overflow-alert {
        width: 95%;
        padding: 15px 20px;
    }
    
    .alert-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-upgrade {
        margin-left: 0;
        margin-top: 5px;
    }
}

.step-header {
    text-align: center;
    margin-bottom: 35px;
}

.step-header h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.step-header p {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #41e2ba;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.05);
    border-color: #41e2ba;
}

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

.plan-card.selected {
    background: #41e2ba;
    border-color: #41e2ba;
    color: #000000;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(65, 226, 186, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.plan-card.selected::before {
    background: #ffffff;
    opacity: 1;
}

.plan-card.popular {
    border-color: #41e2ba;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #41e2ba;
    color: #000000;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.plan-name {
    font-family: 'Roboto Slab', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.plan-credits {
    font-size: 1.1rem;
    color: #41e2ba;
    font-weight: 500;
    margin-bottom: 12px;
}

.plan-card.selected .plan-credits {
    color: rgba(255,255,255,0.9);
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.plan-card.selected .plan-price {
    color: white;
}

.plan-features {
    margin-bottom: 20px;
}

.plan-feature {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 8px;
}

.plan-card.selected .plan-feature {
    color: rgba(255,255,255,0.8);
}

.plan-savings {
    background: #41e2ba;
    color: #000000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.select-plan-btn {
    background: linear-gradient(135deg, #41e2ba 0%, #35c5a1 100%);
    color: #000000;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(65, 226, 186, 0.3);
}

.select-plan-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(65, 226, 186, 0.4);
    background: linear-gradient(135deg, #35c5a1 0%, #2ba888 100%);
}

.plan-card.selected .select-plan-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 28px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);
}

.service-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #41e2ba;
    cursor: pointer;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #41e2ba;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.05);
    border-color: #41e2ba;
}

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

.service-card.selected {
    background: #41e2ba;
    border-color: #41e2ba;
    color: #000000;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(65, 226, 186, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card.selected::before {
    background: #ffffff;
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    color: #718096;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-card.selected p {
    color: rgba(255,255,255,0.8);
}

.service-credits {
    background: #41e2ba;
    color: #000000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.service-card.selected .service-credits {
    background: rgba(255,255,255,0.2);
}

.service-price {
    font-weight: 600;
    color: #41e2ba;
    font-size: 0.9rem;
}

.service-card.selected .service-price {
    color: rgba(255,255,255,0.9);
}

/* Dynamic Credits Indicator */
.dynamic-credits-indicator {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.credits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.credits-header h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.credits-summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #41e2ba;
}

.dynamic-credits-bar {
    background: #e2e8f0;
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.dynamic-credits-used {
    background: linear-gradient(90deg, #41e2ba 0%, #35c5a1 100%);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dynamic-credits-used::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.credits-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.credits-status span:first-child {
    color: #718096;
    font-weight: 500;
}

.credits-status span:last-child {
    color: #41e2ba;
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive adjustments for dynamic indicator */
@media (max-width: 768px) {
    .credits-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .credits-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Checkbox */
.checkbox-container {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
    background: #41e2ba;
    border-color: #41e2ba;
}

.checkbox-container input:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.summary-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #41e2ba;
}

.summary-card.highlight {
    background: linear-gradient(135deg, #41e2ba 0%, #35c5a1 100%);
    color: white;
}

.summary-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    font-family: 'Roboto Slab', serif;
}

.summary-card.highlight h3 {
    color: rgba(255,255,255,0.9);
}

.summary-item {
    background: rgba(65, 226, 186, 0.05);
    border: 1px solid rgba(65, 226, 186, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(65, 226, 186, 0.1);
    border-color: rgba(65, 226, 186, 0.2);
    transform: translateY(-2px);
}

.summary-item .label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #41e2ba;
}

.summary-card.highlight .revenue,
.summary-card.highlight .profit {
    color: white;
}

/* Credits Usage */
.credits-usage {
    text-align: left;
}

.credits-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.credits-used {
    height: 100%;
    background: #41e2ba;
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.credits-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #718096;
}

/* Selected Services */
.selected-services {
    background: #f7fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.selected-services h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
}

.service-details {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #718096;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #41e2ba 0%, #35c5a1 100%);
    border-radius: 20px;
    padding: 35px 30px;
    margin-bottom: 30px;
    color: #000000;
    text-align: center;
    box-shadow: 0 12px 32px rgba(65, 226, 186, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Buttons */
.step-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(135deg, #41e2ba 0%, #35c5a1 100%);
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(65, 226, 186, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(65, 226, 186, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #35c5a1 0%, #2ba888 100%);
}

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

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(65, 226, 186, 0.2);
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #41e2ba 0%, #35c5a1 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(65, 226, 186, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(65, 226, 186, 0.3);
    background: linear-gradient(135deg, #35c5a1 0%, #2ba888 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.05);
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(255, 107, 107, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(255, 107, 107, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 20px;
    }
    
    .plan-card {
        min-height: 270px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .step-section {
        padding: 25px 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .step-header h2 {
        font-size: 1.8rem;
    }
    
    .plan-card {
        min-height: 260px;
        padding: 28px 20px;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    .plan-name {
        font-size: 1.4rem;
    }
    
    .cta-section {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .cta-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .btn, .btn-cta {
        padding: 14px 24px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        flex-direction: column;
        gap: 5px;
    }
}