/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0e27;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(79, 172, 254, 0.6);
    }
}

[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-animation="fade-up"].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER ===== */
header {
    padding: 20px 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInDown 0.6s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 50%, #F2C811 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.cta-header {
    padding: 12px 30px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(197, 108, 240, 0.15) 0%, transparent 70%);
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 100px;
    right: -100px;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
}

.circle-3 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(242, 200, 17, 0.1) 0%, transparent 70%);
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 50px;
    color: #4FACFE;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 50%, #F2C811 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: #a0aec0;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-mini-label {
    color: #a0aec0;
    font-size: 14px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.cta-secondary {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #4FACFE;
    border-radius: 50px;
    color: #4FACFE;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(79, 172, 254, 0.1);
    transform: translateY(-3px);
}

.powerbi-badge {
    margin-top: 60px;
    padding: 30px;
    background: rgba(242, 200, 17, 0.05);
    border: 2px solid rgba(242, 200, 17, 0.2);
    border-radius: 20px;
    display: inline-block;
    animation: glow 3s ease-in-out infinite;
}

.powerbi-badge p {
    margin-top: 10px;
    color: #F2C811;
    font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 20px;
    color: #a0aec0;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SAVINGS SECTION ===== */
.savings-section {
    background: linear-gradient(180deg, rgba(79, 172, 254, 0.03) 0%, transparent 100%);
}

.savings-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.comparison-card {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(197, 108, 240, 0.05) 100%);
    padding: 40px;
    border-radius: 30px;
    border: 2px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: #4FACFE;
}

