/*
Theme Name: Nthsol Pro
Theme URI: https://www.nthsol.com
Author: Nthsol
Author URI: https://www.nthsol.com
Description: A modern, professional WordPress theme for Nthsol with smooth animations, services showcase, and stunning design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nthsol-pro
Tags: modern, business, portfolio, animation, responsive
*/

/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette - Updated with new colors */
    --primary-color: #9A0060; /* Dark Shiny Magenta - Primary CTA button */
    --secondary-color: #1ECFFF; /* Electric Blue - highlights + Nth + secondary button outline */
    --accent-color: #34DCFF; /* Hover Blue Glow - Hover accent */
    --deep-violet: #22003C; /* Tech Deep Purple */
    --futuristic-purple: #2D004F; /* Futuristic Purple */
    --deep-magenta: #9A0060; /* Deep Magenta - web right background */
    --dark-gray: #22003C; /* Tech Deep Purple */
    --light-gray: #E4E4EB; /* Soft White - Subheading text */
    --cyan-blue: #1ECFFF; /* Electric Blue for highlights */

    /* Support colors */
    --charcoal: #22003C; /* Tech Deep Purple */
    --medium-gray: rgba(228, 228, 235, 0.8); /* Soft White with opacity */

    /* Base surfaces/text derived from support */
    --dark-color: var(--deep-violet);
    --darker-color: #22003C;
    --card-dark: #2D004F;
    --text-color: #E4E4EB;
    --white: #FFFFFF;
    --soft-white: #E4E4EB;

    /* Gradients using brand colors */
    --gradient-1: linear-gradient(135deg, #9A0060 0%, #1ECFFF 50%, #22003C 100%);
    --gradient-2: linear-gradient(135deg, #9A0060 0%, #1ECFFF 100%);
    --gradient-3: linear-gradient(90deg, #22003C 0%, #2D004F 50%, #9A0060 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --transition: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, #22003C 0%, #2D004F 50%, #22003C 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

a {
    color: var(--cyan-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 60px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 12px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

/* Ensure ALL buttons use same gradient - Universal Rule */
.btn.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary,
input[type="button"].btn-primary,
.demo-submit.btn-primary,
.lead-magnet-form button.btn-primary,
.solution-form button.btn-primary,
.contact-form button.btn-primary,
.demo-form button.btn-primary,
form button.btn-primary,
form input[type="submit"].btn-primary {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(154, 0, 96, 0.4) !important;
}

.btn.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover,
input[type="button"].btn-primary:hover,
.demo-submit.btn-primary:hover,
.lead-magnet-form button.btn-primary:hover,
.solution-form button.btn-primary:hover,
.contact-form button.btn-primary:hover,
.demo-form button.btn-primary:hover,
form button.btn-primary:hover,
form input[type="submit"].btn-primary:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 8px 25px rgba(52, 220, 255, 0.6),
                0 0 30px rgba(52, 220, 255, 0.3) !important;
    transform: translateY(-2px) scale(1.02) !important;
    filter: brightness(1.1) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4FF 0%, transparent 100%);
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(214, 17, 127, 0.6),
                0 0 30px rgba(214, 17, 127, 0.3);
    color: var(--white);
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%);
    opacity: 1;
    filter: brightness(1.1);
}

.btn-primary:hover::before {
    background: linear-gradient(90deg, #00D4FF 0%, rgba(0, 212, 255, 0.8) 50%, rgba(0, 212, 255, 0.3) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    height: 4px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--cyan-blue);
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--cyan-blue);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    border-color: var(--cyan-blue);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6),
                0 0 25px rgba(0, 212, 255, 0.4);
    filter: brightness(1.1);
}

/* Contact button specific styling */
a[href*="#contact"].btn-outline,
a[href="#contact"].btn-outline {
    background: rgba(70, 13, 98, 0.6) !important;
    border: 1px solid rgba(0, 212, 255, 0.8) !important;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.2) !important;
}

a[href*="#contact"].btn-outline:hover,
a[href="#contact"].btn-outline:hover {
    background: rgba(70, 13, 98, 0.8) !important;
    border-color: rgba(0, 212, 255, 1) !important;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 25px rgba(0, 212, 255, 0.3) !important;
}

/* Healthcare video and automation checklist button styling */
a[href*="#healthcare-video"].btn,
a[href="#healthcare-video"].btn,
a[href*="#automation-checklist"].btn,
a[href="#automation-checklist"].btn {
    background: rgb(70, 13, 98) !important;
    color: var(--white) !important;
    border: 1px solid rgba(0, 212, 255, 0.8) !important;
    box-shadow: 0 4px 15px rgba(70, 13, 98, 0.4),
                0 0 15px rgba(0, 212, 255, 0.4) !important;
}

a[href*="#healthcare-video"].btn:hover,
a[href="#healthcare-video"].btn:hover,
a[href*="#automation-checklist"].btn:hover,
a[href="#automation-checklist"].btn:hover {
    background: rgb(70, 13, 98) !important;
    color: var(--white) !important;
    border: 1px solid rgba(0, 212, 255, 1) !important;
    box-shadow: 0 8px 25px rgba(70, 13, 98, 0.6),
                0 0 30px rgba(70, 13, 98, 0.3),
                0 0 20px rgba(0, 212, 255, 0.6) !important;
    transform: translateY(-2px) scale(1.02) !important;
    filter: brightness(1.1) !important;
}

/* Override: Case study and section CTA outline buttons should use gradient */
.case-study-footer .btn-outline,
.section-cta .btn-outline,
.solution-section .section-cta .btn-outline {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.case-study-footer .btn-outline::before,
.section-cta .btn-outline::before,
.solution-section .section-cta .btn-outline::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D4FF 0%, transparent 100%) !important;
    z-index: 1 !important;
}

.case-study-footer .btn-outline:hover,
.section-cta .btn-outline:hover,
.solution-section .section-cta .btn-outline:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.5) !important;
    border: none !important;
}

.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50px;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%);
    color: var(--white);
}

/* ========================================
   FAQ PAGE
======================================== */
.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 17, 127, 0.5);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(214, 17, 127, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(228, 228, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(34, 0, 60, 0.15);
    border-bottom: 1px solid rgba(154, 0, 96, 0.2);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(228, 228, 235, 0.98);
    box-shadow: 0 4px 30px rgba(34, 0, 60, 0.2);
    border-bottom: 1px solid rgba(154, 0, 96, 0.25);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

/* Site Branding */
.site-branding {
    display: flex !important;
    align-items: center;
    z-index: 10;
    min-width: 150px;
    visibility: visible !important;
    opacity: 1 !important;
}

.site-logo-link {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(34, 0, 60, 0.2));
    line-height: 0;
    text-decoration: none;
}

.site-logo-link:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(30, 207, 255, 0.5));
}

.site-logo-img {
    height: 55px !important;
    width: auto !important;
    max-width: 220px;
    min-width: 140px;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 8px rgba(34, 0, 60, 0.25));
    transition: var(--transition);
}

/* Ensure logo is visible and prominent on light background */
.site-header .site-logo-img {
    filter: drop-shadow(0 2px 8px rgba(34, 0, 60, 0.25)) brightness(0.9) contrast(1.3);
}

