/**
 * Author: Emmanuel Kwami Tartey
 * Date: 17 Sep, 2025
 * Time: 5:52 AM
 * Project: cama
 * github: https://github.com/mal33k-eden
*/

:root {
    --primary-color: #0891B2;
    --primary-light: #D5F7FF;
    --accent-color: #EDA0A8;
    --secondary-color: #f8fafc;
    --dark-color: #0f172a;
    --dark-light: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --blue-500: #3b82f6;
    --purple-500: #8b5cf6;
    --emerald-500: #10b981;
    --rose-500: #f43f5e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    overflow-x: hidden;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: contrast(1.2) saturate(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.navbar-brand:hover img {
    filter: contrast(1.4) saturate(1.3) brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    background: #067a94;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.btn-trial {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-trial:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 0.9;
}

/* Hero Section from Landing Page */
.hero-section {
    background: var(--primary-light);
    background-color: #D5F7FF;
    padding: 60px 0 60px;
    /*margin-top: 120px;*/
    border-radius: 36px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -1px;
}

.hero-title span {
    color: #000000;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

.hero-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section-badge {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

/* Page Content */
.page-content {
    min-height: calc(100vh - 200px);
    padding-top: 120px;
}

/* Footer Styles from Landing Page */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: contrast(1.3) saturate(1.2) brightness(1.1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
}

.footer-logo:hover img {
    filter: contrast(1.5) saturate(1.4) brightness(1.2) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-logo:hover {
    color: var(--primary-color);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: white;
    font-size: 0.95rem;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.copyright,
.built-with {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.built-with {
    text-align: right;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #067a94 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.benefit-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #4ade80;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px;
        max-width: 100px;
    }

    .footer-logo img {
        height: 40px;
        max-width: 120px;
    }

    .main-footer {
        padding: 40px 0 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px;
        max-width: 90px;
    }

    .footer-logo img {
        height: 35px;
        max-width: 110px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes float {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }
    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES - STREAMLINED
   ======================================== */

/* Large Tablets and Small Desktops (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-brand img {
        height: 35px;
        max-width: 100px;
    }

    /* Hero Section */
    .hero-section {
        margin: 0;
        margin-top: 4rem;
        border-radius: 0;
        padding: 60px 0 40px;
    }

    .hero-illustration {
        margin-top: 3rem;
        max-width: 100%;
    }

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

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

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

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

    /* Dashboard & Mockups */
    .dashboard-mockup {
        max-width: 100%;
        padding: 1.5rem 0;
    }

    .mockup-content {
        min-height: 250px;
    }

    .solution-svg {
        max-height: 300px;
    }

    /* Mobile App */
    .mobile-app-image {
        max-width: 300px;
    }

    .app-store-buttons {
        justify-content: center;
    }

    .app-store-btn img {
        height: 45px;
    }

    /* CTA Section */
    .cta-benefits {
        justify-content: flex-start !important;
        flex-direction: column;
        gap: 1rem !important;
        text-align: left;
    }

    .benefit-item {
        justify-content: flex-start;
    }

    .cta-features {
        flex-direction: column;
        gap: 2rem;
    }

    /* Footer */
    .footer-logo img {
        height: 40px;
        max-width: 120px;
    }

    .main-footer {
        padding: 40px 0 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile Devices (576px and below) */
@media (max-width: 576px) {
    /* Navigation */
    .navbar-brand img {
        height: 30px;
        max-width: 90px;
    }

    /* Hero Section */
    .hero-section {
        padding: 50px 0 30px;
    }

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

    /* Content */
    .mockup-content {
        min-height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Footer */
    .footer-logo img {
        height: 35px;
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    /* Center hero text and hide image */
    .hero-section .row {
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-section .col-lg-6:last-child {
        display: none !important;
    }

    .hero-section .col-lg-6:first-child {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Override container padding on mobile for full width cards */
    .pricing-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    /* Mobile pricing cards styling */
    .mobile-pricing-cards {
        padding: 2rem 1rem;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .mobile-pricing-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 2rem;
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mobile-pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    }

    .mobile-pricing-card.featured {
        border: 2px solid #0891B2;
        box-shadow: 0 25px 80px rgba(8, 145, 178, 0.15);
        position: relative;
    }

    .mobile-pricing-card.featured::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #0891B2, #10b981);
    }

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

    .mobile-package-badge {
        background: linear-gradient(135deg, #0891B2, #10b981);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block;
        margin-bottom: 1rem;
        box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
    }

    .mobile-package-badge.gold {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    }

    .mobile-package-name {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 0.75rem;
        font-family: 'Sora', sans-serif;
    }

    .mobile-package-price {
        font-size: 3rem;
        font-weight: 900;
        color: #0891B2;
        margin-bottom: 0.5rem;
        font-family: 'Sora', sans-serif;
        line-height: 1;
    }

    .mobile-package-period {
        font-size: 1rem;
        color: #64748b;
        margin-bottom: 2rem;
        font-weight: 500;
    }

    .mobile-features-list {
        list-style: none;
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .mobile-features-list li {
        display: flex;
        align-items: center;
        padding: 0.75rem 0;
        font-size: 1rem;
        color: #1e293b;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background-color 0.2s ease;
    }

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

    .mobile-features-list li:hover {
        background-color: rgba(8, 145, 178, 0.02);
        padding-left: 0.5rem;
    }

    .mobile-features-list .feature-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: bold;
        margin-right: 1rem;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    .mobile-features-list .feature-icon.cross {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }

    .mobile-cta-button {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 16px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        border: none;
        text-align: center;
        display: block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        font-family: 'Sora', sans-serif;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .mobile-cta-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .mobile-cta-button:hover::before {
        left: 100%;
    }

    .mobile-cta-button.bronze {
        background: linear-gradient(135deg, #0891B2, #0e7490);
        color: white;
        box-shadow: 0 8px 32px rgba(8, 145, 178, 0.4);
    }

    .mobile-cta-button.bronze:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(8, 145, 178, 0.5);
        color: white;
    }

    .mobile-cta-button.gold {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: white;
        box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4);
    }

    .mobile-cta-button.gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
        color: white;
    }

}

@media (max-width: 480px) {
    /* Extra compact for small screens */
    .hero-title {
        font-size: 1.5rem !important;
    }

    .dashboard-mockup {
        max-width: 240px;
    }

    .cta-title {
        font-size: 1.25rem !important;
    }

    /* Extra compact solution section */
    .section-title {
        font-size: 1.5rem !important;
    }

    .comparison-container {
        padding: 1rem !important;
    }

    .tab-button {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .system-card {
        padding: 0.75rem !important;
    }

    /* Extra compact comparison section */
    .comparison-section {
        padding: 40px 0 !important;
    }

    .value-comparison-container {
        padding: 1rem !important;
    }

    .comparison-side {
        padding: 0.75rem !important;
    }

    .cost-item {
        padding: 0.5rem 0;
    }

    .cost-label {
        font-size: 0.8rem;
    }

    .cost-value {
        font-size: 0.9rem;
    }

    .total-amount {
        font-size: 1.75rem;
    }

    .savings-amount {
        font-size: 1.25rem;
    }

    /* Mobile app section - selective content display */
    .mobile-app-section .col-lg-6:first-child p.mb-4 {
        display: none; /* Hide description text on mobile */
    }

    .mobile-app-section .col-lg-6:first-child .app-download-section {
        display: none; /* Hide app download section on mobile */
    }

    .mobile-app-section .col-lg-6:first-child .feature-list {
        display: block; /* Keep feature list visible on mobile */
    }

    .mobile-app-section .col-lg-6:last-child {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    /* Create space for mobile app store buttons */
    .phone-mockup-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Hide desktop app store buttons on mobile */
    .app-store-buttons {
        display: none;
    }

}

/* Mobile Responsive - Leveraging Base Theme */
@media (max-width: 768px) {
    /* Use base theme hero responsive behavior */
    .hero-section.mx-5 {
        margin: 0 !important;
        border-radius: 0 !important;
    }

    /* Compact hero content */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }

    /* Stack buttons vertically like base theme */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-video, .btn-trial {
        width: 100%;
        max-width: 250px;
    }

    /* Responsive dashboard using base pattern */
    .dashboard-mockup {
        max-width: 280px;
        margin: 1.5rem auto 0;
    }

    /* Leverage Bootstrap responsive text utilities */
    .cta-title {
        font-size: 1.5rem !important;
    }

    .cta-subtitle {
        font-size: 0.9rem !important;
    }

    /* Use Bootstrap flex utilities for CTA */
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
    }

    /* Solution section mobile optimization */
    .solution-section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* Compact comparison container */
    .comparison-container {
        padding: 1.5rem !important;
        margin: 0 !important;
        border-radius: 16px !important;
    }

    /* Stack tabs vertically on mobile */
    .comparison-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border: 2px solid transparent;
    }

    .tab-button.active[data-tab="problem"] {
        background: linear-gradient(135deg, #ef4444, #f97316);
        color: white;
        border-color: rgba(239, 68, 68, 0.3);
    }

    .tab-button.active[data-tab="solution"] {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        border-color: rgba(16, 185, 129, 0.3);
    }

    .tab-button:not(.active) {
        background: rgba(100, 116, 139, 0.1);
        color: #64748b;
        border-color: rgba(100, 116, 139, 0.2);
    }

    .tab-indicator {
        display: none; /* Hide indicator on mobile for simplicity */
    }

    /* Make system grid responsive */
    .system-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .system-card {
        padding: 1rem !important;
    }

    .system-card h4 {
        font-size: 1rem;
    }

    .system-card p {
        font-size: 0.85rem;
    }

    /* Compact tab content */
    .tab-content {
        min-height: auto !important;
    }

    .problem-content, .solution-content {
        padding: 1rem !important;
    }

    /* Comparison section mobile optimization */
    .comparison-section {
        padding: 60px 0 !important;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    }

    /* Value comparison container mobile */
    .value-comparison-container {
        padding: 1.5rem !important;
        margin: 0 !important;
        border-radius: 16px !important;
    }

    /* Mobile comparison grid adjustments */
    .comparison-grid {
        gap: 1rem !important;
    }

    .comparison-side {
        padding: 1rem !important;
    }

    /* Mobile cost breakdown */
    .cost-breakdown {
        margin-top: 1rem;
    }

    .cost-item {
        padding: 0.6rem 0;
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
    }

    .cost-label {
        font-size: 0.85rem;
    }

    .cost-value {
        font-size: 1rem;
        font-weight: 800;
    }

    /* Mobile total cost */
    .total-cost {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .total-amount {
        font-size: 2rem;
    }

    .total-label {
        font-size: 0.8rem;
    }

    /* Mobile VS badge - center and vertical */
    .comparison-divider {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 1rem 0 !important;
    }

    .vs-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .comparison-arrow {
        font-size: 1.5rem;
    }

    .comparison-arrow::before {
        content: '\f063'; /* fas fa-arrow-down icon code */
    }

    /* Mobile savings highlight */
    .savings-highlight {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }

    .savings-amount {
        font-size: 1.5rem;
    }
}


/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

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