header nav {
    padding: 1.5rem 2rem;
    grid-template-rows: auto 0px;
}

.pricing-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(6.75rem, 10vw, 8.5rem) 1.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    color: #0f172a;
}

.pricing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 2.5rem;
    padding: 2.75rem 2.5rem;
    background: linear-gradient(135deg, rgba(13, 23, 41, 0.95), rgba(40, 141, 199, 0.82));
    border-radius: 2rem;
    color: #e2e8f0;
    box-shadow: 0 28px 50px rgba(9, 17, 34, 0.45);
}

.pricing-hero__copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.75rem, 4vw, 3.25rem);
    font-weight: 700;
}

.pricing-hero__copy p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.92);
}

.pricing-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-hero__card {
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 197, 255, 0.25);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 22px 45px rgba(9, 17, 34, 0.45);
}

.pricing-hero__card-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #f8fafc;
}

.pricing-hero__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-hero__stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(148, 197, 255, 0.25);
    padding-bottom: 0.75rem;
}

.pricing-hero__stats li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-hero__stat-label {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.8);
}

.pricing-hero__stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff9c4;
}

.pricing-hero__note {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.75);
}

.pricing-hero__cta {
    align-self: flex-start;
    padding: 0.75rem 1.4rem;
    border-radius: 0.85rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #0f172a;
    background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
    box-shadow: 0 18px 35px rgba(250, 204, 21, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(250, 204, 21, 0.45);
}

.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-plans__header h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2.25rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #0f172a;
}

.pricing-plans__header p {
    margin: 0;
    max-width: 640px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.plan-card--highlight {
    background: linear-gradient(145deg, #0f1b2d 0%, #1b7ab3 55%, #22a8da 100%);
    color: #f8fafc;
    border: none;
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(34, 168, 218, 0.32);
}

.plan-card--enterprise {
    background: linear-gradient(160deg, rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.95));
}

.plan-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-card__header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.plan-card__badge {
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(248, 250, 252, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.plan-card__price {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
}

.plan-card__price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.plan-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: inherit;
}

.plan-card__features li {
    position: relative;
    padding-left: 1.6rem;
    line-height: 1.6;
    color: inherit;
}

.plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #22a8da;
}

.plan-card--highlight .plan-card__features li::before {
    color: #fef3c7;
}

.plan-card__action {
    padding: 0.75rem 1.4rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(15, 23, 42, 0.04);
    color: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plan-card__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.15);
    background: rgba(15, 23, 42, 0.08);
}

.plan-card__action--primary {
    background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
    border: none;
    color: #0f172a;
    box-shadow: 0 20px 45px rgba(250, 204, 21, 0.35);
}

.plan-card__action--primary:hover {
    box-shadow: 0 24px 52px rgba(250, 204, 21, 0.45);
}

.plan-card__note {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: inherit;
    opacity: 0.85;
}

.pricing-features {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(59, 130, 246, 0.1));
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.pricing-features h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2.1rem, 3vw, 2.5rem);
}

.pricing-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.feature-card__icon {
    font-size: 1.75rem;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.pricing-comparison h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2.1rem, 3vw, 2.5rem);
}

.comparison-table {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.comparison-row {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #f1f5f9;
    color: #0f172a;
}

.comparison-row span {
    padding: 1rem 1.25rem;
    background: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-row--header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.45));
    color: #0f172a;
    font-weight: 600;
}

.comparison-row--header span {
    font-weight: 600;
    background: transparent;
}

.pricing-faq {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.pricing-faq h2 {
    margin: 0;
    font-size: clamp(2.1rem, 3vw, 2.4rem);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.faq-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.pricing-cta {
    text-align: center;
    padding: 2.75rem 2rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.3));
    color: #0f172a;
    box-shadow: 0 24px 48px rgba(59, 130, 246, 0.18);
}

.pricing-cta h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2.3rem, 3vw, 2.6rem);
}

.pricing-cta p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    color: #1f2937;
}

.pricing-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-cta__button {
    padding: 0.8rem 1.6rem;
    border-radius: 0.85rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

.pricing-cta__button--secondary {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.pricing-cta__button--secondary:hover {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

@media (max-width: 1024px) {
    .pricing-plans__grid,
    .pricing-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-row {
        grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .pricing-hero {
        grid-template-columns: 1fr;
    }

    .pricing-hero__card {
        order: -1;
    }
}

@media (max-width: 720px) {
    .pricing-main {
        padding: clamp(6rem, 12vw, 7rem) 1rem 3.5rem;
    }

    .pricing-plans__grid {
        grid-template-columns: 1fr;
    }

    .pricing-features__grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row,
    .comparison-row--header {
        display: flex;
        flex-direction: column;
    }

    .comparison-row span {
        width: 100%;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .comparison-row span:last-child {
        border-bottom: none;
    }
}