.site-logo-link:hover .site-logo-img {
    filter: drop-shadow(0 4px 12px rgba(30, 207, 255, 0.4)) brightness(1) contrast(1.4);
    transform: scale(1.05);
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4A138C 0%, #D6117F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.site-logo:hover {
    background: linear-gradient(135deg, #D6117F 0%, #4A138C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #1a0029 !important;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none;
    display: block;
}

.main-navigation a:hover {
    color: #1ECFFF;
    text-shadow: 0 0 8px rgba(30, 207, 255, 0.4);
}

.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #22003C;
    border-bottom: 2px solid #22003C;
    transform: rotate(45deg);
    transition: var(--transition);
}

.main-navigation .menu-item-has-children.is-open > a::after,
.main-navigation .menu-item-has-children:hover > a::after {
    border-color: #1ECFFF;
}

.main-navigation .sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    background: linear-gradient(135deg, rgba(45, 0, 79, 0.95) 0%, rgba(34, 0, 60, 0.98) 100%);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(34, 0, 60, 0.2);
    display: none;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
    border: 1px solid rgba(30, 207, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-navigation .menu-item-has-children.is-open > .sub-menu {
    display: flex;
}

.main-navigation .sub-menu a {
    font-size: 0.95rem;
    color: #FFFFFF !important;
    transition: var(--transition);
}

.main-navigation .sub-menu a:hover {
    color: #1ECFFF;
    padding-left: 5px;
}

/* Nested sub-menu styling */
.main-navigation .sub-menu .menu-item-has-children {
    position: relative;
}

/* Keep parent submenu open when hovering nested submenu */
.main-navigation .sub-menu .menu-item-has-children:hover {
    position: relative;
}

.main-navigation .sub-menu:hover {
    display: flex;
}

.main-navigation .sub-menu .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #E4E4EB;
    border-bottom: 2px solid #E4E4EB;
    transform: rotate(-45deg);
    transition: var(--transition);
}

.main-navigation .sub-menu .menu-item-has-children:hover > a::after,
.main-navigation .sub-menu .menu-item-has-children.is-open > a::after {
    border-color: #1ECFFF;
}

.main-navigation .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 8px;
    background: linear-gradient(135deg, rgba(11, 11, 18, 0.98) 0%, rgba(48, 10, 107, 0.95) 100%);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(74, 19, 140, 0.4);
    display: none;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
    border: 1px solid rgba(30, 207, 255, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

.main-navigation .sub-menu .sub-menu a {
    color: #FFFFFF !important;
    font-size: 0.95rem;
}

.main-navigation .sub-menu .sub-menu a:hover {
    color: #1ECFFF;
    padding-left: 5px;
}

.main-navigation .sub-menu .menu-item-has-children:hover > .sub-menu,
.main-navigation .sub-menu .menu-item-has-children.is-open > .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Ensure submenu stays open when hovering over it */
.main-navigation .sub-menu .sub-menu:hover {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Desktop: Show desktop-only items, hide mobile-only items */
.menu-item-desktop-only {
    display: block;
}

.menu-item-mobile-only {
    display: none;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 24px;
    white-space: nowrap;
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4FF 0%, rgba(0, 212, 255, 0.6) 30%, transparent 100%);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.header-cta:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%);
    box-shadow: 0 8px 25px rgba(214, 17, 127, 0.6),
                0 0 30px rgba(214, 17, 127, 0.3);
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
}

.header-cta:hover::before {
    background: linear-gradient(90deg, #00D4FF 0%, rgba(0, 212, 255, 0.9) 40%, rgba(0, 212, 255, 0.4) 70%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 1);
    height: 4px;
}

.menu-mobile-cta {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #22003C;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: #1ECFFF;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #22003C 0%, #2D004F 50%, #22003C 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 60px;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(214, 17, 127, 0.12) 0%, rgba(74, 19, 140, 0.08) 45%, transparent 75%);
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #22003C 0%, #2D004F 50%, #22003C 100%);
    opacity: 1;
    filter: blur(0);
    animation: heroGlow 4s ease-in-out infinite alternate;
    z-index: 0;
    overflow: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.hero-background-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.7;
    filter: blur(0px);
    z-index: 0;
    animation: backgroundPulse 4s ease-in-out infinite;
    will-change: opacity, transform;
    transform: translateZ(0);
}

.hero-background::before {
    z-index: 1;
}

.hero-background::after {
    z-index: 2;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        /* Cyan circuit lines on left */
        linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 20%, transparent 40%),
        linear-gradient(0deg, transparent 0%, rgba(0, 212, 255, 0.08) 30%, transparent 60%),
        /* Magenta circuit lines on right */
        linear-gradient(90deg, transparent 60%, rgba(214, 17, 127, 0.1) 80%, transparent 100%),
        linear-gradient(0deg, transparent 40%, rgba(214, 17, 127, 0.08) 70%, transparent 100%),
        /* Circuit dots */
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(214, 17, 127, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 30% 60%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 40%, rgba(214, 17, 127, 0.1) 1px, transparent 1px);
    background-size: 
        100% 2px,
        2px 100%,
        100% 2px,
        2px 100%,
        200px 200px,
        200px 200px,
        150px 150px,
        150px 150px;
    background-position: 
        0 30%,
        20% 0,
        0 70%,
        80% 0,
        20% 30%,
        80% 70%,
        30% 60%,
        70% 40%;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: circuitPulse 2.5s ease-in-out infinite;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        /* Glowing Electric Blue lines */
        linear-gradient(90deg, transparent 0%, rgba(30, 207, 255, 0.2) 15%, transparent 30%),
        linear-gradient(0deg, transparent 0%, rgba(30, 207, 255, 0.15) 25%, transparent 50%),
        /* Glowing Deep Magenta lines */
        linear-gradient(90deg, transparent 70%, rgba(154, 0, 96, 0.2) 85%, transparent 100%),
        linear-gradient(0deg, transparent 50%, rgba(154, 0, 96, 0.15) 75%, transparent 100%);
    background-size: 
        100% 1px,
        1px 100%,
        100% 1px,
        1px 100%;
    background-position: 
        0 30%,
        20% 0,
        0 70%,
        80% 0;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(1px);
    animation: circuitGlow 2s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes circuitPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes circuitGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

@keyframes heroGlow {
    0% { transform: translateZ(0) scale(1); opacity: 0.85; }
    100% { transform: translateZ(0) scale(1.05); opacity: 0.95; }
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(30, 207, 255, 0.15) 0%, transparent 60%);
    animation: heroParticles 8s linear infinite;
    z-index: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes heroParticles {
    0% { transform: translateZ(0) rotate(0deg) scale(1); opacity: 0.5; }
    100% { transform: translateZ(0) rotate(360deg) scale(1.05); opacity: 0.75; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.5s ease;
    max-width: 780px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-highlight {
    color: var(--cyan-blue);
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.6);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(11, 11, 18, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan-blue);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-btn.btn-outline {
    background: rgba(70, 13, 98, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.8);
    border-color: rgba(0, 212, 255, 0.8);
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.2);
}

.hero-btn.btn-outline:hover {
    background: rgba(70, 13, 98, 0.8);
    border-color: rgba(0, 212, 255, 1);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 25px rgba(0, 212, 255, 0.3);
    transform: translateY(-1px);
}

.hero-feature-buttons {
    margin-top: 0;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.hero-feature-btn {
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(70, 13, 98, 0.6);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(0, 212, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-feature-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, 1);
    background: rgba(70, 13, 98, 0.8);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 25px rgba(0, 212, 255, 0.3);
}

/* TRUST STRIP */
.trust-strip {
    position: relative;
    margin-top: -50px;
    z-index: 3;
}

.trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(214, 17, 127, 0.12), rgba(74, 19, 140, 0.12));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(214, 17, 127, 0.25);
    opacity: 0.85;
}

.trust-strip .container {
    position: relative;
    padding: 18px 30px;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.trust-metric .metric-value {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.trust-metric p {
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   SERVICES SECTION
======================================== */
/* 404 Page Calendly Widget Full Size */
body.error404 .calendly-inline-widget {
    min-width: 100% !important;
    width: 100% !important;
    height: calc(100vh - 80px) !important;
}

body.error404 .section {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

body.error404 .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

body.error404 #primary {
    padding: 0 !important;
    margin: 0 !important;
}

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

.service-card {
    background: var(--card-dark);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(214, 17, 127, 0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 25px auto;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: center;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-weight: 600;
    color: var(--cyan-blue);
    font-size: 0.95rem;
}

.service-learn-more:hover {
    color: var(--secondary-color);
    gap: 10px;
}

.section-cta {
    text-align: center;
    margin-top: 45px;
}

/* Section CTA buttons should use primary gradient */
.section-cta .btn,
.section-cta .btn-outline {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.section-cta .btn::before,
.section-cta .btn-outline::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D4FF 0%, transparent 100%) !important;
    z-index: 1 !important;
}

.section-cta .btn:hover,
.section-cta .btn-outline:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.5) !important;
    transform: translateY(-2px);
}

/* ========================================
   CASE STUDIES / PORTFOLIO
======================================== */
.case-studies-section {
    background: #22003C;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 15px;
}

.case-study-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: #2D004F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    padding: 32px;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(214, 17, 127, 0.5);
}

.case-study-header {
    margin-bottom: 20px;
}

.case-study-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--white);
}

