/* ========================================
   COMPONENTS
   Lato/Merriweather typography with enhanced glassmorphism
   Frosted glass cards with subtle blue blur
   ======================================== */

/* ===== BUTTONS ===== */

.btn-base {
    font-family: var(--font-display);
    padding: var(--space-3) var(--space-6);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.cta-button {
    font-family: var(--font-display);
    background: var(--primary-blue) !important;  /* Deep Medical Blue - Primary Button */
    color: white !important;
    padding: 10px 8px 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px rgba(0, 80, 157, 0.3);
}

.cta-button:hover {
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.4);
    background: var(--primary-dark) !important;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0, 80, 157, 0.3);
}

/* Icon bubble for cta button */
.cta-button .icon-bubble {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-button .icon-bubble i {
    color: white !important;
    stroke: white !important;
}

.cta-button:hover .icon-bubble {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cta-button.icon-left {
    padding: 10px 18px 10px 8px;
    flex-direction: row-reverse;
}

.button-secondary {
    font-family: var(--font-display);
    background: transparent !important;  /* Transparent/Outline - Secondary Button */
    color: var(--primary-cyan) !important;  /* Innovation Cyan text */
    padding: var(--space-3) var(--space-5) var(--space-3) var(--space-6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1.5px solid var(--primary-cyan) !important;  /* Innovation Cyan border */
    letter-spacing: -0.01em;
}

.button-secondary:hover {
    background: rgba(0, 194, 203, 0.1) !important;  /* Light cyan background on hover */
    box-shadow: var(--shadow-sm);
}

/* Icon bubble for button-secondary */
.button-secondary .icon-bubble {
    width: 32px;
    height: 32px;
    background: var(--primary-cyan) !important;  /* Innovation Cyan */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.button-secondary .icon-bubble i {
    color: white !important;
    stroke: white !important;
}

.button-secondary:hover .icon-bubble {
    transform: scale(1.05);
}

.button-white {
    font-family: var(--font-display);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: var(--space-3) var(--space-5) var(--space-3) var(--space-6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    letter-spacing: -0.01em;
}

.button-white:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

/* Icon bubble for button-white */
.button-white .icon-bubble {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.button-white .icon-bubble i {
    color: white !important;
    stroke: white !important;
}

.button-white:hover .icon-bubble {
    transform: scale(1.05);
}

/* ===== NAVBAR ===== */

.navbar {
    background: #FFFFFF !important;  /* Clean White for header */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar {
    background: #FFFFFF !important;  /* Clean White for header */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.navbar.scrolled {
    background: var(--glass-white-strong);
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 44px;
    width: auto;
}

.nav-link-modern {
    font-family: var(--font-display);
    color: var(--primary-blue) !important;  /* Deep Medical Blue for navigation links */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.25s ease;
    position: relative;
    letter-spacing: -0.01em;
    padding: 8px 16px;
}

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

.nav-link-modern.active {
    color: var(--primary-cyan) !important;  /* Innovation Cyan for active state */
    font-weight: 600;
}

.nav-cta-btn {
    font-family: var(--font-display);
    background: var(--primary-blue) !important;  /* Deep Medical Blue - Primary Button */
    color: white !important;
    padding: 8px 6px 8px 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-cta-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 80, 157, 0.3);
    background: var(--primary-dark) !important;
}

/* Icon bubble for nav cta button */
.nav-cta-btn .icon-bubble {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-cta-btn .icon-bubble i {
    color: white !important;
    stroke: white !important;
}

.nav-cta-btn:hover .icon-bubble {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.nav-links a {
    font-family: var(--font-display);
    color: var(--primary-blue) !important;  /* Deep Medical Blue for navigation links */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.25s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: var(--primary-blue) !important;
}

.nav-links a.active {
    color: var(--primary-cyan) !important;  /* Innovation Cyan for active state */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.dropdown-content {
    background: var(--glass-white-strong);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: var(--space-2) 0;
    margin-top: 0;
    padding-top: var(--space-2);
    border: 1px solid var(--border-light);
}

.dropdown-content a {
    color: var(--text-primary);
    padding: var(--space-3) var(--space-6);
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-blue);
}

/* Hamburger Menu */
.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu-wrapper {
    background: var(--glass-white-strong);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.mobile-menu-wrapper .nav-links {
    padding: var(--space-4) 0;
}

.mobile-menu-wrapper .nav-links li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-wrapper .nav-links a {
    padding: var(--space-4) 5%;
    font-size: 1rem;
}

.mobile-menu-wrapper .dropdown-content {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background-color: var(--bg-secondary);
    backdrop-filter: none;
}

.mobile-menu-wrapper .dropdown-content a {
    padding: var(--space-3) 5%;
    padding-left: 10%;
    background-color: var(--bg-secondary);
}

.mobile-menu-wrapper .cta-button {
    margin: var(--space-4) 5%;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ===== CARDS WITH FROSTED GLASS + BLUE BLUR ===== */

.card {
    position: relative;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

/* Blue blur background effect */
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 80, 157, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card > * {
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 80, 157, 0.15);
    border-color: rgba(0, 80, 157, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.service-card {
    position: relative;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-10);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Enhanced blue blur for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%, 
        rgba(0, 80, 157, 0.12) 0%, 
        rgba(0, 194, 203, 0.08) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Gradient top border */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 80, 157, 0.2);
    border-color: rgba(0, 80, 157, 0.25);
    background: rgba(255, 255, 255, 0.9);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-6);
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: 0.9375rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: var(--space-6);
}

.service-card ul li {
    font-family: var(--font-body);
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    padding-left: var(--space-6);
    position: relative;
    font-size: 0.9375rem;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.125rem;
}

.service-link {
    font-family: var(--font-display);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.service-link:hover {
    gap: var(--space-3);
}

.product-card {
    position: relative;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-10);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Blue blur for product cards */
.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 80, 157, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card:hover {
    box-shadow: 0 16px 48px rgba(0, 80, 157, 0.18);
    border-color: rgba(0, 80, 157, 0.25);
    background: rgba(255, 255, 255, 0.9);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.pillar-item {
    position: relative;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--glass-white);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

/* Subtle blue tint for pillar items */
.pillar-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 80, 157, 0.06) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-item:hover::before {
    opacity: 1;
}

.pillar-item > * {
    position: relative;
    z-index: 1;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 36px rgba(0, 80, 157, 0.12);
    border-color: rgba(0, 80, 157, 0.15);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.15);
}

.pillar-item h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ===== TESTIMONIALS ===== */

.testimonial-card {
    position: relative;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-10);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 80, 157, 0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    box-shadow: 0 12px 36px rgba(0, 80, 157, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 80, 157, 0.2);
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.testimonial-author {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.testimonial-role {
    font-family: var(--font-body);
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-top: var(--space-1);
}

/* ===== CLIENT LOGOS ===== */

.client-logo {
    position: relative;
    text-align: center;
    padding: var(--space-6) var(--space-5);
    background: var(--glass-white);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: -0.01em;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 80, 157, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo > * {
    position: relative;
    z-index: 1;
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 80, 157, 0.15);
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.1);
    color: var(--text-primary);
}

/* ===== HERO SECTIONS ===== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: none; /* Disabled - removed asymmetric blue gradient */
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 80, 157, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-visual {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    box-shadow: var(--shadow-blue-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 80, 157, 0.1);
}

.hero-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: var(--glass-white-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

.video-play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.video-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 28px;
    border-color: transparent transparent transparent var(--primary-blue);
    margin-left: 4px;
}

.video-play-button.hidden {
    display: none;
}

/* ===== FOOTER ===== */

.footer {
    background: var(--primary-dark);
    color: white;
    position: relative;
}

.modern-footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

.footer-section h4 {
    font-family: var(--font-display);
    margin-bottom: var(--space-6);
    font-size: 0.9375rem;
    color: white !important;  /* White for readability on dark footer background */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-3);
}

.footer-section a {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.footer-section a:hover {
    color: white;
}

.footer-about {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-bottom {
    margin-top: 2em;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.contact-info {
    font-family: var(--font-body);
    margin-top: var(--space-6);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.contact-info strong {
    font-family: var(--font-display);
    color: white;
    display: block;
    margin-top: var(--space-4);
    margin-bottom: var(--space-1);
}

.footer-partners-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: var(--space-5);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-partner-logo {
    height: auto;
    max-height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-partner-logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-partners-container {
        padding: 12px 16px;
        margin-top: var(--space-4);
    }
    
    .footer-partners {
        gap: 16px;
    }
    
    .footer-partner-logo {
        max-height: 40px;
        max-width: 100px;
    }
}

/* ===== TEAM MEMBERS ===== */

.team-member {
    position: relative;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
}

.team-member::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 80, 157, 0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    box-shadow: 0 16px 48px rgba(0, 80, 157, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 80, 157, 0.2);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    border-bottom: 1px solid #E5E7EB;
}

.team-info {
    padding: var(--space-8);
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.team-info p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== CTA SECTIONS ===== */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Feature Box with glass effect */
.feature-box {
    position: relative;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: var(--space-10);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 80, 157, 0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box > * {
    position: relative;
    z-index: 1;
}

.feature-box:hover {
    box-shadow: 0 12px 36px rgba(0, 80, 157, 0.12);
    border-color: rgba(0, 80, 157, 0.2);
}

.feature-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.feature-box p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Icon bubble general styles */
.icon-bubble i,
.icon-bubble svg {
    flex-shrink: 0;
}

/* Force white color for icons in bubbles */
.btn-primary .icon-bubble svg,
.btn-secondary .icon-bubble svg,
.btn-outline .icon-bubble svg,
.cta-button .icon-bubble svg,
.nav-cta-btn .icon-bubble svg,
.btn-demo-primary .icon-bubble svg,
.btn-demo-secondary .icon-bubble svg,
.button-secondary .icon-bubble svg,
.button-white .icon-bubble svg {
    stroke: currentColor;
}

.btn-primary .icon-bubble,
.cta-button .icon-bubble,
.nav-cta-btn .icon-bubble,
.btn-demo-primary .icon-bubble {
    color: white;
}

.btn-secondary .icon-bubble,
.btn-outline .icon-bubble,
.btn-demo-secondary .icon-bubble,
.button-secondary .icon-bubble,
.button-white .icon-bubble {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-visual {
        height: 360px;
        border-radius: 16px;
    }
    
    .service-card,
    .product-card,
    .testimonial-card {
        padding: var(--space-8);
    }
    
    .video-play-button {
        width: 72px;
        height: 72px;
    }
    
    /* Adjust button padding for mobile */
    .btn-primary,
    .btn-secondary {
        padding: 10px 10px 10px 18px;
        gap: 10px;
    }
    
    .btn-primary.icon-left,
    .btn-secondary.icon-left {
        padding: 10px 18px 10px 10px;
    }
    
    .btn-primary .icon-bubble,
    .btn-secondary .icon-bubble {
        width: 32px;
        height: 32px;
    }
    
    .btn-primary .icon-bubble i,
    .btn-secondary .icon-bubble i {
        width: 16px;
        height: 16px;
    }
}

/* ===== MODERN DESIGN ADDITIONS ===== */

/* Modern Hero */
.modern-hero {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%) !important;
    padding: 120px 5% 80px 5%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-cyan) !important;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 80, 157, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.05em;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1F2937 !important;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6B7280 !important;
    margin-bottom: 32px;
}

.btn-primary {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue) !important;  /* Deep Medical Blue - Primary Button */
    color: white !important;
    padding: 10px 10px 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 80, 157, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.4);
    background: var(--primary-dark) !important;
}

/* Icon bubble for primary button - right side */
.btn-primary .icon-bubble {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-primary .icon-bubble i,
.btn-primary .icon-bubble i svg,
.btn-primary .icon-bubble svg {
    color: white !important;
    stroke: white !important;
}

.btn-primary:hover .icon-bubble {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Icon bubble on left side */
.btn-primary.icon-left {
    padding: 10px 18px 10px 10px;
    flex-direction: row-reverse;
}

.btn-secondary {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;  /* Transparent/Outline - Secondary Button */
    color: var(--primary-cyan) !important;  /* Innovation Cyan text */
    padding: 10px 10px 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-cyan) !important;  /* Innovation Cyan border */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 194, 203, 0.1) !important;  /* Light cyan background on hover */
}

/* Icon bubble for secondary button - right side */
.btn-secondary .icon-bubble {
    width: 36px;
    height: 36px;
    background: var(--primary-cyan) !important;  /* Innovation Cyan */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-secondary .icon-bubble i,
.btn-secondary .icon-bubble i svg,
.btn-secondary .icon-bubble svg {
    color: white !important;
    stroke: white !important;
}

.btn-secondary:hover .icon-bubble {
    background: var(--primary-cyan) !important;
    transform: scale(1.05);
}

/* Icon bubble on left side */
.btn-secondary.icon-left {
    padding: 10px 18px 10px 10px;
    flex-direction: row-reverse;
}

.btn-outline {
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-cyan) !important;
    padding: 10px 8px 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-cyan);
    transition: all 0.3s ease;
}

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

.btn-outline:hover .icon-bubble {
    background: white;
}

.btn-outline:hover .icon-bubble i {
    color: var(--primary-cyan) !important;
    stroke: var(--primary-cyan) !important;
}

/* Icon bubble for outline button - right side */
.btn-outline .icon-bubble {
    width: 34px;
    height: 34px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-outline .icon-bubble i {
    color: white !important;
    stroke: white !important;
}

/* Icon bubble on left side */
.btn-outline.icon-left {
    padding: 10px 18px 10px 8px;
    flex-direction: row-reverse;
}

.hero-image-wrapper {
    position: relative;
}

.hero-video-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
}

.hero-video-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    display: block;
    border-radius: 24px;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

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

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(0, 80, 157, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.floating-text strong {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.floating-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.floating-status {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Trusted Partners */
.trusted-partners {
    padding: 60px 5%;
    border-top: 1px solid #E5E7EB;
    overflow: hidden;
    background-color: #FFFFFF !important;
}

.partners-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #6B7280 !important;
    margin-bottom: 48px;
}

.partners-logos-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-logos-scroll {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
    animation: scroll-logos 40s linear infinite;
    will-change: transform;
    padding-right: 80px;
}

/* Support for picture elements wrapping logos */
.partners-logos-scroll picture {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.partners-logos-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 40px));
    }
}

.partners-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-tertiary);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}

.partners-logo-img {
    height: auto;
    width: 180px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(30%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.partners-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-logos-scroll {
        gap: 60px;
        padding-right: 60px;
    }
    
    @keyframes scroll-logos {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-50% - 30px));
        }
    }
    
    .partners-logo-img {
        width: 140px;
        max-height: 60px;
    }
}

/* Experts Section */
.experts-section {
    background: white;
}

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

.expert-card {
    background: linear-gradient(135deg, rgba(0, 80, 157, 0.05) 0%, rgba(0, 194, 203, 0.05) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(0, 80, 157, 0.1);
    transition: all 0.3s ease;
}

.expert-card:hover {
    box-shadow: 0 20px 60px rgba(0, 80, 157, 0.15);
    border-color: rgba(0, 80, 157, 0.3);
}

.expert-image {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #E5E7EB;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.expert-placeholder {
    font-size: 6rem;
}

.expert-info {
    padding: 24px;
    background: white;
    text-align: center;
}

.expert-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.expert-role {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.expert-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 80, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan) !important;
    transition: all 0.3s ease;
}

.social-icon i {
    color: var(--primary-cyan) !important;
    stroke: var(--primary-cyan) !important;
}

.social-icon:hover {
    background: var(--primary-cyan);
    color: white !important;
}

.social-icon:hover i {
    color: white !important;
    stroke: white !important;
}

/* Modern Testimonials */
.testimonials-modern {
    background: #F9FAFB;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-counter {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.testimonial-modern-grid {
    display: grid;
    gap: 32px;
}

.testimonial-modern-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

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

.testimonial-avatar-group {
    display: flex;
    margin-left: -10px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 3px solid white;
    margin-left: -10px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #FBBF24;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author-modern strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan) !important;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--primary-cyan);
    color: white;
}

/* Contact Modern */
.contact-modern {
    background: white;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-modern-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-modern-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 80, 157, 0.1) 0%, rgba(0, 194, 203, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-modern strong {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item-modern p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.contact-map-modern {
    background: linear-gradient(135deg, rgba(0, 80, 157, 0.05) 0%, rgba(0, 194, 203, 0.05) 100%);
    border-radius: 24px;
    padding: 40px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 80, 157, 0.1);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    font-size: 4rem;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

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

.map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 80, 157, 0.05) 0px, rgba(0, 80, 157, 0.05) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(0, 80, 157, 0.05) 0px, rgba(0, 80, 157, 0.05) 1px, transparent 1px, transparent 40px);
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper,
    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-floating-card {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.125rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-modern-grid {
        gap: 32px;
    }
    
    .contact-map-modern {
        height: 300px;
    }
}

/* Modern Services Section */
.modern-services {
    background: #FFFFFF !important;
    position: relative;
}

.modern-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    z-index: 0;
}

.modern-services .container {
    position: relative;
    z-index: 1;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.modern-service-card {
    background: #FFFFFF !important;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 80, 157, 0.15);
    border-color: rgba(0, 80, 157, 0.3);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 80, 157, 0.1);
    font-family: var(--font-display);
}

.modern-service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
}

