/* Zeron Accounting - Home Page Professional Design */

/* ===== SHARED STYLES (Import from home page) ===== */

/* Updated card shadows with light blue color */
.simple-card, .testimonial-card, .service-card, .btn-card, .client-story-card, .pricing-card, .metric-card, .dashboard-card {
    position: relative;
    color: #000000 !important;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
}

.simple-card *, .testimonial-card *, .service-card *, .btn-card *, .client-story-card *, .pricing-card *, .metric-card *, .dashboard-card * {
    position: relative;
    z-index: 999 !important;
    color: #000000 !important;
    box-shadow: 0 8px 20px rgba(102, 127, 227, 0.2) !important;
}

.simple-card:hover, .testimonial-card:hover, .service-card:hover, .btn-card:hover, .client-story-card:hover, .pricing-card:hover, .metric-card:hover {
    box-shadow: 0 12px 30px rgba(102, 127, 227, 0.3) !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Blue Color Palette */
    --primary-blue: #a8c7f0;
    --primary-blue-dark: #a8c7f0;
    --primary-blue-light: #a8c7f0;
    --secondary-blue: #a8c7f0;
    --accent-blue: #a8c7f0;
    --light-blue: #dbeafe;
    --ultra-light-blue: #eff6ff;
    
    /* Supporting Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max-width: 98%;
    --section-padding: 60px 0;
    --card-padding: 16px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(102, 127, 227, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(102, 127, 227, 0.15), 0 2px 4px -1px rgba(102, 127, 227, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(102, 127, 227, 0.15), 0 4px 6px -2px rgba(102, 127, 227, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(102, 127, 227, 0.15), 0 10px 10px -5px rgba(102, 127, 227, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(102, 127, 227, 0.25);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: calc(100% - 200px);
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

/* ===== ENHANCED DETACHED NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: none;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-120px);
    opacity: 0;
}

.nav-container {
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    margin-left: -8px;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(37, 99, 235, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
    border-radius: 16px;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 120px;
    height: 120px;
}

.nav-link:active {
    transform: translateY(-1px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.active {
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.15);
    transform: translateY(-1px);
}

.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    opacity: 0;
}

.nav-link:hover .nav-indicator {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.6;
}

.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
    width: 30px;
}

/* ===== DROPDOWN MENU STYLES ===== */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 16px 8px;
    min-width: 220px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1001;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(8px);
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--primary-blue);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-blue);
}

.dropdown-item span {
    flex: 1;
    transition: all 0.3s ease;
}

.dropdown-item:hover span {
    transform: translateX(4px);
}

/* Hover effects for dropdown */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px) scale(1);
}

/* Simple slide-in animation for dropdown items */
.dropdown-item {
    opacity: 0;
    transform: translateX(-40px);
}

.nav-item:hover .dropdown-item {
    animation: dropdownItemSlideIn 0.4s ease forwards;
}

.nav-item:hover .dropdown-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:hover .dropdown-item:nth-child(2) { animation-delay: 0.15s; }
.nav-item:hover .dropdown-item:nth-child(3) { animation-delay: 0.2s; }
.nav-item:hover .dropdown-item:nth-child(4) { animation-delay: 0.25s; }

@keyframes dropdownItemSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-cta {
    margin-left: 24px;
}

