/* Pricing Page Specific Styles - Sales Driven Overhaul */
/* Design Philosophy: Sales-Driven, Premium SaaS, Focus on "Pro" */

:root {
    /* Colors - Aligned with Global Variables */
    --price-primary: #000000;
    /* Main Primary is now Black */
    --price-accent: #FF6A3D;
    /* Specific accent for "Most Popular" */
    --price-primary-hover: #333333;
    /* Dark Grey Hover */

    --price-primary-soft: #F5F5F5;
    /* Soft is now grey/brand-neutral */
    --price-primary-glow: rgba(0, 0, 0, 0.1);

    --price-dark: var(--color-text-main);
    /* #000000 */
    --price-text: var(--color-text-secondary);
    /* #1A1A1A */
    --price-muted: var(--color-text-muted);
    /* #666666 */
    --price-light: var(--color-bg-light);
    /* #F6F6F6 */
    --price-border: var(--color-border-light);
    /* #EDEDED */
    --price-border-dark: #E0E0E0;

    --price-free-bg: #F5F5F5;

    /* Spacing & Layout */
    --container-max: 1280px;
    --border-radius: var(--radius-lg);
    /* 12px */
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
    --pro-shadow: 0 8px 40px rgba(255, 106, 61, 0.15);
}

body {
    background-color: var(--color-bg-white);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    letter-spacing: -0.01em;
}

.hero-headline {
    font-weight: 500;
    /* Match the reference which is not extra-bold */
    color: #1A1A1A;
}

.pricing-page-container {
    padding-top: 100px;
    margin: 0 auto;
    max-width: var(--container-max);
    padding-left: 24px;
    padding-right: 24px;
}

/* Utilities */
.text-primary {
    color: var(--price-primary) !important;
}

.text-muted {
    color: var(--price-muted) !important;
}

.bg-light {
    background-color: var(--price-light) !important;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* ... (Rest of styles remain similar but use vars) ... */

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 48px;
}

.mt-4 {
    margin-top: 32px;
}

/* Buttons */
.btn-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-price-primary {
    background: var(--price-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 106, 61, 0.2);
}

.btn-price-primary:hover {
    background: var(--price-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 106, 61, 0.3);
}

.btn-price-outline {
    background: transparent;
    border: 1px solid var(--price-border-dark);
    color: var(--price-dark);
}

.btn-price-outline:hover {
    border-color: var(--price-dark);
    background: #fdfdfd;
}

/* --- SECTION A: HERO --- */
.section-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 0 0;
    /* Top padding clears fixed header, 0 bottom */
    position: relative;
    overflow: hidden;
}

/* ... (Headline styles unchanged, but shown for context matching if needed) ... */

.hero-headline {
    font-size: var(--text-6xl);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 24px;
    max-width: 900px;
    letter-spacing: -0.02em;
    text-align: center;
}

/* ... (Child span style) ... */

.hero-sub {
    font-size: 1.25rem;
    color: var(--price-muted);
    max-width: 700px;
    margin-bottom: 80px;
    /* Increased further per request */
    display: block;
    /* Ensure it's visible */
}

/* ... (Other sections) ... */

/* --- SECTION C: PRICING CARDS --- */
.section-pricing-cards {
    padding: 0 0 60px;
    /* 0 Top padding to pull up to headline */
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.price-card {
    background: #fff;
    border: 1px solid var(--price-border);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    /* Reduced padding (Smaller cards) */
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.pro {
    border-color: var(--price-primary);
    box-shadow: var(--pro-shadow);
    transform: scale(1.05);
    z-index: 2;
    background: #fff;
}

.price-card.pro::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px var(--price-primary-glow);
    opacity: 0.2;
    pointer-events: none;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--price-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 44px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--price-dark);
    margin-bottom: 32px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--price-muted);
}

.plan-features {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.plan-features li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--price-text);
}

