/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Professional Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border-radius: 12px;
    position: relative;
}

.nav-logo:hover {
    transform: translateY(-1px);
    background: rgba(37, 99, 235, 0.05);
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover::before {
    opacity: 1;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.1);
    background: white;
    padding: 2px;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
    border-color: rgba(37, 99, 235, 0.3);
}

.logo-icon:hover {
    animation: logoFloat 0.6s ease-in-out;
}

@keyframes logoFloat {
    0%, 100% {
        transform: scale(1.15) translateY(0);
    }
    50% {
        transform: scale(1.15) translateY(-2px);
    }
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--background-blue);
}

.nav-link.active {
    color: var(--primary-color);
    background: var(--background-blue);
    font-weight: 600;
}

.nav-link:focus {
    outline: 2px solid rgba(37, 99, 235, 0.2);
    outline-offset: 4px;
    border-radius: 4px;
}

.get-started-btn:focus {
    outline: 2px solid rgba(37, 99, 235, 0.2);
    outline-offset: 2px;
}

.footer-section a:focus {
    outline: 2px solid rgba(59, 130, 246, 0.3);
    outline-offset: 2px;
    border-radius: 4px;
}

.social-links a:focus {
    outline: 2px solid rgba(59, 130, 246, 0.3);
    outline-offset: 2px;
}

.get-started-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.get-started-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #475569;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    text-align: center;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.1rem;
    color: #2563eb;
}