.case-study-client {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(214, 17, 127, 0.18);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.case-study-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-body h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 6px;
    margin-top: 22px;
}

.case-study-body p {
    color: rgba(255, 255, 255, 0.75);
    text-align: justify;
}

.case-results {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: grid;
    gap: 8px;
}

.case-results li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.case-results i {
    color: var(--cyan-blue);
}

.case-quote {
    margin: 24px 0 0 0;
    padding-left: 18px;
    border-left: 3px solid var(--cyan-blue);
}

.case-quote p {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.case-quote cite {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.case-study-footer {
    margin-top: auto;
    padding-top: 28px;
}

/* Case study footer buttons should use primary gradient */
.case-study-footer .btn,
.case-study-footer .btn-outline {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.case-study-footer .btn::before,
.case-study-footer .btn-outline::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D4FF 0%, transparent 100%) !important;
    z-index: 1 !important;
}

.case-study-footer .btn:hover,
.case-study-footer .btn-outline:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.5) !important;
    transform: translateY(-2px);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
    background: var(--darker-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.testimonial-card {
    background: var(--card-dark);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 17, 127, 0.5);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    background: var(--darker-color);
    position: relative;
    overflow: hidden;
    padding-top: 40px !important;
    padding-bottom: 60px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(48, 10, 107, 0.05) 0%, rgba(214, 17, 127, 0.03) 50%, transparent 70%);
}

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

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
    color: var(--white);
    position: relative;
    display: block;
    text-align: center;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.mission-card,
.vision-card {
    background: var(--card-dark);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(214, 17, 127, 0.3);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 30px auto;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.core-values {
    margin-top: 50px;
    text-align: center;
}

.core-values h3 {
    text-align: center !important;
    font-size: 2.2rem;
    margin-bottom: 50px;
    padding-bottom: 20px;
    color: var(--white);
    position: relative;
    display: block;
    width: 100%;
}

.core-values h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.team-card {
    background: var(--card-dark);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-avatar { width: 90px; height: 90px; margin: 0 auto 14px; border-radius: 50%; overflow: hidden; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display:block; }
.team-initials { font-size: 1.8rem; color: var(--white); font-weight: 700; }
.team-role { color: var(--medium-gray); }

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(214, 17, 127, 0.5);
    transform: translateY(-3px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--cyan-blue);
    margin: 0 auto 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--white);
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
    text-align: center;
}

.about-cta {
    text-align: center;
    margin-top: 50px;
    padding: 60px 30px;
    background: rgba(48, 10, 107, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(48, 10, 107, 0.2);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    color: var(--white);
    position: relative;
    display: block;
    text-align: center;
}

.about-cta h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--medium-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    margin: 0;
    padding: 13px 80px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: auto;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 90%, #2D004F 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(154, 0, 96, 0.3);
    box-shadow: 0 6px 20px rgba(154, 0, 96, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.about-cta .btn-primary:hover::before {
    left: 100%;
}

.about-cta .btn-primary:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 90%, #3D005F 100%) !important;
    box-shadow: 0 10px 30px rgba(154, 0, 96, 0.5), 0 0 40px rgba(52, 220, 255, 0.4);
    transform: translateY(-3px);
    border-color: rgba(30, 207, 255, 0.4);
}

.about-cta .btn-outline {
    background: rgba(45, 0, 79, 0.4);
    border: 2px solid rgba(30, 207, 255, 0.7);
    color: #1ECFFF;
    box-shadow: 0 6px 20px rgba(30, 207, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-cta .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 207, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about-cta .btn-outline:hover::before {
    left: 100%;
}

.about-cta .btn-outline:hover {
    background: rgba(30, 207, 255, 0.15);
    border-color: #1ECFFF;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(30, 207, 255, 0.5), 0 0 40px rgba(30, 207, 255, 0.3);
    transform: translateY(-3px);
}

.about-strip {
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.85), rgba(214, 17, 127, 0.2));
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.about-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(214, 17, 127, 0.18), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.about-strip-content {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.about-strip-content h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
}

.about-strip-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.about-strip-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.about-strip .btn {
    border-radius: 999px;
    padding: 14px 36px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.about-strip .btn:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4);
}

/* ========================================
   BLOG SECTION
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Fallback - will be overridden by inline style */
    gap: 40px;
    margin-top: 45px;
}

.blog-card {
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(214, 17, 127, 0.5);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.blog-content h3 a {
    color: var(--white);
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--medium-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.read-more {
    color: var(--cyan-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
    color: var(--secondary-color);
}

/* ========================================
   BOOK A CALL SECTION
======================================== */
.book-call-section {
    position: relative;
    overflow: hidden;
}

.demo-section {
    position: relative;
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.9), rgba(214, 17, 127, 0.15));
    color: var(--white);
    padding: 50px 0;
}

.anchor-offset {
    position: absolute;
    top: -120px;
}

.demo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: start;
}


.demo-info h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 38px;
    padding-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
}

.demo-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.demo-info p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.demo-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    gap: 18px;
}

.demo-highlights li {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding: 8px 0;
}

.demo-highlights i {
    color: var(--cyan-blue);
    font-size: 1.2rem;
}