.modern-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.modern-service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.modern-service-link {
    color: var(--primary-cyan) !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.modern-service-link:hover {
    gap: 12px;
}

/* Stats/Metrics Section */
.stats-modern {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.stats-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-display);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.5;
}

.stat-item-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Products Section Modern */
.products-modern {
    background: #F5F5F7 !important;
}

.products-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-modern-card {
    background: #FFFFFF !important;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.product-modern-card:hover {
    box-shadow: 0 20px 60px rgba(0, 80, 157, 0.15);
    border-color: rgba(0, 80, 157, 0.3);
}

.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid #E5E7EB;
}

.product-modern-info {
    padding: 32px;
}

.product-modern-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-modern-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    background: rgba(0, 80, 157, 0.1);
    color: var(--primary-cyan) !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .modern-services-grid,
    .products-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ===== BENTO GRID ===== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bento-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 2;
}

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

.bento-card:hover {
    box-shadow: 0 20px 60px rgba(0, 80, 157, 0.15);
    border-color: rgba(0, 80, 157, 0.3);
}

/* Bento card sizes */
.bento-large {
    grid-column: span 1;
}

.bento-medium {
    grid-column: span 1;
}

/* Screenshot area */
.bento-screenshot {
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 80, 157, 0.05) 0%, rgba(0, 194, 203, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E5E7EB;
}

