/* Pricing Page Styles */
:root {
    --primary-color: #00c0c0;
    --primary-dark: #009999;
    --primary-light: #33cccc;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --dark-bg: #0f1419;
    --card-bg: rgba(255, 255, 255, 0.02);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --gradient-primary: linear-gradient(135deg, #00c0c0 0%, #009999 100%);
    --gradient-accent: linear-gradient(135deg, #4ecdc4 0%, #00c0c0 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f1419 100%);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 160px 0 100px;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 192, 192, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 192, 192, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 192, 192, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 15s ease-in-out infinite;
}

.floating-shape::before {
    content: '';
    display: block;
    background: linear-gradient(135deg, rgba(0, 192, 192, 0.2), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
}

.shape-1::before {
    width: 150px;
    height: 150px;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 3s;
}

.shape-2::before {
    width: 120px;
    height: 120px;
}

.shape-3 {
    bottom: 15%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 6s;
}

.shape-3::before {
    width: 100px;
    height: 100px;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    text-align: left;
}

.hero-demo {
    position: relative;
}

/* Hero Pricing Cards */
.hero-pricing-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.hero-price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-price-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 192, 192, 0.3);
    box-shadow: 0 20px 60px rgba(0, 192, 192, 0.25);
}

.hero-price-card.featured {
    border: 2px solid rgba(0, 192, 192, 0.4);
    background: rgba(0, 192, 192, 0.06);
    transform: scale(1.08);
}

.hero-price-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
    background: rgba(0, 192, 192, 0.1);
    border-color: rgba(0, 192, 192, 0.5);
}

.popular-badge {
    position: absolute;
    top: -10px;
    background: linear-gradient(135deg, #00c0c0, #00e0e0);
    color: white;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 192, 192, 0.4);
}

.plan-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.plan-price {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.plan-price span {
    display: block;
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -1px;
}

.plan-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    min-height: 35px;
}

.plan-link {
    color: #00c0c0;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.plan-link:hover {
    color: #00e0e0;
    gap: 0.75rem;
    text-decoration: none;
}

.plan-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.plan-link:hover i {
    transform: translateX(4px);
}

/* Plans Showcase - Tab Switcher */
/* Value Metrics Showcase */
.value-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.metric-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border: 1px solid rgba(0, 192, 192, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 192, 192, 0.5);
    box-shadow: 0 20px 60px rgba(0, 192, 192, 0.3);
}

.metric-card:hover .metric-glow {
    opacity: 1;
    transform: scale(1.2);
}

.metric-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 192, 192, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.metric-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 192, 192, 0.2), rgba(0, 192, 192, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(0, 192, 192, 0.3);
}

.metric-icon i {
    font-size: 1.8rem;
    color: #00c0c0;
    filter: drop-shadow(0 0 12px rgba(0, 192, 192, 0.6));
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00c0c0, #66ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    letter-spacing: -1px;
}

.metric-suffix {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 192, 192, 0.8);
    margin-left: 4px;
    vertical-align: top;
}

.metric-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Metric Card Variations */
.metric-card[data-metric="2"] .metric-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    border-color: rgba(99, 102, 241, 0.3);
}

.metric-card[data-metric="2"] .metric-icon i {
    color: #6366f1;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

.metric-card[data-metric="2"] .metric-value {
    background: linear-gradient(135deg, #6366f1, #8b8fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-card[data-metric="2"]:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.metric-card[data-metric="2"] .metric-glow {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

.metric-card[data-metric="3"] .metric-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
    border-color: rgba(168, 85, 247, 0.3);
}

.metric-card[data-metric="3"] .metric-icon i {
    color: #a855f7;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.6));
}

.metric-card[data-metric="3"] .metric-value {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-card[data-metric="3"]:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.metric-card[data-metric="3"] .metric-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
}

.metric-card[data-metric="4"] .metric-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.3);
}

.metric-card[data-metric="4"] .metric-icon i {
    color: #22c55e;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.6));
}

.metric-card[data-metric="4"] .metric-value {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-card[data-metric="4"]:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
}

.metric-card[data-metric="4"] .metric-glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
}

/* Animation for metrics */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.metric-card.animating .metric-value {
    animation: countUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 192, 192, 0.1);
    border: 1px solid rgba(0, 192, 192, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00c0c0;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, #00c0c0 0%, #00e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: #00c0c0;
    font-size: 1.2rem;
}