.btn-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.btn-nav-cta:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.bar {
    width: 24px;
    height: 3px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Mobile Banner Text Section */
.mobile-banner-text {
    display: none;
    background: white;
    padding: 15px 0;
    margin: 80px 0 40px 0;
}

.mobile-banner-content {
    text-align: left;
    padding: 0 10px;
}

.mobile-title {
    color: #011E41;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 5px;
}

.mobile-description {
    color: rgba(1, 30, 65, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-left: 5px;
}

.mobile-actions {
    display: flex;
    margin-top: 5px;
}

.mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #FFD700;
    color: #011E41;
    font-size: 8px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-btn i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.mobile-btn:hover {
    background: #FFE44D;
    transform: translateY(-2px);
}

.mobile-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .mobile-banner-text {
        display: block;
    }
    
    .hero-content {
        display: none;
    }

    .hero {
        height: 45vh;  /* Reduced height for mobile */
    }

    .feature-dashboard {
        transform: scale(0.85);  /* Slightly reduce the dashboard size */
        margin: 0 auto;  /* Center the dashboard */
    }

    .dashboard-image {
        max-height: 40vh;  /* Ensure image fits in the reduced height */
        width: 100%;
        object-fit: contain;  /* Maintain aspect ratio */
    }

    .dashboard-image img {
        max-height: 100%;
        width: 100%;
        object-fit: contain;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;  /* Remove any margin */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        height: 25vh !important;  /* Reduced even more for mobile */
    }
    
    .feature-dashboard {
        transform: scale(0.7);  /* Reduced scale further */
        margin: 0 auto;
    }
    
    .dashboard-image {
        max-height: 20vh;  /* Reduced height significantly */
        width: 100%;
        object-fit: contain;
    }
    
    .dashboard-image img {
        max-height: 100%;
        width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 1024px) {
    .hero {
        /* height removed to prevent conflict with mobile styles */
        margin: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        margin: 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(1, 30, 65, 1) 0%,
        rgba(1, 30, 65, 0.9) 45%,
        rgba(1, 30, 65, 0.7) 65%,
        rgba(1, 30, 65, 0.4) 100%
    );
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 60%;
    max-width: 1400px;
    margin: 0;
    margin-left: 100px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: none;
}

.hero-title {
    font-size: 8px !important;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    letter-spacing: -0.02em;
    max-width: 900px;
}

/* Smaller size for the second line */
.hero-title .title-line:last-child {
    font-size: 47px !important;
    font-weight: 800;
    opacity: 0.95;
    line-height: 1.3;
    display: block;
    margin-top: clamp(1rem, 2vw, 2rem);
    max-width: min(90%, 900px);
    letter-spacing: -0.01em;
}

.title-line {
    display: block;
}

.highlight {
    color: white;
}

.hero-description {
    font-size: clamp(0.9375rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    line-height: 1.6;
    max-width: min(90%, 600px);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-actions .btn-card:hover {
    background: #4158FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(103, 35, 251, 0.3);
}


@media (max-width: 1024px) {
    .hero-container {
        width: 95%;
        padding: 0 30px;
    }

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

    .hero-title .title-line:last-child {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    display: none;
}

.feature-dashboard {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.feature-label {
    position: absolute;
    display: none;  /* Hide all feature labels */
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    backdrop-filter: blur(10px);
    max-width: 240px;
    animation: labelFloat 4s ease-in-out infinite;
}

.feature-label::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-label:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(37, 99, 235, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.99);
}

.feature-label:hover::before {
    opacity: 0.2;
}

.label-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.label-icon i {
    color: white;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-label:hover .label-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.label-content h4 {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.label-content p {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.4;
}

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

.left-center {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0s;
}

.right-center {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

@media (max-width: 1200px) {
    .feature-label {
        padding: 20px;
        max-width: 280px;
    }
    
    .left-center {
        left: -40px;
    }
    
    .right-center {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .feature-label {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        transform: none;
        margin: 10px 0;
        max-width: 100%;
    }
    
    .feature-dashboard {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.top-left {
    top: 0;
    left: 0;
}

.top-right {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    right: 0;
}

.dashboard-image {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: floatAnimation 6s ease-in-out infinite;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .feature-dashboard {
        padding: 30px;
    }
    
    .feature-label {
        padding: 10px 16px;
    }
    
    .feature-label span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .feature-dashboard {
        padding: 20px;
    }
    
    .feature-label {
        padding: 8px 12px;
    }
    
    .feature-label span {
        font-size: 13px;
    }
    
    .feature-label i {
        font-size: 16px;
    }
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

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

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.dashboard-controls {
    display: flex;
    gap: 6px;
}

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

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

.dashboard-content {
    padding: 24px;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    margin-bottom: 24px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out 0.5s both;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--final-height, 60%); }
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.metric-card i {
    color: var(--primary-blue);
    font-size: 18px;
}

.metric-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Software Partners Section */
.software-partners {
    padding: 60px 0;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.software-partners .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.software-partners .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.software-partners .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(103, 35, 251, 0.1);
    color: #6723FB;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.software-partners .section-title {
    color: var(--gray-900);
    font-size: 48px;  /* Increased from 36px to 48px */
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;  /* Added for better line height with larger text */
    margin-bottom: 20px;  /* Slightly increased margin for larger text */
}

.software-partners .section-description {
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.software-logos {
    display: flex;
    flex-wrap: nowrap;  /* Force single row on desktop */
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 0 auto;
    padding: 0 130px;
    max-width: 100%;
}

.software-logo-card {
    background: white;
    padding: 45px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-logo {
    height: 100px;
    width: auto;
    opacity: 1;
}

/* First two logos get larger */
.software-logo-card:nth-child(1) .software-logo,
.software-logo-card:nth-child(2) .software-logo {
    height: 160px;
}

/* Third logo (Dext) gets extra size */
.software-logo-card:nth-child(3) .software-logo {
    height: 200px;
}

/* Fourth logo gets medium size */
.software-logo-card:nth-child(4) .software-logo {
    height: 100px;
}

/* Last logo (Breezing) stays smaller */
.software-logo-card:last-child .software-logo {
    height: 43.2px;  /* Increased by 8% from 40px */
}

/* Tablet and smaller screens */
@media (max-width: 1200px) {
    .software-logos {
        gap: 60px;
        padding: 0 80px;
        flex-wrap: wrap;  /* Allow wrapping on smaller screens */
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .hero {
        height: 60vh;  /* Reduced height for mobile */
    }

    .hero-container {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content {
        width: 100%;
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .hero-title .title-line:last-child {
        font-size: 1.5rem;
        margin-top: 0.8rem;
        line-height: 1.4;
        text-align: left;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
        width: 100%;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .software-logos {
        gap: 50px;
        padding: 0 40px;
        flex-direction: column;  /* Stack logos vertically */
        align-items: center;
    }
    
    .software-logo-card {
        padding: 20px;
        width: 100%;  /* Full width container */
        display: flex;
        justify-content: center;
    }

    /* Larger size for first 3 logos */
    .software-logo-card:nth-child(1) .software-logo,
    .software-logo-card:nth-child(2) .software-logo,
    .software-logo-card:nth-child(3) .software-logo {
        height: 160px;
    }

    /* Medium size for 4th logo */
    .software-logo-card:nth-child(4) .software-logo {
        height: 100px;
    }
    
    /* Smaller size for last logo with extra top margin */
    .software-logo-card:last-child {
        margin-top: 20px;
    }
    .software-logo-card:last-child .software-logo {
        height: 50px;
    }
}

/* Services Overview */
.services-overview {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    /* Removed radial gradient background to make section fully white */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none;
    pointer-events: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}





@media (max-width: 1200px) {
    .simple-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 40px 10px;
        width: 96%;
    }
}

@media (max-width: 768px) {
    .simple-cards {
        grid-template-columns: 1fr;
        width: 94%;
        padding: 30px 10px;
    }

    .simple-card {
        padding: 30px;
    }
}

.service-item {
    position: relative;
    background: rgba(13, 25, 48, 0.5);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.service-icon-large {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 32px;
    color: rgba(59, 130, 246, 0.9);
    transition: all 0.4s ease;
}

.icon-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.service-info {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(59, 130, 246, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(59, 130, 246, 0.05) 0%,
        rgba(59, 130, 246, 0.02) 100%
    );
    border-radius: 24px;
    transition: all 0.3s ease;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(59, 130, 246, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 999;
    color: #000000 !important;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-16px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.04);
}

.service-card:hover .card-glass {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(255, 255, 255, 0.05);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card::before {
    z-index: 1 !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(168, 85, 247, 0.01) 50%,
        rgba(34, 197, 94, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    z-index: 1 !important;
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.service-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    animation: float-featured 6s ease-in-out infinite;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08), 
                0 8px 20px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.service-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--accent-blue) 50%, 
        #8b5cf6 100%);
    border-radius: 24px 24px 0 0;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.service-card.featured:hover {
    transform: translateY(-20px) rotateX(8deg) scale(1.03);
    border-color: rgba(59, 130, 246, 0.5);
    animation-play-state: paused;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.service-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(37, 99, 235, 0.2) 100%
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(59, 130, 246, 0.4),
        transparent 70%
    );
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card:hover .service-icon {
    transform: translateY(-8px) rotateY(15deg) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.3),
        0 8px 15px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(37, 99, 235, 0.3) 100%
    );
}

.service-card:hover .icon-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.service-card:hover .service-icon i {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

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

/* Special animations for specific icons */
.service-card[data-service="bookkeeping"] .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card[data-service="tax"] .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-card[data-service="analysis"] .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card[data-service="bookkeeping"]:hover .service-icon i {
    animation: chart-pulse 0.6s ease-in-out;
}

.service-card[data-service="tax"]:hover .service-icon i {
    animation: shield-bounce 0.6s ease-in-out;
}

.service-card[data-service="analysis"]:hover .service-icon i {
    animation: rocket-launch 0.8s ease-in-out;
}

@keyframes chart-pulse {
    0%, 100% { transform: scale(1.1) rotate(10deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

@keyframes shield-bounce {
    0%, 100% { transform: scale(1.1) rotate(10deg) translateY(0); }
    25%, 75% { transform: scale(1.15) rotate(12deg) translateY(-3px); }
    50% { transform: scale(1.2) rotate(15deg) translateY(-6px); }
}

@keyframes rocket-launch {
    0% { transform: scale(1.1) rotate(10deg) translateY(0); }
    30% { transform: scale(1.15) rotate(15deg) translateY(-5px); }
    60% { transform: scale(1.2) rotate(20deg) translateY(-8px); }
    100% { transform: scale(1.1) rotate(10deg) translateY(0); }
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(37, 99, 235, 0.05) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.badge-icon i {
    font-size: 12px;
    color: var(--primary-blue);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-blue);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-badge {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(37, 99, 235, 0.1) 100%
    );
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.service-card:hover .service-badge::before {
    transform: translateX(100%);
}

.service-card:hover .badge-icon i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-blue);
}

.service-card:hover .badge-text {
    color: var(--accent-blue);
}

/* Featured Card Styles */
.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    animation: float 3s ease-in-out infinite;
}

.featured-label i {
    font-size: 14px;
    color: #fff5cc;
}

.service-item.featured {
    background: rgba(13, 25, 48, 0.7);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 3px 3px 0 0;
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.service-item.featured .service-btn {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-item.featured:hover {
    background: rgba(13, 25, 48, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-item.featured:hover .service-btn {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-flow {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .service-icon-large {
        margin: 0 auto;
    }

    .service-pricing {
        flex-direction: column;
        gap: 20px;
    }

    .price {
        justify-content: center;
    }

    .service-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-flow {
        padding: 16px;
    }

    .service-content {
        padding: 24px 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .amount {
        font-size: 32px;
    }
}

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

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

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
        transform: scale(1.02);
    }
}

.service-card:hover .featured-badge {
    animation-play-state: paused;
    transform: translateY(-2px) scale(1.05);
    background: #e63946 !important;
    color: white !important;
}

.col-header {
    text-align: center;
    padding: 32px 20px;
}

.col-header i {
    font-size: 32px;
    color: rgba(59, 130, 246, 0.9);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.col-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.col-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.pricing-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.price {
    text-align: center;
}

.currency {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 2px;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.pricing-btn.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border: none;
    color: white;
}

/* Hover Effects */
.pricing-col:hover .col-header i {
    transform: scale(1.1) rotate(10deg);
    color: var(--accent-blue);
}

.pricing-col:hover .col-header h3 {
    color: white;
}

.pricing-col:hover .col-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-col:hover .amount {
    color: white;
}

.pricing-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.pricing-btn:hover i {
    transform: translateX(4px);
}

.pricing-btn.highlight:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-table {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .pricing-header,
    .pricing-row {
        grid-template-columns: 120px repeat(3, 1fr);
    }

    .col-header {
        padding: 24px 16px;
    }

    .col-header i {
        font-size: 24px;
    }

    .col-header h3 {
        font-size: 16px;
    }

    .pricing-col {
        padding: 20px 16px;
    }

    .amount {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .pricing-table {
        margin: 0 16px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .pricing-header {
        display: none;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .name-col {
        display: none;
    }

    .pricing-col {
        text-align: center;
        border-radius: 16px;
        border: 1px solid rgba(59, 130, 246, 0.1);
    }

    .pricing-col.highlight {
        order: -1;
    }

    .col-header {
        display: block;
    }
}

.service-features {
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 14px;
    width: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.service-card:hover .feature-item i {
    color: var(--accent-blue);
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(59, 130, 246, 0.3));
}

/* Special styling for modern feature icons */
.feature-item i.fa-magic {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item i.fa-brain {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item i.fa-crystal-ball {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item i.fa-rocket,
.feature-item i.fa-shield-alt,
.feature-item i.fa-sync,
.feature-item i.fa-mobile-alt,
.feature-item i.fa-calendar-check,
.feature-item i.fa-user-shield,
.feature-item i.fa-tachometer-alt,
.feature-item i.fa-bullseye {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-size: 14px;
    color: var(--gray-600);
}

.service-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.btn-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white !important;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-card:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-blue), #8b5cf6);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-card:hover::before {
    left: 100%;
}

/* Why Choose Section */
/* E-News Section Styles */
.e-news-section {
    margin-bottom: 120px;
}

.news-circles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 160px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.news-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.news-circle.blue {
    background-color: #8264aa;  /* First circle - purple */
}
.news-item .news-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.news-item .news-content p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.news-item:nth-child(1) .news-content h3 {
    color: #8264aa;
    font-weight: 700;
}

.news-circle.green {
    background-color: #005cbf;  /* Second circle - blue */
}
.news-item:nth-child(2) .news-content h3 {
    color: #005cbf;
    font-weight: 700;
}

.news-circle.purple {
    background-color: #f17776;  /* Third circle - pink/red */
}
.news-item:nth-child(3) .news-content h3 {
    color: #f17776;
    font-weight: 700;
}

.circle-icon {
    font-size: 4rem;
    color: white;
}

.news-content h3 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.news-content p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .news-circles {
        gap: 20px;
    }
    
    .news-circle {
        width: 220px;
        height: 220px;
    }
    
    .circle-icon {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .news-circle {
        width: 200px;
        height: 200px;
    }
    
    .circle-icon {
        font-size: 2.5rem;
    }
    
    .news-content h3 {
        font-size: 1.3rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-circles {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        width: 100%;
    }
    
    .news-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .news-circle {
        width: 220px;
        height: 220px;
    }
    
    .circle-icon {
        font-size: 2.8rem;
    }
    
    .news-content {
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
}

.why-choose {
    padding: 100px 0;
    margin-top: 80px;
    background: var(--white);
    text-align: center;
}

.why-choose .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-choose .section-badge {
    display: inline-flex;
    margin-bottom: 20px;
}

.why-choose .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-choose .section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-left {
    max-width: 500px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-column {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    justify-content: center;
    align-items: center;
}

.stats-column .dashboard-card {
    width: 50%;
    min-width: 250px;
}

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-column {
        flex-direction: row;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .stats-column {
        flex-direction: column;
    }
    
    .advantage-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .advantage-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.advantage-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 30px;
    background: var(--white);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    gap: 24px;
}

.advantage-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
}

.advantage-item:hover::before {
    opacity: 0.03;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Unique colors for each advantage icon */
.advantage-item:nth-child(1) .advantage-icon {
    background: #8264aa;  /* Purple for Elite Expertise */
}

.advantage-item:nth-child(2) .advantage-icon {
    background: #005cbf;  /* Deep blue for Maximum Security */
}

.advantage-item:nth-child(3) .advantage-icon {
    background: #f17776;  /* Salmon pink/red for 24/7 Support */
}

.advantage-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.icon-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    opacity: 0.3;
    filter: blur(8px);
    transition: all 0.4s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.08) rotate(3deg);
}

.advantage-item:nth-child(1):hover .advantage-icon {
    box-shadow: 0 12px 24px rgba(123, 168, 142, 0.3);  /* Sage green shadow */
}

.advantage-item:nth-child(2):hover .advantage-icon {
    box-shadow: 0 12px 24px rgba(107, 157, 201, 0.3);  /* Steel blue shadow */
}

.advantage-item:nth-child(3):hover .advantage-icon {
    box-shadow: 0 12px 24px rgba(155, 139, 165, 0.3);  /* Dusty purple shadow */
}

.advantage-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.advantage-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin: 0;
}

.advantage-tag {
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.advantage-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 8px 0 0 0;
}

.content-right {
    display: flex;
    justify-content: center;
}

.stats-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 300px;
}

.dashboard-card {
    background: var(--white);
}

.stats-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.advantage-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--gray-200);
    text-align: center;
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.card-header i {
    color: var(--primary-blue);
    font-size: 20px;
}

.progress-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-svg {
    transform: rotate(-90deg);
}

.progress-background {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: var(--primary-blue);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 31.4;
    animation: progressFill 2s ease-out 1s both;
}

.progress-text {
    position: absolute;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}

.stat-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-period {
    font-size: 14px;
    color: var(--gray-500);
}

/* Gradient Transition Section */
.gradient-transition {
    height: 400px !important;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.gradient-transition::before {
    display: none;
}

/* Testimonials */
/* Override text colors for sections below What Our Clients Say */
.testimonials *, .client-stories-section * {
    color: white !important;
    text-shadow: none !important;
}

/* CTA section specific colors */
.cta-section * {
    color: white !important;
    text-shadow: none !important;
}
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    color: black;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 64px;
}

.testimonials .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials .section-badge i {
    color: var(--white);
}

.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row on desktop */
    gap: 30px;
    margin-bottom: 120px; /* Increased spacing between cards and CTA */
}

.testimonial-card-new {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-radius: 20px;
    z-index: -1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-company-logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.testimonial-company-logo {
    width: 120px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px; /* Added some padding back */}

/* Larger logos for first two cards */
.testimonial-cards-grid .testimonial-card-new:nth-child(-n+2) .testimonial-company-logo {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden; /* This will clip the logo */
}

.company-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1);
    transform-origin: center;
}

.testimonial-body {
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-stars span {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 0, 0) !important;
    margin-bottom: 16px;
    line-height: 1.4;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.9) !important;
    margin: 20px 0 30px;
    padding: 0 5px;
    font-style: italic;
    transition: color 0.3s ease;
    display: block;
    overflow: visible;
    height: auto;
}

.testimonial-card:hover .testimonial-quote {
    color: rgb(0, 0, 0);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.author-details h4 {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-details span {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card-new:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.testimonial-card-new:hover .testimonial-company-logo {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.testimonial-card-new:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1024px) {
    .testimonial-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablet */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonial-cards-grid {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
        gap: 24px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #f1faee;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-rating span {
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-highlight {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 16px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #f1faee;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-content {
    transform: translateY(-4px);
}

.quote-icon {
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.1) rotate(-10deg);
    background: var(--primary-blue);
    color: white;
}

.testimonial-text {
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-text {
    color: var(--gray-900);
}

.author-avatar {
    transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    background: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.quote-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding: 0 8px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: var(--gray-900);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: auto;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.author-name h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.author-name i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.author-info > span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info > span {
    color: var(--gray-800);
}

.company-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonial-card:hover .company-tag {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

/* CTA Section */
.cta-content {
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 32px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: #fdb913;
    color: black;
    border-color: #fdb913;
    font-weight: 700;
}

.btn-primary:hover {
    background: #fdb913;
    color: black;
    border-color: #fdb913;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

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

.btn-primary-white {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-primary-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* ===== CLIENT STORIES SECTION ===== */
.client-stories-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    opacity: 0.95;
    position: relative;
    overflow: hidden;
    color: black;
}

.client-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.client-stories-section .container {
    position: relative;
    z-index: 2;
}

.client-stories-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.client-stories-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.client-stories-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-stories-section .section-badge i {
    color: var(--white);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 60px 0 80px;
    padding: 0 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.trust-badge.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.trust-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.trust-badge:hover .trust-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-number {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.trust-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Stories Grid */
.client-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.client-story-card:nth-child(1) { transition-delay: 0.1s; }
.client-story-card:nth-child(2) { transition-delay: 0.2s; }
.client-story-card:nth-child(3) { transition-delay: 0.3s; }
.client-story-card:nth-child(4) { transition-delay: 0.4s; }

.client-stories-grid.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Client Story Cards */
.client-story-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    min-height: 280px;
}

.client-story-card.animate-on-scroll {
        opacity: 1;
    transform: translateY(0);
}

.client-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.client-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--accent-blue) 50%, 
        #8b5cf6 100%);
    border-radius: 24px 24px 0 0;
    animation: gradient-shift 3s ease-in-out infinite;
}

.client-story-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.5),
        rgba(37, 99, 235, 0.2)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-story-card:hover::after {
    opacity: 1;
}

.client-story-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 80px rgba(255, 255, 255, 0.2),
        0 12px 30px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(165deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(59, 130, 246, 0.05) 100%
    );
}

/* Featured Story */
.client-story-card {
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(255, 255, 255, 0.2),
        0 12px 30px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.featured-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--accent-blue) 50%, 
        #8b5cf6 100%);
    border-radius: 20px 20px 0 0;
}

.featured-story:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 80px rgba(255, 255, 255, 0.2),
        0 12px 30px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Story Header */
.story-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

.client-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.client-logo-container {
    background: white;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-container {
    background: white;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.featured-story .client-logo-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.3s ease;
}

.client-story-card:hover .client-logo {
    filter: contrast(1.2) brightness(1.1);
    transform: scale(1.05);
}

/* Story Content */
.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 24px;
}

.story-rating .stars {
    display: flex;
    gap: 2px;
}

.story-rating .stars i {
    color: #fbbf24;
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.rating-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.story-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-story .story-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
    position: relative;
    padding-left: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-excerpt::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: Georgia, serif;
    opacity: 0.6;
}

.featured-story .story-excerpt {
    font-size: 16px;
    margin-bottom: 24px;
}

/* Story Metrics (Featured Only) */
.story-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Author */
.story-author {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.author-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.author-company {
    font-size: 13px;
    color: var(--gray-500);
}



.metrics-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* Prevent overflow with minmax */
    gap: 32px;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
}

.metric-card {
    width: 100%;
    box-sizing: border-box;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .metric-card {
        padding: 15px 10px;
        transform: scale(0.9);
    }
    
    .metric-icon {
        font-size: 20px;
    }
    
    .metric-content {
        font-size: 12px;
    }
    
    .metric-number {
        font-size: 24px;
    }
    
    .metric-label {
        font-size: 12px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 10px;
    }
    
    .metric-card {
        padding: 12px 8px;
        transform: scale(0.85);
    }
    
    .metric-icon {
        font-size: 18px;
    }
    
    .metric-content {
        font-size: 11px;
    }
    
    .metric-number {
        font-size: 20px;
    }
    
    .metric-label {
        font-size: 11px;
        margin-top: 4px;
    }
}

.metric-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.metric-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.metric-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.metric-card:hover .metric-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-metrics .metric-card .metric-number,
.metric-number {
    font-size: 32px;
    font-weight: 800;
    color: white !important;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: white !important;
    background: none !important;
}

.success-metrics .metric-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Client Stories */
@media (max-width: 1024px) {
    .client-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .client-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-story {
        grid-row: span 1;
        grid-column: span 1;
        padding: 32px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 40px 0 60px;
    }
    
    .trust-badge {
        padding: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .client-story-card {
        padding: 24px;
    }
    
    .story-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .story-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        margin: 30px 0 50px;
    }
    
    .trust-badge {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .client-story-card {
        padding: 20px;
    }
    

}

















/* ===== HOME PAGE FOOTER ===== */
.dark-gradient-transition {
    position: relative;
    height: 500px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}

.gradient-transition {
    position: relative;
    height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.gradient-transition .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 24px;
}

.gradient-section-header {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gradient-section-header .section-badge {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    display: inline-flex;
    margin-bottom: 30px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    gap: 8px;
    border: none;
}

.gradient-section-header .section-title {
    color: #1f2937;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.stars-container.stars-dense .stars {
    opacity: 0.9;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.stars-small {
    background-image: radial-gradient(1px 1px at 20px 30px, white, rgba(0,0,0,0)),
                      radial-gradient(1px 1px at 40px 70px, white, rgba(0,0,0,0)),
                      radial-gradient(1px 1px at 50px 160px, white, rgba(0,0,0,0)),
                      radial-gradient(1px 1px at 90px 250px, white, rgba(0,0,0,0)),
                      radial-gradient(1px 1px at 130px 330px, white, rgba(0,0,0,0)),
                      radial-gradient(1px 1px at 160px 190px, white, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: moveStars 60s linear infinite;
}

.stars-medium {
    background-image: radial-gradient(1.5px 1.5px at 50px 160px, white, rgba(0,0,0,0)),
                      radial-gradient(1.5px 1.5px at 90px 40px, white, rgba(0,0,0,0)),
                      radial-gradient(1.5px 1.5px at 130px 80px, white, rgba(0,0,0,0)),
                      radial-gradient(1.5px 1.5px at 160px 120px, white, rgba(0,0,0,0));
    background-size: 300px 300px;
    animation: moveStars 90s linear infinite;
}

.stars-large {
    background-image: radial-gradient(2px 2px at 100px 50px, white, rgba(0,0,0,0)),
                      radial-gradient(2px 2px at 200px 150px, white, rgba(0,0,0,0)),
                      radial-gradient(2px 2px at 300px 250px, white, rgba(0,0,0,0));
    background-size: 400px 400px;
    animation: moveStars 120s linear infinite;
}

@keyframes moveStars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(37, 99, 235, 0.08) 0%,
        rgba(37, 99, 235, 0.05) 20%,
        rgba(37, 99, 235, 0.03) 40%,
        rgba(0, 0, 0, 0) 60%
    );
    animation: pulseGlow 8s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: floatParticle 8s infinite linear;
    opacity: 0.3;
}

.particle:nth-child(1) { left: 20%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; top: 30%; animation-delay: 8s; }

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-400px) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-800px) scale(1);
        opacity: 0;
    }
}

.pricing-section {
    background: #73B9EE;
    color: var(--gray-300);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section .section-title {
    color: white;
    margin-bottom: 20px;
}

.pricing-section .section-description {
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section .section-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: linear-gradient(165deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(59, 130, 246, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(165deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(59, 130, 246, 0.05) 100%
    );
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 12px 50px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(59, 130, 246, 0.2),
        inset 0 0 0 1px rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.5),
        rgba(37, 99, 235, 0.2)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.plan-price {
    margin: 30px 0;
    position: relative;
    padding: 20px;
    background: linear-gradient(165deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-price .currency {
    font-size: 24px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: top;
    font-weight: 600;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.plan-price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.plan-price .custom-quote {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured .plan-price {
    background: linear-gradient(165deg,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 100%
    );
    border-color: rgba(59, 130, 246, 0.1);
}

.featured .plan-price .currency,
.featured .plan-price .amount,
.featured .plan-price .custom-quote {
    background: linear-gradient(135deg, #fff, rgba(59, 130, 246, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-300);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 14px;
}

.pricing-action {
    text-align: center;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-pricing i {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pricing:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-pricing:hover i {
    transform: translateX(4px);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border: none;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.btn-pricing.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.pricing-action {
    position: relative;
    z-index: 10;
}

.btn-pricing:hover::before {
    left: 100%;
}

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.guarantee-badge i {
    font-size: 24px;
    color: var(--primary-blue);
}

.guarantee-content h4 {
    color: white;
    margin-bottom: 4px;
    font-size: 16px;
}

.guarantee-content p {
    color: var(--gray-400);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: auto;
    }
    
    .pricing-card {
        padding: 30px;
    }
}

.home-footer {
    position: relative;
    background: #0a0f1a;
    color: var(--gray-300);
    padding: 80px 0 0;
    overflow: hidden;
}

/* Animated Glow Effect */
.home-footer-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: homeFooterGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes homeFooterGlow {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Main Footer Content */
.home-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.home-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    animation: homeLogoFloat 6s ease-in-out infinite;
}

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

.home-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    animation: homeLogoShine 3s linear infinite;
}

@keyframes homeLogoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.home-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-brand-tagline {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Navigation Section */
.home-footer-nav {
    display: flex;
    gap: 60px;
}

.home-nav-section {
    min-width: 120px;
}

.home-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.home-nav-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 1px;
    animation: homeExpandLine 1s ease-out 1.2s both;
}

@keyframes homeExpandLine {
    0% { width: 0; }
    100% { width: 24px; }
}

.home-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-nav-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px 0;
    animation: fadeInUp 1s ease-out calc(0.9s + var(--delay, 0)) both;
}

.home-nav-links li:nth-child(1) .home-nav-link { --delay: 0.1s; }
.home-nav-links li:nth-child(2) .home-nav-link { --delay: 0.2s; }
.home-nav-links li:nth-child(3) .home-nav-link { --delay: 0.3s; }

.home-nav-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 4px solid var(--primary-blue);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.home-nav-link:hover {
    color: var(--primary-blue);
    transform: translateX(12px);
}

.home-nav-link:hover::before {
    opacity: 1;
}

/* Contact Section */
.home-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.home-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-400);
    animation: fadeInLeft 1s ease-out calc(1.1s + var(--delay, 0)) both;
}

.home-contact-item:nth-child(1) { --delay: 0.1s; }
.home-contact-item:nth-child(2) { --delay: 0.2s; }
.home-contact-item:nth-child(3) { --delay: 0.3s; }

.home-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
    transition: all 0.3s ease;
}

.home-contact-item:hover i {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.home-contact-item a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Bottom */
.home-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.home-copyright span {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.home-certifications {
    display: flex;
    gap: 24px;
}

.home-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: homeCertFloat calc(4s + var(--delay, 0)) ease-in-out infinite alternate;
}

.home-certifications .home-cert-badge:nth-child(1) { --delay: 0s; }
.home-certifications .home-cert-badge:nth-child(2) { --delay: 2s; }

@keyframes homeCertFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-4px); }
}

.home-cert-badge:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.home-cert-badge i {
    color: var(--primary-blue);
    font-size: 14px;
}

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

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideOutScale {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

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

@keyframes chartGrow {
    from {
        height: 0;
    }
    to {
        height: var(--final-height, 60%);
    }
}

@keyframes progressFill {
    from {
        stroke-dashoffset: 314;
    }
    to {
        stroke-dashoffset: 31.4;
    }
}

/* ===== NEW SERVICE CARD STYLES ===== */
.service-divider {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
    margin: 20px 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-divider {
    width: 60px;
    background: linear-gradient(90deg, var(--accent-blue), #8b5cf6);
}

.service-features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: rgba(13, 25, 48, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(59, 130, 246, 0.8);
    transition: all 0.3s ease;
    width: 24px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.feature-text span {
    display: block;
}

.service-card:hover .feature-item {
    background: rgba(59, 130, 246, 0.1);
}

.service-card:hover .feature-icon {
    color: rgba(59, 130, 246, 1);
}

.service-card:hover .feature-text {
    color: rgba(255, 255, 255, 0.9);
}

.service-action {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    transition: all 0.3s ease;
}

.price-currency {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -1px;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.btn-card:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Featured button styles */
.btn-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border: none;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.btn-card.featured:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(59, 130, 246, 0.4),
        0 8px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, var(--accent-blue), #8b5cf6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stats-dashboard {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
        border-radius: 16px;
    }
    
    .navbar.hidden {
        transform: translateX(-50%) translateY(-120px);
    }
    
    .nav-menu {
        position: fixed;
        top: 96px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        height: calc(100vh - 108px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition-smooth);
        box-shadow: 
            0 8px 30px rgba(0, 0, 0, 0.12),
            0 4px 12px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        z-index: 999;
        border-radius: 16px;
    }
    
    .nav-menu.active {
        left: 12px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hide dropdowns on mobile */
    .dropdown-menu {
        display: none;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-card.featured {
        transform: scale(1);
    }
    
    .review-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .home-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .home-footer-nav {
        gap: 40px;
        justify-content: center;
    }
    
    .home-footer-contact {
        align-items: center;
    }
    
    .home-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .home-certifications {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .review-title {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 14px;
        padding-left: 16px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}