.bento-screenshot i {
    color: var(--primary-cyan) !important;
}

.screenshot-placeholder {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    border: 1px solid rgba(0, 80, 157, 0.2);
}

/* Content area */
.bento-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bento-content .service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 80, 157, 0.08);
    font-family: var(--font-display);
}

.bento-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.bento-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .bento-grid {
        gap: 20px;
    }
    
    .bento-screenshot {
        height: 240px;
    }
    
    .bento-content {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bento-large,
    .bento-medium {
        grid-column: span 1;
    }
    
    .bento-screenshot {
        height: 200px;
    }
    
    .bento-content {
        padding: 24px;
    }
    
    .bento-content .service-number {
        font-size: 2rem;
        top: 20px;
        right: 20px;
    }
    
    .bento-content h3 {
        font-size: 1.25rem;
    }
}

/* ===== INTERACTIVE DEMO SECTION ===== */

.interactive-demo-section {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 50%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.interactive-demo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 80, 157, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-bg 4s ease-in-out infinite;
}

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

.demo-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-card {
    background: white;
    border-radius: 32px;
    padding: 64px 60px;
    box-shadow: 0 20px 80px rgba(0, 80, 157, 0.15);
    border: 2px solid rgba(0, 80, 157, 0.1);
    position: relative;
    overflow: hidden;
}