.demo-trigger {
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.demo-visual {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(45, 0, 79, 0.6) 0%, rgba(34, 0, 60, 0.8) 100%);
    border: 1px solid rgba(30, 207, 255, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(30, 207, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.demo-visual p {
    margin: 20px 0 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 1.6;
}

.demo-loader {
    display: inline-flex;
    gap: 16px;
    margin-bottom: 8px;
}

.loader-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: demoPulse 1.4s infinite ease-in-out both;
    box-shadow: 0 0 12px rgba(30, 207, 255, 0.6);
}

.loader-dot:nth-child(2) {
    animation-delay: -0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes demoPulse {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.demo-video {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
}

.demo-video .video-wrapper {
    position: relative;
    padding-top: 62%; /* Increased height for better visibility */
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 207, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(30, 207, 255, 0.3);
}

.demo-video .video-wrapper iframe,
.demo-video .video-wrapper.demo-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-video .video-wrapper.demo-image-wrapper {
    display: block;
}

.demo-video .video-wrapper .demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.demo-form-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(214, 17, 127, 0.25);
    border-radius: 22px;
    padding: 40px;
    backdrop-filter: blur(12px);
    position: relative;
}

.demo-form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.demo-form-header p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.75);
}

.demo-form .form-group label {
    color: rgba(255, 255, 255, 0.85);
}

.demo-form .form-group input,
.demo-form .form-group select,
.demo-form .form-group textarea {
    background: rgba(11, 11, 18, 0.35);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: var(--white);
    transition: var(--transition);
}

.demo-form .form-group input:focus,
.demo-form .form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-blue);
    background: rgba(11, 11, 18, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.demo-form .form-group select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%), linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%), linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.2));
    background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px), 100% 0;
    background-size: 6px 6px, 6px 6px, 2.5rem 2.5rem;
    background-repeat: no-repeat;
}

.demo-form .form-group select:focus {
    background-color: rgba(11, 11, 18, 0.5);
    border-color: var(--cyan-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    outline: none;
}

.demo-form .form-group textarea {
    resize: vertical;
}

.demo-submit {
    width: 100%;
    margin-top: 12px;
}

/* Ensure demo-submit button uses same gradient if it's a primary button */
.demo-submit:not(.btn-outline):not(.btn-white) {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.demo-submit:not(.btn-outline):not(.btn-white)::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D4FF 0%, transparent 100%) !important;
    z-index: 1 !important;
}

.demo-submit:not(.btn-outline):not(.btn-white):hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.5) !important;
    transform: translateY(-2px);
}

.booking-success-message,
.booking-error-message {
    margin-bottom: 22px;
    text-align: center;
    border-radius: 16px;
    padding: 24px;
}

.booking-success-message {
    background: rgba(214, 17, 127, 0.12);
    border: 1px solid rgba(214, 17, 127, 0.3);
}

.booking-error-message {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.success-animation {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 12px;
}

.success-animation .success-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: demoPulse 1.2s infinite ease-in-out both;
}
.book-call-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(214, 17, 127, 0.05) 0%, rgba(74, 19, 140, 0.03) 50%, transparent 70%);
}

.booking-success-message,
.booking-error-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
}

.booking-success-message {
    background: rgba(214, 17, 127, 0.1);
    border: 2px solid rgba(214, 17, 127, 0.5);
    color: var(--secondary-color);
}

.booking-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background: var(--darker-color);
    color: var(--white);
}

.contact-section .section-title h2,
.contact-section .section-title p {
    color: var(--white);
}

.contact-left-image {
    margin-top: 32px;
    padding: 28px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 400px;
    flex: 1;
}

.contact-default-illustration {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    height: 100%;
    min-height: 400px;
}

.contact-graphic-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    height: 100%;
    min-height: 400px;
}

.contact-main-graphic {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 240px;
    flex: 1;
}

.contact-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: rgba(229, 229, 229, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
}

