/* Pricing Page Styles - AMVIZ Digi Park */

.pricing-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 4rem 2.5rem;
    position: relative;
    background: #ffffff;
}

/* 1. Centered Hero Section Styling */
.pricing-hero-new {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0 3rem 0;
    text-align: center;
    background: #ffffff;
    font-family: var(--font-secondary);
}

.hero-header-wrap {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-title-centered {
    font-family: var(--font-primary);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: #0c0d0e;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.pricing-subtitle-centered {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Signup input capsule */
.signup-input-capsule {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e1e3e6;
    border-radius: 99px;
    padding: 0.4rem 0.5rem 0.4rem 1.75rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: border-color var(--transition-normal);
}

.signup-input-capsule:focus-within {
    border-color: var(--accent-indigo);
}

.input-inner {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 0.75rem;
}

.input-inner .mail-icon {
    width: 18px;
    height: 18px;
    color: #555555;
}

.signup-email-input {
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    font-family: var(--font-secondary);
    color: #0c0d0e;
    background: transparent;
}

.signup-email-input::placeholder {
    color: #8c8f94;
}

.signup-pill-btn {
    background: var(--accent-indigo);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-secondary);
    transition: background-color var(--transition-normal), transform var(--transition-fast);
}

.signup-pill-btn:hover {
    background: #104bbb;
}

.signup-pill-btn:active {
    transform: scale(0.98);
}

/* Featured plans container */
.featured-plans-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-top: 2rem;
}

.featured-plans-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.featured-plans-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: #0c0d0e;
}

.explore-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0c0d0e;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity var(--transition-normal), transform var(--transition-fast);
}

.explore-all-link svg {
    transition: transform var(--transition-fast);
}

.explore-all-link:hover {
    opacity: 0.8;
}

.explore-all-link:hover svg {
    transform: translateX(3px);
}

/* Featured plans grid */
.featured-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.featured-plan-card {
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.featured-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

/* Card variants colors */
.card-soft-blue {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.card-indigo {
    background-color: var(--accent-indigo);
    color: #ffffff;
}

.card-soft-purple {
    background-color: var(--accent-purple-glow);
    border: 1px solid rgba(87, 143, 229, 0.15);
    color: var(--text-primary);
}

.card-soft-pink {
    background-color: var(--accent-pink-glow);
    border: 1px solid rgba(150, 185, 238, 0.20);
    color: var(--text-primary);
}

/* Card inner structure */
.card-top {
    margin-bottom: 2rem;
}

.card-category {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.8;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-primary);
}

.card-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    text-decoration: none;
    transition: background var(--transition-normal), transform var(--transition-fast);
}

.card-arrow-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: translate(2px, -2px);
}

.card-indigo .card-arrow-btn {
    background: rgba(255, 255, 255, 0.12);
}

.card-indigo .card-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Featured plans footer */
.featured-plans-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1.5px solid #f1f3f5;
}

.footer-links-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.foot-link {
    color: #555555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.foot-link:hover {
    color: #0c0d0e;
}

.divider-dot {
    color: #8c8f94;
}

.footer-arrow-right {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e1e3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c0d0e;
    text-decoration: none;
    transition: border-color var(--transition-normal), background var(--transition-normal), transform var(--transition-fast);
}

.footer-arrow-right:hover {
    border-color: #0c0d0e;
    background: #f8f9fa;
    transform: translateX(3px);
}


/* 2. Brand Showcase section styling */
.pricing-brands-section {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(19, 89, 214, 0.08);
    border-bottom: 1px solid rgba(19, 89, 214, 0.08);
    margin-bottom: 3.5rem;
}

.brands-logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.brand-logo-card {
    flex: 1 1 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(1);
    opacity: 0.45;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-card:hover {
    filter: grayscale(0);
    opacity: 0.95;
    transform: scale(1.05);
}

.brand-logo-img {
    max-height: 42px;
    max-width: 140px;
    object-fit: contain;
    width: auto;
}


/* 3. Feature Section Styling ("Smarter Tools. Faster Growth.") */
.pricing-feature-premium {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-left-advisor {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advisor-img-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #f1f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advisor-img {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Floating labels around circle */
.floating-text-badge {
    position: absolute;
    background: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(19, 89, 214, 0.05);
    color: #0f172a;
    pointer-events: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ft-badge-1 {
    top: 20%;
    left: -12%;
}

.ft-badge-2 {
    top: 48%;
    right: -14%;
    background: #0f172a;
    color: #ffffff;
    border: none;
}

.ft-badge-3 {
    bottom: 5%;
    left: 8%;
}

/* Right content */
.feature-right-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.feature-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.feature-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
}

.feature-highlight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1359D6;
    margin-bottom: 1.25rem;
}

.highlight-icon svg {
    stroke-width: 2.5;
}

.highlight-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}


/* 4. Pricing Cards Grid Styling ("Our Pricing") */
.pricing-cards-section {
    position: relative;
}

.section-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

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

.pricing-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(19, 89, 214, 0.08);
    border-radius: 28px;
    padding: 2.5rem 2.0rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

.pricing-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(19, 89, 214, 0.05);
    border-color: rgba(19, 89, 214, 0.18);
}

