/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@200;300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

:root {
    /* Primary colors */
    --primary-color: #3f51b5;
    --primary-dark: #303f9f;
    --primary-light: #7986cb;
    --secondary-color: #4fc3f7;
    --secondary-dark: #0288d1;
    
    /* Gradient colors */
    --gradient-start: #3f51b5;
    --gradient-end: #5c6bc0;
    
    /* Text colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* Background colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #263238;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Border radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Global styles */
body, html {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

/* Button styles */
.btn-primary-gradient {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--text-white);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(63, 81, 181, 0.25);
    margin-right: var(--spacing-md);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 81, 181, 0.35);
    color: var(--text-white);
}

.btn-outline {
    display: inline-block;
    padding: 13px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(63, 81, 181, 0.1);
    transform: translateY(-3px);
    color: var(--primary-dark);
}

/* Hero section styles */
.hero-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #ebf1ff 100%);
    overflow: hidden;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.6;
}

.node1 {
    top: 20%;
    left: 10%;
    animation: float 8s infinite;
}

.node2 {
    top: 40%;
    right: 15%;
    animation: float 12s infinite;
}

.node3 {
    bottom: 30%;
    left: 20%;
    animation: float 10s infinite 2s;
}

.node4 {
    bottom: 20%;
    right: 10%;
    animation: float 14s infinite 1s;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), transparent);
    opacity: 0.3;
    transform-origin: left center;
}

.connection1 {
    top: 22%;
    left: 12%;
    width: 200px;
    transform: rotate(30deg);
    animation: pulse 8s infinite;
}

.connection2 {
    top: 40%;
    left: 25%;
    width: 300px;
    transform: rotate(-15deg);
    animation: pulse 12s infinite 2s;
}

.connection3 {
    bottom: 25%;
    right: 20%;
    width: 150px;
    transform: rotate(45deg);
    animation: pulse 10s infinite 1s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.2;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin-left: auto;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Value proposition section */
.value-prop-section {
    background-color: var(--bg-white);
    padding: var(--spacing-xxl) 0;
}

.value-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 81, 181, 0.1);
    border-radius: 50%;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.value-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* How it works section */
.how-it-works-section {
    background-color: var(--bg-light);
    position: relative;
    padding: var(--spacing-xxl) 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xxl);
    clear: both;
}

.timeline-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg-light);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    left: 0;
    padding-right: var(--spacing-xl);
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
    left: 0;
    padding-left: var(--spacing-xl);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--bg-white);
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
    z-index: -1;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: var(--bg-white);
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
    z-index: -1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
}

.timeline-image {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    height: auto;
}

/* Features section */
.features-section {
    background-color: var(--bg-white);
}

.feature-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary-color);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Visualization section */
.visualization-section {
    background: linear-gradient(135deg, #f8faff 0%, #e2e7f7 100%);
    padding: var(--spacing-xxl) 0;
}

.visualization-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0 0 0;
}

.visualization-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.visualization-features li i {
    color: var(--primary-color);
    margin-right: var(--spacing-md);
    font-size: 1.25rem;
}

.visualization-image-container {
    position: relative;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.visualization-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    transition: transform 0.5s ease;
}

.visualization-image-container:hover .visualization-image {
    transform: scale(1.03);
}

/* Testimonials section */
.testimonials-section {
    background-color: var(--bg-white);
    padding: var(--spacing-xxl) 0;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    height: 300px;
    margin: 0 auto;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xl);
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text-white);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn-primary-gradient {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary-gradient:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
}

.cta-section .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
}

.cta-feature i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Clearfix */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        float: right;
        margin-left: 80px;
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -15px;
        right: auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .value-card, .feature-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .testimonial-slider {
        height: 350px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .btn-primary-gradient, .btn-outline {
        display: block;
        margin: 0 auto var(--spacing-md) auto;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .testimonial-slider {
        height: 400px;
    }
    
    .timeline-content {
        padding: var(--spacing-md);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Pricing page specific styles */
.pricing-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-bottom: 0;
}

.pricing-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ROI Box */
.value-proposition {
    padding: 80px 0;
}

.roi-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.roi-stat {
    padding: 15px;
    text-align: center;
}

.roi-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Pricing Plans */
.pricing-plans {
    padding: 80px 0;
}

.pricing-tabs {
    margin-bottom: 40px;
}

.pricing-tabs .nav-pills {
    display: inline-flex;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
}

.pricing-tabs .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    color: #555;
    position: relative;
}

.pricing-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.save-badge {
    font-size: 0.7rem;
    background: #ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
}

.pricing-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: #777;
}

.custom-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.billed-annually {
    font-size: 0.9rem;
    color: #777;
}

.pricing-card-body {
    padding: 30px 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.features-list li.text-muted {
    color: #999;
}

.features-list li.text-muted i {
    color: #ddd;
}

/* Enterprise Benefits */
.enterprise-benefits {
    padding: 80px 0;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-study-image {
    height: 200px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.metrics {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
}

.accordion-body {
    padding: 5px 25px 25px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 40px;
}

.cta-buttons a {
    margin: 0 10px;
    font-size: 1.1rem;
    padding: 12px 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-feature {
    margin: 0 20px;
    display: flex;
    align-items: center;
    color: white;
    opacity: 0.9;
}

.cta-feature i {
    margin-right: 8px;
}

/* Buttons */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Section styling */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive styles for pricing page */
@media (max-width: 992px) {
    .pricing-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .roi-stat h3 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .case-study-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-hero .hero-title {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-card-header h3 {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons a {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
    
    .cta-feature {
        margin: 10px;
    }
}

@media (max-width: 576px) {
    .pricing-hero {
        padding: 80px 0 60px;
    }
    
    .value-proposition,
    .pricing-plans,
    .enterprise-benefits,
    .case-studies,
    .faq-section {
        padding: 60px 0;
    }
    
    .pricing-tabs .nav-pills {
        width: 100%;
    }
    
    .pricing-tabs .nav-item {
        flex: 1;
    }
    
    .pricing-tabs .nav-link {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
} 