.plan-features li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--price-primary);
    /* Now Black */
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--price-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- SECTION C2: TABLE --- */
.section-table {
    padding: 60px 0;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--price-border);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    width: 30%;
}

.compare-table th.col-pro,
.compare-table td.col-pro {
    background-color: var(--price-primary-soft);
}

.compare-table tr:hover td {
    background-color: #fafafa;
}

.compare-table tr:hover td.col-pro {
    background-color: #ffe6dd;
}

.save-badge {
    font-size: 0.75rem;
    background: #2ecc71;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    display: none;
}

.compare-table tr:hover .save-badge {
    display: inline-block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- SECTION D & E: PACKAGES --- */
.section-packages {
    padding: 80px 0;
    background: var(--price-light);
}

.package-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pkg-container {
    background: #fff;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.pkg-card {
    border: 1px solid var(--price-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upsell-box {
    background: var(--price-primary-soft);
    border: 1px dashed var(--price-primary);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    color: var(--price-primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- SECTION G: CALCULATOR --- */
.section-calculator {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    background: #111;
    color: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.calc-inputs label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #ccc;
}

.range-slider {
    width: 100%;
    margin-bottom: 32px;
    accent-color: var(--price-primary);
}

.calc-result-box {
    background: #222;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #333;
}

.savings-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--price-primary);
    display: block;
    margin: 16px 0;
}

/* --- SECTION I: FAQ --- */
.section-faq {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--price-border);
    padding: 24px 0;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding-top: 12px;
    color: var(--price-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .pricing-cards-grid,
    .package-cols,
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .price-card.pro {
        transform: none;
        box-shadow: var(--card-shadow);
    }

    .compare-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

}

/* Site Background Rhythm (aligned with digital marketing hero language) */
body.site-bg-rhythm {
    background: linear-gradient(180deg, #fbfbfd 0%, #f7f9fc 100%);
}

body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero) {
    position: relative;
    background-color: rgba(255, 255, 255, 0.58) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero):nth-of-type(even) {
    background-color: rgba(245, 249, 255, 0.55) !important;
}

body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero):nth-of-type(odd) {
    background-color: rgba(244, 252, 248, 0.46) !important;
}

body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.08) 50%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    body.site-bg-rhythm main>section:not(.hero-white):not(.hero-section):not(.section-hero) {
        background-color: rgba(255, 255, 255, 0.7) !important;
    }
}

/* Site Background Rhythm - Strong Override */
body.site-bg-rhythm,
body.site-bg-rhythm main {
    background: linear-gradient(180deg, #fbfbfd 0%, #f7f9fc 100%) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero) {
    position: relative;
    background-color: rgba(250, 252, 255, 0.72) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero):nth-of-type(even) {
    background-color: rgba(244, 249, 255, 0.70) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero):nth-of-type(odd) {
    background-color: rgba(244, 252, 248, 0.62) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero).bg-white,
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background: #fff"],
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background-color: #fff"] {
    background-color: rgba(248, 251, 255, 0.72) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero).bg-light,
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background: #f9f9f9"],
body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)[style*="background-color: #f9f9f9"] {
    background-color: rgba(241, 248, 255, 0.74) !important;
}

body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.08) 50%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    body.site-bg-rhythm main section:not(.hero-white):not(.hero-section):not(.section-hero) {
        background-color: rgba(250, 252, 255, 0.84) !important;
    }
}

/* Site Background Rhythm - Hero Tone Override */
body.site-bg-rhythm .hero-white,
body.site-bg-rhythm .hero-home,
body.site-bg-rhythm .hero-section,
body.site-bg-rhythm .section-hero {
    background-color: #fbfbfd !important;
    background-image:
        radial-gradient(72% 60% at 10% 12%, rgba(109, 165, 233, 0.10) 0%, rgba(109, 165, 233, 0) 72%),
        radial-gradient(68% 58% at 92% 88%, rgba(125, 191, 170, 0.09) 0%, rgba(125, 191, 170, 0) 72%),
        radial-gradient(58% 50% at 84% 14%, rgba(238, 184, 156, 0.06) 0%, rgba(238, 184, 156, 0) 74%) !important;
}