/* Phone Icon with Ring Animation */
.demo-icon-wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 16px;
}

.phone-ring-animation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    position: relative;
    animation: phone-bounce 2s ease-in-out infinite;
}

@keyframes phone-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.phone-ring-animation::before,
.phone-ring-animation::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 3px solid var(--primary-cyan);
    opacity: 0;
    animation: ring-pulse 2s ease-out infinite;
}

.phone-ring-animation::after {
    animation-delay: 1s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.demo-phone-icon {
    width: 56px !important;
    height: 56px !important;
    color: white;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 90%, 100% { transform: rotate(0deg); }
    92%, 96% { transform: rotate(-15deg); }
    94%, 98% { transform: rotate(15deg); }
}

/* Title and Subtitle */
.demo-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.15;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.demo-title-spaced {
    margin-top: 2rem;
}

.demo-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Phone Number Display */
.phone-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.phone-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.phone-number:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.phone-digit {
    display: inline-block;
    animation: digit-pop 0.5s ease-out forwards;
    animation-iteration-count: 1;
}

/* Target phone-digit elements in order, accounting for phone-space elements */
/* Children: 1=0, 2=2, 3=space, 4=3, 5=0, 6=5, 7=5, 8=space, 9=1, 10=7, 11=0, 12=7 */
.phone-number .phone-digit:nth-child(1) { animation-delay: 0.05s; }
.phone-number .phone-digit:nth-child(2) { animation-delay: 0.1s; }
.phone-number .phone-digit:nth-child(4) { animation-delay: 0.15s; }
.phone-number .phone-digit:nth-child(5) { animation-delay: 0.2s; }
.phone-number .phone-digit:nth-child(6) { animation-delay: 0.25s; }
.phone-number .phone-digit:nth-child(7) { animation-delay: 0.3s; }
.phone-number .phone-digit:nth-child(9) { animation-delay: 0.35s; }
.phone-number .phone-digit:nth-child(10) { animation-delay: 0.4s; }
.phone-number .phone-digit:nth-child(11) { animation-delay: 0.45s; }
.phone-number .phone-digit:nth-child(12) { animation-delay: 0.5s; }

@keyframes digit-pop {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }
    70% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.phone-space {
    display: inline-block;
    width: 12px;
}

.copy-phone-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #6B7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 80, 157, 0.12);
}