.contact-feature-item i {
    color: var(--cyan-blue);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-feature-item span {
    flex: 1;
}

.contact-feature-item:nth-child(2) {
    background: rgba(214, 17, 127, 0.08);
    border-color: rgba(214, 17, 127, 0.15);
}

.contact-feature-item:nth-child(2) i {
    color: #D6117F;
}

.contact-feature-item:nth-child(3) {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
}

.contact-feature-item:nth-child(4) {
    background: rgba(214, 17, 127, 0.08);
    border-color: rgba(214, 17, 127, 0.15);
}

.contact-feature-item:nth-child(4) i {
    color: #D6117F;
}

@media (max-width: 768px) {
    .contact-left-image {
        min-height: 350px;
        padding: 24px 16px;
    }
    
    .contact-default-illustration,
    .contact-graphic-container {
        min-height: 350px;
    }
    
    .contact-main-graphic {
        min-height: 200px;
    }
    
    .contact-features-list {
        max-width: 100%;
        margin-top: 16px;
        padding-top: 16px;
    }
}

.contact-left-image {
    margin-top: 32px;
    padding: 28px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.contact-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: rgba(229, 229, 229, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
}

.contact-feature-item i {
    color: var(--cyan-blue);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-feature-item span {
    flex: 1;
}

.contact-feature-item:nth-child(2) {
    background: rgba(214, 17, 127, 0.08);
    border-color: rgba(214, 17, 127, 0.15);
}

.contact-feature-item:nth-child(2) i {
    color: #D6117F;
}

.contact-feature-item:nth-child(3) {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
}

.contact-feature-item:nth-child(4) {
    background: rgba(214, 17, 127, 0.08);
    border-color: rgba(214, 17, 127, 0.15);
}

.contact-feature-item:nth-child(4) i {
    color: #D6117F;
}

@media (max-width: 768px) {
    .contact-left-image {
        padding: 24px 16px;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 45px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ========================================
   PAGINATION
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.pagination a:hover {
    background: linear-gradient(135deg, #D6117F 0%, #00D4FF 100%);
    color: var(--white);
    border-color: transparent;
}

.pagination .current {
    background: linear-gradient(135deg, #D6117F 0%, #00D4FF 100%);
    color: var(--white);
    border-color: transparent;
}

.pagination .dots {
    border: none;
    padding: 10px 8px;
}

/* Page Header */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: moveBackground 12s linear infinite;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--darker-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-lead-magnet {
    background: linear-gradient(135deg, rgba(45, 0, 79, 0.95) 0%, rgba(34, 0, 60, 0.98) 100%);
    border: 1px solid rgba(30, 207, 255, 0.3);
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 207, 255, 0.15),
                0 0 60px rgba(154, 0, 96, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(30, 207, 255, 0.8) 0%, rgba(154, 0, 96, 0.6) 50%, rgba(30, 207, 255, 0.8) 100%);
    z-index: 1;
}

.footer-lead-magnet::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(30, 207, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(154, 0, 96, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-lead-magnet > * {
    position: relative;
    z-index: 2;
}

.lead-copy h2 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lead-copy p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

.lead-form {
    background: rgba(11, 11, 18, 0.6);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(30, 207, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.footer-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid rgba(30, 207, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.footer-buttons .btn:hover {
    border-color: rgba(30, 207, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 207, 255, 0.4),
                0 0 30px rgba(30, 207, 255, 0.2);
}

.lead-magnet-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lead-magnet-form .form-group {
    display: flex;
    flex-direction: column;
}

.lead-magnet-form label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.lead-magnet-form input {
    background: rgba(11, 11, 18, 0.9);
    border: 1px solid rgba(214, 17, 127, 0.3);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 14px;
    transition: var(--transition);
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: rgba(214, 17, 127, 0.6);
    background: rgba(11, 11, 18, 1);
    box-shadow: 0 0 0 3px rgba(214, 17, 127, 0.15);
}

.lead-magnet-form button {
    grid-column: span 3;
}

/* Ensure ALL form buttons use same gradient (even without btn-primary class) */
.lead-magnet-form button:not(.btn-outline):not(.btn-white),
.solution-form button:not(.btn-outline):not(.btn-white),
.contact-form button:not(.btn-outline):not(.btn-white),
.demo-form button:not(.btn-outline):not(.btn-white),
form button:not(.btn-outline):not(.btn-white):not(.btn-link),
form input[type="submit"]:not(.btn-outline):not(.btn-white) {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4) !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
}

.lead-magnet-form button:not(.btn-outline):not(.btn-white)::before,
.solution-form button:not(.btn-outline):not(.btn-white)::before,
.contact-form button:not(.btn-outline):not(.btn-white)::before,
.demo-form button:not(.btn-outline):not(.btn-white)::before,
form button:not(.btn-outline):not(.btn-white):not(.btn-link)::before,
form input[type="submit"]:not(.btn-outline):not(.btn-white)::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, rgba(214, 17, 127, 0.8) 0%, rgba(74, 19, 140, 0.6) 100%) !important;
    z-index: 1 !important;
}

.lead-magnet-form button:not(.btn-outline):not(.btn-white):hover,
.solution-form button:not(.btn-outline):not(.btn-white):hover,
.contact-form button:not(.btn-outline):not(.btn-white):hover,
.demo-form button:not(.btn-outline):not(.btn-white):hover,
form button:not(.btn-outline):not(.btn-white):not(.btn-link):hover,
form input[type="submit"]:not(.btn-outline):not(.btn-white):hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.5) !important;
    transform: translateY(-2px);
}

.lead-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--cyan-blue);
    font-weight: 600;
}

.lead-secondary-cta::after {
    content: '\2192';
    font-size: 1.1rem;
}

.lead-secondary-cta:hover {
    color: var(--secondary-color);
}

.lead-success,
.lead-error {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.lead-success {
    background: rgba(214, 17, 127, 0.12);
    border: 1px solid rgba(214, 17, 127, 0.25);
    color: rgba(214, 17, 127, 0.9);
}

.lead-success i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.lead-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 0.85);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 30px;
    text-align: center;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
    text-align: center;
}

/* Footer logo uses same classes as header */
.footer-logo .site-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.footer-logo .site-logo-link:hover {
    opacity: 0.9;
}

.footer-logo .site-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    filter: brightness(1.15) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-logo .site-logo-link:hover .site-logo-img {
    filter: brightness(1.2) contrast(1.15);
}

.footer-logo .site-logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-logo .site-logo:hover {
    color: var(--cyan-blue);
    transform: translateY(-2px);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.footer-contact li i {
    color: var(--cyan-blue);
}

.footer-contact li a {
    color: inherit;
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

.fade-in-up {
    animation: fadeInUp 0.5s ease;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .services-grid,
    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-lead-magnet {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .lead-magnet-form {
        grid-template-columns: 1fr 1fr;
    }

    .lead-magnet-form button {
        grid-column: span 2;
    }

    .solution-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .solution-hero-buttons {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    /* About section mobile */
    .about-section {
        padding-top: 30px !important;
        padding-bottom: 40px;
    }
    
    .about-intro {
        margin-bottom: 15px;
    }
    
    .about-intro h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .about-intro p {
        font-size: 1.1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 5px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
        text-align: center; /* center contents on mobile */
    }
    
    .mission-icon,
    .vision-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-left: auto;  /* center icon */
        margin-right: auto; /* center icon */
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.6rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .core-values {
        margin-top: 50px;
    }
    
    .core-values h3 {
        font-size: 1.8rem;
    }
    
    .about-cta {
        margin-top: 50px;
        padding: 40px 20px;
    }
    
    .about-cta h3 {
        font-size: 1.6rem;
    }
    
    .about-cta > div {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-cta .btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 16px 36px;
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(228, 228, 235, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: var(--transition);
        box-shadow: 0 10px 40px rgba(34, 0, 60, 0.2);
        overflow-y: auto;
        z-index: 1000;
        border-top: 1px solid rgba(154, 0, 96, 0.2);
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 40px 20px;
        gap: 15px;
        align-items: flex-start;
        width: 100%;
    }
    
    .main-navigation ul li {
        width: 100%;
    }
    
    .main-navigation a {
        display: block;
        padding: 12px 0;
        width: 100%;
        font-size: 1.1rem;
    }

    .main-navigation .menu-item-has-children {
        width: 100%;
    }

    .main-navigation .menu-item-has-children > a::after {
        display: none;
    }

    .main-navigation .sub-menu {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0 0 0 15px;
        border: none;
        gap: 10px;
        box-shadow: none;
    }

    .main-navigation .sub-menu a {
        font-size: 1rem;
        color: #FFFFFF !important;
        padding: 6px 0;
    }
    
    /* Nested sub-menu for mobile */
    .main-navigation .sub-menu .sub-menu {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0 0 0 15px;
        border: none;
        gap: 10px;
        box-shadow: none;
        margin-left: 0;
    }
    
    .main-navigation .sub-menu .menu-item-has-children > a::after {
        display: inline-block;
        margin-left: 8px;
        width: 6px;
        height: 6px;
        border-right: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.7);
        transform: rotate(-45deg);
    }
    
    .main-navigation .btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .header-cta {
        display: none;
    }

    .menu-mobile-cta {
        display: block;
        width: 100%;
    }
    
    /* Hide Solutions dropdown on mobile, show direct links */
    .menu-item-desktop-only {
        display: none !important;
    }
    
    .menu-item-mobile-only {
        display: block !important;
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }
    
    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-feature-buttons {
        gap: 12px;
        margin-top: 32px;
    }
    
    .hero-feature-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .hero-eyebrow {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .trust-strip {
        margin-top: -30px;
    }

    .trust-strip .container {
        padding: 22px;
    }

    .section-cta {
        margin-top: 40px;
    }

    .about-strip {
        padding: 50px 0;
    }

    .about-strip .btn {
        width: 100%;
        max-width: 320px;
    }

    .demo-section {
        padding: 50px 0;
    }

    .demo-form-card {
        padding: 28px;
    }

    .demo-trigger {
        width: 100%;
        justify-content: center;
    }

    .demo-visual {
        margin-top: 30px;
        padding: 35px 25px;
        min-height: 160px;
    }

    .demo-video {
        margin-top: 30px;
    }

    .demo-video .video-wrapper {
        border-radius: 16px;
    }

    .demo-highlights {
        gap: 10px;
    }

    .footer-lead-magnet {
        gap: 28px;
        padding: 26px;
    }

    .lead-form {
        padding: 22px;
    }
    
    .footer-buttons {
        gap: 12px;
    }
    
    .footer-buttons .btn {
        width: 100%;
    }

    .solution-hero {
        padding: 140px 0 80px;
    }
    
    .solution-hero-eyebrow {
        margin-top: 20px;
        display: block;
    }

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

    .solution-hero-buttons .btn {
        width: 100%;
    }

    .solution-hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .solution-section {
        padding: 50px 0;
    }

    .solution-feature-grid,
    .solution-industry-grid,
    .solution-snapshot-grid,
    .solution-problem-grid,
    .solution-stepper {
        grid-template-columns: 1fr;
    }

    .solution-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Services section mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Case studies section mobile */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 10px;
    }
    
    /* Blog section mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .case-study-card {
        padding: 25px 20px;
    }
    
    .case-study-header h3 {
        font-size: 1.2rem;
    }
    
    /* Section titles mobile */
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form {
        padding: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .case-study-content,
    .blog-content {
        padding: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   ADDITIONAL RESPONSIVE UTILITIES
======================================== */

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch-friendly elements on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .service-card,
    .case-study-card,
    .blog-card,
    .testimonial-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(214, 17, 127, 0.2);
    }
    
    /* Increase touch targets for mobile */
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .faq-question {
        min-height: 60px;
    }
}

/* ========================================
   GRADIENT SHOWCASE UTILITIES
======================================== */

/* Gradient text effect */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient border */
.gradient-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: var(--gradient-1);
}

/* Animated gradient background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: var(--gradient-1);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-animate {
        opacity: 1;
        transform: none;
    }
}

/* Improve font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* GPU acceleration for animations */
.service-card,
.case-study-card,
.blog-card,
.scroll-animate,
.entry-content,
.entry-thumbnail img {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.service-card,
.case-study-card,
.blog-card,
.testimonial-card,
.btn {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .site-header,
    .menu-toggle,
    .hero-buttons,
    .btn,
    .social-links,
    .contact-form {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .service-card,
    .case-study-card,
    .blog-card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ========================================
   LANDSCAPE ORIENTATION OPTIMIZATIONS
======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 50px 0;
    }
}

/* ========================================
   EXTRA SMALL DEVICES (< 360px)
======================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form,
    .blog-content,
    .case-study-content {
        padding: 15px;
    }
}

/* ========================================
   HIGH RESOLUTION DISPLAYS
======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
    .service-icon,
    .contact-icon,
    .faq-icon {
        background-size: cover;
    }
}

.solution-hero--healthcare .solution-hero-overlay {
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.95), rgba(214, 17, 127, 0.25));
}

.solution-hero--realestate .solution-hero-overlay {
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.95), rgba(74, 19, 140, 0.25));
}

.solution-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.solution-problem-grid article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(214, 17, 127, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.solution-problem-grid h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.solution-stepper {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.solution-stepper li {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(74, 19, 140, 0.25);
    display: flex;
    gap: 18px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(74, 19, 140, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.solution-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.solution-result-grid article {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(214, 17, 127, 0.2);
    border-radius: 18px;
    padding: 24px;
}

.solution-result-grid strong {
    display: block;
    font-size: 2rem;
    color: var(--white);
}

.solution-result-grid span {
    color: rgba(255, 255, 255, 0.75);
}

.solution-quote {
    margin: 30px auto 0;
    max-width: 680px;
    padding-left: 20px;
    border-left: 3px solid var(--cyan-blue);
}

.solution-quote p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.solution-quote cite {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.solution-form-section {
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.85), rgba(48, 10, 107, 0.6));
}

.solution-form-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.solution-form-copy h2 {
    font-size: clamp(2rem, 4vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
}

.solution-form-copy p {
    color: rgba(255, 255, 255, 0.75);
}

.solution-form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(214, 17, 127, 0.25);
}

.solution-form .form-group label {
    color: rgba(255, 255, 255, 0.8);
}

.solution-form .form-group input,
.solution-form .form-group textarea {
    background: rgba(11, 11, 18, 0.9);
    border: 1px solid rgba(214, 17, 127, 0.3);
    color: var(--white);
}

.solution-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.solution-checkbox-grid label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.solution-faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.solution-faq-accordion details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(214, 17, 127, 0.2);
    padding: 18px 22px;
    color: rgba(255, 255, 255, 0.8);
}

.solution-faq-accordion summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
}

.solution-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.solution-faq-accordion p {
    margin-top: 12px;
}

/* ---------------------------------------
   Solution Pages
--------------------------------------- */
.solution-page {
    background: linear-gradient(135deg, rgba(11, 11, 18, 1) 0%, rgba(48, 10, 107, 0.98) 50%, rgba(11, 11, 18, 1) 100%);
    min-height: 100vh;
    position: relative;
}

.solution-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(214, 17, 127, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.solution-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(214, 17, 127, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.solution-page h1,
.solution-page h2,
.solution-page h3,
.solution-page h4 {
    color: var(--white);
}

.solution-section {
    padding: 40px 0;
    position: relative;
}

.solution-section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.025);
}

.solution-hero {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 11, 18, 1) 0%, rgba(48, 10, 107, 0.95) 50%, rgba(11, 11, 18, 1) 100%);
}

.solution-hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 11, 18, 0.95) 0%, rgba(48, 10, 107, 0.9) 50%, rgba(11, 11, 18, 0.95) 100%);
    overflow: hidden;
    z-index: 0;
}

.solution-hero-gif {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    filter: blur(1px);
    z-index: 1;
    animation: backgroundPulse 4s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Fallback if GIF not found */
.solution-hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.6) 0%, rgba(11, 11, 18, 0.9) 50%, rgba(48, 10, 107, 0.6) 100%);
    z-index: 0;
}

.solution-hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(214, 17, 127, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.solution-hero-content {
    position: relative;
    max-width: 720px;
    z-index: 10;
}

.solution-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan-blue);
    margin-bottom: 16px;
}

