/* Pricing page – two offerings, price display (cohesive with home page) */

/* ================================
   Section accent (hero, process, CTA)
   ================================ */
.pricing-hero .section-accent,
.process-section .section-accent,
.cta-section .section-accent {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pricing-hero .section-accent span,
.process-section .section-accent span,
.cta-section .section-accent span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pricing-hero .section-accent span:nth-child(1),
.process-section .section-accent span:nth-child(1),
.cta-section .section-accent span:nth-child(1) { background: var(--primary-blue); }
.pricing-hero .section-accent span:nth-child(2),
.process-section .section-accent span:nth-child(2),
.cta-section .section-accent span:nth-child(2) { background: linear-gradient(135deg, var(--primary-blue), var(--gold-accent)); }
.pricing-hero .section-accent span:nth-child(3),
.process-section .section-accent span:nth-child(3),
.cta-section .section-accent span:nth-child(3) { background: var(--gold-accent); }

/* Scroll-in view animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Admin banner */
.admin-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(8px);
    color: var(--primary-blue);
    z-index: 1001;
    padding: 5px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    height: 28px;
}

.admin-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.admin-banner-text {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}

.admin-banner-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s ease;
    opacity: 0.8;
}

.admin-banner-link:hover {
    opacity: 1;
}

body.admin-banner-visible .navbar {
    top: 28px;
}

/* ================================
   Pricing hero (dark with image)
   ================================ */
.pricing-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 100px;
    isolation: isolate;
}

.pricing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.pricing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 400px 400px at 85% 15%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 350px 350px at 15% 85%, rgba(251, 191, 36, 0.15) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(30, 41, 59, 0.88) 50%,
            rgba(15, 23, 42, 0.92) 100%);
}

.pricing-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-hero .pricing-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: pricingFadeInUp 0.8s ease forwards 0.3s;
}

.pricing-hero .pricing-hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: pricingFadeInUp 0.8s ease forwards 0.5s;
}

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

.pricing-hero-stats {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: pricingFadeInUp 0.8s ease forwards 0.7s;
}

.pricing-hero-stat {
    text-align: center;
}

.pricing-hero-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.pricing-hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.pricing-hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.pricing-hero .pricing-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    animation: pricingBounce 2s infinite;
    z-index: 2;
}

@keyframes pricingBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.navbar.scrolled.navbar-over-light:not(.navbar-standard) .nav-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar.navbar-over-light .nav-toggle span {
    background: var(--dark-base);
}

/* Section header (process, pricing sections) */
.pricing-page .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-page .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 16px;
}

.pricing-page .section-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
}

/* ================================
   Process section (How I Work)
   ================================ */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-base) 0%, var(--dark-slate) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-flow {
    max-width: 1100px;
    margin: 0 auto;
}

.process-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.process-card {
    flex: 1;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 99, 235, 0.15);
}

.process-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--hover-blue));
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.process-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.process-card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
    color: var(--primary-blue);
    font-size: 18px;
}

.process-connector i {
    opacity: 0.6;
    animation: pulseRight 1.5s ease-in-out infinite;
}

@keyframes pulseRight {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(4px); opacity: 0.8; }
}

.process-row-bottom {
    margin-top: 32px;
}

/* ================================
   CTA section
   ================================ */
.cta-section {
    padding: 100px 20px;
    background: var(--light-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-base);
}