.hero-cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00c0c0 0%, #00a8a8 100%);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 192, 192, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 192, 192, 0.4);
    color: white;
    text-decoration: none;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateY(3px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-features {
        justify-content: center;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .hero-demo {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .hero-pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-price-card {
        width: 250px;
    }
    
    .hero-price-card.featured {
        transform: scale(1);
    }
    
    .hero-price-card.featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-glow-1,
    .hero-glow-2 {
        width: 300px;
        height: 300px;
    }
    
    .hero-pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-price-card {
        width: 250px;
    }
    
    .hero-price-card.featured {
        transform: scale(1);
    }
    
    .hero-price-card.featured:hover {
        transform: translateY(-12px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0,192,192,.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,192,192,.25);
    color: white;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,192,192,.4);
    color: white;
}

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

.hero-buttons .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual-container {
    padding: 2rem;
}

/* ==================================
   PRICING SECTION
   ================================== */

/* Section Wrapper */
.pricing-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
}

.pricing-section .container {
    max-width: 1300px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
}

/* Pricing Wrapper */
.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Row */
.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.12);
}

.price-card.recommended {
    transform: scale(1.05);
    border: 2px solid #00c0c0;
    box-shadow: 0 8px 16px rgba(0, 192, 192, 0.15), 0 16px 32px rgba(0, 192, 192, 0.15);
}

.price-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Badge */
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c0c0;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.card-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.5rem;
    margin-right: 0.25rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.price .period {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 2rem;
    margin-left: 0.25rem;
}

/* Card Body */
.card-body {
    padding: 2rem;
    flex-grow: 1;
}

.plan-summary {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    text-align: center;
}

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

.feature-list li {
    padding: 0.875rem 0;
    color: #334155;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-bottom: 1px solid #f8fafc;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #00c0c0;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Card Footer */
.card-footer {
    padding: 0 2rem 2.5rem;
}

.btn-select {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-select:hover {
    background: #00c0c0;
    border-color: #00c0c0;
    color: white;
    text-decoration: none;
}

.price-card.recommended .btn-select {
    background: #00c0c0;
    border-color: #00c0c0;
    color: white;
}

.price-card.recommended .btn-select:hover {
    background: #009999;
    border-color: #009999;
}

/* Enterprise Card */
.enterprise-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.enterprise-content {
    display: block;
}

.enterprise-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.enterprise-left h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.enterprise-left p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.enterprise-price {
    text-align: right;
}

/* Enterprise pricing line (Custom /pricing) */
.enterprise-price .price {
    justify-content: flex-end;
}

.enterprise-price .price .amount {
    color: #ffffff;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.enterprise-price .price .period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.6rem;
}

.enterprise-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.enterprise-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.enterprise-feature-list li i {
    color: #00c0c0;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-enterprise {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #0f172a;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-enterprise:hover {
    background: #00c0c0;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ==================================
   CTA SECTIONS
   ================================== */

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #00c0c0 0%, #009999 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-text h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn.primary {
    background: white;
    color: #00c0c0;
}

.cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #00c0c0;
    text-decoration: none;
}

/* Mid-Section CTA Box */
.pricing-cta-box {
    margin: 4rem 0;
}

.cta-box-content {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cta-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c0c0, #00e0e0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 192, 192, 0.3);
}

.cta-box-icon i {
    font-size: 2rem;
    color: white;
}

.cta-box-text {
    flex: 1;
}

.cta-box-text h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cta-box-text p {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
}

.cta-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #00c0c0;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-box-btn:hover {
    background: #009999;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 192, 192, 0.3);
    text-decoration: none;
}

.cta-box-btn i {
    transition: transform 0.3s ease;
}

.cta-box-btn:hover i {
    transform: translateX(4px);
}