.solution-hero-content h1 {
    font-size: clamp(2.7rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.solution-hero-subtext {
    font-size: 1.15rem;
    color: rgba(229, 229, 229, 0.85);
    margin-bottom: 32px;
    max-width: 640px;
}

.solution-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.solution-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-hero-stats li {
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solution-hero-stats strong {
    font-size: 1.8rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, #D6117F 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    margin-bottom: 32px;
    text-align: center;
}

.section-heading--sub {
    margin-top: 48px;
    text-align: center;
}

.section-heading h2,
.section-heading h3 {
    font-size: clamp(2rem, 3vw, 2.4rem);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
}

.section-heading h2::after,
.section-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.section-heading--sub h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9A0060 0%, #1ECFFF 100%);
    border-radius: 2px;
}

.section-heading--sub p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
}

.solution-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.solution-feature-card {
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 11, 18, 0.6) 0%, rgba(48, 10, 107, 0.4) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.solution-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 17, 127, 0.6);
    box-shadow: 0 12px 48px rgba(214, 17, 127, 0.3),
                0 0 30px rgba(0, 212, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.solution-feature-card:hover::before {
    opacity: 1;
}

.solution-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.15);
    color: var(--cyan-blue);
    font-size: 1.4rem;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3),
                0 0 40px rgba(0, 212, 255, 0.15),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    transition: all 0.2s ease;
}

.solution-feature-card h3 {
    text-align: center;
    width: 100%;
}

.solution-feature-card p {
    text-align: center;
    width: 100%;
}

.solution-feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(214, 17, 127, 0.4));
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
    filter: blur(8px);
}

.solution-feature-card:hover .solution-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5),
                0 0 60px rgba(0, 212, 255, 0.25),
                inset 0 0 30px rgba(0, 212, 255, 0.15);
}

.solution-feature-card:hover .solution-feature-icon::before {
    opacity: 1;
}

.solution-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.solution-industry-card {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.solution-industry-card h3 {
    text-align: center;
    width: 100%;
}

.solution-industry-card p {
    text-align: center;
}

.solution-industry-card .btn.btn-link {
    padding: 0;
    margin-top: 16px;
    color: var(--cyan-blue);
    background: transparent;
}

.solution-industry-card .btn.btn-link:hover {
    color: var(--secondary-color);
}

/* Solution industry card buttons that are NOT links should use gradient */
.solution-industry-card .btn:not(.btn-link):not(.btn-outline):not(.btn-white) {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.solution-industry-card .btn:not(.btn-link):not(.btn-outline):not(.btn-white)::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00D4FF 0%, transparent 100%) !important;
    z-index: 1 !important;
}

