/**
 * Support Pages Styles
 * Ring Size Guide, Care Guide, About Pricing, Shipping/Returns, FAQ
 */

.support-main {
    background: #F9F9F9;
    padding: 40px 20px 80px;
    min-height: 80vh;
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Breadcrumb */
.support-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.support-breadcrumb a {
    color: #254264;
    text-decoration: none;
}

.support-breadcrumb a:hover {
    text-decoration: underline;
}

.support-breadcrumb span {
    margin: 0 8px;
}

/* Header */
.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #254264;
    margin-bottom: 15px;
}

.support-header p {
    font-size: 18px;
    color: #666;
}

/* Quick Tips */
.quick-tips {
    background: #FFF9E6;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid #C9A96E;
    margin-bottom: 40px;
}

.quick-tips h3 {
    font-size: 18px;
    color: #254264;
    margin-bottom: 15px;
}

.quick-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-tips li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #2C2C2C;
}

.quick-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A96E;
    font-weight: bold;
}

/* Sections */
.support-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.support-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #254264;
    margin-bottom: 30px;
}

.support-section h3 {
    font-size: 20px;
    color: #254264;
    margin-bottom: 15px;
}

.support-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #2C2C2C;
    margin-bottom: 15px;
}

/* Method Cards */
.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.method-card {
    padding: 30px;
    background: #F9F9F9;
    border-radius: 8px;
    position: relative;
}

.method-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #254264;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.method-card h3 {
    font-size: 18px;
    color: #254264;
    margin-bottom: 15px;
}

.method-card ol {
    padding-left: 20px;
    margin: 15px 0;
}

.method-card li {
    margin-bottom: 8px;
    color: #2C2C2C;
}

.method-tip {
    margin-top: 15px;
    padding: 10px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.method-link {
    display: inline-block;
    margin-top: 15px;
    color: #254264;
    text-decoration: none;
    font-weight: 600;
}

.method-link:hover {
    text-decoration: underline;
}

/* Size Chart */
.size-chart-container {
    overflow-x: auto;
    margin: 20px 0;
}

.size-chart {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.size-chart thead {
    background: #254264;
    color: white;
}

.size-chart th,
.size-chart td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #E0E0E0;
}

.size-chart tbody tr:nth-child(even) {
    background: #F9F9F9;
}

.size-chart tbody tr:hover {
    background: #F0F7FF;
}

.chart-note {
    margin-top: 20px;
    padding: 15px;
    background: #F0F7FF;
    border-radius: 4px;
    font-size: 14px;
    color: #254264;
}

/* FAQ */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    padding: 25px;
    background: #F9F9F9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: #254264;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #2C2C2C;
    margin: 0;
}

/* Care Instructions */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.care-card {
    padding: 25px;
    background: #F9F9F9;
    border-radius: 8px;
    border-top: 4px solid #C9A96E;
}

.care-card h3 {
    font-size: 18px;
    color: #254264;
    margin-bottom: 15px;
}

.care-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #2C2C2C;
}

.care-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #C9A96E;
    font-size: 20px;
}

/* Pricing Breakdown */
.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pricing-box {
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.pricing-box.traditional {
    background: #FFEBEE;
    border: 2px solid #EF5350;
}

.pricing-box.our-pricing {
    background: #E8F5E9;
    border: 2px solid #4CAF50;
}

.pricing-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.pricing-box .price {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-box ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-box li {
    padding: 8px 0;
    font-size: 14px;
}

/* Policy Sections */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.policy-card {
    padding: 30px;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
}

.policy-card h3 {
    font-size: 20px;
    color: #254264;
    margin-bottom: 15px;
}

.policy-card .highlight {
    display: inline-block;
    padding: 5px 12px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* CTA Section */
.support-cta {
    background: linear-gradient(135deg, #254264 0%, #1a2f47 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.support-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.support-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #C9A96E;
    color: white;
}

.btn-primary:hover {
    background: #b8985d;
}

.btn-secondary {
    background: white;
    color: #254264;
}

.btn-secondary:hover {
    background: #F9F9F9;
}

/* Responsive */
@media (max-width: 768px) {
    .support-header h1 {
        font-size: 32px;
    }

    .support-section {
        padding: 25px;
    }

    .method-cards,
    .care-grid,
    .pricing-comparison,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}


/* ============================================
   ABOUT PRICING PAGE - Luxury Redesign
   ============================================ */

/* --- Hero --- */
.pricing-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 72px;
    background: var(--jewelry-bg-light);
}

.pricing-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pricing-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.pricing-hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--jewelry-accent);
    top: -100px;
    right: -80px;
}

.pricing-hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--jewelry-primary);
    bottom: -80px;
    left: -60px;
}

.pricing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--jewelry-text-light);
    margin-bottom: 40px;
}

