/* Homepage Styles - Premium Modern Design */

/* CSS Variables */
:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    --color-primary: #667eea;
    --color-primary-dark: #5a67d8;
    --color-secondary: #764ba2;
    --color-dark: #1a202c;
    --color-gray-900: #2d3748;
    --color-gray-700: #4a5568;
    --color-gray-500: #718096;
    --color-gray-300: #cbd5e0;
    --color-gray-100: #f7fafc;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 150%;
    background: var(--gradient-primary);
    opacity: 0.03;
    transform: rotate(-15deg);
    z-index: 0;
}

/* Hexagon Pattern Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, transparent 50%, rgba(102, 126, 234, 0.03) 50.5%, rgba(102, 126, 234, 0.03) 60%, transparent 60.5%),
        radial-gradient(circle at 80% 20%, transparent 50%, rgba(118, 75, 162, 0.03) 50.5%, rgba(118, 75, 162, 0.03) 60%, transparent 60.5%),
        radial-gradient(circle at 60% 60%, transparent 50%, rgba(102, 126, 234, 0.02) 50.5%, rgba(102, 126, 234, 0.02) 60%, transparent 60.5%);
    background-size: 300px 300px, 400px 400px, 200px 200px;
    background-position: 0 0, 40px 60px, 130px 270px;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: -10%;
    left: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-dark);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gray-900);
    color: var(--color-gray-900);
}

.btn-glass:hover {
    background: var(--color-gray-900);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--color-gray-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.browser-mockup {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-300);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-300);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
}

.dot:first-child { background: #ef4444; }
.dot:nth-child(2) { background: #f59e0b; }
.dot:nth-child(3) { background: #10b981; }

.browser-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.browser-content {
    position: relative;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-preview {
    width: 100%;
    height: auto;
    display: block;
}

.placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-500);
}

.placeholder-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-gray-700);
    z-index: 2;
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.card-1 {
    top: 20%;
    left: -60px;
}

.card-2 {
    bottom: 20%;
    right: -60px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    position: relative;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-500);
    font-weight: 400;
}

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

.feature-card-wrapper {
    position: relative;
}

.feature-card {
    background: white;
    border: 2px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.feature-highlight {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.feature-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 16px;
    opacity: 0.1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-bg {
    transform: scale(1.1);
    opacity: 0.15;
}

.feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    color: var(--color-primary);
}

.feature-card h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.feature-tag {
    padding: 4px 12px;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border-radius: 100px;
    font-weight: 600;
}

.feature-users {
    color: var(--color-gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Product Section */
.product-section {
    padding: 120px 0;
    background: var(--color-gray-100);
    position: relative;
}

.product-wrapper {
    position: relative;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gray-300);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.feature-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--color-gray-500);
    margin: 0;
}

.product-visual {
    position: relative;
}

.product-mockup {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-300);
}

.product-stats .stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card.premium {
    border: 3px solid var(--color-primary);
    box-shadow: var(--shadow-xl);
}

.pricing-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.05;
    filter: blur(100px);
    z-index: 0;
}

.pricing-header {
    position: relative;
    z-index: 1;
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-100);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--color-gray-500);
    margin-right: 0.25rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--color-gray-500);
    margin-left: 0.5rem;
}

.pricing-tagline {
    color: var(--color-gray-500);
    font-size: 1.125rem;
}

.pricing-features {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem;
}

.feature-group {
    margin-bottom: 2rem;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-group-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-gray-700);
}

.feature i {
    font-size: 1.125rem;
    color: var(--color-primary);
}