.copy-phone-btn:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.2);
}

.copy-phone-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Disclaimer */
.demo-disclaimer {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-align: center;
    line-height: 1.65;
    margin-bottom: 44px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.demo-link {
    color: var(--primary-cyan) !important;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* CTA Buttons */
.demo-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.btn-demo-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue) !important;
    color: white !important;
    padding: 10px 10px 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 80, 157, 0.3);
    border: none;
    font-family: var(--font-display);
}

.btn-demo-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.4);
    background: var(--primary-dark) !important;
}

.btn-demo-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0, 80, 157, 0.3);
}

/* Icon bubble for demo primary button */
.btn-demo-primary .icon-bubble {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-demo-primary .icon-bubble i,
.btn-demo-primary .icon-bubble i svg,
.btn-demo-primary .icon-bubble svg {
    color: white !important;
    stroke: white !important;
}

.btn-demo-primary:hover .icon-bubble {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.btn-demo-primary.icon-left {
    padding: 10px 18px 10px 10px;
    flex-direction: row-reverse;
}

.btn-demo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-cyan) !important;
    padding: 12px 12px 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: 3px solid var(--primary-cyan);
    transition: all 0.3s ease;
    font-family: var(--font-display);
}

.btn-demo-secondary:hover {
    background: var(--primary-cyan);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.3);
}