.pricing-breadcrumb a {
    color: var(--jewelry-primary);
    text-decoration: none;
    font-weight: 500;
}

.pricing-breadcrumb a:hover {
    text-decoration: underline;
}

.pricing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pricing-hero-text {
    max-width: 680px;
}

.pricing-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-accent);
    margin-bottom: 20px;
}

.pricing-eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--jewelry-accent);
}

.pricing-hero-title {
    font-family: var(--jewelry-font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--jewelry-text);
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.pricing-hero-title em {
    font-style: italic;
    color: var(--jewelry-primary);
}

.pricing-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--jewelry-text-light);
    margin: 0;
    max-width: 560px;
}

/* --- Promise Strip --- */
.pricing-promise-strip {
    background: white;
    border-top: 1px solid rgba(134, 97, 74, 0.08);
    border-bottom: 1px solid rgba(134, 97, 74, 0.08);
    padding: 24px 0;
}

.pricing-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-promise-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pricing-promise-item svg {
    color: var(--jewelry-primary);
    flex-shrink: 0;
}

.pricing-promise-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--jewelry-text);
}

.pricing-promise-item span {
    font-size: 12px;
    color: var(--jewelry-text-light);
}

/* --- Section Headers --- */
.pricing-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--jewelry-accent);
    margin-bottom: 12px;
}

.pricing-section-header h2 {
    font-family: var(--jewelry-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--jewelry-text);
    margin: 0 0 12px 0;
}

.pricing-section-header p {
    font-size: 16px;
    color: var(--jewelry-text-light);
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Comparison Section --- */
.pricing-comparison-section {
    padding: 80px 0;
    background: white;
}

.pricing-vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-vs-card {
    padding: 40px 32px;
    border-radius: 20px;
    position: relative;
}

.pricing-vs-traditional {
    background: #fdf5f5;
    border: 1px solid rgba(211, 47, 47, 0.12);
}

.pricing-vs-ours {
    background: linear-gradient(135deg, rgba(134, 97, 74, 0.04) 0%, rgba(201, 169, 110, 0.06) 100%);
    border: 2px solid var(--jewelry-primary);
    box-shadow: 0 12px 40px rgba(134, 97, 74, 0.12);
}

.pricing-vs-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--jewelry-text-light);
    margin-bottom: 20px;
}

.pricing-vs-ours .pricing-vs-badge {
    color: var(--jewelry-primary);
}

.pricing-vs-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--jewelry-text);
    margin-bottom: 6px;
    line-height: 1;
}

.pricing-vs-traditional .pricing-vs-price {
    text-decoration: line-through;
    text-decoration-color: rgba(211, 47, 47, 0.4);
    color: var(--jewelry-text-light);
}

.pricing-vs-ours .pricing-vs-price {
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-vs-label {
    font-size: 13px;
    color: var(--jewelry-text-light);
    margin-bottom: 24px;
}

.pricing-vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-vs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--jewelry-text);
}

.pricing-vs-list li svg {
    flex-shrink: 0;
}

.pricing-vs-savings {
    margin-top: 24px;
    padding: 12px 16px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #2e7d32;
}

.pricing-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.pricing-vs-divider span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--jewelry-bg-light);
    border: 2px solid var(--jewelry-border);
    font-size: 13px;
    font-weight: 700;
    color: var(--jewelry-text-light);
    text-transform: uppercase;
}

/* --- Cost Breakdown Section --- */
.pricing-breakdown-section {
    padding: 80px 0;
    background: var(--jewelry-bg-light);
}

.pricing-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-breakdown-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(134, 97, 74, 0.06);
    box-shadow: 0 4px 20px rgba(134, 97, 74, 0.06);
    transition: all 0.3s ease;
}

.pricing-breakdown-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(134, 97, 74, 0.12);
}

.pricing-breakdown-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(134, 97, 74, 0.06);
    color: var(--jewelry-primary);
    margin: 0 auto 16px;
}

.pricing-breakdown-percent {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.pricing-breakdown-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--jewelry-text);
    margin: 0 0 10px 0;
}

.pricing-breakdown-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--jewelry-text-light);
    margin: 0;
}

/* --- Why Different Section --- */
.pricing-why-section {
    padding: 80px 0;
    background: white;
}

.pricing-why-content h2 {
    font-family: var(--jewelry-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--jewelry-text);
    margin: 0 0 12px 0;
}

.pricing-why-content > p {
    font-size: 16px;
    color: var(--jewelry-text-light);
    margin: 0 0 40px 0;
    max-width: 560px;
    line-height: 1.7;
}

.pricing-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pricing-why-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--jewelry-bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-why-feature:hover {
    box-shadow: 0 8px 24px rgba(134, 97, 74, 0.1);
}

.pricing-why-feature-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--jewelry-accent);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.pricing-why-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--jewelry-text);
    margin: 0 0 6px 0;
}

