html,
body {
    font-family: Poppins, "Poppins Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

.cur-btn[aria-pressed="true"] {
    background: #014073;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(1, 64, 115, 0.18);
}

.plan-card {
    min-width: 0;
    height: 100%;
    overflow-wrap: anywhere;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 143, 64, 0.4);
}

.pricing-card-grid {
    align-items: stretch;
}

.pricing-card-title {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-price {
    min-height: 5.75rem;
}

.pricing-card-features {
    min-width: 0;
}

.pricing-card-feature-group + .pricing-card-feature-group {
    padding-top: 0.25rem;
}

.pricing-card-features li span {
    min-width: 0;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .pricing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #pricing,
    #pricing_plans {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .pricing-card-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
    }

    .plan-card {
        padding: 1.25rem;
    }

    .pricing-card-title,
    .pricing-card-price {
        min-height: 0;
    }

    .pricing-card-price {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

.faq-item.open .faq-heading span:last-child,
.faq-item.open > button span:last-child {
    transform: rotate(45deg);
}

.blog-content {
    color: #334155;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.blog-content > * + * {
    margin-top: 1.15rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #014073;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-top: 2rem;
}

.blog-content h2 {
    font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}

.blog-content h3 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.blog-content h4 {
    font-size: 1.2rem;
}

.blog-content p {
    margin: 0;
}

.blog-content a {
    color: #014073;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(251, 143, 64, 0.55);
    text-underline-offset: 3px;
}

.blog-content a:hover {
    color: #fb8f40;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.35rem;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li + li {
    margin-top: 0.45rem;
}

.blog-content blockquote {
    border-left: 4px solid #fb8f40;
    background: #fff7ed;
    color: #0f172a;
    padding: 1rem 1.25rem;
    border-radius: 0 0.75rem 0.75rem 0;
    font-weight: 500;
}

.blog-content img {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    margin: 1.5rem 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 0.75rem;
}

.blog-content th,
.blog-content td {
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    text-align: left;
}

.blog-content th {
    background: #f8fafc;
    color: #014073;
}

@media (prefers-reduced-motion: reduce) {
    html,
    body {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
