/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --success-color: #059669;
    --warning-color: #f59e0b;
    --danger-color: #dc2626;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #64748b 0%, #475569 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal overflow from all elements */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal overflow from background elements */
body {
    overflow-x: hidden !important;
}

/* Hide background elements that extend beyond viewport */
.bg-element-1,
.bg-element-2,
.bg-element-3,
.bg-element-4,
.bg-element-5,
.bg-element-6,
.bg-element-7,
.bg-element-8,
.bg-element-9,
.bg-element-10,
.bg-element-11,
.bg-element-12,
.hero-shape,
.features-hero-shape,
.services-hero-shape,
.solutions-hero-shape,
.pricing-hero-shape,
.about-hero-shape,
.contact-hero-shape {
    display: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(37, 99, 235, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
    background-size: 100px 100px, 60px 60px, 40px 40px;
    pointer-events: none;
    z-index: -1;
    animation: drift 30s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0%, rgba(37, 99, 235, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: -1;
    animation: float-slow 20s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Global Background Design Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-elements::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 50%;
    animation: float-slow 25s ease-in-out infinite;
}

.floating-elements::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08), rgba(59, 130, 246, 0.04));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: drift 20s ease-in-out infinite;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.logo-image {
    height: 80px;
    min-width: 60px;
    object-fit: contain;
    transition: transform 0.2s ease;
    max-width: 300px;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 5px;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    max-height: 100vh;
    padding: 7rem 0 2rem;
    position: relative;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 50%;
    animation: drift 15s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.08), rgba(59, 130, 246, 0.04));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: drift 18s ease-in-out infinite reverse;
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(37, 99, 235, 0.04));
    border-radius: 50%;
    transform: rotate(45deg);
    animation: float-slow 25s ease-in-out infinite;
}

.hero-dots {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-image: 
        radial-gradient(circle, rgba(59, 130, 246, 0.2) 3px, transparent 3px),
        radial-gradient(circle, rgba(37, 99, 235, 0.15) 1px, transparent 1px);
    background-size: 30px 30px, 15px 15px;
    animation: drift 35s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    height: 100%;
    max-height: 85vh;
}

.hero-content-left {
    max-width: 700px;
    padding-right: 1rem;
    padding-top: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), #10b981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.hero-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color); /* Fallback for browsers that don't support gradient text */
}

.highlight-band {
    position: relative;
    color: #1e293b;
    font-weight: 800;
    padding: 0.1rem 0.4rem;
    display: inline-block;
    z-index: 1;
}

.highlight-band::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -0.2rem;
    right: -0.2rem;
    bottom: 20%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 4px;
    transform: rotate(-1.5deg);
    z-index: -1;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* New Hero Structure Styles */