/* Bottom Info */
.pricing-bottom-info {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-bottom-info p {
    margin-bottom: 0.75rem;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-bottom-info p {
    margin-bottom: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-bottom-info p:last-child {
    margin-bottom: 0;
}

.pricing-bottom-info a {
    color: #00c0c0;
    font-weight: 600;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-card.recommended {
        transform: scale(1);
    }
    
    .price-card.recommended:hover {
        transform: translateY(-8px);
    }
    
    .enterprise-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .enterprise-price .price {
        justify-content: center;
    }

    .enterprise-feature-list {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-box-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .pricing-row {
        margin-bottom: 2rem;
    }
    
    .enterprise-card {
        padding: 2rem;
    }
    
    .cta-banner {
        padding: 2rem 0;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
    
    .cta-box-content {
        padding: 2rem;
    }
    
    .cta-box-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-box-icon i {
        font-size: 1.5rem;
    }
    
    .cta-box-text h4 {
        font-size: 1.35rem;
    }
    
    .cta-box-text p {
        font-size: 0.95rem;
    }
}
/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.gap-3 {
    gap: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.text-end {
    text-align: right !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.small {
    font-size: 0.875rem !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.end-0 {
    right: 0 !important;
}

.d-none {
    display: none !important;
}

.d-lg-block {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards-grid {
        gap: 1.5rem; /* Reduce gap on smaller screens */
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {
    .pricing-main-title {
        font-size: 2.25rem;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
        gap: 2rem;
        max-width: 500px; /* Narrower for single column */
    }
    
    .enterprise-cta-section {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .enterprise-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .enterprise-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .pricing-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .pricing-main-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-cta {
        padding: 0 1.5rem 2rem;
    }
    
    .pricing-period-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        border-radius: 20px;
    }
    
    .toggle-label {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges > div {
        margin-bottom: 0.75rem;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1399.98px) {
    .pricing-cards-grid {
        gap: 2.5rem;
        max-width: 1100px;
    }
    
    .pricing-card {
        min-width: 300px;
    }
}

@media (max-width: 1199.98px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards-grid {
        gap: 2rem;
        max-width: 900px;
    }
    
    .pricing-card {
        min-width: 280px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
    
    .enterprise-cta-section {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
    
    .enterprise-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .pricing-main-title {
        font-size: 2.25rem;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
        gap: 2rem;
        max-width: 500px; /* Narrower for single column */
    }
    
    .pricing-card {
        min-width: auto;
        max-width: 100%;
    }
    
    .enterprise-cta-section {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .enterprise-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .enterprise-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .trust-badges > div {
        margin-bottom: 0.75rem;
        margin-right: 0 !important;
    }
    
    .pricing-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .pricing-main-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-cards-grid {
        gap: 1.5rem;
        padding: 1rem 0.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
        border-radius: 20px;
    }
    
    .pricing-header {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding: 2rem 1.5rem;
    }
    
    .feature-category {
        margin-bottom: 2rem;
    }
    
    .feature-category-title {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .pricing-cta {
        padding: 0 1.5rem 2rem;
    }
    
    .pricing-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .pricing-period-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        border-radius: 20px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .toggle-label {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
    }
    
    .enterprise-cta-section {
        margin-top: 2.5rem;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .enterprise-title {
        font-size: 2rem;
    }
    
    .enterprise-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .enterprise-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .enterprise-feature {
        padding: 1.25rem;
        text-align: center;
    }
    
    .enterprise-feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 1rem;
    }
    
    .enterprise-feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-feature-content p {
        font-size: 0.85rem;
    }
    
    .enterprise-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .pricing-additional-info {
        margin-top: 2.5rem;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .pricing-additional-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-main-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .pricing-main-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .pricing-cards-grid {
        padding: 1rem 0;
    }
    
    .pricing-card {
        border-radius: 16px;
    }
    
    .pricing-header {
        padding: 2rem 1.25rem 1.5rem;
    }
    
    .pricing-plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-title {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .pricing-features {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-category {
        margin-bottom: 1.5rem;
    }
    
    .feature-category-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 0.8rem;
        width: 14px;
        margin-right: 0.6rem;
    }
    
    .pricing-cta {
        padding: 0 1.25rem 1.75rem;
    }
    
    .pricing-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        top: -14px;
    }
    
    .enterprise-cta-section {
        margin-top: 2rem;
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    
    .enterprise-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-subtitle {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .enterprise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .enterprise-features {
        margin: 1.5rem 0;
    }
    
    .enterprise-feature {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .enterprise-feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-feature-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .enterprise-feature-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .enterprise-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        border-radius: 40px;
    }
    
    .pricing-additional-info {
        margin-top: 2rem;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .pricing-additional-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 399.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .pricing-main-title {
        font-size: 1.6rem;
    }
    
    .pricing-cards-grid {
        padding: 0.5rem 0;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-header {
        padding: 1.75rem 1rem 1.25rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-features {
        padding: 1.25rem 1rem;
    }
    
    .pricing-cta {
        padding: 0 1rem 1.5rem;
    }
    
    .enterprise-cta-section {
        padding: 1.75rem 1rem;
    }
    
    .enterprise-title {
        font-size: 1.6rem;
    }
    
    .enterprise-subtitle {
        font-size: 0.95rem;
    }
    
    .enterprise-feature {
        padding: 0.875rem;
    }
    
    .enterprise-btn {
        font-size: 0.85rem;
        padding: 11px 18px;
    }
}

/* Updated padding for larger screens */
@media (min-width: 1200px) {
    .pricing-cards-grid {
        gap: 3rem; /* Even larger gap on very large screens */
        max-width: 1500px; /* Allow more breathing room */
    }
    
    .pricing-card {
        min-width: 320px; /* Larger minimum width on big screens */
    }
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0,192,192,.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0,192,192,.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,192,192,.4);
}

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

.hero-buttons .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.trust-badges {
    flex-wrap: wrap;
    gap: 1rem;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    position: relative;
    padding: 100px 0;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0,192,192,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.4;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-category {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-category h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 192, 192, 0.1);
}

.feature-category h5 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 0.5rem;
}

.feature-item.included i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

.btn-plan.featured:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Plan Cards */
.plan-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 192, 192, 0.12);
    border-color: rgba(0, 192, 192, 0.3);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 192, 192, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f0fdfd 100%);
}

.plan-card.featured::before {
    opacity: 1;
    height: 6px;
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 192, 192, 0.2);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 25px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
    background: linear-gradient(135deg, transparent 0%, rgba(0, 192, 192, 0.02) 100%);
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.plan-price {
    margin: 1.5rem 0;
    position: relative;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 192, 192, 0.1);
}

.price span {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.plan-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Plan Features */
.plan-features {
    padding: 2rem;
    flex-grow: 1;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.feature {
    padding: 1rem 0;
    color: #374151;
    font-size: 1rem;
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature:last-child {
    border-bottom: none;
}

.feature:hover {
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.feature::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 192, 192, 0.2);
}

/* Plan CTA */
.plan-cta {
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.plan-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.plan-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 192, 192, 0.3);
}

.plan-btn:hover::before {
    left: 0;
}

.plan-btn.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 192, 192, 0.3);
}

.plan-btn.featured::before {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.plan-btn.featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 192, 192, 0.4);
}

/* Nested Feature Items */
.pricing-feature-item.ms-4 {
    padding-left: 8px;
}

.pricing-feature-item.ms-4 .pricing-feature-icon {
    font-size: 0.9em;
}

.pricing-feature-item.ms-4 .pricing-feature-text {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Comparison Table */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: white;
    margin: 3rem auto;
    table-layout: fixed;
    border: none;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.comparison-table th {
    text-align: center;
    padding: 20px 15px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    border: none;
    vertical-align: middle;
}

.comparison-table th:first-child {
    background-color: var(--primary-color);
    text-align: left;
    width: 240px;
}

.comparison-table td {
    padding: 16px 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    background-color: white;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    background-color: white;
}

.comparison-table tbody tr:hover td {
    background-color: rgba(248, 249, 250, 0.7);
}

.comparison-check {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: inline-block;
}

.comparison-x {
    color: #dc3545;
    font-size: 1rem;
    opacity: 0.6;
}

.feature-header {
    font-weight: 600;
    color: #1f2937;
}

.comparison-table .btn-sm {
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 90px;
}

.comparison-table .btn-sm.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.comparison-table .btn-sm.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.comparison-table .btn-sm.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Mobile Pricing Cards */
.pricing-card-mobile {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card-mobile.popular {
    border-color: var(--primary-color);
    position: relative;
}

.pricing-header-mobile {
    background: linear-gradient(to right, #f8f9fa, white);
    padding: 1.25rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 80px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-header-mobile:hover {
    background: linear-gradient(to right, #f0f0f0, white);
}

.pricing-title-mobile {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.pricing-price-mobile {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: right;
    line-height: 1.2;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.pricing-dropdown-indicator {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.pricing-card-mobile.expanded .pricing-dropdown-indicator {
    transform: rotate(180deg);
}

.pricing-body-mobile {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 0px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(-10px);
}

.pricing-card-mobile.expanded .pricing-body-mobile {
    padding: 1.5rem 1.25rem 1.25rem;
    max-height: 800px;
    border-top: 1px solid rgba(0,0,0,0.05);
    opacity: 1;
    transform: translateY(0);
}

.pricing-mobile-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 0 16px 0 8px;
    font-weight: 600;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

/* Mobile Comparison */
.mobile-comparison-selector {
    display: flex;
    overflow-x: auto;
    margin: 0 -15px 1.5rem;
    padding: 0 15px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding: 15px;
    position: relative;
    scroll-snap-type: x mandatory;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.mobile-comparison-selector::-webkit-scrollbar {
    display: none;
}

.mobile-comparison-option {
    flex: 0 0 auto;
    padding: 8px 20px;
    margin-right: 8px;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    min-width: 80px;
    text-align: center;
}

.mobile-comparison-option:last-child {
    margin-right: 0;
}

.mobile-comparison-option.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 3px 8px rgba(0,192,192,0.25);
    transform: translateY(-2px);
    border: 1px solid var(--primary-dark);
}

.mobile-feature-list {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.mobile-feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mobile-feature-item .me-3 {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mobile-feature-name {
    font-weight: 600;
    margin-bottom: 2px;
    color: #1f2937;
}

.mobile-feature-value {
    color: #6b7280;
    font-size: 0.9rem;
}

.mobile-comparison-section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-comparison-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 992px) {
    .pricing-features {
        min-height: 240px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .pricing-features {
        min-height: 280px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .pricing-toggle {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        max-width: 100%;
    }
    
    .pricing-toggle-label {
        font-size: 0.9rem;
    }
}

/* Add some additional animations and effects */
.plan-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive Design */
@media (max-width: 1199.98px) {
    .pricing-main-title {
        font-size: 3rem;
    }
    
    .plan-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-section {
        padding: 80px 0 100px;
    }
    
    .plan-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .plan-name {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-main-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .pricing-main-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-section {
        padding: 60px 0 80px;
    }
    
    .pricing-toggle-wrapper {
        margin-bottom: 3rem;
    }
    
    .pricing-period-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        border-radius: 20px;
    }
    
    .toggle-label {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .plan-card {
        margin-bottom: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .plan-features {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 0.75rem 0;
        padding-left: 2rem;
        font-size: 0.95rem;
    }
    
    .plan-cta {
        padding: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges > div {
        margin-bottom: 0.75rem;
    }
}

/* Mobile Responsive for Pricing Explorer */
@media (max-width: 991.98px) {
    .plan-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-details {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-title h3 {
        font-size: 2rem;
    }
    
    .plan-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .plan-selector {
        grid-template-columns: 1fr;
    }
    
    .plan-option {
        padding: 1.5rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .plan-option:last-child {
        border-bottom: none;
    }
    
    .plan-details {
        padding: 1.5rem;
    }
    
    .plan-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .plan-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .plan-title h3 {
        font-size: 1.8rem;
    }
    
    .popular-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .feature-category {
        padding: 1.5rem;
    }
    
    .feature-category h5 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .pricing-main-title {
        font-size: 2rem;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .plan-name {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .feature::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .feature {
        padding-left: 1.8rem;
    }
    
    .pricing-cell {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .plan-header-content h3 {
        font-size: 1.2rem;
    }
    
    .plan-header-content .plan-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2.2rem;
        margin: 1rem 0;
    }
    
    .pricing-description {
        font-size: 0.85rem;
    }
    
    .pricing-feature-item {
        margin-bottom: 0.75rem;
    }
    
    .mobile-comparison-option {
        padding: 6px 15px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .mobile-feature-list {
        padding: 1.5rem;
    }
    
    .mobile-feature-name {
        font-size: 0.95rem;
    }
    
    .mobile-feature-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 399.98px) {
    .mobile-comparison-option {
        padding: 6px 15px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .mobile-feature-list {
        padding: 1.5rem;
    }
    
    .mobile-feature-name {
        font-size: 0.95rem;
    }
    
    .mobile-feature-value {
        font-size: 0.85rem;
    }
}

/* Make sure all cards have equal height */
@media (min-width: 768px) {
    .pricing-cards-grid {
        align-items: stretch; /* Stretch all cards to same height */
    }
    
    .pricing-card {
        min-height: 600px; /* Minimum height for better alignment */
    }
}

/* Hero Section Responsive Improvements */
@media (max-width: 991.98px) {
    .hero-visual-container {
        display: none !important; /* Hide SVG on tablets and below */
    }
    
    .hero-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* Pricing Toggle Responsive Fixes */
@media (max-width: 767.98px) {
    .pricing-toggle-wrapper {
        margin-bottom: 3rem;
    }
    
    .savings-badge {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
    }
}

/* Container padding adjustments for small screens */
@media (max-width: 575.98px) {
    .pricing-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    .pricing-main-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        margin-bottom: 0.75rem;
    }
    
    .pricing-header {
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .pricing-features {
        padding: 1rem 0.75rem;
    }
    
    .pricing-cta {
        padding: 0 0.75rem 1.25rem;
    }
    
    .enterprise-cta-section {
        padding: 1.5rem 0.75rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
}