.btn-demo-secondary:hover .icon-bubble {
    background: white;
}

.btn-demo-secondary:hover .icon-bubble i {
    color: var(--primary-cyan) !important;
    stroke: var(--primary-cyan) !important;
}

/* Icon bubble for demo secondary button */
.btn-demo-secondary .icon-bubble {
    width: 40px;
    height: 40px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-demo-secondary .icon-bubble i {
    color: white !important;
    stroke: white !important;
}

.btn-demo-secondary.icon-left {
    padding: 12px 24px 12px 12px;
    flex-direction: row-reverse;
}

/* Demo Features */
.demo-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 2px solid #F3F4F6;
}

.demo-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-display);
    transition: all 0.3s ease;
}

.demo-feature-item:hover {
    color: var(--primary-cyan) !important;
}

.demo-feature-item i {
    color: var(--primary-cyan) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .demo-card {
        padding: 56px 48px;
    }
    
    .demo-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .demo-subtitle {
        margin-bottom: 18px;
    }
    
    .phone-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .demo-card {
        padding: 48px 32px;
        border-radius: 24px;
    }
    
    .demo-icon-wrapper {
        margin-bottom: 36px;
    }
    
    .phone-ring-animation {
        width: 100px;
        height: 100px;
    }
    
    .demo-phone-icon {
        width: 48px !important;
        height: 48px !important;
    }
    
    .demo-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .demo-subtitle {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .phone-number-wrapper {
        margin-bottom: 32px;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .demo-disclaimer {
        margin-bottom: 36px;
    }
    
    .demo-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-demo-primary,
    .btn-demo-secondary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 12px 12px 24px;
    }
    
    .btn-demo-primary.icon-left,
    .btn-demo-secondary.icon-left {
        padding: 12px 24px 12px 12px;
    }
    
    .btn-demo-primary .icon-bubble,
    .btn-demo-secondary .icon-bubble {
        width: 36px;
        height: 36px;
    }
    
    .btn-demo-primary .icon-bubble i,
    .btn-demo-secondary .icon-bubble i {
        width: 20px;
        height: 20px;
    }
    
    .demo-features {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }
    
    .copy-phone-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .demo-card {
        padding: 40px 24px;
    }
    
    .demo-icon-wrapper {
        margin-bottom: 32px;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .phone-space {
        width: 8px;
    }
    
    .demo-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }
    
    .demo-subtitle {
        margin-bottom: 14px;
    }
    
    .phone-number-wrapper {
        margin-bottom: 28px;
    }
    
    .demo-disclaimer {
        margin-bottom: 32px;
    }
}

/* ===== CONTACT FORM ===== */

.contact-form-section {
    background: #F5F5F7 !important;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0, 80, 157, 0.1);
}

.contact-form label {
    font-family: var(--font-display);
}

.contact-form button[type="submit"] {
    font-family: var(--font-display);
    cursor: pointer;
}

.contact-form button[type="submit"]:hover {
    box-shadow: 0 8px 24px rgba(0, 80, 157, 0.4);
}

/* VR CTA Buttons Responsive */
.vr-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .vr-cta-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .vr-cta-buttons .btn-primary,
    .vr-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .contact-modern-grid {
        grid-template-columns: 1fr;
    }
}