.cta-description {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

/* Base buttons (pricing + CTA) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Footer */
.pricing-page .footer {
    background: var(--dark-base);
    color: var(--white);
    padding: 60px 0 30px;
    padding-bottom: max(30px, env(safe-area-inset-bottom, 0px));
}

.pricing-page .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.pricing-page .footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-page .footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.pricing-page .footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.pricing-page .footer-links {
    list-style: none;
}

.pricing-page .footer-links li {
    margin-bottom: 12px;
}

.pricing-page .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.pricing-page .footer-links a:hover {
    color: var(--white);
}

.pricing-page .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Pricing hero + process + CTA responsive */
@media (max-width: 992px) {
    .pricing-hero .pricing-hero-title {
        font-size: 52px;
    }
    .pricing-hero-stats {
        gap: 24px;
        padding: 24px 32px;
    }
    .pricing-hero-stat-value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: 60vh;
        padding: 120px 20px 80px;
    }
    .pricing-hero .pricing-hero-title {
        font-size: 42px;
    }
    .pricing-hero .pricing-hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .pricing-hero-stats {
        display: flex;
        flex-direction: row;
        gap: 16px;
        padding: 14px 20px;
        width: 100%;
        border-radius: 50px;
    }
    .pricing-hero-stat-divider {
        width: 1px;
        height: 36px;
    }
    .pricing-hero-stat-value {
        font-size: 20px;
    }
    .pricing-hero-stat-label {
        font-size: 10px;
    }
    .process-section,
    .cta-section {
        padding: 60px 0;
    }
    .pricing-page .section-title {
        font-size: 32px;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .process-card {
        max-width: 100%;
        width: 100%;
    }
    .process-connector {
        transform: rotate(90deg);
        width: auto;
        height: 40px;
    }
    .process-row-bottom {
        margin-top: 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .pricing-page .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
    .pricing-page .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        min-height: 55vh;
        padding: 100px 16px 60px;
    }
    .pricing-hero .pricing-hero-title {
        font-size: 32px;
    }
    .pricing-hero .pricing-hero-subtitle {
        font-size: 16px;
    }
    .pricing-hero-stats {
        padding: 12px 14px;
        gap: 10px;
    }
    .pricing-hero-stat-value {
        font-size: 18px;
    }
    .pricing-hero-stat-label {
        font-size: 12px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (hover: none) {
    .process-card:hover,
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }
}

/* ================================
   Pricing sections (cards, grids)
   ================================ */

.pricing-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative orbs – match home page sections */
.pricing-section:not(.pricing-section--alt):not(.pricing-section--dark)::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section:not(.pricing-section--alt):not(.pricing-section--dark)::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section--alt {
    background: var(--white);
    border-top: 1px solid var(--borders);
    position: relative;
    overflow: hidden;
}

.pricing-section--alt::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section--alt::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Dark section for Website Builds – matches home Services section */
.pricing-section--dark {
    background: linear-gradient(180deg, #1a1f2e 0%, #252b3d 100%);
    border-top: none;
}

.pricing-section--dark::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section--dark::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section--dark .section-title {
    color: var(--white);
}

.pricing-section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-section--dark .pricing-included {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-section--dark .pricing-builds-price {
    color: var(--gold-accent);
}

.pricing-section--dark .pricing-builds-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-section--dark .pricing-builds-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-section--dark .pricing-builds-card .pricing-card-title {
    color: var(--white);
}

.pricing-section--dark .pricing-builds-card .pricing-card-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-section--dark .pricing-builds-card .pricing-card-desc,
.pricing-section--dark .pricing-builds-choose-list {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-section--dark .pricing-builds-choose-label {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-section--dark .pricing-builds-choose-list li::before {
    background: var(--gold-accent);
}

.pricing-section--dark .container {
    position: relative;
    z-index: 1;
}

.pricing-included {
    margin-top: 12px;
    font-size: 15px;
    color: var(--secondary-text);
    font-style: italic;
}

.pricing-grid {
    display: grid;
    gap: 28px;
    margin-top: 40px;
}

/* Website Builds – two mini-cards, shared price */
.pricing-builds-price {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-base);
    margin-top: 40px;
    margin-bottom: 24px;
}

.pricing-builds-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-builds-card {
    background: var(--white);
    border: 1px solid var(--borders);
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-builds-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.pricing-builds-card .pricing-card-icon {
    margin-bottom: 14px;
}

.pricing-builds-card .pricing-card-title {
    margin-bottom: 4px;
}

.pricing-builds-card .pricing-card-desc {
    margin-bottom: 16px;
    font-size: 14px;
}

.pricing-builds-choose-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.pricing-builds-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--secondary-text);
    line-height: 1.5;
}

.pricing-builds-choose-list li {
    padding: 3px 0 3px 16px;
    position: relative;
}

.pricing-builds-choose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.pricing-builds-cta-wrap {
    text-align: center;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

/* Gold CTA – matches home "See options & pricing" */
.pricing-builds-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background: var(--gold-accent);
    color: var(--dark-base);
    border: 2px solid var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-builds-cta:hover {
    background: transparent;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}

.pricing-grid--builds {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid--care {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--borders);
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.pricing-section:not(.pricing-section--alt) .pricing-card {
    background: var(--white);
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.pricing-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.08);
    margin-bottom: 16px;
}

.pricing-card--tier .pricing-card-title {
    margin-top: 0;
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 6px;
}

.pricing-card-tagline {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-card-desc {
    font-size: 15px;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 16px;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-text);
}

.pricing-card .btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Add-ons section */
.addons-section {
    background: var(--light-bg);
    border-top: 1px solid var(--borders);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.addon-item {
    background: var(--white);
    border: 1px solid var(--borders);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.addon-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.addon-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.08);
    margin-bottom: 12px;
}

.addon-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 6px;
    line-height: 1.3;
}

.addon-desc {
    font-size: 14px;
    color: var(--secondary-text);
    line-height: 1.5;
    margin: 0;
}

.addons-cta {
    margin-top: 28px;
    text-align: center;
    font-size: 15px;
    color: var(--secondary-text);
}

.addons-cta a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.addons-cta a:hover {
    text-decoration: underline;
}

/* Pill-shaped buttons – match home page */
.pricing-section .btn,
.pricing-section--alt .btn,
.addons-section .btn,
.cta-section .btn {
    border-radius: 9999px;
}

.cta-section .btn-primary {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 56px 0;
    }
    .pricing-builds-cards {
        grid-template-columns: 1fr;
    }
    .pricing-builds-price {
        font-size: 24px;
    }
    .pricing-grid--builds,
    .pricing-grid--care {
        grid-template-columns: 1fr;
    }
    .price-amount {
        font-size: 24px;
    }
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

/* Disable hover lift effects on touch-only devices */
@media (hover: none) {
    .pricing-builds-card:hover,
    .pricing-builds-cta:hover,
    .pricing-card:hover,
    .addon-item:hover,
    .cta-section .btn-primary:hover {
        transform: none;
    }
}

/* Page-specific focus styles */
.btn:focus-visible,
.pricing-builds-cta:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 8px;
}