.solution-industry-card .btn:not(.btn-link):not(.btn-outline):not(.btn-white):hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.5) !important;
    transform: translateY(-2px);
}

.solution-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.solution-snapshot-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 170px;
}

/* Healthcare Reviews Section */
.solution-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-review-card {
    background: var(--card-dark);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.solution-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 17, 127, 0.5);
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.review-rating .fa-star {
    color: var(--secondary-color);
}

.review-rating .fa-star-o {
    color: rgba(30, 207, 255, 0.3);
}

.review-content {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
    flex: 1;
}

.review-content p {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: justify;
}

.review-content p:last-child {
    margin-bottom: 0;
}

.review-content * {
    color: var(--medium-gray) !important;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #ADD8E6;
}

.review-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-initials {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-author-info {
    flex: 1;
    text-align: left;
}

.review-author-name {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 600;
}

.review-author-title {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    font-weight: 400;
}

/* Reviews Section (Standalone) */
.reviews-section {
    background: var(--darker-color);
    padding: 80px 0;
}

.reviews-section .section-title {
    margin-bottom: 50px;
}

.solution-problem-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.solution-problem-card {
    padding: 28px;
    border-radius: 18px;
    background: rgba(48, 10, 107, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.solution-problem-card h3 {
    text-align: center;
    width: 100%;
}

.solution-problem-card p {
    text-align: center;
}

.solution-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.solution-steps-list li {
    position: relative;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-step-index {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.14);
    color: var(--cyan-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.solution-step-body {
    text-align: center;
    width: 100%;
}

.solution-step-body h3 {
    text-align: center;
    margin-bottom: 12px;
}

.solution-step-body p {
    text-align: center;
}

.solution-results {
    background: rgba(0, 0, 0, 0.25);
}

.solution-results-grid {
    display: grid;
    gap: 32px;
}

.solution-result-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-result-stats li {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-result-stats strong {
    font-size: 2rem;
    background: linear-gradient(135deg, #D6117F 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-quote {
    position: relative;
    padding: 32px;
    border-left: 4px solid var(--cyan-blue);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
}

.solution-quote p {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.solution-video-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.solution-video-embed {
    position: relative;
    padding-top: 56.25%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: rgba(0, 0, 0, 0.3);
}

.solution-video-embed iframe,
.solution-video-embed .solution-video-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.solution-video-embed .solution-video-image {
    display: block;
}

.solution-video-embed .solution-video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.solution-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.6);
}

.solution-video-badge {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

.solution-form-section {
    background: linear-gradient(135deg, rgba(48, 10, 107, 0.85), rgba(48, 10, 107, 0.6));
}

.solution-form-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.solution-form-info h2 {
    margin-bottom: 16px;
}

.solution-form-info p {
    color: rgba(229, 229, 229, 0.85);
    margin-bottom: 24px;
}

.solution-form-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.solution-form-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: rgba(229, 229, 229, 0.85);
}

.solution-form-highlights i {
    color: var(--cyan-blue);
}

.solution-form-left-image {
    margin-top: 24px;
    padding: 20px 18px 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
}

.solution-form-left-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.solution-form-default-illustration {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ai-graphic-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 360px;
    margin-bottom: 32px;
    padding-bottom: 0;
}

.ai-main-graphic {
    width: 100%;
    max-width: 420px;
    height: auto;
    min-height: 340px;
    max-height: 400px;
}

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    width: 100%;
}

/* Blue cards (1st, 3rd, and 5th) */
.ai-feature-item:nth-child(1),
.ai-feature-item:nth-child(3),
.ai-feature-item:nth-child(5) {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), rgba(48, 10, 107, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.2);
}

.ai-feature-item:nth-child(1) i,
.ai-feature-item:nth-child(3) i,
.ai-feature-item:nth-child(5) i {
    color: #00D4FF;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* Pink cards (2nd and 4th) */
.ai-feature-item:nth-child(2),
.ai-feature-item:nth-child(4) {
    background: linear-gradient(90deg, rgba(214, 17, 127, 0.15), rgba(48, 10, 107, 0.3));
    border: 1px solid rgba(214, 17, 127, 0.4);
    box-shadow: 0 0 8px rgba(214, 17, 127, 0.2);
}

.ai-feature-item:nth-child(2) i,
.ai-feature-item:nth-child(4) i {
    color: #D6117F;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.ai-feature-item span {
    flex: 1;
}

@media (max-width: 768px) {
    .solution-form-left-image {
        min-height: 350px;
        padding: 24px 16px;
    }
    
    .solution-form-default-illustration,
    .ai-graphic-container {
        min-height: 320px;
    }
    
    .ai-main-graphic {
        min-height: 220px;
        max-height: 240px;
    }
    
    .ai-features-list {
        max-width: 100%;
        margin-top: 16px;
        padding-top: 16px;
    }
}

@media (max-width: 768px) {
    .solution-form-left-image {
        margin-top: 24px;
        padding: 16px;
        min-height: 150px;
    }
}

.solution-form-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(214, 17, 127, 0.25);
    backdrop-filter: blur(12px);
    position: relative;
}

.solution-form-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(214, 17, 127, 0.3), rgba(48, 10, 107, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.solution-form {
    display: grid;
    gap: 20px;
}

.solution-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-form label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.solution-form input[type="text"],
.solution-form input[type="email"],
.solution-form input[type="tel"],
.solution-form input[type="text"][readonly],
.solution-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    background: rgba(11, 11, 18, 0.75);
    padding: 12px 14px;
    color: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.solution-form input[type="text"][readonly] {
    background: rgba(11, 11, 18, 0.5);
    cursor: default;
    opacity: 0.9;
}

.solution-form input[type="text"]:focus,
.solution-form input[type="email"]:focus,
.solution-form input[type="tel"]:focus,
.solution-form textarea:focus {
    border-color: var(--cyan-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.25);
    outline: none;
}

.solution-form textarea {
    resize: vertical;
}

.solution-form-checkboxes {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.solution-form-checkboxes .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(229, 229, 229, 0.85);
}

.solution-form-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cyan-blue);
}

.solution-form-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.solution-form-alert--success {
    background: rgba(0, 204, 153, 0.15);
    border: 1px solid rgba(0, 204, 153, 0.35);
    color: #8ef2d8;
}

.solution-form-alert--error {
    background: rgba(230, 35, 16, 0.18);
    border: 1px solid rgba(230, 35, 16, 0.35);
    color: #ffb3a9;
}

.solution-faq-accordion {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.solution-faq-accordion details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 24px;
}

.solution-faq-accordion details:last-of-type {
    border-bottom: none;
}

.solution-faq-accordion summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.solution-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.solution-faq-accordion details[open] summary {
    color: var(--cyan-blue);
}

.solution-faq-accordion p {
    margin-top: 12px;
    color: rgba(229, 229, 229, 0.85);
}

.solution-final-cta {
    background: radial-gradient(circle at top right, rgba(214, 17, 127, 0.4), transparent 55%);
    text-align: center;
}

.solution-final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.solution-final-cta h2 {
    max-width: 720px;
}

/* Button variations */
.btn.btn-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan-blue);
    background: transparent;
}

.btn.btn-link:hover {
    color: var(--secondary-color);
}

/* Skin accents */
.solution-page--healthcare .btn.btn-primary {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
}

.solution-page--healthcare .btn.btn-primary:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
}

