﻿
.bg-gradient-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        background: #e9ecef;
        transform: translateX(5px);
    }

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.visual-wrapper {
    min-height: 400px;
}

.main-visual {
    transition: all 0.3s ease;
}

    .main-visual:hover {
        transform: scale(1.02);
    }

.floating-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1.5s;
}

.badge-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-label {
    background: white;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.grade-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

    .grade-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.grade-header {
    padding: 1.5rem;
    text-align: center;
    color: white;
}

    .grade-header h4 {
        font-size: 1.5rem;
        margin: 0;
    }

.grade-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

    .grade-badge.bg-dark {
        background: #212529;
        color: white;
    }

.grade-body {
    padding: 2rem;
}

.grade-description {
    margin-bottom: 1.5rem;
}

.grade-features {
    margin-bottom: 1.5rem;
}

    .grade-features h6 {
        font-size: 0.95rem;
    }

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

        .features-list li i {
            font-size: 0.85rem;
        }

.grade-price {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #198754;
    margin-bottom: 0.25rem;
}

.price-unit {
    font-size: 0.85rem;
    color: #6c757d;
}

.scenario-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

    .scenario-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

.scenario-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

    .scenario-icon::after {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 20px;
        background: inherit;
        opacity: 0.3;
        z-index: -1;
        filter: blur(10px);
    }

.process-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

    .process-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }

.process-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #495057;
}

@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .visual-wrapper {
        min-height: auto;
    }

    .floating-badge {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        animation: none;
    }

    .scenario-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .main-visual {
        padding: 2rem !important;
    }

        .main-visual .display-1 {
            font-size: 2.5rem !important;
        }

    .benefit-item {
        padding: 0.75rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .grade-body {
        padding: 1.5rem;
    }

    .scenario-card {
        padding: 1.5rem;
    }

    .process-card {
        padding: 1.25rem 1rem;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .display-6 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .scenario-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grade-card,
.scenario-card,
.process-card {
    animation: fadeInUp 0.6s ease-out;
}

    .grade-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .grade-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .grade-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .scenario-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .scenario-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .scenario-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .scenario-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .process-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .process-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .process-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .process-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .process-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .process-card:nth-child(6) {
        animation-delay: 0.6s;
    }

html {
    scroll-behavior: smooth;
}

.btn {
    transition: all 0.3s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn:active {
        transform: translateY(0);
    }

.grade-card:focus,
.scenario-card:focus,
.process-card:focus {
    outline: 3px solid #198754;
    outline-offset: 2px;
}

@media print {
    .grade-card, .scenario-card, .process-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }

    .btn,
    .floating-badge {
        display: none;
    }
}