.price-header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.price-plan-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    text-transform: capitalize;
    margin-top: 0.25rem;
}

/* Checklist of features */
.features-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.features-checklist li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: #475569;
    line-weight: 1.4;
    font-weight: 500;
}

.check-icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(19, 89, 214, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1359D6;
    flex-shrink: 0;
    background: #ffffff;
}

.check-icon-circle svg {
    stroke-width: 3.5;
}

/* 5. Highlighted/Featured Card (Middle card) */
.pricing-card-v2.featured {
    background: rgba(19, 89, 214, 0.04);
    border: 1.5px solid var(--accent-indigo);
    box-shadow: 0 12px 40px rgba(19, 89, 214, 0.03);
}

.pricing-card-v2.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(19, 89, 214, 0.08);
}

.pricing-card-v2.featured .price-amount {
    color: #0f172a;
}

.pricing-card-v2.featured .price-plan-name {
    color: #475569;
}

.pricing-card-v2.featured .features-checklist li {
    color: #334155;
}

.pricing-card-v2.featured .check-icon-circle {
    border-color: rgba(19, 89, 214, 0.25);
    color: var(--accent-indigo);
    background: #ffffff;
}

/* Base Pricing Button Pill Styles */
.pricing-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #1359d6;
    border: 1px solid rgba(19, 89, 214, 0.15);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    font-size: 15px;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(19, 89, 214, 0.02);
}

.pricing-btn-pill:hover {
    background-color: #f8fafc;
    border-color: #1359d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 89, 214, 0.06);
}

.btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(19, 89, 214, 0.08);
    border-radius: 50%;
    color: #1359d6;
    transition: all 0.25s ease;
}

.pricing-btn-pill:hover .btn-arrow-circle {
    transform: translateX(3px);
    background-color: #1359d6;
    color: #ffffff;
}

/* Button in Featured Card */
.pricing-card-v2.featured .featured-btn {
    background: #1359d6;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(19, 89, 214, 0.2);
}

.pricing-card-v2.featured .featured-btn:hover {
    background: #104bbb;
    box-shadow: 0 6px 20px rgba(19, 89, 214, 0.3);
}

.pricing-card-v2.featured .featured-btn .btn-arrow-circle {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pricing-card-v2.featured .featured-btn:hover .btn-arrow-circle {
    background: #ffffff;
    color: #1359d6;
}


/* Responsive Layout Adjustments */
@media (max-width: 1100px) {
    .pricing-hero-premium {
        gap: 2rem;
    }
    
    .pricing-title {
        font-size: 3rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card-v2 {
        padding: 2.5rem 1.75rem;
    }
    
    .pricing-feature-premium {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .pricing-hero-premium {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
        margin-bottom: 5rem;
    }
    
    .hero-left-content {
        align-items: center;
        text-align: center;
    }
    
    .pricing-desc {
        margin: 0 auto 2.5rem auto;
    }
    
    .pricing-feature-premium {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-bottom: 3rem;
    }
    
    .feature-right-info {
        align-items: center;
        text-align: center;
    }
    
    .feature-desc {
        margin: 0 auto 2.5rem auto;
    }
    
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Center the third card when stacked 2+1 */
    .pricing-cards-grid > *:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-page-container {
        padding: 2rem 1.25rem 3rem 1.25rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .brands-logo-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .brand-logo-card {
        flex: 1 1 120px;
    }
    
    .advisor-img-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .advisor-img {
        width: 280px;
        height: 280px;
    }
    
    .ft-badge-1 {
        left: -5%;
    }
    
    .ft-badge-2 {
        right: -8%;
    }
    
    .feature-title {
        font-size: 2.25rem;
    }
    
    .feature-highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-highlight-card {
        align-items: center;
        text-align: center;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards-grid > *:last-child {
        grid-column: span 1;
    }
    
    .floating-badge {
        transform: scale(0.9);
    }
    
    .badge-projects {
        right: -8%;
    }
    
    .badge-clients {
        left: -8%;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 2.1rem;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on very small phones to prevent horizontal overflow */
    }
}