.comparison-card.traditional {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.visualbi {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

.comparison-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.comparison-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
}

.cost-breakdown {
    margin: 20px 0;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

.cost {
    font-weight: 700;
    color: #ffffff;
}

.total-cost {
    margin-top: 20px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-cost.success {
    background: rgba(16, 185, 129, 0.1);
}

.cost-big {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.comparison-note {
    margin-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.vs-badge {
    padding: 20px 30px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    border-radius: 50px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.savings-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.savings-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(197, 108, 240, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.savings-box:hover {
    transform: translateY(-5px);
    border-color: #4FACFE;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

.savings-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.savings-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4FACFE;
}

.savings-content p {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
}

.calculation-example {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(197, 108, 240, 0.1) 100%);
    border-radius: 30px;
    border: 2px solid rgba(79, 172, 254, 0.3);
}

.calculation-example h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.calc-card {
    background: rgba(10, 14, 39, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
}

.calc-card:hover {
    transform: translateY(-5px);
    border-color: #4FACFE;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
}

.calc-users {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-details {
    margin: 20px 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #a0aec0;
    font-size: 15px;
}

.calc-traditional {
    color: #ef4444;
    font-weight: 700;
}

.calc-visualbi {
    color: #10b981;
    font-weight: 700;
}

.calc-savings {
    margin-top: 20px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    text-align: center;
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(197, 108, 240, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(79, 172, 254, 0.2);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #4FACFE;
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.3);
}

.benefit-icon-wrapper {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-description {
    color: #a0aec0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.benefit-description strong {
    color: #ffffff;
}

.benefit-highlight {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-tag {
    padding: 6px 14px;
    background: rgba(79, 172, 254, 0.15);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #4FACFE;
    font-weight: 600;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 172, 254, 0.03) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(197, 108, 240, 0.08) 100%);
    border-radius: 30px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(79, 172, 254, 0.3);
}

.pricing-card.premium-plan {
    border-color: #4FACFE;
    box-shadow: 0 0 60px rgba(79, 172, 254, 0.3);
}

.popular-badge {
    position: absolute;
    top: -2px;
    right: 30px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #C56CF0 0%, #F2C811 100%);
    border-radius: 0 0 15px 15px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(197, 108, 240, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-header {
    padding: 50px 40px 30px;
    text-align: center;
}

.plan-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(79, 172, 254, 0.1);
    color: #4FACFE;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.plan-badge.premium {
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    color: white;
    border: none;
}

.plan-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 32px;
    font-weight: 700;
    color: #a0aec0;
    margin-right: 5px;
}

.price-amount {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 24px;
    color: #a0aec0;
    margin-left: 5px;
}

.plan-description {
    color: #a0aec0;
    font-size: 16px;
}

.pricing-body {
    padding: 0 40px;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #10b981;
}

.features-list strong {
    color: #ffffff;
}

.pricing-footer {
    padding: 30px 40px 50px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #4FACFE;
    color: #4FACFE;
}

.btn-outline:hover {
    background: rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.plan-note {
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
    margin-top: 20px;
}

/* Total Cost Box */
.total-cost-box {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(197, 108, 240, 0.1) 100%);
    border-radius: 30px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    text-align: center;
}

.total-cost-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffffff;
}

.cost-calculator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.cost-item-calc {
    text-align: center;
    padding: 30px;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    min-width: 200px;
}

.cost-label {
    font-size: 16px;
    color: #a0aec0;
    margin-bottom: 10px;
}

.cost-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-plus,
.cost-equals {
    font-size: 36px;
    font-weight: 800;
    color: #4FACFE;
}

.cost-total-calc {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    border-radius: 20px;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.cost-total-calc .cost-label {
    color: rgba(255, 255, 255, 0.9);
}

.cost-value-total {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
}

.cost-note {
    font-size: 18px;
    color: #a0aec0;
    line-height: 1.8;
}

.cost-note strong {
    color: #ffffff;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    padding: 35px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(197, 108, 240, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4FACFE;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.faq-answer {
    color: #a0aec0;
    line-height: 1.8;
    padding-left: 43px;
}

/* ===== FOOTER ===== */
footer {
    padding: 80px 0 30px;
    background: rgba(10, 14, 39, 0.8);
    border-top: 2px solid rgba(79, 172, 254, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: #a0aec0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #4FACFE;
    padding-left: 5px;
}

/* ------------------------------------------------------------------- */


.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 14px;
}

.footer-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-meta a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-meta a:hover {
    color: #4FACFE;
}

.footer-meta span {
    color: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .savings-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-badge {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-calculator {
        flex-direction: column;
        gap: 20px;
    }
    
    .cost-plus,
    .cost-equals {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .calculation-example {
        padding: 30px 20px;
    }
    
    .total-cost-box {
        padding: 30px 20px;
    }
    
    .total-cost-box h3 {
        font-size: 28px;
    }
    
    .cost-value-total {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefit-card,
    .pricing-card,
    .faq-item {
        padding: 25px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 56px;
    }
    
    .calculation-example h3 {
        font-size: 24px;
    }
    
    .savings-box {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-answer {
        padding-left: 0;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C56CF0 0%, #4FACFE 100%);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(79, 172, 254, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(79, 172, 254, 0.3);
    color: #ffffff;
}

/* ===== UTILITIES ===== */
.text-gradient {
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 50%, #F2C811 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(79, 172, 254, 0.3);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(#0a0e27, #0a0e27) padding-box,
                linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%) border-box;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}




/* ===== IDEAL PARA SECTION ===== */
.ideal-section {
    background: linear-gradient(180deg, rgba(79, 172, 254, 0.03) 0%, transparent 50%, rgba(197, 108, 240, 0.03) 100%);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.ideal-card {
    padding: 45px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(197, 108, 240, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(79, 172, 254, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ideal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.6s ease;
}

.ideal-card:hover::before {
    left: 100%;
}

.ideal-card:hover {
    transform: translateY(-10px);
    border-color: #4FACFE;
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.3);
}

.ideal-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.ideal-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ideal-description {
    color: #a0aec0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ideal-benefits {
    list-style: none;
    margin: 30px 0;
}

.ideal-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
}

.check-icon-small {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

.ideal-tag {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #4FACFE;
    font-size: 14px;
}

.ideal-tag.danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.ideal-tag.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.tag-icon {
    font-size: 20px;
}

/* CTA Box */
.ideal-cta-box {
    padding: 60px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(197, 108, 240, 0.15) 100%);
    border-radius: 30px;
    border: 2px solid rgba(79, 172, 254, 0.3);
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.ideal-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.ideal-cta-content p {
    font-size: 18px;
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-ideal {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.btn-ideal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.ideal-cta-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(10, 14, 39, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: #4FACFE;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #4FACFE 0%, #C56CF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .ideal-cta-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ideal-grid {
        grid-template-columns: 1fr;
    }
    
    .ideal-card {
        padding: 30px;
    }
    
    .ideal-cta-box {
        padding: 40px 30px;
    }
    
    .ideal-cta-content h3 {
        font-size: 26px;
    }
}


/* Nueva sección de resumen en el hero */
.hero-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    backdrop-filter: blur(10px);
}

.summary-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-align: center;
}

.summary-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

/* Logo link estilo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}


/* Botón flotante para subir */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .summary-benefits {
        grid-template-columns: 1fr;
    }

    .hero-summary {
        padding: 24px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}