.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.badge-item i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-hero-main {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Hero Image - Dashboard Preview */

/* Enhanced Hero Organization */
.hero-headline {
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-options {
    margin: 0.75rem 0;
    padding: 0.5rem 0;
}

.options-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.options-text i {
    color: var(--accent-color);
    font-size: 1rem;
}

.options-text strong {
    color: var(--text-primary);
}

/* Service Options Preview */
.service-options-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.option-preview {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.option-preview h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.option-preview p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Package Sections */
.package-section {
    padding: 5rem 0;
    background: transparent;
}

.quick-integration {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.complete-solution {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
}

.package-header {
    text-align: center;
    margin-bottom: 3rem;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.package-highlight {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.package-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.package-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-feature p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.package-feature li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 0;
    font-size: 0.95rem;
}

.package-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    min-width: 150px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.flow-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Mobile responsiveness for packages */
@media (max-width: 768px) {
    .service-options-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-header h2 {
        font-size: 2rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* Pricing Packages Preview */
.pricing-packages-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.package-preview-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-preview-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-preview-card .package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.package-preview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 4rem 0;
    align-items: start;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: 100%;
}

.pricing-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-tier.featured {
    border: 2px solid var(--primary-color);
    transform: none;
}

.pricing-tier.featured:hover {
    transform: translateY(-3px);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.tier-header {
    padding: 1.5rem 2rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-radius: 1.5rem 1.5rem 0 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tier-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-component {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
}

.price-component.monthly {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.price-label {
    font-size: 0.95rem;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
}

.tier-features {
    padding: 1.5rem 2rem;
    flex: 1;
    overflow-y: auto;
    max-height: 60vh;
}

.feature-section {
    margin-bottom: 1.5rem;
    background: rgba(248, 250, 252, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    border-left: 3px solid rgba(37, 99, 235, 0.2);
}

.feature-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.feature-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.25rem 0;
}

.feature-section li i {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.setup-process {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 3px solid var(--primary-color);
}

.setup-process h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.3;
}

.tier-cta {
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(248, 250, 252, 0.7);
    border-radius: 0 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    margin-top: auto;
}

.tier-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.included-features {
    margin-top: 3rem;
    text-align: center;
}

.included-features h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.feature-item span {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Mobile responsiveness for pricing */
@media (max-width: 768px) {
    .pricing-packages-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .pricing-tier {
        margin-bottom: 2rem;
    }
    
    .pricing-tier.featured {
        transform: none;
    }
    
    .tier-features {
        max-height: none;
        overflow-y: visible;
        padding: 1rem;
    }
    
    .feature-section {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .feature-section h4 {
        font-size: 1rem;
    }
    
    .feature-section li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Solution Paths */
.solution-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.path-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.path-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.path-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.path-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.path-solution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.path-solution i {
    font-size: 0.875rem;
}

/* Mobile responsiveness for solution paths */
@media (max-width: 768px) {
    .solution-paths {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Contact Form Package Selection */
.package-selection {
    margin: 2rem 0;
}

.package-selection label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: block;
}

.package-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.package-option {
    position: relative;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.package-label {
    display: block;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.package-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.package-option input[type="radio"]:checked + .package-label {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.package-content {
    text-align: center;
}

.package-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.package-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.package-header strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.package-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.package-price {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

/* Mobile responsiveness for package selection */
@media (max-width: 768px) {
    .package-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-label {
        padding: 1rem;
    }
    
    .package-header strong {
        font-size: 1rem;
    }
}

/* Included Notice for Complete Solution */
.included-notice {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 0 0 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.included-notice h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.included-notice p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Feature Comparison Section - New Organized Layout */
.feature-comparison {
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 2rem;
    clear: both;
    position: relative;
}

.feature-comparison h3 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4rem;
}

/* Common Features Section */
.common-features-section {
    margin-bottom: 5rem;
}

.common-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-radius: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.common-header h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.common-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

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

.common-feature-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.common-feature-category:hover {
    transform: translateY(-3px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.common-feature-category h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.common-feature-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.common-feature-category li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(248, 250, 252, 0.8);
}

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

/* Package Comparison */
.package-comparison {
    margin-top: 4rem;
}

.package-comparison h4 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.package-comparison-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.integration-package {
    border-left: 4px solid var(--primary-color);
}

.complete-package {
    border-left: 4px solid var(--accent-color);
    border: 2px solid var(--accent-color);
}

.popular-ribbon {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 0.75rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(248, 250, 252, 0.8);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.complete-package .package-icon {
    background: linear-gradient(135deg, var(--accent-color), #34d399);
}

.package-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.package-details {
    text-align: left;
}

.perfect-for {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.7);
    border-radius: 1rem;
    border-left: 3px solid var(--primary-color);
}

.complete-package .perfect-for {
    border-left-color: var(--accent-color);
}

.perfect-for h6 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.perfect-for p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

.unique-benefits {
    margin-bottom: 2rem;
}

.unique-benefits h6 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.unique-benefits ul {
    list-style: none;
    padding: 0;
}

.unique-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid rgba(248, 250, 252, 0.8);
    transition: background 0.2s ease;
}

.unique-benefits li:hover {
    background: rgba(255, 255, 255, 1);
}

.unique-benefits .emoji {
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.package-pricing {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 1rem;
    border: 2px solid rgba(37, 99, 235, 0.2);
    margin-top: 1rem;
}

.featured-pricing {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(16, 185, 129, 0.2);
}

.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.featured-pricing .price-large {
    color: var(--accent-color);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 0.25rem;
}

.price-divider {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 0 0.5rem;
    font-weight: 600;
}

/* Decision Helper */
.decision-helper {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
}

.decision-helper h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.helper-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.helper-option {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.helper-option h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.helper-option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.helper-option li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.helper-option li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.helper-cta {
    margin-top: 2rem;
}

.helper-cta p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Mobile responsiveness for new organized comparison */
@media (max-width: 768px) {
    .feature-comparison {
        padding: 2rem 1rem;
        margin: 2rem 0;
        border-radius: 1rem;
    }
    
    .feature-comparison h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .common-features-section {
        margin-bottom: 3rem;
    }
    
    .common-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .common-header h4 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .common-header p {
        font-size: 1rem;
    }
    
    .common-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .common-feature-category {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .common-feature-category h5 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-comparison-card {
        padding: 2rem;
    }
    
    .package-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .package-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .package-header h5 {
        font-size: 1.25rem;
    }
    
    .perfect-for {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .perfect-for h6,
    .unique-benefits h6 {
        font-size: 1rem;
    }
    
    .unique-benefits li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .package-pricing {
        padding: 1.25rem;
    }
    
    .price-large {
        font-size: 1.75rem;
    }
    
    .helper-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .helper-option {
        padding: 1.25rem;
    }
}

/* Section spacing fixes */
.cost-comparison {
    margin-bottom: 4rem;
}

.roi-section {
    margin-top: 4rem;
    clear: both;
}

.hero-problem {
    text-align: left;
    margin-bottom: 0.4rem;
}

.problem-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

/* Hero Bottom Section - Centralized badges */
.hero-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.value-points {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.4rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.03));
    border-radius: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.08);
    max-width: fit-content;
}

.value-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding: 0.4rem 0.25rem;
    background: white;
    border-radius: 0.4rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}

.value-point:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    color: white;
    font-size: 0.75rem;
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.value-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.75rem;
    line-height: 1.2;
}

.value-desc {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

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

.cta-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 140px;
    border-radius: 0.5rem;
}

.btn-hero span {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.btn-hero small {
    font-size: 0.6rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-hero i {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.hero-guarantees {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    max-width: fit-content;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    background: white;
    border-radius: 0.3rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.guarantee-item i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.feature-item i {
    color: var(--accent-color);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.dashboard-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    max-width: 450px;
    width: 100%;
    max-height: 60vh;
    margin-left: auto;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.browser-frame {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    height: auto;
    max-height: 60vh;
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-url {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color);
}

.demo-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0 0 1rem 1rem;
    display: block;
}

.preview-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-bubble {
    position: absolute;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
}

.feature-bubble i {
    color: var(--primary-color);
}

.feature-bubble.top-left {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.feature-bubble.top-right {
    top: 30%;
    right: -10%;
    animation-delay: 1s;
}

.feature-bubble.bottom-left {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

.feature-bubble.bottom-right {
    bottom: 20%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.demo-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-features {
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.demo-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.demo-feature p {
    color: var(--text-secondary);
    margin: 0;
}

.demo-visual {
    position: relative;
}

.demo-devices {
    position: relative;
}

.device {
    position: relative;
}

.device.desktop {
    width: 100%;
}

.device.mobile {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    transform: rotate(15deg);
}

.device-frame {
    background: #1f2937;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.device.mobile .device-frame {
    border-radius: 1.5rem;
    padding: 0.75rem 0.5rem;
}

.device-screen {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

.device.mobile .device-screen {
    border-radius: 1rem;
}

.demo-preview {
    padding: 1rem;
    min-height: 300px;
}

.preview-header {
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.preview-content {
    display: flex;
    gap: 1rem;
}

.preview-sidebar {
    width: 60px;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.preview-main {
    flex: 1;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-card {
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    opacity: 0.8;
}

.preview-chart {
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.mobile-preview {
    padding: 0.5rem;
    min-height: 200px;
}

.mobile-header {
    height: 30px;
    background: var(--primary-color);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-card {
    height: 30px;
    background: var(--bg-secondary);
    border-radius: 0.25rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.pricing-benefits {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
}

.pricing-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.benefit i {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-light);
    width: 30px;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #cbd5e1;
    margin: 0;
}

.contact-benefits h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-brand .brand i {
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

/* Footer Logo */
.footer-logo {
    height: 60px;
    width: auto;
    min-width: 45px;
    max-width: 200px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-brand .logo-fallback {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.footer-brand .logo-fallback i {
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 0 2rem !important;
        min-height: 100vh !important;
        height: auto !important;
        overflow: visible !important;
        display: flex !important;
        align-items: flex-start !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        display: flex !important;
        flex-direction: column !important;
        padding: 0;
        max-height: none;
        overflow: visible;
    }
    
    /* Make hero image mobile responsive and compact */
    .hero-image {
        order: 1;
        margin: 0.5rem 0;
        max-height: 30vh;
        overflow: hidden;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .dashboard-preview {
        max-width: 95% !important;
        margin: 0 auto;
        transform: scale(0.85);
        transform-origin: center;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .browser-frame {
        max-width: 100% !important;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .demo-screenshot {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 25vh !important;
        object-fit: contain;
    }
    
    .preview-features {
        display: none !important; /* Hide feature bubbles on mobile for cleaner look */
    }
    
    .hero-content-left {
        text-align: center !important;
        max-width: 100%;
        padding: 0.5rem !important;
        order: 2; /* Show content after image */
        flex: 1;
        overflow: hidden;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 0 !important;
    }
    
    .hero-main-title {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
        font-weight: 800;
        color: var(--text-primary);
        padding-top: 0 !important;
        text-align: center !important;
        max-width: 92% !important;
    }
    
    .hero-options {
        margin: 1rem 0 !important;
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        max-width: 92% !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .options-text {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
        text-align: center !important;
        line-height: 1.5;
        width: 100% !important;
    }
    
    .hero-problem {
        margin: 1rem 0 !important;
        text-align: center;
        max-width: 92% !important;
        width: 100% !important;
    }
    
    .problem-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.65rem !important;
        color: #dc2626;
        font-weight: 700;
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.85rem !important;
        color: var(--text-secondary);
        text-align: center !important;
        max-width: 92% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-badges {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.4rem !important;
        flex-wrap: wrap !important;
        margin: 0.75rem 0 !important;
        width: 100% !important;
        overflow-x: visible !important;
    }
    
    .badge-item {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    .hero-actions {
        margin: 1.25rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 0.65rem !important;
    }
    
    .hero-actions .btn {
        width: 90% !important;
        max-width: 320px;
        min-height: 50px !important;
        font-size: 1rem;
        padding: 0.75rem 1.5rem !important;
        margin-bottom: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
    }
    
    .hero-tagline {
        text-align: left;
    }
    
    .hero-problem {
        text-align: left;
    }
    
    .hero-main-title {
        font-size: 1.75rem !important;
        font-weight: 800;
        line-height: 1.2 !important;
        margin-bottom: 1rem;
    }
    
    .hero-badges {
        justify-content: flex-start;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-hero-main {
        width: 100%;
        max-width: 300px;
    }
    

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

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .demo-text h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        min-width: 280px;
    }

    .hero-guarantees {
        gap: 1rem;
    }

    .guarantee-item {
        font-size: 0.75rem;
    }

    .problem-title {
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        text-align: left;
    }
    
    .hero-problem {
        text-align: left;
    }

    .value-points {
        gap: 0.3rem;
        padding: 0.5rem;
    }

    .value-point {
        padding: 0.4rem 0.2rem;
    }

    .value-icon {
        width: 24px;
        height: 24px;
    }

    .value-icon i {
        font-size: 0.65rem;
    }

    .value-title {
        font-size: 0.6rem;
    }

    .value-desc {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-main-title {
        font-size: 1.5rem !important;
        font-weight: 800;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .feature-bubble {
        display: none;
    }

    .dashboard-preview {
        max-width: 100%;
        transform: none;
        max-height: 40vh;
        margin-left: 0;
    }

    .dashboard-preview:hover {
        transform: none;
    }

    .demo-screenshot {
        height: 100%;
        max-height: 35vh;
        object-fit: cover;
    }

    .hero-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-bottom-section {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .value-points {
        flex-direction: column;
        padding: 0.4rem;
        gap: 0.25rem;
        width: 100%;
        max-width: 280px;
    }

    .value-point {
        flex-direction: row;
        text-align: left;
        padding: 0.4rem 0.5rem;
        gap: 0.5rem;
        min-width: auto;
    }

    .value-content {
        align-items: flex-start;
    }

    .value-icon {
        width: 18px;
        height: 18px;
    }

    .value-icon i {
        font-size: 0.55rem;
    }

    .value-title {
        font-size: 0.65rem;
    }

    .value-desc {
        font-size: 0.55rem;
    }

    .btn-hero {
        min-width: 100%;
        max-width: 280px;
        padding: 0.875rem 1rem;
    }

    .btn-hero span {
        font-size: 0.8rem;
    }

    .btn-hero small {
        font-size: 0.55rem;
    }

    .hero-guarantees {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.3rem;
        width: 100%;
        max-width: 280px;
    }

    .guarantee-item {
        font-size: 0.6rem;
        padding: 0.25rem 0.4rem;
        justify-content: center;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: rotate(15deg) translateY(0px);
    }
    50% {
        transform: rotate(15deg) translateY(-20px);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    33% {
        transform: translateX(30px) translateY(-30px);
    }
    66% {
        transform: translateX(-20px) translateY(20px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Additional Background Elements */
.bg-element-1 {
    position: fixed;
    top: 25%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 50%;
    animation: pulse-glow 8s ease-in-out infinite;
    z-index: -1;
}

.bg-element-2 {
    position: fixed;
    top: 45%;
    left: 12%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(96, 165, 250, 0.03));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: drift 18s ease-in-out infinite reverse;
    z-index: -1;
}

.bg-element-3 {
    position: fixed;
    top: 70%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.08);
    transform: rotate(45deg);
    animation: rotate-slow 30s linear infinite;
    z-index: -1;
}

.bg-element-4 {
    position: fixed;
    top: 35%;
    left: 3%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.07), rgba(59, 130, 246, 0.04));
    border-radius: 35% 65% 65% 35% / 25% 25% 75% 75%;
    animation: float-slow 22s ease-in-out infinite;
    z-index: -1;
}

.bg-element-5 {
    position: fixed;
    top: 80%;
    left: 20%;
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 50%;
    animation: pulse-glow 12s ease-in-out infinite;
    z-index: -1;
}

.bg-element-6 {
    position: fixed;
    top: 10%;
    right: 30%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation: drift 16s ease-in-out infinite;
    z-index: -1;
}

.bg-element-7 {
    position: fixed;
    top: 55%;
    right: 25%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(96, 165, 250, 0.06);
    animation: float-slow 20s ease-in-out infinite;
    z-index: -1;
}

.bg-element-8 {
    position: fixed;
    top: 15%;
    left: 25%;
    width: 110px;
    height: 110px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.04), rgba(59, 130, 246, 0.06));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    animation: drift 14s ease-in-out infinite;
    z-index: -1;
}

.bg-element-9 {
    position: fixed;
    top: 85%;
    right: 35%;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: pulse-glow 10s ease-in-out infinite;
    z-index: -1;
}

.bg-element-10 {
    position: fixed;
    top: 30%;
    left: 35%;
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.3), transparent);
    animation: drift 25s ease-in-out infinite;
    z-index: -1;
}

.bg-element-11 {
    position: fixed;
    top: 65%;
    left: 8%;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    animation: float-slow 18s ease-in-out infinite;
    z-index: -1;
}

.bg-element-12 {
    position: fixed;
    top: 20%;
    right: 5%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 45px solid rgba(59, 130, 246, 0.05);
    animation: rotate-slow 40s linear infinite;
    z-index: -1;
}

/* Subtle Grid and Line Elements */
.bg-grid-1 {
    position: fixed;
    top: 40%;
    right: 10%;
    width: 80px;
    height: 80px;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 10px 10px;
    animation: drift 28s ease-in-out infinite;
    z-index: -1;
}

.bg-grid-2 {
    position: fixed;
    top: 75%;
    left: 30%;
    width: 60px;
    height: 60px;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 8px 8px;
    animation: pulse-glow 15s ease-in-out infinite;
    z-index: -1;
}

.bg-line-1 {
    position: fixed;
    top: 50%;
    left: 5%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
    transform: rotate(25deg);
    animation: float-slow 24s ease-in-out infinite;
    z-index: -1;
}

.bg-line-2 {
    position: fixed;
    top: 25%;
    right: 15%;
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transform: rotate(-15deg);
    animation: drift 20s ease-in-out infinite reverse;
    z-index: -1;
}

/* Medical-Themed Background Elements */
.medical-cross-1 {
    position: fixed;
    top: 30%;
    right: 20%;
    width: 40px;
    height: 40px;
    z-index: -1;
    animation: pulse-glow 12s ease-in-out infinite;
}

.medical-cross-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 3px;
}

.medical-cross-1::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 6px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 3px;
}

.medical-cross-2 {
    position: fixed;
    top: 75%;
    left: 15%;
    width: 30px;
    height: 30px;
    z-index: -1;
    animation: drift 16s ease-in-out infinite;
}

.medical-cross-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 30px;
    background: rgba(96, 165, 250, 0.12);
    border-radius: 2px;
}

.medical-cross-2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 4px;
    background: rgba(96, 165, 250, 0.12);
    border-radius: 2px;
}

/* Heartbeat/EKG Line Pattern */
.heartbeat-line {
    position: fixed;
    top: 40%;
    left: 10%;
    width: 200px;
    height: 2px;
    background: rgba(59, 130, 246, 0.2);
    z-index: -1;
    animation: float-slow 20s ease-in-out infinite;
}

.heartbeat-line::before {
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid rgba(59, 130, 246, 0.15);
    animation: pulse-glow 3s ease-in-out infinite;
}

.heartbeat-line::after {
    content: '';
    position: absolute;
    left: 120px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid rgba(96, 165, 250, 0.15);
    animation: pulse-glow 3s ease-in-out infinite 1.5s;
}

/* Medical Pill Shape */
.medical-pill {
    position: fixed;
    top: 60%;
    right: 12%;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
    border-radius: 30px;
    animation: drift 18s ease-in-out infinite;
    z-index: -1;
}

.medical-pill::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(-50%);
}

/* Stethoscope Shape */
.stethoscope {
    position: fixed;
    top: 50%;
    left: 25%;
    width: 80px;
    height: 80px;
    z-index: -1;
    animation: float-slow 25s ease-in-out infinite;
}

.stethoscope::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 35px;
    width: 10px;
    height: 10px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.stethoscope::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
}

/* DNA Helix Pattern */
.dna-helix {
    position: fixed;
    top: 15%;
    left: 40%;
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        transparent 25%, 
        rgba(96, 165, 250, 0.12) 50%, 
        transparent 75%, 
        rgba(37, 99, 235, 0.1) 100%);
    animation: drift 22s ease-in-out infinite;
    z-index: -1;
}

.dna-helix::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 20px;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(96, 165, 250, 0.08) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: rotate-slow 15s linear infinite;
}

/* Medical Molecule Structure */
.molecule {
    position: fixed;
    top: 70%;
    right: 30%;
    width: 100px;
    height: 100px;
    z-index: -1;
    animation: drift 20s ease-in-out infinite;
}

.molecule::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    box-shadow: 
        40px 0 0 rgba(96, 165, 250, 0.12),
        20px 30px 0 rgba(37, 99, 235, 0.1),
        60px 30px 0 rgba(59, 130, 246, 0.12);
}

.molecule::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 2px;
    background: rgba(96, 165, 250, 0.08);
    transform: rotate(35deg);
    box-shadow: 
        15px 25px 0 0 rgba(96, 165, 250, 0.08),
        30px 0px 0 0 rgba(96, 165, 250, 0.08);
}

/* Medical Syringe */
.medical-syringe {
    position: fixed;
    top: 80%;
    right: 5%;
    width: 80px;
    height: 12px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.12) 0%, 
        rgba(96, 165, 250, 0.08) 70%, 
        rgba(37, 99, 235, 0.1) 100%);
    border-radius: 6px;
    animation: float-slow 18s ease-in-out infinite;
    z-index: -1;
}

.medical-syringe::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid rgba(59, 130, 246, 0.1);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.medical-syringe::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 8px;
    background: rgba(96, 165, 250, 0.15);
}

/* Medical Heart */
.medical-heart {
    position: fixed;
    top: 18%;
    right: 40%;
    width: 50px;
    height: 50px;
    z-index: -1;
    animation: pulse-glow 8s ease-in-out infinite;
}

.medical-heart::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 25px;
    width: 26px;
    height: 40px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 25px 25px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.medical-heart::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 25px;
    width: 26px;
    height: 40px;
    background: rgba(96, 165, 250, 0.08);
    border-radius: 25px 25px 0 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* Medical Calendar/Appointment */
.medical-calendar {
    position: fixed;
    top: 35%;
    right: 8%;
    width: 40px;
    height: 45px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 4px;
    animation: drift 24s ease-in-out infinite;
    z-index: -1;
}

.medical-calendar::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    width: 4px;
    height: 12px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 2px;
    box-shadow: 20px 0 0 rgba(59, 130, 246, 0.12);
}

.medical-calendar::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 8px;
    width: 24px;
    height: 2px;
    background: rgba(96, 165, 250, 0.1);
    box-shadow: 
        0 8px 0 rgba(96, 165, 250, 0.08),
        0 16px 0 rgba(96, 165, 250, 0.06);
}

/* Medical Thermometer */
.thermometer {
    position: fixed;
    top: 85%;
    left: 35%;
    width: 6px;
    height: 80px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.08) 20%, 
        rgba(96, 165, 250, 0.12) 80%, 
        rgba(37, 99, 235, 0.15) 100%);
    border-radius: 3px;
    animation: pulse-glow 10s ease-in-out infinite;
    z-index: -1;
}

.thermometer::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
}

/* Features Page Styles */

/* Features Hero Section */
.features-hero {
    padding: 8rem 0 4rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.features-hero-shape {
    position: absolute;
    top: -20%;
    right: -15%;
    width: 40%;
    height: 140%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.03), rgba(124, 58, 237, 0.02));
    border-radius: 50%;
    animation: float-slow 25s ease-in-out infinite;
}

.features-hero-dots {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 30%;
    height: 60%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    animation: drift 30s ease-in-out infinite;
}

.features-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--primary-color);
}

.hero-badge i {
    color: var(--primary-color);
}

.features-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.features-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.features-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.features-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.features-promise i {
    color: #10b981;
    font-size: 1rem;
}

/* Admin Screenshots Section */
.admin-screenshots {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
    position: relative;
}

.admin-panel-showcase {
    margin-top: 4rem;
}

.admin-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.admin-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admin-tab:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.admin-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.admin-tab i {
    font-size: 1rem;
}

.admin-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.admin-panel.active {
    display: block;
}

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

/* Updated Admin Panel Layout */
.admin-description-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-description-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.admin-description-header p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.admin-screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.screenshot-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-label {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.screenshot-label h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.screenshot-label p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.admin-features-summary {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-features-summary .feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Legacy container for backwards compatibility */
.admin-screenshot-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.admin-screenshot {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(248, 250, 252, 0.8);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-family: monospace;
}

.admin-description {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.admin-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-highlights i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
}

.admin-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.admin-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.admin-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Mobile Responsiveness for Admin Screenshots */
@media (max-width: 968px) {
    .admin-screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .admin-screenshot-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .admin-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .admin-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .admin-description-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .admin-features-summary {
        padding: 1.5rem;
    }
    
    .admin-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .admin-screenshots {
        padding: 4rem 0;
    }
    
    .admin-tabs {
        padding: 0.75rem;
        gap: 0.25rem;
    }
    
    .admin-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .admin-tab i {
        font-size: 0.9rem;
    }
    
    .admin-description-header h3 {
        font-size: 1.5rem;
    }
    
    .admin-description-header p {
        font-size: 1rem;
    }
    
    .admin-description-header {
        padding: 1.25rem;
    }
    
    .admin-screenshots-grid {
        gap: 1.5rem;
    }
    
    .screenshot-label h4 {
        font-size: 1.125rem;
    }
    
    .screenshot-label p {
        font-size: 0.9rem;
    }
    
    .admin-features-summary .feature-highlights {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-highlights li {
        font-size: 0.9rem;
    }
}

/* Features Core Section */
.features-core {
    padding: 8rem 0;
    background: transparent;
    position: relative;
}

.features-core::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: drift 25s ease-in-out infinite;
    z-index: -1;
}

.features-core::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.02) 0%, transparent 60%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-slow 30s ease-in-out infinite;
    z-index: -1;
}

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

.feature-card-horizontal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-title p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.feature-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.detail-item:hover {
    transform: translateX(4px);
    background: rgba(79, 70, 229, 0.1);
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Advanced Features Horizontal */
.features-advanced {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

/* Admin Modules Grid */
.admin-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.admin-module-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.admin-module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.admin-module-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.module-features .feature-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.admin-module-card:hover .module-features .feature-tag {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.features-advanced::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%;
    animation: pulse-glow 20s ease-in-out infinite;
    z-index: -1;
}

.features-advanced::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.02) 0%, transparent 60%);
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation: drift 35s ease-in-out infinite reverse;
    z-index: -1;
}

.advanced-features-horizontal {
    margin-top: 4rem;
}

.advanced-feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.advanced-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.advanced-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.advanced-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.advanced-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.advanced-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* Security Section Horizontal */
.features-security {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.features-security::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
    border-radius: 50% 50% 80% 20% / 50% 50% 50% 50%;
    animation: float-slow 28s ease-in-out infinite;
    z-index: -1;
}

.features-security::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: -8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, transparent 65%);
    border-radius: 80% 20% 40% 60% / 20% 80% 40% 60%;
    animation: drift 32s ease-in-out infinite;
    z-index: -1;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.security-horizontal-grid {
    margin-top: 4rem;
}

.security-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-row:last-child {
    margin-bottom: 0;
}

.security-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.security-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.security-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.security-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-card-modern p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.security-badge-small {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.security-guarantee {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content i {
    color: #10b981;
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guarantee-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile Responsive for Features Page */
@media (max-width: 768px) {
    .features-main-title {
        font-size: 2.5rem;
    }
    
    .features-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-horizontal-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-details-grid {
        grid-template-columns: 1fr;
    }
    
    .advanced-feature-row,
    .security-row {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content i {
        font-size: 2rem;
    }
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
    padding: 8rem 0 4rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.services-hero-shape {
    position: absolute;
    top: -25%;
    left: -10%;
    width: 45%;
    height: 150%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), rgba(124, 58, 237, 0.02));
    border-radius: 50%;
    animation: float-slow 30s ease-in-out infinite;
}

.services-hero-dots {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 25%;
    height: 50%;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(59, 130, 246, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 35px 35px, 18px 18px;
    animation: drift 35s ease-in-out infinite;
}

.services-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.services-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.services-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.services-promise i {
    color: #10b981;
    font-size: 1rem;
}

/* Services Core Section */
.services-core {
    padding: 8rem 0;
    background: transparent;
    position: relative;
}

.services-core::before {
    content: '';
    position: absolute;
    top: 25%;
    right: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    border-radius: 45% 55% 65% 35% / 35% 65% 35% 65%;
    animation: drift 28s ease-in-out infinite;
    z-index: -1;
}

.services-core::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -12%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.025) 0%, transparent 65%);
    border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    animation: float-slow 32s ease-in-out infinite;
    z-index: -1;
}

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

.service-card-horizontal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-title p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-feature-item:hover {
    transform: translateX(4px);
    background: rgba(16, 185, 129, 0.1);
}

.service-feature-item i {
    color: #10b981;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Services Packages Section */
.services-packages {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.services-packages::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    border-radius: 80% 20% 60% 40% / 40% 60% 20% 80%;
    animation: pulse-glow 25s ease-in-out infinite;
    z-index: -1;
}

.services-packages::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.02) 0%, transparent 60%);
    border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
    animation: drift 38s ease-in-out infinite reverse;
    z-index: -1;
}

.packages-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.package-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card-modern.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-header-modern {
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.package-icon.featured-icon {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
}

.package-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.package-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.package-tag {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-package {
    width: 100%;
    margin-top: auto;
}

/* Services Benefits Section */
.services-benefits {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.services-benefits::before {
    content: '';
    position: absolute;
    top: 35%;
    right: -5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
    border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
    animation: float-slow 26s ease-in-out infinite;
    z-index: -1;
}

.services-benefits::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.025) 0%, transparent 65%);
    border-radius: 50% 50% 80% 20% / 20% 80% 50% 50%;
    animation: drift 30s ease-in-out infinite;
    z-index: -1;
}

.benefits-horizontal-grid {
    margin-top: 4rem;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefits-row:last-child {
    margin-bottom: 0;
}

.benefit-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card-modern p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive for Services Page */
@media (max-width: 768px) {
    .services-main-title {
        font-size: 2.5rem;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-horizontal-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-horizontal-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card-modern.featured {
        transform: none;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
    }
}

/* Solutions Page Styles */

/* Solutions Hero Section */
.solutions-hero {
    padding: 8rem 0 4rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.solutions-hero-shape {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 50%;
    height: 160%;
    background: linear-gradient(45deg, rgba(244, 63, 94, 0.03), rgba(236, 72, 153, 0.02));
    border-radius: 50%;
    animation: float-slow 35s ease-in-out infinite;
}

.solutions-hero-dots {
    position: absolute;
    top: 25%;
    left: 8%;
    width: 30%;
    height: 60%;
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(244, 63, 94, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(236, 72, 153, 0.03) 1px, transparent 1px);
    background-size: 38px 38px, 19px 19px;
    animation: drift 40s ease-in-out infinite;
}

.solutions-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.solutions-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.solutions-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.solutions-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.solutions-promise i {
    color: #10b981;
    font-size: 1rem;
}

/* Solutions Problems Section */
.solutions-problems {
    padding: 8rem 0;
    background: transparent;
    position: relative;
}

.solutions-problems::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -12%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.03) 0%, transparent 70%);
    border-radius: 55% 45% 70% 30% / 45% 55% 30% 70%;
    animation: drift 30s ease-in-out infinite;
    z-index: -1;
}

.solutions-problems::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.025) 0%, transparent 65%);
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    animation: float-slow 34s ease-in-out infinite;
    z-index: -1;
}

.problems-horizontal-grid {
    margin-top: 4rem;
}

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

.problems-row:last-child {
    margin-bottom: 0;
}

.problem-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.problem-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.problem-card-modern.urgent {
    border-left: 4px solid #ef4444;
}

.problem-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.problem-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-stat-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.problem-card-modern p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Solutions Clinic Types Section */
.solutions-clinic-types {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.solutions-clinic-types::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 70%);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    animation: pulse-glow 28s ease-in-out infinite;
    z-index: -1;
}

.solutions-clinic-types::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.025) 0%, transparent 60%);
    border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
    animation: drift 42s ease-in-out infinite reverse;
    z-index: -1;
}

.clinic-types-horizontal-grid {
    margin-top: 4rem;
}

.clinic-types-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.clinic-types-row:last-child {
    margin-bottom: 0;
}

.clinic-type-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.clinic-type-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.clinic-type-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.clinic-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.clinic-type-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.clinic-type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.clinic-feature-tag {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    color: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.clinic-type-results {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.clinic-result {
    text-align: center;
    flex: 1;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsive for Solutions Page */
@media (max-width: 768px) {
    .solutions-main-title {
        font-size: 2.5rem;
    }
    
    .solutions-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solutions-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .problems-row,
    .clinic-types-row {
        grid-template-columns: 1fr;
    }
    
    .clinic-type-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .clinic-type-results {
        justify-content: center;
        gap: 2rem;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 8rem 0 4rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.pricing-hero-shape {
    position: absolute;
    top: -25%;
    left: -15%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03), rgba(16, 185, 129, 0.02));
    border-radius: 50%;
    animation: float-slow 32s ease-in-out infinite;
}

.pricing-hero-dots {
    position: absolute;
    top: 20%;
    right: 12%;
    width: 35%;
    height: 65%;
    background-image: 
        radial-gradient(circle at 35% 65%, rgba(34, 197, 94, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 65% 35%, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 42px 42px, 21px 21px;
    animation: drift 38s ease-in-out infinite;
}

.pricing-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pricing-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-promise i {
    color: #10b981;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.about-hero-shape {
    position: absolute;
    top: -35%;
    right: -25%;
    width: 55%;
    height: 170%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.03), rgba(37, 99, 235, 0.02));
    border-radius: 50%;
    animation: float-slow 36s ease-in-out infinite;
}

.about-hero-dots {
    position: absolute;
    top: 30%;
    left: 5%;
    width: 40%;
    height: 55%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    animation: drift 42s ease-in-out infinite;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.about-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-promise i {
    color: #10b981;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 4rem;
    background: transparent;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

.contact-hero-shape {
    position: absolute;
    top: -20%;
    left: -25%;
    width: 45%;
    height: 140%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03), rgba(139, 92, 246, 0.02));
    border-radius: 50%;
    animation: float-slow 33s ease-in-out infinite;
}

.contact-hero-dots {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 35%;
    height: 60%;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(168, 85, 247, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 44px 44px, 22px 22px;
    animation: drift 39s ease-in-out infinite;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-main-title {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-promise i {
    color: #10b981;
    font-size: 1rem;
}

/* Mobile responsive for all pages */
@media (max-width: 768px) {
    .about-main-title,
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .about-stats,
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-hero-buttons,
    .contact-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Problem/Solution Section */
.problem-solution {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.03), rgba(37, 99, 235, 0.02));
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: drift 20s ease-in-out infinite;
    z-index: -1;
}

.problem-solution::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -3%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.04), rgba(59, 130, 246, 0.02));
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation: float-slow 22s ease-in-out infinite reverse;
    z-index: -1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.comparison-grid::before {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    color: var(--text-secondary);
    font-size: 4rem;
    font-weight: 300;
    z-index: 3;
    opacity: 0.6;
}

.before-card, .after-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.before-card {
    border-left: 4px solid #dc2626;
}

.before-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.after-card {
    border-left: 4px solid var(--accent-color);
}

.after-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.before-card .card-header i {
    color: #dc2626;
}

.after-card .card-header i {
    color: var(--accent-color);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li, .solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    transition: all 0.2s ease;
}

.problem-list li:hover, .solution-list li:hover {
    transform: translateX(4px);
}

.problem-list li i {
    color: #dc2626;
    margin-top: 0.125rem;
}

.solution-list li i {
    color: var(--accent-color);
    margin-top: 0.125rem;
}

/* Unified Management Section */
.unified-management {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.unified-management::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 2%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), transparent);
    border-radius: 50%;
    animation: drift 17s ease-in-out infinite;
    z-index: -1;
}

.unified-management::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 3%;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(96, 165, 250, 0.02));
    border-radius: 35% 65% 65% 35% / 25% 25% 75% 75%;
    animation: float-slow 19s ease-in-out infinite;
    z-index: -1;
}

.management-flow {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-step {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.flow-step.highlighted {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.flow-step.highlighted .step-icon {
    background: rgba(255, 255, 255, 0.2);
}

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

.flow-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-step p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.flow-step.highlighted p {
    color: rgba(255, 255, 255, 0.9);
}

.flow-step ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.flow-step li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.flow-step.highlighted li {
    color: rgba(255, 255, 255, 0.8);
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
    font-size: 3rem;
    color: var(--text-secondary);
    opacity: 0.6;
    font-weight: 300;
}

.flow-arrow:first-of-type {
    transform: rotate(-5deg);
}

.flow-arrow:last-of-type {
    transform: rotate(5deg);
}

/* Features Preview Section */
.features-preview {
    padding: 6rem 0;
    background: transparent;
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: transparent;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.clinic-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.story-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.story-header span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.story-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.story-stats .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: transparent;
    color: var(--text-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cta-guarantee i {
    color: var(--accent-color);
}

/* Navigation active state */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Hide some background elements on mobile for performance */
@media (max-width: 768px) {
    .bg-element-7, .bg-element-10, .bg-element-11, .bg-element-12,
    .bg-grid-1, .bg-grid-2, .bg-line-1, .bg-line-2,
    .molecule, .medical-syringe, .medical-calendar, .dna-helix,
    .thermometer {
        display: none;
    }
    
    .bg-element-1, .bg-element-2, .bg-element-3, 
    .bg-element-4, .bg-element-5, .bg-element-6,
    .bg-element-8, .bg-element-9,
    .medical-cross-1, .medical-cross-2, .heartbeat-line,
    .medical-pill, .stethoscope, .medical-heart {
        animation-duration: 15s;
        opacity: 0.6;
        transform: scale(0.7);
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .comparison-grid::before {
        content: '↓';
        position: static;
        transform: none;
        font-size: 2rem;
        margin: 1rem auto;
        display: block;
        text-align: center;
    }

    .management-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        width: 40px;
        height: 40px;
        font-size: 0;
        transform: none;
    }
    
    .flow-arrow::after {
        content: '↓';
        font-size: 2rem;
        color: var(--text-secondary);
        opacity: 0.6;
        font-weight: 300;
    }
    
    .flow-arrow:first-of-type {
        transform: none;
    }
    
    .flow-arrow:last-of-type {
        transform: none;
    }

    .flow-step.highlighted {
        transform: none;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-bottom-section {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-hero {
        min-width: 200px;
    }

    .value-points {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .value-point {
        min-width: 80px;
        padding: 0.5rem 0.3rem;
    }

    .value-title {
        font-size: 0.7rem;
    }

    .value-desc {
        font-size: 0.6rem;
    }

    .value-icon {
        width: 22px;
        height: 22px;
    }

    .value-icon i {
        font-size: 0.7rem;
    }

    .hero-guarantees {
        gap: 0.75rem;
        padding: 0.4rem;
    }

    .guarantee-item {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Page Hero for subpages */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Page Styles */
.core-features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.features-detailed {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

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

.feature-icon-large {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.feature-icon-large i {
    font-size: 4rem;
    color: white;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.feature-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feature-highlight {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.billing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.billing-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.billing-column ul {
    list-style: none;
    padding: 0;
}

.billing-column li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.billing-column li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.inventory-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.inventory-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.inventory-section p {
    color: var(--text-secondary);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.analytics-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.analytics-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.analytics-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.analytics-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Advanced Features */
.advanced-features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.advanced-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.advanced-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.advanced-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advanced-card ul {
    list-style: none;
    padding: 0;
}

.advanced-card li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.advanced-card li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Security Section */
.security-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.security-feature {
    text-align: center;
    padding: 2rem;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.security-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.security-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive for Features Page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .feature-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-detail.reverse {
        direction: ltr;
    }

    .feature-icon-large {
        width: 150px;
        height: 150px;
    }

    .feature-icon-large i {
        font-size: 3rem;
    }

    .feature-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .billing-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .inventory-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .advanced-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Page Styles */
.problems-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.problem-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid #dc2626;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: white;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-stats {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 0.5rem;
}

.problem-stats .stat {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
}

.problem-stats .label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.problem-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fef2f2;
    border-radius: 0.5rem;
    border: 1px solid #fecaca;
}

.problem-impact i {
    color: #dc2626;
}

.problem-impact span {
    font-weight: 600;
    color: #dc2626;
    font-size: 0.875rem;
}

/* Solution Overview */
.solution-overview {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.solution-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.flow-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.flow-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.flow-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.flow-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.replaced-systems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.old-system {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    font-size: 0.875rem;
}

.old-system i {
    color: #dc2626;
}

.new-system {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 1rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
}

.new-system i {
    color: var(--accent-color);
}

.appointment-sources {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    min-width: 120px;
}

.source i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.plus, .equals {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 0.75rem;
    min-width: 140px;
}

.result i {
    font-size: 1.5rem;
    color: white;
}

.automation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.automation-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.automation-item i {
    color: var(--primary-color);
}

/* Clinic Types */
.clinic-types {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.type-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.type-icon i {
    font-size: 1.5rem;
    color: white;
}

.type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.type-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.type-benefits li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.type-benefits li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.type-results {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-item .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-item .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Implementation */
.implementation {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.implementation-timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.timeline-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.implementation-guarantee {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--accent-color);
    border-radius: 1rem;
    padding: 2rem;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 1.5rem;
    color: white;
}

.guarantee-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guarantee-text p {
    color: var(--text-secondary);
    margin: 0;
}

/* ROI Calculator */
.roi-calculator {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.roi-current, .roi-medcare {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.roi-current {
    border-left: 4px solid #dc2626;
}

.roi-medcare {
    border-left: 4px solid var(--accent-color);
}

.roi-current h3, .roi-medcare h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cost-items, .savings-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cost-item, .savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.cost-total, .savings-total {
    background: var(--gradient-primary);
    color: white;
    margin-top: 1rem;
}

.cost-value {
    font-weight: 600;
    color: #dc2626;
}

.savings-value {
    font-weight: 600;
    color: var(--accent-color);
}

.roi-summary {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.roi-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.roi-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.roi-stat {
    text-align: center;
}

.roi-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.roi-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive for Solutions Page */
@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .appointment-sources {
        flex-direction: column;
        gap: 0.5rem;
    }

    .plus, .equals {
        transform: rotate(90deg);
    }

    .automation-list {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roi-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .replaced-systems {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-options {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.option-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.option-card.priority {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.option-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.option-benefits li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    position: relative;
}

.option-benefits li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.option-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.option-note i {
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* Consultation Form */
.consultation-form {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.form-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-benefits h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.testimonial-snippet {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    margin-top: 2rem;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.testimonial-content span {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.consultation-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Info */
.contact-info {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.email {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hours, .response-time {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.chat-status {
    font-weight: 600;
    color: var(--accent-color);
}

.video-info {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Urgency Section */
.urgency-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.urgency-stat {
    text-align: center;
}

.urgency-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.urgency-stat .stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    max-width: 150px;
}

.urgency-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .consultation-benefits {
        margin-bottom: 2rem;
    }

    .testimonial-snippet {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .urgency-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .urgency-stat .stat-label {
        max-width: none;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Pricing Page Styles */
.savings-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.cost-comparison {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.current-costs, .medcare-costs {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.current-costs {
    border-left: 4px solid #dc2626;
}

.medcare-costs {
    border-left: 4px solid var(--accent-color);
}

.current-costs h3, .medcare-costs h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.cost-item.hidden-costs {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.cost-item.hidden-costs .cost-amount {
    color: #dc2626;
    font-weight: 700;
}

.cost-total {
    background: var(--gradient-primary);
    color: white;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.cost-amount {
    font-weight: 600;
    color: var(--text-primary);
}

.vs-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.25rem;
    align-self: center;
}

.medcare-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.included-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.included-item.highlight {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.included-item.highlight i {
    color: #f59e0b;
}

.medcare-total {
    background: var(--gradient-primary);
    color: white;
    margin-top: 1rem;
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
}

.savings-summary {
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--accent-color);
    border-radius: 1rem;
    padding: 2rem;
}

.savings-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.savings-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.savings-summary p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Pricing Plans */
.pricing-plans {
    padding: 4rem 0 6rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
    clear: both;
}

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

.plan-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

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

.feature-category li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.feature-category li i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.plan-cta {
    text-align: center;
}

.plan-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.plan-benefits {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
}

.plan-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
}

.benefit i {
    color: var(--primary-color);
}

/* ROI Section */
.roi-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.roi-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.calculator-inputs h3, .calculator-results h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
}

.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
}

.result-item.total {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.result-item.annual {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 600;
}

.result-item.roi {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.result-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.roi-note {
    text-align: center;
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 1.5rem;
}

.roi-note p {
    color: #92400e;
    margin: 0;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 6rem 0;
    background: var(--bg-primary);
}

/* Pricing CTA */
.pricing-cta {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.pricing-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-cta .cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.cta-stat .stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

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

/* Responsive for Pricing Page */
@media (max-width: 768px) {
    .comparison-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vs-indicator {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .roi-calculator {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.service-features i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.service-packages {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.package-features h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.package-features i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.why-services {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.mission-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mission-statement {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.team-member {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.member-credentials span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Recognition Section */
.recognition-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.recognition-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.award-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.award-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.testimonials-preview h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.testimonial-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

/* Responsive for About Page */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .story-timeline::before {
        left: 40px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Mobile Optimizations for All Pages */
@media (max-width: 768px) {
    /* Ensure all text is readable on mobile */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Prevent horizontal scrolling */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Improve button sizing on mobile */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Ensure forms are mobile friendly */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Improve spacing for mobile */
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 !important;
    }
    
    /* Ensure hero sections don't overflow */
    .hero-main-title,
    .features-main-title,
    .services-main-title,
    .solutions-main-title,
    .pricing-main-title,
    .about-main-title,
    .contact-main-title {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Improve table responsiveness */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any potential horizontal scroll issues */
    .admin-screenshot {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve hero options mobile display */
    .hero-options {
        margin: 1rem 0;
        padding: 1rem 0;
        text-align: center;
    }
    
    .options-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Ensure grid layouts work properly on mobile */
    .advanced-features-horizontal,
    .features-advanced {
        padding: 2rem 0;
    }
    
    /* Improve logo display on mobile */
    .logo-image {
        height: 80px;
        min-width: 60px;
    }
    
    .footer-logo {
        height: 50px;
        min-width: 40px;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 480px) {
    .hero {
        padding: 6.5rem 0 0.5rem !important;
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content-left {
        padding: 0.5rem !important;
        max-width: 95% !important;
    }
    
    .hero-main-title {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.6rem !important;
        max-width: 100% !important;
    }
    
    .hero-options {
        margin: 0.6rem 0 !important;
        padding: 0.6rem !important;
        max-width: 95% !important;
    }
    
    .options-text {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .hero-problem {
        margin: 0.6rem 0 !important;
        max-width: 95% !important;
    }
    
    .problem-title {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 0.6rem !important;
        max-width: 100% !important;
    }
    
    .hero-badges {
        margin: 0.4rem 0 !important;
        gap: 0.2rem !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    .badge-item {
        font-size: 0.55rem !important;
        padding: 0.2rem 0.35rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        max-width: 31% !important;
    }
    
    .hero-actions {
        margin: 0.75rem 0 !important;
    }
    
    .hero-actions .btn {
        width: 90% !important;
        max-width: 260px;
        font-size: 0.8rem;
        padding: 0.55rem 1rem !important;
        min-height: 42px !important;
    }
    
    .hero-image {
        margin: 0.75rem 0 !important;
        max-height: 30vh !important;
    }
    
    .dashboard-preview {
        transform: scale(0.75) !important;
        max-width: 100% !important;
    }
    
    .demo-screenshot {
        max-height: 25vh !important;
    }
    
    .container {
        padding: 0 0.75rem !important;
    }
    
    /* Fix navbar height for small screens */
    .nav-container {
        height: 90px !important;
    }
    
    .logo-image {
        height: 70px !important;
    }
    
    .nav-menu {
        top: 90px !important;
        padding: 0.75rem 0 !important;
    }
    
    /* Mobile responsive highlight bands */
    .highlight-band {
        padding: 0.1rem 0.3rem !important;
        font-size: inherit;
        line-height: inherit;
        display: inline;
        white-space: nowrap;
    }
    
    .highlight-band::before {
        border-radius: 3px;
        transform: rotate(-0.5deg);
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    /* Ensure clean layout order */
    .hero-content-left > * {
        width: 100%;
    }
    
    /* Fix highlight bands on mobile */
    .highlight-band {
        padding: 0.1rem 0.4rem;
        margin: 0 0.1rem;
        display: inline;
    }
    
    /* Clean section spacing */
    .section {
        padding: 3rem 0 !important;
    }
    
    /* Improve readability */
    .hero-main-title {
        text-align: center;
        word-wrap: break-word;
    }
    
    /* Ensure admin screenshots section doesn't interfere with hero */
    .admin-screenshots {
        margin-top: 3rem !important;
        padding: 3rem 0 !important;
    }
    
    /* Fix any potential overlay issues */
    .hero-background {
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
}