@media (max-width: 768px) {

    body.site-bg-rhythm .hero-white,
    body.site-bg-rhythm .hero-home,
    body.site-bg-rhythm .hero-section,
    body.site-bg-rhythm .section-hero {
        background-image:
            radial-gradient(86% 66% at -10% 6%, rgba(109, 165, 233, 0.09) 0%, rgba(109, 165, 233, 0) 74%),
            radial-gradient(84% 68% at 112% 98%, rgba(125, 191, 170, 0.08) 0%, rgba(125, 191, 170, 0) 74%),
            radial-gradient(68% 52% at 96% -10%, rgba(238, 184, 156, 0.05) 0%, rgba(238, 184, 156, 0) 76%) !important;
    }
}

/* Site Hero Typography Alignment */
body.site-bg-rhythm .hero-white .hero-main-title,
body.site-bg-rhythm .hero-white .hero-title,
body.site-bg-rhythm .hero-section .hero-title,
body.site-bg-rhythm .hero-white .hero-tagline,
body.site-bg-rhythm .hero-section .hero-tagline,
body.site-bg-rhythm .section-hero h1,
body.site-bg-rhythm .hero-white h1,
body.site-bg-rhythm .hero-section h1 {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.14 !important;
    color: var(--color-text-main) !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.site-bg-rhythm .hero-white .hero-desc,
body.site-bg-rhythm .hero-section .hero-desc,
body.site-bg-rhythm .hero-section .hero-subtitle,
body.site-bg-rhythm .section-hero p,
body.site-bg-rhythm .hero-white p {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.38 !important;
    color: #6a6f76 !important;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {

    body.site-bg-rhythm .hero-white .hero-main-title,
    body.site-bg-rhythm .hero-white .hero-title,
    body.site-bg-rhythm .hero-section .hero-title,
    body.site-bg-rhythm .section-hero h1,
    body.site-bg-rhythm .hero-white h1,
    body.site-bg-rhythm .hero-section h1 {
        letter-spacing: -0.015em !important;
        line-height: 1.16 !important;
    }

    body.site-bg-rhythm .hero-white .hero-tagline,
    body.site-bg-rhythm .hero-white .hero-desc,
    body.site-bg-rhythm .hero-section .hero-desc,
    body.site-bg-rhythm .hero-section .hero-subtitle,
    body.site-bg-rhythm .section-hero p,
    body.site-bg-rhythm .hero-white p {
        line-height: 1.42 !important;
    }
}

/* Site Hero Typography - Final Weight Lock */
body.site-bg-rhythm .hero-white h1.hero-title,
body.site-bg-rhythm .hero-white h1.hero-tagline,
body.site-bg-rhythm .hero-section h1.hero-title,
body.site-bg-rhythm .hero-section h1.hero-tagline,
body.site-bg-rhythm .hero-white .hero-main-title,
body.site-bg-rhythm .section-hero h1 {
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    font-variation-settings: "wght" 500 !important;
    font-synthesis: none;
}/* Footer edge-to-edge layout */
.footer .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
}

.footer-grid,
.footer-bottom {
    width: 100%;
}