.pricing-footer {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem 3rem;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.pricing-testimonial {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-gray-100);
    border-radius: var(--border-radius);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    color: var(--color-dark);
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.cta-stat i {
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .product-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Keep hero stats inline on mobile */
    .hero-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item {
        flex-shrink: 0;
        gap: 0.5rem;
    }
    
    .stat-icon {
        font-size: 1.25rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-header,
    .pricing-features,
    .pricing-footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

/* Smooth Animations */
[data-aos] {
    transition-property: transform, opacity;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1000ms;
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.placeholder-overlay {
    background: linear-gradient(
        90deg,
        var(--color-gray-100) 0%,
        var(--color-gray-50) 50%,
        var(--color-gray-100) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Additional Pricing Styles */
.pricing-badge.consultant {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
}

.btn-outline-gradient::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    z-index: -1;
    border-radius: inherit;
}

.btn-outline-gradient {
    color: #667eea;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-outline-gradient:hover::after {
    background: transparent;
}

/* Team Section Styles */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 19,6 19,14 10,19 1,14 1,6" fill="none" stroke="%23667eea" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.team-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f1f5f9;
    transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
    border-color: #667eea;
    transform: scale(1.05);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Navigation link hover effects */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #667eea !important;
}

/* Enhanced sticky navigation */
.navbar.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Horizontal Pricing Cards */
.pricing-card-horizontal {
    background: white;
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.pricing-card-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.pricing-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.horizontal-card-content {
    padding: 3rem;
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #667eea;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-badge-inline {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

.feature-list-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.feature-item-horizontal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #64748b;
}

.feature-item-horizontal i {
    font-size: 1rem;
}

.horizontal-pricing-box {
    padding: 3rem;
    background: #f8fafc;
    border-left: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horizontal-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.horizontal-price .price-currency {
    font-size: 2rem;
    vertical-align: super;
    margin-right: 0.25rem;
    color: #64748b;
}

.price-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Mobile responsiveness for horizontal cards */
@media (max-width: 991px) {
    .pricing-card-horizontal {
        padding: 0;
    }
    
    .horizontal-card-content {
        padding: 2rem;
    }
    
    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .feature-list-horizontal {
        grid-template-columns: 1fr;
    }
    
    .horizontal-pricing-box {
        margin-top: 2rem;
        padding: 2rem;
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
}

/* Ensure navigation stays visible during scroll */
.navbar {
    transition: all 0.3s ease;
}

/* Add padding to body to account for sticky nav */
body {
    padding-top: 0;
}

/* Tabbed Interface Styles */
.tabs-wrapper {
    margin-top: 3rem;
}

.tab-nav-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.tab-nav-container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.tab-nav-container::-webkit-scrollbar {
    display: none;
}

/* Gradient overlays to indicate scrollable content */
.tab-nav-wrapper::before,
.tab-nav-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-nav-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.tab-nav-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.tab-nav-wrapper.can-scroll-left::before {
    opacity: 1;
}

.tab-nav-wrapper.can-scroll-right::after {
    opacity: 1;
}

/* Arrow navigation buttons */
.tab-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-nav-arrow:hover {
    background: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tab-nav-arrow.left {
    left: -20px;
}

.tab-nav-arrow.right {
    right: -20px;
}

.tab-nav-wrapper.can-scroll-left .tab-nav-arrow.left,
.tab-nav-wrapper.can-scroll-right .tab-nav-arrow.right {
    opacity: 1;
}

.tab-nav-arrow i {
    font-size: 1rem;
    color: #495057;
}

.tab-nav {
    display: flex;
    gap: 0.5rem;
    min-width: fit-content;
    padding: 0 0.5rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #495057;
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-btn.coming-soon {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.tab-content-container {
    position: relative;
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.tab-description {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tab-visual {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-visual .placeholder-overlay {
    height: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 16px;
    border: 2px dashed #dee2e6;
    animation: none;
}

.tab-visual .placeholder-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.tab-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Tab Feature List */
.tabs-wrapper .feature-list {
    margin-top: 2rem;
}

.tabs-wrapper .feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tabs-wrapper .feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.tabs-wrapper .feature-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tabs-wrapper .feature-check i {
    font-size: 0.875rem;
}

.tabs-wrapper .feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #2d3748;
}

.tabs-wrapper .feature-content p {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .tab-nav-wrapper {
        margin-bottom: 2rem;
    }
    
    .tab-nav-container {
        padding: 0.5rem;
    }
    
    .tab-nav {
        gap: 0.25rem;
        padding: 0 0.25rem;
    }
    
    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .tab-btn i {
        display: none;
    }
    
    .tab-title {
        font-size: 1.5rem;
    }
    
    .tab-description {
        font-size: 1rem;
    }
    
    .tab-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    /* Hide arrow navigation on mobile */
    .tab-nav-arrow {
        display: none;
    }
    
    /* Adjust gradient overlays for mobile */
    .tab-nav-wrapper::before,
    .tab-nav-wrapper::after {
        width: 30px;
    }
}

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