.pricing-why-feature p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--jewelry-text-light);
    margin: 0;
}

/* --- FAQ Section --- */
.pricing-faq-section {
    padding: 80px 0;
    background: var(--jewelry-bg-light);
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq-item {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(134, 97, 74, 0.06);
    transition: all 0.3s ease;
}

.pricing-faq-item:hover {
    box-shadow: 0 8px 24px rgba(134, 97, 74, 0.08);
}

.pricing-faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--jewelry-text);
    margin: 0 0 10px 0;
}

.pricing-faq-item p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--jewelry-text-light);
    margin: 0;
}

/* --- CTA Section --- */
.pricing-cta-section {
    padding: 0 0 80px;
    background: var(--jewelry-bg-light);
}

.pricing-cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-dark) 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
}

.pricing-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pricing-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.pricing-cta-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--jewelry-accent);
    opacity: 0.15;
    top: -80px;
    right: -40px;
}

.pricing-cta-orb-2 {
    width: 200px;
    height: 200px;
    background: var(--jewelry-accent);
    opacity: 0.1;
    bottom: -60px;
    left: -30px;
}

.pricing-cta-content {
    position: relative;
    z-index: 1;
}

.pricing-cta-content h2 {
    font-family: var(--jewelry-font-heading);
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0 0 14px 0;
}

.pricing-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.pricing-cta-buttons .jewelry-btn-primary {
    background: white;
    color: var(--jewelry-primary);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta-buttons .jewelry-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-cta-buttons .jewelry-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta-buttons .jewelry-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* --- About Pricing Responsive --- */
@media (max-width: 1024px) {
    .pricing-promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

@media (max-width: 768px) {
    .pricing-hero {
        padding: 24px 0 40px;
    }

    .pricing-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-hero-text {
        text-align: center;
        max-width: 100%;
    }

    .pricing-hero-eyebrow {
        justify-content: center;
    }

    .pricing-hero-title {
        font-size: 28px;
    }

    .pricing-hero-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .pricing-breadcrumb {
        margin-bottom: 24px;
    }

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

    .pricing-promise-item {
        gap: 10px;
    }

    .pricing-promise-item svg {
        width: 22px;
        height: 22px;
    }

    .pricing-promise-item strong {
        font-size: 12px;
    }

    .pricing-promise-item span {
        font-size: 11px;
    }

    .pricing-comparison-section,
    .pricing-breakdown-section,
    .pricing-why-section,
    .pricing-faq-section {
        padding: 40px 0;
    }

    .pricing-section-header {
        margin-bottom: 32px;
    }

    .pricing-section-header h2 {
        font-size: 24px;
    }

    .pricing-section-header p {
        font-size: 14px;
    }

    .pricing-vs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-vs-divider {
        padding: 4px 0;
    }

    .pricing-vs-divider span {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .pricing-vs-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .pricing-vs-price {
        font-size: 32px;
    }

    .pricing-vs-label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .pricing-vs-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    .pricing-vs-savings {
        font-size: 13px;
        padding: 10px 14px;
    }

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

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

    .pricing-breakdown-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .pricing-breakdown-icon svg {
        width: 22px;
        height: 22px;
    }

    .pricing-breakdown-percent {
        font-size: 22px;
    }

    .pricing-breakdown-card h3 {
        font-size: 14px;
    }

    .pricing-breakdown-card p {
        font-size: 12px;
    }

    .pricing-why-section {
        padding: 40px 0;
    }

    .pricing-why-content h2 {
        font-size: 24px;
    }

    .pricing-why-content > p {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .pricing-why-feature {
        padding: 18px;
        border-radius: 14px;
        gap: 12px;
    }

    .pricing-why-feature-num {
        font-size: 20px;
    }

    .pricing-why-feature h4 {
        font-size: 14px;
    }

    .pricing-why-feature p {
        font-size: 12px;
    }

    .pricing-faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-faq-item {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .pricing-faq-item h3 {
        font-size: 14px;
    }

    .pricing-faq-item p {
        font-size: 12px;
    }

    .pricing-cta-card {
        padding: 36px 20px;
        border-radius: 20px;
    }

    .pricing-cta-content h2 {
        font-size: 22px;
    }

    .pricing-cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .pricing-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .pricing-cta-buttons .jewelry-btn-primary,
    .pricing-cta-buttons .jewelry-btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero-title {
        font-size: 24px;
    }

    .pricing-hero-subtitle {
        font-size: 13px;
    }

    .pricing-promise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pricing-promise-item {
        gap: 10px;
        padding: 8px 0;
    }

    .pricing-vs-price {
        font-size: 28px;
    }

    .pricing-breakdown-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pricing-section-header h2 {
        font-size: 22px;
    }

    .pricing-cta-content h2 {
        font-size: 20px;
    }
}