@media (max-width: 768px) {
    .footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Refactor-only classes replacing inline styles in pricing.html */
.pr-underlined-link {
    text-decoration: underline;
}

.pr-table-group-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pr-table-note {
    font-size: 0.9rem;
}

.pr-price-amount {
    font-weight: 700;
    font-size: 1.2rem;
}

.pr-btn-mini {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.pr-upsell-link {
    color: var(--price-primary);
    text-decoration: underline;
    font-size: 0.9rem;
}

.pr-ugc-container {
    max-width: 800px;
    margin: 0 auto;
    border-color: var(--price-primary);
}

.pr-pkg-card-muted {
    background: #fafafa;
}

.pr-price-amount-strong {
    font-weight: 700;
}

.pr-unit-note {
    font-weight: 400;
    font-size: 0.9rem;
}

.pr-upsell-dark {
    background: #222;
    color: #fff;
    border: none;
}

.pr-upsell-dark-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.pr-upsell-dark-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pr-calc-divider {
    border-color: #444;
    margin: 24px 0;
}

.pr-calc-recommendation {
    font-size: 0.9rem;
    color: #ccc;
}

.pr-why-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pr-why-box {
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.pr-why-list {
    font-size: 1.1rem;
}

/* Pricing Content v2 */
.pricing-content {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 110px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 96px;
}

.pricing-content section {
    padding: 64px 0;
}

.pricing-hero {
    text-align: center;
    padding-top: 28px;
    padding-bottom: 18px;
}

.pricing-hero-title {
    margin: 0 0 20px;
    font-size: clamp(2.15rem, 4.6vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--color-text-main);
}

.pricing-hero-desc {
    max-width: 760px;
    margin: 24px auto 36px;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.45;
    color: #646b74;
    font-weight: 400;
}

.pricing-hero-benefits {
    max-width: 930px;
    margin: 72px auto 82px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
}

.pricing-hero-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 12px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    width: 92%;
    max-width: none;
    text-align: center;
    min-height: 48px;
    justify-self: center;
}

.pricing-hero-benefit i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #d7dee9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 0.65rem;
    flex: 0 0 auto;
}

.pricing-hero-highlight {
    margin: 8px 0 26px;
    color: #0f172a;
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    line-height: 1.25;
    font-weight: 700;
}

.pricing-hero-highlight span {
    color: #0f172a;
    text-decoration: none;
}

.pricing-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}

.pricing-billing-btn {
    border: 0;
    background: transparent;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-billing-btn:hover {
    color: #1f2937;
}

.pricing-billing-btn.is-active {
    color: #0f172a;
    background: #f1f5f9;
}

.pricing-billing-discount {
    margin-left: 4px;
    font-size: 0.72rem;
    color: #f97316;
}

.pricing-plans-section {
    padding-top: 64px;
}

.pricing-content section.pricing-hero {
    padding-bottom: 74px;
}

.pricing-content section.pricing-plans-section {
    padding-top: 82px;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
    padding: 24px 20px;
}

.pricing-plan-card-popular {
    border: 2px solid #0f172a;
    transform: scale(1.02);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #ff6d43;
    color: #ffffff;
    font-size: 0.63rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 12px;
    white-space: nowrap;
}

.pricing-plan-head {
    min-height: 112px;
}

.pricing-plan-name {
    margin: 0 0 10px;
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
}

.pricing-plan-desc {
    margin: 0;
    color: #646b74;
    font-size: 0.9rem;
    line-height: 1.42;
}

.pricing-plan-price {
    display: flex;
    align-items: flex-end;
    margin-top: 14px;
    gap: 8px;
}

.pricing-plan-price-value {
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text-main);
}

.pricing-plan-price-unit {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 4px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #94a3b8;
}

.pricing-plan-price-unit span {
    font-size: 0.72rem;
    font-weight: 500;
}