.trophy {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.chart {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.users {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.rocket {
    bottom: 15%;
    right: 12%;
    animation-delay: 3s;
}

.target {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.clock {
    top: 40%;
    right: 8%;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2563eb;
}

.hero-badge i {
    font-size: 0.8rem;
}

/* Hero Main Content */
.hero-main {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.text-blue {
    color: #2563eb;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #2563eb;
    border-color: #2563eb;
}

/* Dashboard Mockup */
.dashboard-mockup {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
}

.mockup-browser {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.browser-header {
    background: #f8fafc;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.browser-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.browser-content {
    padding: 24px;
    background: #ffffff;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #2563eb !important;
    text-shadow: none;
    margin-bottom: 4px;
}

/* Dashboard specific stat numbers - normal styling */
.dashboard-stats .stat-number {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: #2563eb !important;
    text-shadow: none !important;
    letter-spacing: normal;
    line-height: 1.2;
    opacity: 1 !important;
    filter: none;
}

/* Dashboard mockup stat numbers - normal styling */
.dashboard-mockup .stat-number {
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    color: #2563eb !important;
    text-shadow: none !important;
    opacity: 1 !important;
    filter: none;
}

/* Make sure all dashboard values stand out */
.browser-content .stat-number {
    color: #2563eb !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 6px rgba(37, 99, 235, 0.3) !important;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 6px;
}

.stat-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.dashboard-chart {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    height: 120px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    width: 100%;
    height: 80px;
}

.bar {
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 2px 2px 0 0;
    flex: 1;
    min-height: 20px;
    animation: growUp 1.5s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Bottom Stats */
.bottom-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2563eb;
    text-shadow: none;
    color: #2563eb;
    display: block;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.mockup-window {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.window-header {
    background: #f8fafc;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #f59e0b;
}

.control.green {
    background: #10b981;
}

.window-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.dashboard-content {
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.metric-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.up {
    color: #10b981;
}

.chart-container {
    grid-column: 1 / -1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    padding: 10px 0;
}

.bar {
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
    animation: growUp 1.5s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dashboard Section */
.dashboard-section {
    padding: 100px 0;
    background: #ffffff;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.dashboard-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.dashboard-features i {
    color: #10b981;
    font-size: 1rem;
}

.dashboard-image {
    position: relative;
}

.dashboard-preview-large {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.preview-header {
    background: #f8fafc;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-dots span:first-child {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #f59e0b;
}

.preview-dots span:nth-child(3) {
    background: #10b981;
}

.preview-content {
    display: flex;
    height: 300px;
}

.preview-sidebar {
    width: 200px;
    background: #f8fafc;
    padding: 20px 0;
    border-right: 1px solid #e2e8f0;
}

.sidebar-item {
    padding: 8px 20px;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item.active,
.sidebar-item:hover {
    background: #2563eb;
    color: white;
}

.preview-main {
    flex: 1;
    padding: 20px;
    background: #ffffff;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.preview-stat {
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2563eb;
    text-shadow: none;
    color: #2563eb;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
}

.preview-chart {
    background: #f8fafc;
    border-radius: 8px;
    height: 120px;
    position: relative;
}

.chart-area {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-item ul {
    list-style: none;
}

.service-item li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section:first-child {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-svg {
    height: 32px;
    width: auto;
    color: #f8fafc;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #f8fafc;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-section a:hover {
    color: #3b82f6;
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: none;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-links a i {
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom p::before {
    content: '©';
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.5rem 2rem;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .get-started-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-icon {
        display: none;
    }

    .bottom-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-mockup {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .preview-content {
        flex-direction: column;
        height: auto;
    }

    .preview-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }

    .sidebar-item {
        white-space: nowrap;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section:first-child {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .bottom-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .social-links a i {
        font-size: 0.8rem;
    }

    .browser-content {
        padding: 16px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .dashboard-text h2 {
        font-size: 1.8rem;
    }

    .dashboard-text p {
        font-size: 1rem;
    }
}

/* Service
s Page Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Process Timeline */
.service-process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background: #f8fafc;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-features i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #1e293b;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 200px;
    padding: 20px;
}

.chart-bar {
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 4px 4px 0 0;
    flex: 1;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Code Mockup */
.code-mockup {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.code-header {
    background: #334155;
    padding: 15px 20px;
}

.code-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    background: #475569;
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.tab.active {
    background: #2563eb;
    color: white;
}

.code-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.code-line {
    margin-bottom: 8px;
    color: #94a3b8;
}

.tag {
    color: #f472b6;
}

.attr {
    color: #60a5fa;
}

.string {
    color: #34d399;
}

/* Technology Stack */
.tech-stack {
    padding: 100px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-item i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tech-item span {
    display: block;
    font-weight: 600;
    color: #1e293b;
}

/* Active navigation link */
.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .tech-item {
        padding: 1.5rem 1rem;
    }

    .tech-item i {
        font-size: 2.5rem;
    }
}

/* A
bout Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Company Values */
.company-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    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.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
    background: #1e293b;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2563eb;
    text-shadow: 0 3px 6px rgba(37, 99, 235, 0.3);
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: white;
    color: #2563eb;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.story-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight i {
    color: #2563eb;
    font-size: 1.2rem;
}

.highlight span {
    color: #1e293b;
    font-weight: 500;
}

.office-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        align-items: center;
    }

    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
}

/* Footer 
Logo Styles */
.footer-logo-svg {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-logo-svg:hover {
    color: #3b82f6;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

.hero-stats {
    animation-delay: 0.5s;
}

/* Loading states */
.dashboard-mockup {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Improved focus states for accessibility */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.cta-button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-badge {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .pillar-card {
        border-color: #000;
    }

    .metric-card {
        border-color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-content>* {
        animation: none;
    }

    .dashboard-mockup {
        animation: none;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1f2937;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    transition: transform 0.2s ease;
}

.submit-btn:hover i {
    transform: translateX(2px);
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta .cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    min-width: 180px;
}

.btn-secondary.large {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary.large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        order: -1;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1rem;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group .error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

/* Success State */
.form-success {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #166534;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #15803d;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Professional About Hero Styles */
.about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.about-hero-content .hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.about-hero-content .stat-item {
    text-align: center;
}

.about-hero-content .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.about-hero-content .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.about-hero-image {
    position: relative;
}

.image-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image-placeholder {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.team-member-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.member-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.125rem;
}

.member-info p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: #2563eb;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 4s;
}

/* Professional Services Hero Styles */
.services-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.services-hero-content .service-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 500;
}

.highlight-item i {
    color: #10b981;
    font-size: 0.875rem;
}

.services-hero-visual {
    position: relative;
}

.services-dashboard {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab.active {
    background: #2563eb;
    color: white;
}

.dashboard-content {
    padding: 1.5rem;
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.125rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748b;
}

.chart-area {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    height: 120px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
    animation: growUp 1.5s ease-out;
}

.floating-service-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.service-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    animation: float 6s ease-in-out infinite;
}

.service-card i {
    color: #2563eb;
}

.service-card.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.service-card.card-2 {
    bottom: 40%;
    left: -15%;
    animation-delay: 2s;
}

.service-card.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

/* Enhanced Services Grid */
.services-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.service-item.featured::before {
    transform: scaleX(1);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-item .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 0.875rem;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    text-align: center;
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Enhanced Company Values */
.company-values {
    padding: 100px 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {

    .about-hero-grid,
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-hero-image,
    .services-hero-visual {
        order: -1;
    }

    .about-hero-content .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item.featured {
        transform: none;
    }

    .floating-elements,
    .floating-service-cards {
        display: none;
    }

    .bg-shape {
        display: none;
    }

    .metric-cards {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .service-item {
        padding: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .image-container {
        padding: 1rem;
    }
}

/* P
rofessional Color Scheme Override */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #60a5fa;
    --background-light: #f8fafc;
    --background-medium: #f1f5f9;
    --background-blue: #eff6ff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-blue: #1e40af;
    --border-color: rgba(37, 99, 235, 0.1);
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow-light: 0 1px 3px rgba(37, 99, 235, 0.1);
    --shadow-medium: 0 4px 12px rgba(37, 99, 235, 0.15);
    --shadow-heavy: 0 10px 25px rgba(37, 99, 235, 0.2);
    --gradient-primary: linear-gradient(135deg, #2563eb, #1d4ed8);
    --gradient-light: linear-gradient(135deg, #3b82f6, #2563eb);
    --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

/* Updated Hero Sections with Blue Theme */
.hero {
    background: var(--gradient-bg);
}

.services-hero {
    background: var(--gradient-bg);
}

.about-hero {
    background: var(--gradient-bg);
}

/* Professional Blue Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Professional Card Styles */
.service-item,
.value-card,
.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover,
.value-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 55, 72, 0.15);
}

/* Professional Icon Styles */
.service-icon,
.value-icon,
.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.2);
}

/* Professional Text Colors */
.section-title,
h1,
h2,
h3 {
    color: var(--text-primary);
}

.section-subtitle,
p {
    color: var(--text-secondary);
}

/* Professional Floating Elements */
.floating-card,
.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.floating-card i,
.service-card i {
    color: var(--primary-color);
}

/* Professional Dashboard Styles */
.services-dashboard {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.dashboard-header {
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.tab.active {
    background: var(--primary-color);
    color: white;
}

.metric-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.metric-value {
    color: var(--text-primary);
}

.metric-label {
    color: var(--text-secondary);
}

/* Professional Team Cards */
.team-member-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.member-avatar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.member-info h4 {
    color: var(--text-primary);
}

.member-info p {
    color: var(--text-secondary);
}

/* Professional Stats */
.stat-number,
.stat-value {
    color: var(--primary-color);
}

.stat-label,
.stat-desc {
    color: var(--text-secondary);
}

/* Professional Service Features */
.service-features li::before {
    color: #48bb78;
}

.service-price {
    color: var(--primary-color);
    background: var(--background-blue);
}

/* Professional Blue Backgrounds */
.features-section,
.services-grid-section,
.faq-section {
    background: var(--background-light);
}

.company-values,
.dashboard-section {
    background: #ffffff;
}

.contact-form-section {
    background: var(--background-light);
}

/* Professional Shadows and Borders */
.contact-form-container,
.image-container,
.team-image-placeholder {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

/* Professional Hover States */
.highlight-item i {
    color: #48bb78;
}

.chart-bars .bar {
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
}

/* Remove harsh blue colors and replace with professional grays */
.hero-badge,
.contact-hero .hero-badge,
.services-hero-content .hero-badge,
.about-hero-content .hero-badge {
    background: var(--background-blue);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
}

.hero-badge i {
    color: var(--primary-color);
}

/* Professional Footer */
.footer {
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: #a0aec0;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

/*
 Enhanced Blue Theme Consistency */
.floating-icon {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.floating-icon i {
    color: var(--primary-color);
}

.hero-title .text-blue {
    color: var(--primary-color);
}

.section-title {
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
}

/* Blue accent for interactive elements */
.service-item:hover::before,
.feature-card:hover::before {
    background: var(--gradient-primary);
}

.contact-icon {
    background: var(--gradient-primary);
}

.submit-btn {
    background: var(--gradient-primary);
}

.submit-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-heavy);
}

/* Blue theme for dashboard elements */
.dashboard-tabs .tab.active {
    background: var(--primary-color);
}

.metric-icon {
    background: var(--gradient-primary);
}

.chart-bars .bar {
    background: var(--gradient-light);
}

/* Blue theme for team elements */
.member-avatar {
    background: var(--gradient-primary);
}

.member-overlay {
    background: rgba(37, 99, 235, 0.9);
}

.member-social a:hover {
    color: var(--primary-color);
}

.member-role {
    color: var(--primary-color);
}

/* Blue theme for floating cards */
.floating-card,
.service-card {
    border: 1px solid var(--border-color);
}

.floating-card:hover,
.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

/* Blue theme for form elements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Blue theme for FAQ */
.faq-question i {
    color: var(--primary-color);
}

.faq-item:hover {
    border-color: var(--border-color);
}

/* Blue theme for CTA sections */
.cta-section,
.contact-cta {
    background: var(--gradient-primary);
}

/* Blue theme for stats */
.bottom-stats .stat-value,
.hero-stats .stat-number {
    color: var(--primary-color);
}

/* Blue theme for highlights */
.highlight-item i,
.service-features li::before {
    color: var(--primary-light);
}

/* Blue theme for process steps */
.step-number {
    background: var(--gradient-primary);
}

/* Blue theme for value cards hover */
.value-card:hover {
    border-color: var(--border-color);
}

.value-icon {
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Blue theme for service buttons */
.service-btn {
    background: var(--gradient-primary);
}

.service-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Blue theme for navigation hover effects */
.get-started-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-medium);
}

/* Blue theme for card borders and shadows */
.service-item,
.feature-card,
.value-card,
.contact-card {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

.service-item:hover,
.feature-card:hover,
.value-card:hover,
.contact-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-medium);
}

/* Blue theme for dashboard mockup */
.services-dashboard {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
}

.dashboard-header {
    background: var(--background-light);
    border-bottom: 1px solid var(--border-light);
}

/* Blue theme for image containers */
.image-container {
    background: var(--gradient-bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
}

.team-image-placeholder {
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

.team-member-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
}

.team-member-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-light);
}

/*
 Interactive Dashboard Styles */
.hidden {
    display: none !important;
}

.tab {
    cursor: pointer;
    user-select: none;
}

.tab:hover {
    background: rgba(37, 99, 235, 0.1);
}

.sidebar-item {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.sidebar-item.active {
    background: var(--primary-color);
    color: white;
}

/* Animation for counting numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.counting,
.stat-value.counting,
.stat-num.counting,
.metric-value.counting {
    animation: countUp 0.3s ease;
}

/* Chart bar animations */
.bar {
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0 !important;
}

.bar.animate {
    height: var(--target-height) !important;
}

/* Metric cards transition */
.metric-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

.metric-card.fade-out {
    animation: fadeOutDown 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Preview stats transition */
.preview-stat {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-stat.fade-in {
    animation: slideInRight 0.4s ease forwards;
}

.preview-stat.fade-out {
    animation: slideOutLeft 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Tab transition effects */
.tab.active {
    position: relative;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    border-radius: 1px;
}

/* Hover effects for interactive elements */
.dashboard-tabs .tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
}

.preview-sidebar .sidebar-item:not(.active):hover {
    background: var(--background-blue);
    color: var(--primary-color);
}

/* Loading state for metrics */
.metric-value.loading,
.stat-num.loading,
.stat-number.loading,
.stat-value.loading {
    position: relative;
    overflow: hidden;
}

.metric-value.loading::after,
.stat-num.loading::after,
.stat-number.loading::after,
.stat-value.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Fix 
for counter animations */
.stat-number[data-target],
.stat-value[data-target],
.stat-num[data-target],
.metric-value[data-target] {
    display: inline-block;
    min-width: 60px;
    text-align: left;
}

/* Ensure proper visibility */
.preview-stat:not(.hidden),
.metric-card:not(.hidden) {
    display: block !important;
    opacity: 1;
}

.preview-stat.hidden,
.metric-card.hidden {
    display: none !important;
}

/* Better transitions */
.preview-stat,
.metric-card {
    transition: all 0.3s ease;
}

/* Active states */
.sidebar-item.active {
    background: var(--primary-color) !important;
    color: white !important;
}

.tab.active {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Hover states */
.sidebar-item:hover:not(.active) {
    background: var(--background-blue) !important;
    color: var(--primary-color) !important;
}

.tab:hover:not(.active) {
    background: rgba(37, 99, 235, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Chart bar fix */
.bar {
    height: 0 !important;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.bar.animate {
    height: var(--target-height) !important;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Interactive Code Editor Section - Professional Design */
.code-editor-section {
    padding: 120px 0;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.code-editor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.code-editor-section .container {
    position: relative;
    z-index: 1;
}

.code-editor-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.code-editor-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.code-editor-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.code-editor-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.editor-mockup {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
}

.editor-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 2;
}

.editor-header {
    background: var(--background-light);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.editor-dots {
    display: flex;
    gap: 10px;
}

.editor-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.editor-dots .dot.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.editor-dots .dot.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.editor-dots .dot.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.editor-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.editor-tabs {
    display: flex;
    background: var(--background-medium);
    border-bottom: 1px solid var(--border-color);
    padding: 0 20px;
}

.editor-tab {
    padding: 16px 24px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 8px;
}

.editor-tab:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.editor-tab.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    border: 1px solid var(--border-color);
    border-bottom: 1px solid white;
    margin-bottom: -1px;
}

.editor-tab i {
    font-size: 18px;
}

.editor-content {
    height: 400px;
    background: white;
    position: relative;
}

.code-display {
    display: flex;
    height: 100%;
}

.line-numbers {
    background: var(--background-light);
    padding: 30px 20px;
    color: var(--text-secondary);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.8;
    text-align: right;
    min-width: 70px;
    border-right: 1px solid var(--border-color);
    user-select: none;
}

.code-content {
    flex: 1;
    padding: 30px;
    color: var(--text-primary);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
    background: white;
}

.code-line {
    margin-bottom: 4px;
    white-space: pre;
    transition: all 0.3s ease;
}

.code-line:hover {
    background: var(--background-blue);
    margin: 0 -15px;
    padding: 2px 15px;
    border-radius: 6px;
}

/* Enhanced Syntax Highlighting */
.tag {
    color: var(--primary-color);
    font-weight: 600;
}

.attr {
    color: #d97706;
    font-weight: 500;
}

.string {
    color: #059669;
}

.keyword {
    color: var(--primary-color);
    font-weight: 600;
}

.comment {
    color: #6b7280;
    font-style: italic;
}

.function {
    color: #7c3aed;
    font-weight: 500;
}

.number {
    color: #dc2626;
}

.property {
    color: #d97706;
    font-weight: 500;
}

.value {
    color: #059669;
}

.editor-analytics {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 120px;
}

.analytics-header {
    margin-bottom: 40px;
}

.analytics-header h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.analytics-header h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z"/></svg>');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.analytics-tabs {
    display: flex;
    gap: 6px;
    background: var(--background-light);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.analytics-tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.analytics-tab:hover {
    color: var(--primary-color);
    background: var(--background-blue);
}

.analytics-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-1px);
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.analytics-stat {
    text-align: center;
    padding: 24px 20px;
    background: var(--background-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.analytics-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.analytics-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.analytics-stat .stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #2563eb;
    text-shadow: none;
    margin-bottom: 8px;
    display: block;
}

.analytics-stat .stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-container {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    margin-bottom: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 4px 4px 0 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 20px;
}

.chart-bar:hover {
    background: linear-gradient(to top, #2563eb, #3b82f6);
    transform: scaleY(1.05);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .code-editor-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .editor-analytics {
        order: -1;
    }
}

@media (max-width: 768px) {
    .analytics-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .editor-content {
        height: 250px;
    }

    .code-content {
        font-size: 12px;
    }
}

.analytics -stat .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.chart-container {
    background: var(--background-light);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
}

.chart-container::before {
    content: 'Live Analytics';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 140px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 30px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.chart-bar:hover {
    background: var(--gradient-light);
    transform: scaleY(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.chart-bar::after {
    content: attr(data-value) '%';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Professional Responsive Design */
@media (max-width: 1200px) {
    .code-editor-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .editor-analytics {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .code-editor-section {
        padding: 80px 0;
    }

    .code-editor-section .section-title {
        font-size: 2.5rem;
    }

    .analytics-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .editor-content {
        height: 300px;
    }

    .code-content,
    .line-numbers {
        font-size: 13px;
        padding: 20px;
    }

    .editor-mockup,
    .editor-analytics {
        border-radius: 16px;
        padding: 24px;
    }
}

/* Pro
fessional Pricing Section */
.pricing-section {
    padding: 40px 0;
    background: #f8fafc;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-grid)"/></svg>');
    z-index: 0;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--background-blue);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.pricing-badge i {
    font-size: 16px;
}

.pricing-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-section .section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-medium);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked+.toggle-slider {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

/* Most Popular Badge */
.most-popular-badge {
    text-align: center;
    margin-bottom: 30px;
}

.popular-text {
    background: #22c55e;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.pricing-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;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.plan-icon i {
    font-size: 24px;
    color: white;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-body {
    text-align: center;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 8px;
    line-height: 1;
}

.period {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
}

.annual-savings {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.annual-savings.show {
    opacity: 1;
    transform: translateY(0);
}

.original-price {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.saved-amount {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--background-light);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pricing-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.pricing-btn.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-btn.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Features Comparison Table */
.pricing-features {
    margin-bottom: 80px;
}

.pricing-features h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.features-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.header {
    background: var(--background-light);
    font-weight: 700;
    color: var(--text-primary);
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.feature-plan {
    text-align: center;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-plan i.fa-check {
    color: var(--primary-color);
    font-size: 18px;
}

.feature-plan i.fa-times {
    color: #ef4444;
    font-size: 18px;
}

/* FAQ Section - Accordion Style */
.pricing-faq {
    margin-bottom: 40px;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--background-blue);
}

.faq-item.active .faq-question {
    background: var(--background-blue);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

/* FAQ Animation Effects */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .feature-name {
        font-weight: 700;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0 30px;
    }

    .pricing-section .section-title {
        font-size: 2rem;
    }

    .pricing-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .pricing-grid {
        gap: 20px;
        margin-bottom: 30px;
    }

    .pricing-faq {
        margin-bottom: 20px;
    }

    .pricing-faq h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}

/* P
ricing Hero Section */
.pricing-hero {
    padding: 140px 0 80px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
    z-index: 0;
}

.pricing-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.pricing-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Pricing Section Adjustments for Dedicated Page */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section::before {
    display: none;
}

/* Pricing Testimonials */
.pricing-testimonials {
    padding: 100px 0;
    background: var(--background-light);
}

.pricing-testimonials h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 900;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section Enhancements */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-buttons .btn-primary.large,
.cta-buttons .btn-secondary.large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    min-width: 200px;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 0 60px;
    }

    .pricing-hero-title {
        font-size: 2.8rem;
    }

    .pricing-hero-subtitle {
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary.large,
    .cta-buttons .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
}

/* Tiva
zo-Style Pricing Cards */
.pricing-card:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.pricing-card:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.pricing-card.popular-card {
    background: #22c55e;
    color: white;
    transform: scale(1.05);
    z-index: 2;
    border-radius: 12px;
    margin: 0 -1px;
}

.plan-header {
    text-align: left;
    margin-bottom: 25px;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.popular-card .plan-name {
    color: white;
}

.plan-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.popular-card .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.plan-pricing {
    margin-bottom: 25px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
}

.popular-card .currency {
    color: white;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #374151;
    line-height: 1;
}

.popular-card .price {
    color: white;
}

.period {
    font-size: 14px;
    color: #6b7280;
    margin-left: 8px;
}

.popular-card .period {
    color: rgba(255, 255, 255, 0.9);
}

.custom-quote .custom-text {
    font-size: 24px;
    font-weight: 600;
    color: #6b7280;
}

.plan-features {
    flex: 1;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #374151;
}

.popular-card .feature-item {
    color: white;
}

.feature-item i {
    color: #22c55e;
    font-size: 16px;
    width: 16px;
}

.popular-card .feature-item i {
    color: #fbbf24;
}

.feature-item.premium i {
    color: #fbbf24;
}

.team-counter {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.counter-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.counter-value {
    font-size: 18px;
    font-weight: 600;
    color: white;
    min-width: 30px;
    text-align: center;
}

.monthly-cost {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    line-height: 1.4;
}

.plan-button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.free-button {
    background: #1f2937;
    color: white;
}

.free-button:hover {
    background: #111827;
}

.business-button {
    background: white;
    color: #22c55e;
    border: 2px solid white;
}

.business-button:hover {
    background: #f9fafb;
}

.enterprise-button {
    background: transparent;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.enterprise-button:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        border-radius: 12px !important;
        margin: 0 !important;
    }

    .pricing-card.popular-card {
        transform: none;
        margin: 0 !important;
    }

    .pricing-section .section-title {
        font-size: 2rem;
    }

    .price {
        font-size: 36px;
    }
}/* Featur
es Comparison Section */
.features-comparison {
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-comparison h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.3;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.feature-column {
    padding: 20px 24px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.plan-column {
    padding: 20px 24px;
    text-align: center;
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
    border-left: 1px solid #e5e7eb;
}

.business-column {
    background: #ecfdf5;
    color: #22c55e;
    position: relative;
}

.business-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #22c55e;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background: #f9fafb;
}

.table-row.highlighted {
    background: #f0fdf4;
}

.table-row.highlighted:hover {
    background: #ecfdf5;
}

.feature-name {
    padding: 16px 24px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.feature-value {
    padding: 16px 24px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    border-left: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-value {
    background: #f0fdf4;
    color: #374151;
}

.check-icon {
    color: #22c55e;
    font-size: 16px;
}

.cross-icon {
    color: #ef4444;
    font-size: 16px;
}

/* Additional Comparison Table */
.additional-comparison {
    margin-top: 40px;
}

.additional-comparison h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 30px;
}

.simple-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.simple-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.simple-row:last-child {
    border-bottom: none;
}

.simple-row:hover {
    background: #f9fafb;
}

.simple-feature {
    padding: 16px 24px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
    background: #f8fafc;
}

.simple-value {
    padding: 16px 24px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    border-left: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Comparison Tables */
@media (max-width: 768px) {
    .comparison-table,
    .simple-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row,
    .simple-row {
        min-width: 600px;
    }
    
    .features-comparison h3 {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .additional-comparison h4 {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .feature-column,
    .plan-column,
    .feature-name,
    .feature-value,
    .simple-feature,
    .simple-value {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-comparison {
        margin: 40px 10px;
    }
    
    .comparison-table,
    .simple-table {
        border-radius: 8px;
    }
    
    .features-comparison h3 {
        font-size: 1.3rem;
    }
    
    .additional-comparison h4 {
        font-size: 1.2rem;
    }
}
/* Enhanced FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-accordion {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: var(--background-blue);
    color: var(--primary-color);
}

.faq-question.active {
    background: var(--background-blue);
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 32px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding-top: 8px;
}

.faq-cta {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.faq-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.faq-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.faq-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 24px 20px;
    }
    
    .faq-cta {
        padding: 40px 24px;
        margin: 0 16px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline,
    .faq-cta .btn-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}/* FAQ Sty
les for Index Page */
.pricing-faq {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: var(--background-blue);
}

.faq-item.active {
    background: var(--background-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4,
.faq-item.active .faq-question h4 {
    color: var(--primary-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-icon i {
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    background: #fafbfc;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .pricing-faq {
        padding: 60px 20px;
    }
    
    .pricing-faq h3 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-accordion {
        margin: 0 16px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 16px;
    }
    
    .faq-answer {
        padding: 0 24px !important;
    }
    
    .faq-answer.active {
        padding: 20px 24px !important;
    }
}/* Co
mpact FAQ Section Styles */
.faq-section-compact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-header-compact {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-header-compact h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

.faq-container-compact {
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-item-compact {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item-compact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-question-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question-compact span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    padding-right: 16px;
}

.faq-question-compact i {
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-compact.active .faq-question-compact i {
    transform: rotate(180deg);
}

.faq-answer-compact {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
    border-top: 1px solid #f1f5f9;
}

.faq-answer-compact.active {
    max-height: 200px;
    padding: 20px 24px;
}

.faq-answer-compact p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.faq-cta-compact {
    text-align: center;
    margin-top: 50px;
}

.btn-primary-compact {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-compact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary-compact i {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-compact {
        padding: 60px 20px;
    }
    
    .faq-header-compact h2 {
        font-size: 1.875rem;
    }
    
    .faq-container-compact {
        margin: 0 16px 40px;
    }
    
    .faq-question-compact {
        padding: 18px 20px;
    }
    
    .faq-question-compact span {
        font-size: 1rem;
    }
    
    .faq-answer-compact.active {
        padding: 18px 20px;
    }
    
    .btn-primary-compact {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}/* Cle
an FAQ Section Styles - Consolidated */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-block;
    background: var(--background-blue);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-accordion {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: var(--background-blue);
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background: var(--background-blue);
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 32px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding-top: 8px;
}

.faq-cta {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.faq-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.faq-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.faq-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 24px 20px;
    }
    
    .faq-cta {
        padding: 40px 24px;
        margin: 0 16px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline,
    .faq-cta .btn-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}/* Mod
ern Services Section */
.services-section-modern {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-badge {
    display: inline-block;
    background: var(--background-blue);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--background-blue);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 24px;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-modern i {
    font-size: 1.5rem;
    color: white;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features span {
    background: #f1f5f9;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Professional Process Section */
.process-section-professional {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.process-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-header-professional {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-badge-professional {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
}

.process-title-professional {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-subtitle-professional {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.process-grid-professional {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    position: relative;
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    top: 50px;
    left: 50%;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%, 
        rgba(37, 99, 235, 0.6) 50%, 
        var(--primary-color) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.process-card-professional {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.process-card-professional:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.process-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #8b5cf6);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card-professional:hover::before {
    opacity: 1;
}

.card-header-professional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-icon-professional {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-icon-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.process-card-professional:hover .step-icon-professional::before {
    opacity: 1;
}

.step-icon-professional.consultation {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.step-icon-professional.strategy {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-icon-professional.implementation {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.step-icon-professional.reporting {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-icon-professional i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.step-number-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.card-content-professional h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content-professional p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.card-connector-dot {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    transform: translateY(-50%);
    z-index: 3;
}

.process-card-professional:nth-child(even) .card-connector-dot {
    left: -20px;
    right: auto;
}

.process-stats-professional {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
}

.stat-item-professional {
    text-align: center;
}

.stat-number-professional {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-professional {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness for Professional Process */
@media (max-width: 768px) {
    .process-section-professional {
        padding: 80px 0;
    }
    
    .process-title-professional {
        font-size: 2.5rem;
    }
    
    .process-grid-professional {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .timeline-connector {
        left: 30px;
        transform: none;
    }
    
    .card-connector-dot,
    .process-card-professional:nth-child(even) .card-connector-dot {
        left: -20px;
        right: auto;
    }
    
    .process-card-professional {
        padding: 24px;
        margin-left: 40px;
    }
    
    .process-stats-professional {
        flex-direction: column;
        gap: 40px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .process-card-professional {
        padding: 20px;
        margin-left: 20px;
    }
    
    .card-header-professional {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .step-icon-professional {
        width: 48px;
        height: 48px;
    }
    
    .step-icon-professional i {
        font-size: 1.25rem;
    }
}

/* Modern CTA Section */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

.btn-secondary-modern {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.cta-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-section-modern,
    .process-section-modern,
    .cta-section-modern {
        padding: 60px 0;
    }
    
    .services-title,
    .process-title,
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .services-subtitle,
    .process-subtitle,
    .cta-content-modern p {
        font-size: 1rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .service-card-modern {
        padding: 30px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .process-step-modern,
    .process-step-modern:nth-child(even) {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .step-indicator {
        margin-right: 20px;
        margin-left: 10px;
    }
    
    .step-content-modern,
    .process-step-modern:nth-child(even) .step-content-modern {
        text-align: left;
        padding: 30px 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-stats {
        gap: 40px;
    }
    
    .cta-stat .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid-modern {
        padding: 0 10px;
    }
    
    .service-card-modern {
        padding: 20px;
    }
    
    .step-content-modern {
        padding: 20px 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
}/* En
hanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header improvements */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    /* Hero section improvements */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    /* Dashboard mockup improvements */
    .dashboard-mockup {
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .mockup-browser {
        border-radius: 12px;
    }
    
    /* Bottom stats improvements */
    .bottom-stats {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    /* Features section improvements */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Dashboard section improvements */
    .dashboard-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .dashboard-text {
        text-align: center;
    }
    
    .dashboard-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Code editor improvements */
    .code-editor-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .editor-mockup,
    .editor-analytics {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .service-card-modern,
    .step-content-modern {
        margin: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Enhanced Footer Design */
.footer {
    background: var(--primary-color) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo-svg {
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.125rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
    background: white;
    transform: translateY(-50%) scale(1.2);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-section ul li a:hover {
    color: white !important;
    transform: translateX(4px);
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a i {
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

/* Add service icons */
.footer-section:nth-child(2) ul li:nth-child(1) a::before { content: '\f002'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(2) ul li:nth-child(2) a::before { content: '\f201'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(2) ul li:nth-child(3) a::before { content: '\f1a0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(2) ul li:nth-child(4) a::before { content: '\f121'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }

/* Add company icons */
.footer-section:nth-child(3) ul li:nth-child(1) a::before { content: '\f007'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(3) ul li:nth-child(2) a::before { content: '\f0c0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(3) ul li:nth-child(3) a::before { content: '\f0b1'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(3) ul li:nth-child(4) a::before { content: '\f095'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }

/* Add resource icons */
.footer-section:nth-child(4) ul li:nth-child(1) a::before { content: '\f1ea'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(4) ul li:nth-child(2) a::before { content: '\f1c1'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(4) ul li:nth-child(3) a::before { content: '\f1c2'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }
.footer-section:nth-child(4) ul li:nth-child(4) a::before { content: '\f059'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 8px; color: rgba(255, 255, 255, 0.6); }

/* Mobile footer improvements */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 40px;
    }
    
    .footer-section ul li {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-section ul li::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card-modern,
    .step-content-modern,
    .faq-accordion {
        border: 2px solid var(--text-primary);
    }
    
    .btn-primary,
    .btn-primary-modern {
        border: 2px solid var(--primary-color);
    }
}/* Comin
g Soon Section - Minimal Zen Design */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.coming-soon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.coming-soon-main {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-badge i {
    font-size: 1rem;
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.progress-container {
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #8b5cf6);
    border-radius: 20px;
    width: 0%;
    transition: width 2s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.notify-form {
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.form-group-inline {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 16px;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.notify-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 1rem;
    background: transparent;
    color: var(--text-primary);
}

.notify-input::placeholder {
    color: var(--text-secondary);
}

.notify-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.notify-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.features-preview {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 80px 0;
        min-height: 90vh;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .coming-soon-main {
        padding: 0 20px;
    }
    
    .form-group-inline {
        flex-direction: column;
        max-width: 300px;
    }
    
    .notify-btn {
        justify-content: center;
    }
    
    .features-preview {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .floating-shape.shape-1 {
        width: 80px;
        height: 80px;
    }
    
    .floating-shape.shape-2 {
        width: 60px;
        height: 60px;
    }
    
    .floating-shape.shape-3 {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .form-group-inline {
        max-width: 280px;
    }
}

/* Progress bar animation trigger */
.coming-soon-section.loaded .progress-fill[data-progress="85"] {
    width: 85%;
}

.coming-soon-section.loaded .progress-fill[data-progress="70"] {
    width: 70%;
}

.coming-soon-section.loaded .progress-fill[data-progress="60"] {
    width: 60%;
}/* Butt
on Link Styles - Ensure links look like buttons */
a.btn-primary,
a.btn-secondary,
a.btn-primary-modern,
a.btn-secondary-modern,
a.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-primary-modern:hover,
a.btn-secondary-modern:hover,
a.btn-outline:hover {
    text-decoration: none;
}

/* Ensure proper spacing in hero actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-actions a,
.hero-actions button {
    min-width: 160px;
}

/* CTA buttons modern spacing */
.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-buttons-modern a,
.cta-buttons-modern button {
    min-width: 200px;
}

/* FAQ CTA buttons spacing */
.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-buttons a,
.faq-cta-buttons button {
    min-width: 180px;
}

/* Mobile responsiveness for button links */
@media (max-width: 768px) {
    .hero-actions,
    .cta-buttons-modern,
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions a,
    .hero-actions button,
    .cta-buttons-modern a,
    .cta-buttons-modern button,
    .faq-cta-buttons a,
    .faq-cta-buttons button {
        width: 100%;
        max-width: 280px;
    }
}/* Authenti
cation Page Styles */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.auth-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.auth-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.auth-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.auth-logo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-form-container {
    transition: all 0.3s ease;
}

.auth-form-container.hidden {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    margin-top: 12px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.auth-btn.primary {
    background: var(--primary-color);
    color: white;
}

.auth-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.social-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.social-divider span {
    background: white;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.social-btn.google {
    color: #db4437;
}

.social-btn.google:hover {
    border-color: #db4437;
    background: rgba(219, 68, 55, 0.05);
    transform: translateY(-2px);
}

.social-btn.facebook {
    color: #4267b2;
}

.social-btn.facebook:hover {
    border-color: #4267b2;
    background: rgba(66, 103, 178, 0.05);
    transform: translateY(-2px);
}

/* Auth Features Sidebar */
.auth-features {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: fit-content;
}

.auth-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Coming Soon Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    color: white;
    font-size: 2rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.modal-body {
    margin-bottom: 32px;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.modal-feature i {
    color: #10b981;
    font-size: 1rem;
}

.modal-feature span {
    font-weight: 500;
    color: var(--text-primary);
}

.modal-footer {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.modal-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.modal-btn.primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.modal-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Active Get Started Button */
.get-started-btn.active {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .auth-card,
    .auth-features {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 100px 0 60px;
    }
    
    .auth-card {
        padding: 24px 16px;
    }
    
    .auth-features {
        padding: 24px 16px;
    }
}/* Get 
Started Button Link Styles */
a.get-started-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a.get-started-btn:hover {
    text-decoration: none;
}/*
 New Split Screen Authentication Page Styles */
.auth-section-split {
    min-height: 100vh;
    display: flex;
    padding-top: 80px;
}

.auth-container-split {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
}

/* Left Side - Hero Content */
.auth-hero {
    flex: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content .highlight {
    color: #60a5fa;
}

.hero-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Dashboard Preview */
.dashboard-preview {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    margin-top: 40px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.performance-card {
    grid-row: span 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.performance-display {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
}

.performance-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.performance-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.performance-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.performance-avg {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.avg-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.avg-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.metric-display {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.clients-card .client-count {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-top: 10px;
}

.performance-section {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.performance-column h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.campaign-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.campaign-avatar.green::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
}

.campaign-avatar.blue::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    border: 2px solid white;
}

.campaign-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.campaign-info .name {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.campaign-info .metric {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Side - Auth Form */
.auth-form-side {
    flex: 0 0 480px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.auth-form-container-new {
    width: 100%;
    max-width: 400px;
}

.auth-logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.auth-logo-img-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.5;
}

.auth-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-new {
    position: relative;
}

.form-group-new input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-group-new input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-new input::placeholder {
    color: #9ca3af;
}

.password-toggle-new {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.password-toggle-new:hover {
    color: var(--primary-color);
}

.form-options-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox-container-new {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}

.checkbox-container-new input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-new {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container-new:hover input ~ .checkmark-new {
    border-color: var(--primary-color);
}

.checkbox-container-new input:checked ~ .checkmark-new {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark-new:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container-new input:checked ~ .checkmark-new:after {
    display: block;
}

.forgot-password-new {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-new:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.continue-btn {
    width: 100%;
    padding: 16px 24px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.continue-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.signup-link {
    text-align: center;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.auth-form-wrapper.hidden {
    display: none;
}

/* Mobile Responsiveness for Split Screen Auth */
@media (max-width: 1024px) {
    .auth-container-split {
        flex-direction: column;
    }
    
    .auth-hero {
        flex: none;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .dashboard-preview {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .performance-section {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .auth-form-side {
        flex: none;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .auth-section-split {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .dashboard-preview {
        margin-top: 20px;
    }
    
    .preview-card {
        padding: 16px;
    }
    
    .auth-form-container-new {
        max-width: none;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .form-options-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}/*
 Dashboard Interface Styles */
.dashboard-interface {
    width: 100%;
    height: 100%;
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    background: #0f172a;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-nav {
    display: flex;
    gap: 24px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active {
    background: var(--primary-color);
    color: white;
}

.nav-item i {
    font-size: 1rem;
}

.dashboard-main {
    padding: 24px;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-icon i {
    color: white;
    font-size: 1.25rem;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.stat-change {
    font-size: 0.75rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #10b981;
}

.chart-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-header h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.chart-btn {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.chart-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.chart-container {
    height: 200px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 160px;
    gap: 12px;
    margin-bottom: 16px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), #60a5fa);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chart-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

.bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 6px;
}

.chart-labels span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.activity-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.activity-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.activity-icon.info {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.activity-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* Social Login Styles */
.social-divider-new {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.social-divider-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.social-divider-new span {
    background: white;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.social-login-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn-new {
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.social-btn-new.google {
    color: #db4437;
}

.social-btn-new.google:hover {
    border-color: #db4437;
    background: rgba(219, 68, 55, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 68, 55, 0.2);
}

.social-btn-new.facebook {
    color: #4267b2;
}

.social-btn-new.facebook:hover {
    border-color: #4267b2;
    background: rgba(66, 103, 178, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 103, 178, 0.2);
}

/* Mobile Responsiveness for Dashboard */
@media (max-width: 1024px) {
    .dashboard-nav {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .chart-section {
        padding: 16px;
    }
    
    .chart-container {
        height: 150px;
    }
    
    .chart-bars {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .dashboard-interface {
        border-radius: 12px;
    }
    
    .dashboard-header {
        padding: 16px;
    }
    
    .dashboard-main {
        padding: 16px;
    }
    
    .nav-item span {
        display: none;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .social-login-new {
        grid-template-columns: 1fr;
    }
}/* Enhanc
ed Advanced Dashboard Interface */
.dashboard-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    position: relative;
}

.dashboard-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-header {
    background: linear-gradient(135deg, #0c1426 0%, #1e293b 100%) !important;
    padding: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: relative;
    z-index: 2;
}

.dashboard-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.dashboard-nav {
    display: flex;
    gap: 8px !important;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 0.875rem;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.nav-item.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.nav-item.active::before {
    opacity: 0;
}

.nav-item i {
    font-size: 1.125rem !important;
    position: relative;
    z-index: 1;
}

.dashboard-main {
    padding: 32px !important;
    height: calc(100% - 96px) !important;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px !important;
    margin-bottom: 32px !important;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
    backdrop-filter: blur(20px);
    border-radius: 16px !important;
    padding: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.stat-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important;
    position: relative;
    overflow: hidden;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-icon i {
    color: white !important;
    font-size: 1.5rem !important;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #2563eb !important;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.2) !important;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

.stat-label {
    font-size: 0.875rem !important;
    color: rgb(0 0 0 / 81%) !important;
    margin-bottom: 12px !important;
    font-weight: 500 !important;
}

.stat-change {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.stat-change.positive {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Enhanced Chart Section */
.chart-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    padding: 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 32px !important;
    position: relative;
    overflow: hidden;
}

.chart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px !important;
}

.chart-header h3 {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-controls {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-btn {
    padding: 8px 16px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.chart-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.chart-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.chart-container {
    height: 220px !important;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 160px !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

.chart-bar {
    flex: 1;
    border-radius: 8px 8px 0 0 !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    overflow: hidden;
}

.chart-bar:nth-child(1) { background: linear-gradient(to top, #3b82f6, #60a5fa) !important; }
.chart-bar:nth-child(2) { background: linear-gradient(to top, #8b5cf6, #a78bfa) !important; }
.chart-bar:nth-child(3) { background: linear-gradient(to top, #06b6d4, #67e8f9) !important; }
.chart-bar:nth-child(4) { background: linear-gradient(to top, #10b981, #6ee7b7) !important; }
.chart-bar:nth-child(5) { background: linear-gradient(to top, #f59e0b, #fbbf24) !important; }
.chart-bar:nth-child(6) { background: linear-gradient(to top, #ef4444, #f87171) !important; }

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::before {
    opacity: 1;
}

.chart-bar:hover {
    transform: scaleY(1.05) scaleX(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.bar-value {
    position: absolute;
    top: -32px !important;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem !important;
    color: white !important;
    font-weight: 700 !important;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 8px !important;
}

.chart-labels span {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
}

/* Enhanced Activity Section */
.activity-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    padding: 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.activity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6);
}

.activity-section h4 {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 0 24px 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px !important;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.activity-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem !important;
    position: relative;
    overflow: hidden;
}

.activity-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-item:hover .activity-icon::before {
    opacity: 1;
}

.activity-icon.success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.activity-icon.info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.activity-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 4px !important;
}

.activity-text {
    color: white !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}/* 
Additional fixes for colors and visibility */

/* Ensure all analytics stat values are blue and visible */
.analytics-stat .stat-value,
.analytics-stats .stat-value {
    color: #2563eb !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 8px rgba(37, 99, 235, 0.4) !important;
    opacity: 1 !important;
    filter: contrast(1.4) brightness(1.3) !important;
}

/* Fix for code editor analytics section */
.code-editor-section .analytics-stat .stat-value {
    color: #2563eb !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    text-shadow: 0 3px 6px rgba(37, 99, 235, 0.4) !important;
}

/* Ensure chart bars are properly styled */
.chart-bar, .analytics-chart .chart-bar {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 4px;
}

/* Fix for dashboard chart bars */
.dashboard-chart .bar {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;
}

/* Ensure all stat numbers are consistently styled */
.stat-number, .stat-value, .stat-num {
    color: #2563eb !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 6px rgba(37, 99, 235, 0.3) !important;
    opacity: 1 !important;
}

/* Animation keyframes for counting effect */
@keyframes countUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.counting {
    animation: countUp 0.3s ease !important;
}

/* Ensure proper visibility for all dashboard elements */
.dashboard-mockup, .dashboard-stats, .analytics-section {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix for any potential color conflicts */
.browser-content .stat-number,
.browser-content .stat-value,
.mockup-browser .stat-number {
    color: #2563eb !important;
    font-weight: 900 !important;
    opacity: 1 !important;
}/*
 Final color and visibility optimizations */

/* Normal styling for all dashboard numbers */
.dashboard-stats .stat-number,
.dashboard-mockup .stat-number,
.analytics-stats .stat-value,
.bottom-stats .stat-value,
.preview-stat .stat-num {
    color: #2563eb !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Normal styling for the main dashboard values */
div[data-target="380"],
div[data-target="2.4"],
div[data-target="98"],
div[data-target="45"],
div[data-target="12"] {
    color: #2563eb !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
}

/* Hover effects for interactive elements */
.analytics-tab:hover,
.editor-tab:hover,
.sidebar-item:hover {
    background-color: rgba(37, 99, 235, 0.1) !important;
    color: #2563eb !important;
    transition: all 0.3s ease;
}

/* Active state styling */
.analytics-tab.active,
.editor-tab.active,
.sidebar-item.active {
    background-color: #2563eb !important;
    color: white !important;
    font-weight: 600;
}

/* Ensure chart animations are smooth */
.chart-bar,
.bar {
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
}

/* Simple loading state */
.counting {
    position: relative;
}

/* Responsive improvements */
@media (max-width: 768px) {
    div[data-target="380"],
    div[data-target="2.4"],
    div[data-target="98"],
    div[data-target="45"],
    div[data-target="12"] {
        font-size: 2.5rem !important;
    }
    
    .analytics-stat .stat-value {
        font-size: 2rem !important;
    }
}

/* Print styles to maintain colors */
@media print {
    .stat-number, .stat-value, .stat-num {
        color: #2563eb !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}/*
 CRITICAL FIX: Force dashboard numbers to be visible and properly styled */

/* Target the exact dashboard stat numbers */
.dashboard-stats .stat-card .stat-number,
.browser-content .dashboard-stats .stat-number,
.dashboard-mockup .browser-content .stat-number {
    color: #2563eb !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 1px 3px rgba(37, 99, 235, 0.2) !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Specific targeting for the exact values that are not showing */
div[data-target="380"],
div[data-target="2.4"] {
    color: #2563eb !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3) !important;
    background: transparent !important;
    z-index: 100 !important;
    position: relative !important;
}

/* Ensure the parent containers don't hide the numbers */
.dashboard-stats,
.stat-card,
.browser-content {
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
}

/* Override any potential conflicting styles */
.dashboard-mockup .stat-number,
.dashboard-mockup .browser-content .stat-number {
    color: #2563eb !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    filter: none !important;
    text-decoration: none !important;
    background: none !important;
}

/* Make sure the numbers are not being hidden by any overlay */
.dashboard-mockup::before,
.dashboard-mockup::after,
.browser-content::before,
.browser-content::after {
    display: none !important;
}/* 
EMERGENCY FIX: Reset any conflicting styles */
.dashboard-stats .stat-number {
    all: unset !important;
    color: #2563eb !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.3) !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
}

/* Force the specific problematic numbers to show */
.stat-number[data-target="380"],
.stat-number[data-target="2.4"] {
    color: #2563eb !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 1000 !important;
    background: transparent !important;
    text-shadow: 0 3px 6px rgba(37, 99, 235, 0.4) !important;
}