/* =================================================================
   PRICING PAGE STYLES - VelTechLab
   Professional dark theme with cyberpunk accents
   ================================================================= */

/* =================================================================
   BASE STYLES
   ================================================================= */

body.pricing-page {
    font-family: "Inter", "Poppins", sans-serif;
    background: #0b1120;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

body.pricing-page .section {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

body.pricing-page .container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding-inline: clamp(1.5rem, 5vw, 3rem);
}

body.pricing-page .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

body.pricing-page .section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.pricing-page .section-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(148, 163, 184, 0.9);
    margin: 0 auto;
}

/* =================================================================
   PRICING HERO
   ================================================================= */

.pricing-hero {
    position: relative;
    padding-top: clamp(8rem, 15vw, 12rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background: 
        linear-gradient(180deg, rgba(11, 17, 32, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    overflow: hidden;
}

.pricing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.pricing-badge i {
    font-size: 0.9em;
}

.pricing-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(148, 163, 184, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* =================================================================
   PRICING CARDS GRID
   ================================================================= */

.pricing-section {
    background: #0b1120;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.25rem, 2vw, 1.5rem);
    }
}

/* =================================================================
   PRICING CARD
   ================================================================= */

.pricing-card {
    position: relative;
    background: linear-gradient(
        165deg,
        rgba(30, 41, 59, 0.7) 0%,
        rgba(15, 23, 42, 0.9) 100%
    );
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: clamp(1.25rem, 2.5vw, 1.5rem);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(59, 130, 246, 0.1),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(96, 165, 250, 0.2),
        0 0 60px rgba(59, 130, 246, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.pricing-card.featured {
    border-color: rgba(96, 165, 250, 0.4);
    background: linear-gradient(
        165deg,
        rgba(30, 41, 59, 0.85) 0%,
        rgba(15, 23, 42, 0.95) 100%
    );
    box-shadow:
        0 15px 40px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(96, 165, 250, 0.2);
}

.pricing-card.featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* =================================================================
   CARD HEADER
   ================================================================= */

.pricing-card-header {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.plan-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.plan-badge.starter {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.plan-badge.business {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.plan-badge.enterprise {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.plan-name {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: rgba(248, 250, 252, 0.98);
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* =================================================================
   CARD PRICE
   ================================================================= */

.pricing-card-price {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.price-amount {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .price-amount {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: rgba(148, 163, 184, 0.8);
    margin-left: 0.25rem;
}

.price-period {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    color: rgba(148, 163, 184, 0.7);
}

.price-eur {
    display: block;
    font-size: clamp(0.8rem, 1.6vw, 0.875rem);
    color: rgba(148, 163, 184, 0.6);
    margin-top: 0.35rem;
}

/* =================================================================
   FEATURES LIST
   ================================================================= */

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.5;
}

.pricing-features li i {
    color: #4ade80;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* =================================================================
   CARD FOOTER
   ================================================================= */

.pricing-card-footer {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(96, 165, 250, 0.5);
    color: #60a5fa;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: clamp(0.875rem, 1.8vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 1.5vw, 0.8rem);
    color: rgba(148, 163, 184, 0.7);
    margin-top: 1rem;
    line-height: 1.5;
}

.pricing-note i {
    color: rgba(96, 165, 250, 0.7);
    font-size: 0.8rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* =================================================================
   POLICY SECTION
   ================================================================= */

.policy-section {
    background: 
        linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(11, 17, 32, 0.8) 100%);
    position: relative;
}

.policy-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
}

@media (min-width: 640px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .policy-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.policy-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: all 0.3s ease;
}

.policy-card:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
}

.policy-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.25));
}

.policy-card h3 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
    margin-bottom: 0.75rem;
}

.policy-card p {
    font-size: clamp(0.85rem, 1.7vw, 0.9rem);
    color: rgba(148, 163, 184, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */

.faq-section {
    background: #0b1120;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.faq-item.active {
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(30, 41, 59, 0.7);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #60a5fa;
}

.faq-question i {
    color: rgba(96, 165, 250, 0.7);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.5rem);
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* =================================================================
   CTA SECTION
   ================================================================= */

.cta-section {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%),
        rgba(15, 23, 42, 0.9);
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: rgba(248, 250, 252, 0.98);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-buttons .btn-lg {
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================= */

@media (max-width: 767px) {
    .pricing-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        order: -1;
    }
    
    .pricing-hero {
        padding-top: clamp(10rem, 18vw, 14rem);
    }
    
    .pricing-hero-content {
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.875rem;
    }
    
    .pricing-hero {
        padding-top: clamp(11rem, 20vw, 15rem);
    }
    
    .pricing-hero-content {
        padding-top: 1.5rem;
    }
}

