#pricing {
    position: relative;
    z-index: 10;
    padding: 6rem 1.5rem 8rem;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 2.5rem;
    overflow: hidden;

    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(45, 212, 191, 0.03) 100%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);

    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(96, 165, 250, 0.6) 25%,
        rgba(45, 212, 191, 0.8) 50%,
        rgba(96, 165, 250, 0.6) 75%,
        transparent 100%
    );
    z-index: 2;
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow:
        0 0 80px rgba(59, 130, 246, 0.12),
        0 40px 80px rgba(0, 0, 0, 0.4);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    min-height: 420px;
}

@media (max-width: 900px) {
    .pricing-inner {
        grid-template-columns: 1fr;
    }
    .pricing-divider {
        display: none;
    }
}

.pricing-left {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 900px) {
    .pricing-left {
        padding: 2.5rem 2rem 1.5rem;
    }
    .pricing-right {
        padding: 1.5rem 2rem 2.5rem;
    }
}
@media (max-width: 480px) {
    .pricing-left {
        padding: 2rem 1.5rem 1rem;
    }
    .pricing-right {
        padding: 1rem 1.5rem 2rem;
    }
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    background: rgba(59, 130, 246, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(96, 165, 250, 0.9);
    width: fit-content;
}
.pricing-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
    animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.pricing-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.pricing-price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.pricing-price {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #60a5fa, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-price-note {
    font-size: 0.92rem;
    color: rgba(107, 114, 128, 1);
    font-weight: 500;
    line-height: 1.4;
    max-width: 160px;
}

.pricing-desc {
    color: rgba(156, 163, 175, 1);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 420px;
}

.pricing-divider {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(59, 130, 246, 0.2) 20%,
        rgba(45, 212, 191, 0.25) 50%,
        rgba(59, 130, 246, 0.2) 80%,
        transparent 100%
    );
}

.pricing-right {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: rgba(209, 213, 219, 1);
    line-height: 1.5;
}
.pricing-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.pricing-feature-icon svg {
    width: 10px;
    height: 10px;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    position: relative;
    overflow: hidden;
}
.pricing-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    pointer-events: none;
}
.pricing-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 40px rgba(59, 130, 246, 0.5),
        0 12px 30px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.pricing-btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.pricing-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(156, 163, 219, 1);
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}
.pricing-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.pricing-contact {
    font-size: 0.88rem;
    color: rgba(75, 85, 99, 1);
    text-align: center;
    letter-spacing: 0.04em;
}
.pricing-contact a {
    color: rgba(96, 165, 250, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.pricing-contact a:hover {
    color: rgba(96, 165, 250, 1);
}

#site-footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    padding: 4rem 1.5rem 2rem;
}

#site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.4),
        rgba(45, 212, 191, 0.4),
        transparent
    );
    pointer-events: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1rem !important;
    width: fit-content;
}
.footer-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-logo-text {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    transition: color 0.2s;
}
.footer-logo:hover .footer-logo-text {
    color: #60a5fa;
}

.footer-brand-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(107, 114, 128, 1);
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-social-btn {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition:
        background 0.25s,
        border-color 0.25s,
        transform 0.25s;
}
.footer-social-btn:hover {
    transform: translateY(-3px);
}
.footer-social-btn.tg:hover {
    background: rgba(41, 182, 246, 0.12);
    border-color: rgba(41, 182, 246, 0.3);
}
.footer-social-btn.wa:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.footer-nav-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(96, 165, 250, 0.7);
    margin-bottom: 1.2rem;
}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-nav-col ul li a {
    font-size: 0.98rem;
    color: rgba(107, 114, 128, 1);
    text-decoration: none;
    transition:
        color 0.2s,
        padding-left 0.2s;
    display: block;
}
.footer-nav-col ul li a:hover {
    color: rgba(209, 213, 219, 1);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(55, 65, 81, 1);
    letter-spacing: 0.03em;
}
.footer-copy span {
    color: rgba(75, 85, 99, 1);
}

.footer-made {
    font-size: 0.88rem;
    color: rgba(55, 65, 81, 1);
}
.footer-made span {
    color: rgba(96, 165, 250, 0.5);
}

.footer-social-btn img {
    width: 30px;
    height: 30px;
}