.pricing-plan-price-unit-custom {
    margin-bottom: 6px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-plan-slot {
    margin-top: 18px;
    margin-bottom: 10px;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pricing-plan-slot span {
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.pricing-plan-slot strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.pricing-base-plan {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 0.85rem;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-base-plan i {
    color: #94a3b8;
    font-size: 0.72rem;
}

.pricing-base-plan-placeholder {
    visibility: hidden;
}

.pricing-feature-list {
    list-style: none;
    margin: 14px 0 8px;
    padding: 0;
    display: grid;
    gap: 9px;
    flex: 1 1 auto;
}

.pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.35;
    font-weight: 500;
}

.pricing-feature-list li i {
    margin-top: 2px;
    color: #0f172a;
    font-size: 0.82rem;
}

.pricing-unlimited-list {
    margin-top: 18px;
    margin-bottom: 22px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    display: grid;
    gap: 9px;
}

.pricing-unlimited-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.01em;
}

.pricing-unlimited-item span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.pricing-unlimited-item i {
    color: #94a3b8;
    font-size: 0.78rem;
}

.pricing-plan-btn {
    margin-top: 16px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-plan-btn:hover {
    border-color: #0f172a;
    transform: translateY(-1px);
}

.pricing-plan-btn-dark {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.pricing-plan-btn-dark:hover {
    border-color: #020617;
    background: #020617;
}

.pricing-addons-section {
    padding-top: 68px;
}

.pricing-growth-card {
    position: relative;
    margin-bottom: 22px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(145deg, #1a2b4d 0%, #0f1e3d 100%);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.38);
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 30px;
    color: #e2e8f0;
    align-items: start;
}

.pricing-growth-main {
    min-width: 0;
}

.pricing-growth-label {
    color: #94a3b8;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pricing-growth-title {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-growth-steps {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pricing-growth-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.96rem;
    line-height: 1.62;
    color: #f1f5f9;
    border: 1px solid rgba(148, 163, 184, 0.62);
    background: rgba(8, 15, 32, 0.86);
    border-radius: 12px;
    padding: 11px 14px;
}

.pricing-growth-step span {
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: #34d399;
    flex: 0 0 auto;
}

.pricing-growth-step strong {
    color: #ffffff;
    font-weight: 800;
}

.pricing-growth-step-highlight span {
    background: #60a5fa;
}

.pricing-growth-step-highlight strong {
    color: #93c5fd;
}

.pricing-growth-step p {
    margin: 0;
    min-width: 0;
    color: #e2e8f0;
}

.pricing-growth-aside {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-growth-badge {
    position: static;
    align-self: flex-end;
    display: inline-block;
    border-radius: 999px;
    background: #ff5a36;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 10px;
    white-space: nowrap;
    margin-bottom: 2px;
}

.pricing-growth-panel {
    border: 1px solid rgba(226, 232, 240, 0.36);
    background: rgba(15, 23, 42, 0.62);
    border-radius: 18px;
    padding: 18px;
}

.pricing-growth-metric {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pricing-growth-metric small {
    display: block;
    color: #cbd5e1;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pricing-growth-metric strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pricing-growth-metric strong span {
    font-size: 0.66rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-growth-target {
    text-align: right;
}

.pricing-growth-target strong {
    font-size: 0.95rem;
    color: #4ade80;
    letter-spacing: 0;
}

.pricing-growth-panel p {
    margin: 14px 0 0;
    border-top: 1px solid rgba(226, 232, 240, 0.2);
    padding-top: 14px;
    color: #f1f5f9;
    font-size: 0.86rem;
    line-height: 1.6;
}

.pricing-growth-btn {
    width: 100%;
    border-color: #ffffff;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    text-align: center;
}

.pricing-growth-btn:hover {
    border-color: #f1f5f9;
    background: #f1f5f9;
}

.pricing-growth-note {
    margin: 0;
    text-align: center;
    color: #fca5a5;
    font-size: 0.72rem;
    font-weight: 600;
}

.pricing-section-title {
    margin: 0;
    text-align: center;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
}

.pricing-section-desc {
    margin: 12px auto 38px;
    max-width: 760px;
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-addon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pricing-addon-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pricing-addon-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
    padding: 24px;
}

.pricing-addon-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.pricing-addon-head h3 {
    margin: 1px 0 4px;
    font-size: 1.05rem;
    line-height: 1.2;
    color: #0f172a;
}

.pricing-addon-head p {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
}

.pricing-addon-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pricing-addon-icon i {
    font-size: 1rem;
}

.pricing-addon-icon-image {
    background: #eef2ff;
    color: #4f46e5;
}

.pricing-addon-icon-video {
    background: #fff7ed;
    color: #ea580c;
}

.pricing-addon-icon-mixed {
    background: #f1f5f9;
    color: #0f172a;
}

.pricing-addon-list {
    display: grid;
    gap: 10px;
}

.pricing-addon-row {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.pricing-addon-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 0.95rem;
}

.pricing-addon-badge {
    background: #dcfce7;
    color: #15803d;
    border-radius: 999px;
    font-size: 0.65rem;
    line-height: 1;
    font-weight: 700;
    padding: 5px 7px;
    white-space: nowrap;
}

.pricing-addon-price {
    text-align: right;
    color: #0f172a;
}

.pricing-addon-price strong {
    display: block;
    font-size: 1.02rem;
}

.pricing-addon-price span {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    color: #94a3b8;
}

.pricing-addon-card-featured {
    border-width: 2px;
    border-color: #0f172a;
}

.pricing-addon-row-mixed {
    align-items: flex-start;
}

.pricing-addon-meta-stack {
    display: grid;
    gap: 2px;
}

.pricing-addon-meta-stack span {
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-addon-footnote {
    margin: 12px 0 0;
    color: #94a3b8;
    font-size: 0.72rem;
    line-height: 1.45;
}

.pricing-campaign-list {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.pricing-campaign-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pricing-campaign-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid #dce6f3;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: 0 0 auto;
}

.pricing-campaign-content {
    min-width: 0;
    flex: 1;
}

.pricing-campaign-content h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.35;
}

.pricing-campaign-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pricing-campaign-box {
    border-radius: 14px;
    padding: 14px;
}

.pricing-campaign-box h4 {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-campaign-box h4 i {
    margin-right: 3px;
}

.pricing-campaign-box p {
    margin: 0;
    color: #334155;
    font-size: 0.84rem;
    line-height: 1.55;
}

.pricing-campaign-box-included {
    background: #eaf3ee;
}

.pricing-campaign-box-included h4 {
    color: #208358;
}

.pricing-campaign-box-external {
    background: #f1f3f5;
}

.pricing-campaign-box-external h4 {
    color: #64748b;
}

.pricing-compare-table-wrap {
    margin-top: 34px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-compare-table thead tr {
    background: #f8fafc;
}

.pricing-compare-table th,
.pricing-compare-table td {
    border-bottom: 1px solid #eef2f7;
    padding: 15px 18px;
    text-align: center;
    color: #334155;
    font-size: 0.9rem;
}

.pricing-compare-table th {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
    text-align: left;
    width: 41%;
}

.pricing-compare-category td {
    background: #f8fafc;
    color: #64748b;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-compare-table td i.fa-check {
    color: #0f172a;
}

.pricing-compare-table td i.fa-minus {
    color: #cbd5e1;
}

.pricing-faq-section {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 4px;
}

.pricing-faq-list {
    margin-top: 34px;
    display: grid;
    gap: 12px;
}

.pricing-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.pricing-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 19px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
    cursor: pointer;
}

.pricing-faq-question i {
    color: #94a3b8;
    transition: transform 0.25s ease;
}

.pricing-faq-item.is-open .pricing-faq-question i {
    transform: rotate(180deg);
}

.pricing-faq-answer {
    padding: 0 20px 20px;
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.62;
    border-top: 1px solid #f1f5f9;
}

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

    .pricing-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .pricing-plan-card-popular {
        transform: none;
    }

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

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

@media (max-width: 820px) {
    .pricing-content {
        padding-top: 92px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 72px;
    }

    .pricing-content section {
        padding: 46px 0;
    }

    .pricing-hero {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .pricing-hero-benefits {
        grid-template-columns: 1fr;
        margin: 28px auto 26px;
    }

    .pricing-hero-benefit {
        border-radius: 14px;
        font-size: 0.84rem;
        width: 100%;
        max-width: none;
    }

    .pricing-hero-desc {
        margin-bottom: 28px;
    }

    .pricing-billing-btn {
        padding: 9px 14px;
        font-size: 0.83rem;
    }

    .pricing-billing-discount {
        display: block;
        margin-top: 2px;
        margin-left: 0;
    }

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-plan-head {
        min-height: 0;
    }

    .pricing-plan-card {
        padding: 24px 18px;
    }

    .pricing-plan-price {
        margin-top: 14px;
    }

    .pricing-plan-btn {
        margin-top: 18px;
    }

    .pricing-section-desc {
        margin-bottom: 24px;
        font-size: 0.94rem;
    }

    .pricing-addon-card {
        padding: 18px;
        border-radius: 16px;
    }

    .pricing-growth-card {
        border-radius: 18px;
        padding: 20px 16px;
    }

    .pricing-growth-badge {
        align-self: flex-start;
    }

    .pricing-addon-row {
        padding: 12px;
    }

    .pricing-campaign-card {
        padding: 18px 16px;
        border-radius: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .pricing-compare-table-wrap {
        overflow-x: auto;
    }

    .pricing-compare-table {
        min-width: 680px;
    }

    .pricing-faq-question {
        font-size: 0.95rem;
        padding: 17px 16px;
    }

    .pricing-faq-answer {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
}

/* Full-bleed section backgrounds for pricing page */
body[data-page="pricing"] .pricing-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: clip;
}

body[data-page="pricing"] .pricing-content > section {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

body[data-page="pricing"] .pricing-content > section > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

body[data-page="pricing"] .pricing-faq-section {
    max-width: none;
    margin: 0;
}

@media (max-width: 820px) {
    body[data-page="pricing"] .pricing-content > section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Pricing: avoid full-viewport hero height on mobile (prevents large empty area). */
@media (max-width: 992px) {
    body[data-page="pricing"] .pricing-hero.hero-section {
        min-height: unset !important;
    }

    body[data-page="pricing"] .payment-hero.hero-section {
        min-height: 0 !important;
        height: auto !important;
    }

    body[data-page="pricing"] .pricing-content .pricing-hero {
        padding: 28px 0 18px !important;
    }

    body[data-page="pricing"] .pricing-content .pricing-plans-section {
        padding-top: 14px !important;
    }
}

/* Pricing page: force a single background tone across all sections */
body.site-bg-rhythm[data-page="pricing"],
body.site-bg-rhythm[data-page="pricing"] main,
body.site-bg-rhythm[data-page="pricing"] .pricing-content,
body.site-bg-rhythm[data-page="pricing"] .pricing-content > section,
body.site-bg-rhythm[data-page="pricing"] .pricing-hero,
body.site-bg-rhythm[data-page="pricing"] .pricing-plans-section,
body.site-bg-rhythm[data-page="pricing"] .pricing-addons-section,
body.site-bg-rhythm[data-page="pricing"] .pricing-compare-section,
body.site-bg-rhythm[data-page="pricing"] .pricing-faq-section {
    background: #f7f9fc !important;
    background-color: #f7f9fc !important;
    background-image: none !important;
}

body.site-bg-rhythm[data-page="pricing"] main section::before {
    display: none !important;
}

body.site-bg-rhythm[data-page="pricing"] main section {
    border-top: 0 !important;
}

/* Payment pricing model - 2026-05-05 */
.payment-pricing-content {
    max-width: 1440px;
    padding-top: 120px;
    padding-bottom: 104px;
}

.payment-pricing-content section {
    padding: 34px 0;
}

.payment-hero {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
}

.payment-hero-title {
    margin: 0 auto;
    max-width: 980px;
    font-size: clamp(2.75rem, 6vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 600;
    color: #0f172a;
}

.payment-hero-highlight {
    margin: 26px auto 0;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.payment-hero-highlight span {
    color: #ff6d43;
}

.payment-section-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
}

.payment-section-sub {
    max-width: 780px;
    margin: 16px auto 0;
    text-align: center;
    color: #64748b;
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    line-height: 1.62;
    font-weight: 500;
}

.payment-plans-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.payment-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 22px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.62);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.payment-plan-card:hover {
    background: rgba(255, 255, 255, 0.86);
    border-color: #dbe3ee;
    transform: translateY(-2px);
}

.payment-plan-card-popular {
    border-color: #0f172a;
    background: rgba(15, 23, 42, 0.04);
}

.payment-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6d43;
    color: #ffffff;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.payment-plan-name {
    margin: 0;
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-weight: 600;
    color: #0f172a;
}

.payment-plan-price {
    margin-top: 18px;
    font-size: clamp(2.2rem, 3vw, 2.65rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #020617;
}

.payment-plan-price-custom {
    font-size: clamp(1.65rem, 2.1vw, 1.95rem);
    line-height: 1.12;
}

.payment-plan-unit {
    margin-top: 9px;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.payment-plan-desc {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 0.91rem;
    line-height: 1.6;
    min-height: 70px;
    font-weight: 500;
}

.payment-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 11px;
    flex: 0 0 auto;
}

.payment-feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.48;
    font-weight: 600;
}

.payment-tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    flex: 0 0 auto;
    margin-top: 2px;
}

.payment-plan-note {
    margin-top: auto;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 700;
}

.payment-plan-note-strong {
    background: #eef6ff;
    border-color: #dbeafe;
    color: #0f172a;
}

.payment-btn {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.payment-btn:hover {
    border-color: #0f172a;
    transform: translateY(-1px);
}

.payment-btn-dark {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.payment-btn-dark:hover {
    background: #020617;
    border-color: #020617;
}

.payment-compare-list,
.payment-faq-list {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.payment-compare-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
    align-items: start;
}

.payment-compare-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2563eb;
}

.payment-compare-content h3 {
    margin: 0 0 14px;
    font-size: 1.14rem;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #0f172a;
}

.payment-compare-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.payment-compare-box {
    padding: 16px;
    border-radius: 13px;
    background: rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-compare-box h4 {
    margin: 0 0 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.payment-compare-box p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.58;
    color: #334155;
    font-weight: 500;
}

.payment-included-box {
    background: rgba(16, 185, 129, 0.08);
}

.payment-included-box h4 {
    color: #208358;
}

.payment-external-box h4 {
    color: #64748b;
}

.payment-footnote {
    margin: 28px auto 0;
    max-width: 820px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
}

.payment-faq-item {
    background: transparent;
    border-bottom: 1px solid #e2e8f0;
}

.payment-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 20px 18px;
    background: transparent;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
    text-align: left;
}

.payment-faq-question i {
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.payment-faq-item.is-open .payment-faq-question i {
    transform: rotate(180deg);
}

.payment-faq-answer {
    padding: 0 18px 20px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.68;
    font-weight: 500;
}

@media (max-width: 1320px) {
    .payment-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .payment-pricing-content {
        padding-top: 104px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 78px;
    }

    .payment-pricing-content section {
        padding: 28px 0;
    }

    .payment-hero {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .payment-hero-title {
        font-size: clamp(2.45rem, 12vw, 3.35rem);
        line-height: 1.02;
    }

    .payment-plans-grid,
    .payment-compare-columns {
        grid-template-columns: 1fr;
    }

    .payment-plans-grid {
        gap: 18px;
    }

    .payment-plan-card {
        padding: 26px 20px;
    }

    .payment-plan-card-popular {
        margin-top: 8px;
    }

    .payment-plan-desc {
        min-height: auto;
    }

    .payment-compare-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .payment-compare-icon {
        width: 48px;
        height: 48px;
    }

    .payment-faq-question {
        padding-left: 0;
        padding-right: 0;
    }

    .payment-faq-answer {
        padding-left: 0;
        padding-right: 0;
    }
}