.solution-page--realestate .btn.btn-primary {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%) !important;
}

.solution-page--realestate .btn.btn-primary:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .solution-hero {
        padding: 110px 0 70px;
    }

    .solution-section {
        padding: 50px 0;
    }

    .solution-form-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .solution-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .solution-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-form-checkboxes {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .solution-video-grid {
        grid-template-columns: 1fr;
    }

    .solution-hero {
        padding-top: 90px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .solution-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .solution-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-review-card {
        padding: 28px 22px;
    }
}

@media (max-width: 540px) {
    .solution-section {
        padding: 50px 0;
    }

    .solution-hero {
        padding: 70px 0 50px;
    }

    .solution-hero-subtext {
        font-size: 1rem;
    }

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

    .solution-hero-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solution-feature-card,
    .solution-industry-card,
    .solution-snapshot-card,
    .solution-problem-card,
    .solution-steps-list li,
    .solution-result-stats li {
        padding: 22px;
    }

    .solution-feature-grid,
    .solution-industry-grid,
    .solution-snapshot-grid,
    .solution-reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .solution-review-card {
        padding: 25px 20px;
    }
    
    .review-rating {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .review-content {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
    }
    
    .avatar-initials {
        font-size: 1rem;
    }
    
    .review-author-name {
        font-size: 0.95rem;
    }
    
    .review-author-title {
        font-size: 0.85rem;
    }

    .solution-form-card {
        padding: 24px;
    }

    .solution-form-checkboxes {
        grid-template-columns: 1fr;
    }

    .solution-form-checkboxes .checkbox {
        align-items: flex-start;
    }

    .solution-result-stats strong {
        font-size: 1.6rem;
    }

    .solution-final-cta h2 {
        font-size: 1.8rem;
    }

    .solution-faq-accordion {
        border-radius: 16px;
    }

    .solution-faq-accordion details {
        padding: 16px 18px;
    }

    .solution-faq-accordion summary {
        font-size: 1rem;
    }

    .solution-faq-accordion p {
        font-size: 0.95rem;
    }
}

.solution-form input[disabled] {
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(214, 17, 127, 0.4),
                0 0 30px rgba(74, 19, 140, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(214, 17, 127, 0.6),
                0 0 40px rgba(74, 19, 140, 0.5);
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%);
    border-color: rgba(0, 212, 255, 0.5);
}

.whatsapp-float i {
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(11, 11, 18, 0.98) 0%, rgba(48, 10, 107, 0.95) 100%);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 17, 127, 0.3);
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(48, 10, 107, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(214, 17, 127, 0.4),
                    0 0 30px rgba(74, 19, 140, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(214, 17, 127, 0.6),
                    0 0 40px rgba(74, 19, 140, 0.5);
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(214, 17, 127, 0.4),
                0 0 30px rgba(74, 19, 140, 0.3);
    z-index: 9998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: scrollToTopPulse 2s ease-in-out infinite;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(214, 17, 127, 0.6),
                0 0 40px rgba(74, 19, 140, 0.5);
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%);
    border-color: rgba(0, 212, 255, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top i {
    color: #ffffff;
}

.scroll-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(11, 11, 18, 0.98) 0%, rgba(48, 10, 107, 0.95) 100%);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 17, 127, 0.3);
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.3);
}

.scroll-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(48, 10, 107, 0.95);
}

.scroll-to-top:hover .scroll-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes scrollToTopPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(214, 17, 127, 0.4),
                    0 0 30px rgba(74, 19, 140, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(214, 17, 127, 0.6),
                    0 0 40px rgba(74, 19, 140, 0.5);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .scroll-to-top {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 20px;
        font-size: 20px;
    }
    
    .scroll-tooltip {
        display: none;
    }
}

/* ========================================
   SINGLE POST TEMPLATE STYLES
======================================== */
.site-main {
    min-height: 60vh;
    padding: 80px 0 60px;
}

.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Article Container */
.site-main article {
    background: rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Entry Header */
.entry-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #D999E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entry-title a {
    background: linear-gradient(135deg, #ffffff 0%, #D999E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
}

.entry-title a:hover {
    background: linear-gradient(135deg, #D6117F 0%, #4A138C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Entry Meta */
.entry-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-top: 20px;
}

.entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.entry-meta i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.entry-meta a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

.entry-meta a:hover {
    color: var(--secondary-color);
}

/* Entry Thumbnail */
.entry-thumbnail {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.entry-thumbnail:hover img {
    transform: scale(1.02);
}

/* Entry Content */
.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 100%;
    text-align: left;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: left;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.entry-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(214, 17, 127, 0.3);
}

.entry-content h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
}

.entry-content h4 {
    font-size: 1.3rem;
}

.entry-content a {
    color: var(--cyan-blue);
    text-decoration: underline;
    transition: var(--transition);
}

.entry-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.entry-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.entry-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(214, 17, 127, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.entry-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--cyan-blue);
}

.entry-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(214, 17, 127, 0.2);
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: var(--text-color);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.entry-content table th,
.entry-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.entry-content table th {
    background: rgba(214, 17, 127, 0.2);
    color: var(--white);
    font-weight: 600;
}

.entry-content table td {
    color: rgba(255, 255, 255, 0.85);
}

/* Entry Footer */
.entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-links {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-links strong {
    color: var(--white);
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tags-links strong i {
    color: var(--secondary-color);
}

.tags-links a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(214, 17, 127, 0.2);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(214, 17, 127, 0.3);
}

.tags-links a:hover {
    background: rgba(214, 17, 127, 0.4);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.post-navigation .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Page Links */
.page-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-links a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    background: rgba(214, 17, 127, 0.2);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.page-links a:hover {
    background: rgba(214, 17, 127, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design for Single Post */
@media (max-width: 768px) {
    .site-main {
        padding: 60px 0 40px;
    }
    
    .single-post-container {
        padding: 0 20px;
    }
    
    .site-main article {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .entry-meta {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h2 {
        font-size: 1.6rem;
    }
    
    .entry-content h3 {
        font-size: 1.3rem;
    }
    
    .entry-content p {
        font-size: 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .post-navigation .btn {
        width: 100%;
    }
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-section h2,
.comments-section h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-author .fn {
    color: var(--cyan-blue);
    font-weight: 600;
    text-decoration: none;
}

.comment-author .fn:hover {
    color: var(--secondary-color);
}

.comment-metadata {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--secondary-color);
}

.comment-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-reply-link {
    color: var(--cyan-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.comment-reply-link:hover {
    color: var(--secondary-color);
}

/* Comment Form */
.comment-form {
    margin-top: 40px;
}

.comment-form label {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.4);
}

.comment-form .form-submit {
    margin-top: 20px;
}

.comment-form .submit {
    background: linear-gradient(135deg, #4D0B39 0%, #4D0B39 70%, #2D004F 100%);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 17, 127, 0.4);
}

.comment-form .submit:hover {
    background: linear-gradient(135deg, #5D0B49 0%, #5D0B49 70%, #3D005F 100%);
    box-shadow: 0 6px 20px rgba(214, 17, 127, 0.6);
    transform: translateY(-2px);
}

.comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.comment-form .comment-form-cookies-consent label {
    margin: 0;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
}

