/* Spline-Inspired Modern Animated Homepage */

/* Override WordPress Theme Styles */
body.page-id-1160,
body.page-id-70 {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    background: #0a0a0f !important;
}

/* Reset html element */
html {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Style WordPress Header to match dark theme */
body.page-id-1160 header.elementor-location-header,
body.page-id-70 header.elementor-location-header {
    background: rgba(10, 10, 15, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

body.page-id-1160 header.elementor-location-header .elementor-element,
body.page-id-70 header.elementor-location-header .elementor-element {
    background: transparent !important;
}

/* Style navigation menu items */
body.page-id-1160 .elementor-nav-menu a,
body.page-id-70 .elementor-nav-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

body.page-id-1160 .elementor-nav-menu a:hover,
body.page-id-70 .elementor-nav-menu a:hover {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 20px rgba(91, 141, 239, 0.5);
}

/* Style phone number */
body.page-id-1160 .elementor-icon-list-text,
body.page-id-70 .elementor-icon-list-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.page-id-1160 .elementor-icon-list-icon svg,
body.page-id-70 .elementor-icon-list-icon svg {
    fill: var(--accent-blue) !important;
}

/* Keep WordPress Header visible, hide footer */
body.page-id-1160 footer.elementor-location-footer,
body.page-id-70 footer.elementor-location-footer {
    display: none !important;
}

/* Hide Page Title */
body.page-id-1160 .entry-header,
body.page-id-1160 .page-header,
body.page-id-1160 h1.entry-title,
body.page-id-70 .entry-header,
body.page-id-70 .page-header,
body.page-id-70 h1.entry-title {
    display: none !important;
}

/* Make content full-width */
body.page-id-1160 #content,
body.page-id-1160 .site-main,
body.page-id-1160 main,
body.page-id-70 #content,
body.page-id-70 .site-main,
body.page-id-70 main {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* ===========================
   ABOUT PAGE - EXACT HOMEPAGE STYLING
   =========================== */

/* Wrap entire About page content in same hero styling as homepage */
body.page-id-70 #content {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%) !important;
    position: relative;
    overflow: visible;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 100px 24px 120px !important;
}

/* Center About page content like homepage */
body.page-id-70 .elementor-section {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* Style About page headings like homepage */
body.page-id-70 .elementor-heading-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    text-align: center !important;
    margin-bottom: 24px !important;
}

/* Main page title - large and centered */
body.page-id-70 .elementor-widget-heading:first-child .elementor-heading-title {
    font-size: clamp(48px, 6vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 40px !important;
}

/* Section headings */
body.page-id-70 h2.elementor-heading-title {
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 20px !important;
}

/* Subheadings */
body.page-id-70 h3.elementor-heading-title {
    font-size: clamp(24px, 3vw, 32px) !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 16px !important;
}

/* Body text styling */
body.page-id-70 .elementor-widget-text-editor,
body.page-id-70 .elementor-text-editor {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(16px, 2vw, 20px) !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 32px auto !important;
}

/* Add animated background orbs to About page */
body.page-id-70 #content::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

body.page-id-70 #content::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
}

/* COMPLETE DARK THEME FOR ABOUT PAGE */
/* Force dark background on ALL Elementor sections - NUCLEAR OPTION */
body.page-id-70 .elementor-section,
body.page-id-70 .elementor-container,
body.page-id-70 .elementor-column,
body.page-id-70 .elementor-widget-wrap,
body.page-id-70 .elementor-background-overlay,
body.page-id-70 .elementor-element,
body.page-id-70 [class*="elementor"] {
    background-color: transparent !important;
    background-image: none !important;
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* Override ALL inline styles */
body.page-id-70 .elementor-section[style*="background"],
body.page-id-70 .elementor-container[style*="background"],
body.page-id-70 .elementor-column[style*="background"],
body.page-id-70 .elementor-widget-wrap[style*="background"] {
    background-color: transparent !important;
    background-image: none !important;
    background: transparent !important;
}

/* NUCLEAR OVERRIDE - Target specific Elementor classes from post-70.css */
.elementor-70 .elementor-element.elementor-element-30dcb83d::before,
.elementor-70 .elementor-element.elementor-element-30dcb83d > .elementor-background-video-container::before,
.elementor-70 .elementor-element.elementor-element-30dcb83d > .e-con-inner > .elementor-background-video-container::before,
.elementor-70 .elementor-element.elementor-element-30dcb83d > .elementor-background-slideshow::before,
.elementor-70 .elementor-element.elementor-element-30dcb83d > .e-con-inner > .elementor-background-slideshow::before,
.elementor-70 .elementor-element.elementor-element-30dcb83d > .elementor-motion-effects-container > .elementor-motion-effects-layer::before,
.elementor-70 .elementor-element.elementor-element-79aa5099::before,
.elementor-70 .elementor-element.elementor-element-79aa5099 > .elementor-background-video-container::before,
.elementor-70 .elementor-element.elementor-element-79aa5099 > .e-con-inner > .elementor-background-video-container::before,
.elementor-70 .elementor-element.elementor-element-79aa5099 > .elementor-background-slideshow::before,
.elementor-70 .elementor-element.elementor-element-79aa5099 > .e-con-inner > .elementor-background-slideshow::before,
.elementor-70 .elementor-element.elementor-element-79aa5099 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before {
    background-image: none !important;
    background-color: transparent !important;
    background: transparent !important;
    display: none !important;
}

/* Create card-like sections for About page content */
/* Skip first section (hero) - don't apply card styles */
body.page-id-70 .elementor-section:not(:first-child) .elementor-column-wrap,
body.page-id-70 .elementor-section:not(:first-child) .elementor-widget-wrap {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 48px 40px !important;
    backdrop-filter: blur(20px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.page-id-70 .elementor-section:not(:first-child) .elementor-column-wrap:hover,
body.page-id-70 .elementor-section:not(:first-child) .elementor-widget-wrap:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(91, 141, 239, 0.4) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px var(--glow-blue) !important;
}

/* First section (hero) - no card background, just centered content */
body.page-id-70 .elementor-section:first-child {
    text-align: center !important;
    padding: 80px 20px 60px !important;
    margin-bottom: 80px !important;
}

body.page-id-70 .elementor-section:first-child .elementor-widget-wrap {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

body.page-id-70 .elementor-section:first-child .elementor-widget-wrap:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Hero section - make title extra large with gradient */
body.page-id-70 .elementor-section:first-child .elementor-heading-title:first-of-type {
    font-size: clamp(56px, 8vw, 96px) !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
}

/* Hero subtitle */
body.page-id-70 .elementor-section:first-child .elementor-heading-title:nth-of-type(2) {
    font-size: clamp(20px, 3vw, 28px) !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 0 !important;
}

/* Grid layout for multi-column sections */
body.page-id-70 .elementor-section .elementor-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 32px !important;
    padding: 0 !important;
}

/* Individual column spacing */
body.page-id-70 .elementor-column {
    margin: 0 !important;
    padding: 0 !important;
}

/* Icons and images */
body.page-id-70 .elementor-widget-image {
    text-align: center !important;
    margin-bottom: 24px !important;
}

body.page-id-70 .elementor-widget-image img {
    max-width: 80px !important;
    height: auto !important;
    border-radius: 16px !important;
    filter: brightness(0.9) !important;
    transition: all 0.3s ease !important;
}

body.page-id-70 .elementor-widget-image img:hover {
    filter: brightness(1) !important;
    transform: scale(1.05) !important;
}

/* Force dark text colors */
body.page-id-70 h1,
body.page-id-70 h2,
body.page-id-70 h3,
body.page-id-70 h4,
body.page-id-70 h5,
body.page-id-70 h6 {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.page-id-70 p,
body.page-id-70 span,
body.page-id-70 div,
body.page-id-70 li,
body.page-id-70 a {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Style links */
body.page-id-70 a:hover {
    color: var(--accent-blue) !important;
}

/* Remove any white/light backgrounds from widgets */
body.page-id-70 .elementor-widget {
    background: transparent !important;
}

/* Style any cards or boxes */
body.page-id-70 .elementor-widget-container {
    background: transparent !important;
}

/* Override specific white background cards from post-70.css */
.elementor-70 .elementor-element.elementor-element-77734d77:not(.elementor-motion-effects-element-type-background),
.elementor-70 .elementor-element.elementor-element-77734d77 > .elementor-motion-effects-container > .elementor-motion-effects-layer,
.elementor-70 .elementor-element.elementor-element-570d3d0e:not(.elementor-motion-effects-element-type-background),
.elementor-70 .elementor-element.elementor-element-570d3d0e > .elementor-motion-effects-container > .elementor-motion-effects-layer,
.elementor-70 .elementor-element.elementor-element-3aa012bf:not(.elementor-motion-effects-element-type-background),
.elementor-70 .elementor-element.elementor-element-3aa012bf > .elementor-motion-effects-container > .elementor-motion-effects-layer,
.elementor-70 .elementor-element.elementor-element-660453ea:not(.elementor-motion-effects-element-type-background),
.elementor-70 .elementor-element.elementor-element-660453ea > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: rgba(255, 255, 255, 0.03) !important;
}

/* Override any Elementor custom backgrounds - AGGRESSIVE */
body.page-id-70 [style*="background"],
body.page-id-70 *[style*="background-color"],
body.page-id-70 *[style*="background-image"],
body.page-id-70 *[style*="linear-gradient"],
body.page-id-70 *[class*="has-background"] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Make images visible on dark background */
body.page-id-70 img {
    filter: brightness(0.9);
}

body.page-id-70 img:hover {
    filter: brightness(1);
}

/* Style buttons */
body.page-id-70 .elementor-button,
body.page-id-70 button,
body.page-id-70 input[type="submit"],
body.page-id-70 .wp-block-button__link {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3) !important;
    cursor: pointer !important;
}

body.page-id-70 .elementor-button:hover,
body.page-id-70 button:hover,
body.page-id-70 input[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
}

/* Contact button in Welcome section */
body.page-id-70 .elementor-element-db2908f .elementor-button {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
    padding: 18px 48px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(91, 141, 239, 0.4) !important;
}

body.page-id-70 .elementor-element-db2908f .elementor-button:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(91, 141, 239, 0.6) !important;
}

/* Style forms and inputs */
body.page-id-70 input[type="text"],
body.page-id-70 input[type="email"],
body.page-id-70 input[type="tel"],
body.page-id-70 textarea,
body.page-id-70 select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 12px !important;
    border-radius: 6px !important;
}

body.page-id-70 input::placeholder,
body.page-id-70 textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Style dividers */
body.page-id-70 .elementor-divider-separator {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Style icons */
body.page-id-70 .elementor-icon,
body.page-id-70 i {
    color: var(--accent-blue) !important;
}

/* Override any remaining light backgrounds with inline styles */
body.page-id-70 .elementor-element[data-settings*="background"] {
    background-color: transparent !important;
}

/* Ensure proper spacing */
body.page-id-70 .elementor-section {
    padding: 60px 20px !important;
    margin-bottom: 40px !important;
}

body.page-id-70 .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 20px !important;
}

/* Lists styling */
body.page-id-70 ul,
body.page-id-70 ol {
    list-style-position: inside !important;
    margin: 20px 0 !important;
    padding: 0 !important;
}

body.page-id-70 li {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: clamp(15px, 2vw, 18px) !important;
    line-height: 1.8 !important;
    margin-bottom: 12px !important;
}

/* Paragraph spacing */
body.page-id-70 p {
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
}

body.page-id-70 p:last-child {
    margin-bottom: 0 !important;
}

/* Improve text readability */
body.page-id-70 .elementor-widget-text-editor p {
    font-size: clamp(16px, 2vw, 19px) !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

/* "Your Dream. Our Mission" section - special styling */
body.page-id-70 .elementor-element-74650396 {
    text-align: center !important;
    margin: 80px auto !important;
    max-width: 900px !important;
}

body.page-id-70 .elementor-element-5d04443 .elementor-heading-title {
    font-size: clamp(18px, 3vw, 24px) !important;
    color: var(--accent-blue) !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
}

body.page-id-70 .elementor-element-2f61661 .elementor-heading-title {
    font-size: clamp(40px, 6vw, 72px) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 24px !important;
}

body.page-id-70 .elementor-element-3690401a {
    font-size: clamp(17px, 2.5vw, 22px) !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Add subtle animation to cards */
@keyframes aboutCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.page-id-70 .elementor-column {
    animation: aboutCardFadeIn 0.8s ease-out forwards !important;
    animation-delay: calc(var(--column-index, 0) * 0.2s) !important;
}

/* SPECIFIC SECTION IMPROVEMENTS */

/* COMPLETELY HIDE entire "About Us - behind the scenes at SolsticeSoft" section */
body.page-id-70 .elementor-element-2f628168 {
    display: none !important;
}

/* Welcome to SolsticeSoft section - CLEAN CENTERED LAYOUT */
body.page-id-70 .elementor-element-30dcb83d {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 80px 40px !important;
    margin: 0 auto 120px !important;
    max-width: 1000px !important;
    border: none !important;
    position: relative !important;
    text-align: center !important;
}

/* Remove any background overlays from this section */
body.page-id-70 .elementor-element-30dcb83d::before,
body.page-id-70 .elementor-element-30dcb83d::after {
    display: none !important;
    background: none !important;
}

/* Welcome section - FORCE vertical stacking (not horizontal flex) */
body.page-id-70 .elementor-element-30dcb83d .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

body.page-id-70 .elementor-element-30dcb83d .elementor-container {
    display: flex !important;
    flex-direction: column !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Welcome section - remove card styling, make it clean */
body.page-id-70 .elementor-element-449eaadf,
body.page-id-70 .elementor-element-376aa7f8 {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    margin-bottom: 80px !important;
    width: 100% !important;
}

body.page-id-70 .elementor-element-449eaadf:hover,
body.page-id-70 .elementor-element-376aa7f8:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Welcome section heading - elegant gradient */
body.page-id-70 .elementor-element-67bd4b8d .elementor-heading-title {
    font-size: clamp(42px, 6vw, 64px) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

/* Welcome section - text content */
body.page-id-70 .elementor-element-5b1f81e6 {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 60px auto !important;
}

body.page-id-70 .elementor-element-5b1f81e6 p {
    font-size: clamp(17px, 2.5vw, 20px) !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 24px !important;
}

/* Welcome section - logo image - smaller and centered */
body.page-id-70 .elementor-element-a7817c2 {
    display: flex !important;
    justify-content: center !important;
    margin: 60px auto !important;
    width: 100% !important;
}

body.page-id-70 .elementor-element-a7817c2 img {
    max-width: 200px !important;
    width: 100% !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

body.page-id-70 .elementor-element-a7817c2 img:hover {
    transform: scale(1.02) !important;
    opacity: 1 !important;
}

/* immiguide section - MOVED BELOW Welcome section (stacked vertically) */
body.page-id-70 .elementor-element-376aa7f8 {
    margin-top: 120px !important;
    display: block !important;
}

/* immiguide heading - gradient accent */
body.page-id-70 .elementor-element-fa269c6 .elementor-heading-title {
    font-size: clamp(36px, 5vw, 52px) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 32px !important;
    text-align: center !important;
}

/* immiguide text content - centered and readable */
body.page-id-70 .elementor-element-3d7e6f1,
body.page-id-70 .elementor-element-3b01c0e4 {
    font-size: clamp(17px, 2.5vw, 20px) !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 24px auto !important;
}

/* Visit immigide button - styled prominently */
body.page-id-70 .elementor-element-db2908f {
    text-align: center !important;
    margin: 40px auto !important;
}

body.page-id-70 .elementor-element-db2908f .elementor-button {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)) !important;
    padding: 16px 40px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 30px rgba(155, 89, 208, 0.4) !important;
    transition: all 0.3s ease !important;
}

body.page-id-70 .elementor-element-db2908f .elementor-button:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 40px rgba(155, 89, 208, 0.6) !important;
}

/* CTA section at bottom - make it prominent */
body.page-id-70 .elementor-element-341b4d14 {
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.15), rgba(155, 89, 208, 0.15)) !important;
    border-radius: 32px !important;
    padding: 100px 60px !important;
    margin: 80px auto 60px !important;
    max-width: 1400px !important;
    border: 2px solid rgba(91, 141, 239, 0.3) !important;
    box-shadow: 0 30px 80px rgba(91, 141, 239, 0.2) !important;
}

/* CTA section headings */
body.page-id-70 .elementor-element-341b4d14 .elementor-heading-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

/* CTA button - make it pop */
body.page-id-70 .elementor-element-98ecf4e .elementor-button {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue)) !important;
    padding: 18px 48px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(91, 141, 239, 0.4) !important;
    transition: all 0.3s ease !important;
}

body.page-id-70 .elementor-element-98ecf4e .elementor-button:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(91, 141, 239, 0.6) !important;
}

/* CTA section image */
body.page-id-70 .elementor-element-57c59228 img {
    border-radius: 32px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4) !important;
    max-width: 400px !important;
}

/* Mobile responsive adjustments for About page */
@media (max-width: 768px) {
    body.page-id-70 #content {
        padding: 80px 16px 80px !important;
    }

    body.page-id-70 .elementor-section {
        padding: 40px 16px !important;
    }

    body.page-id-70 .elementor-element-30dcb83d {
        padding: 60px 20px !important;
        margin-bottom: 80px !important;
    }

    body.page-id-70 .elementor-element-449eaadf,
    body.page-id-70 .elementor-element-376aa7f8 {
        margin-bottom: 60px !important;
    }

    body.page-id-70 .elementor-element-a7817c2 img {
        max-width: 180px !important;
    }

    body.page-id-70 .elementor-element-67bd4b8d .elementor-heading-title {
        font-size: 36px !important;
        margin-bottom: 32px !important;
    }

    body.page-id-70 .elementor-element-fa269c6 .elementor-heading-title {
        font-size: 32px !important;
    }

    body.page-id-70 .elementor-element-341b4d14 {
        padding: 50px 24px !important;
    }

    body.page-id-70 .elementor-column-wrap,
    body.page-id-70 .elementor-widget-wrap {
        padding: 32px 24px !important;
    }

    body.page-id-70 .elementor-section .elementor-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    body.page-id-70 .elementor-widget-heading:first-child .elementor-heading-title {
        font-size: 36px !important;
        margin-bottom: 24px !important;
    }

    body.page-id-70 h2.elementor-heading-title {
        font-size: 28px !important;
    }

    body.page-id-70 h3.elementor-heading-title {
        font-size: 22px !important;
    }

    body.page-id-70 .elementor-widget-text-editor,
    body.page-id-70 .elementor-text-editor {
        font-size: 16px !important;
    }
}

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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-blue: #5B8DEF;
    --accent-purple: #9B59D0;
    --accent-pink: #E74694;
    --glow-blue: rgba(91, 141, 239, 0.3);
    --glow-purple: rgba(155, 89, 208, 0.3);
}

.spline-hero {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 80px;
    margin: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Interactive Animated Background - Mouse Tracking */
.spline-hero::before,
.spline-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.spline-hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.spline-hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: pulse 8s ease-in-out infinite reverse;
}

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

/* Additional Animated Orbs */
.spline-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spline-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: drift 15s ease-in-out infinite;
}

.spline-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    top: 20%;
    right: 20%;
    animation: drift 12s ease-in-out infinite reverse;
}

.spline-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: 20%;
    left: 50%;
    animation: drift 18s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(50px, -80px);
    }
    66% {
        transform: translate(-80px, 50px);
    }
}

.spline-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.spline-hero-content {
    text-align: center;
    margin-bottom: 40px;
}

/* Fix WordPress auto-added p and br tags */
.spline-hero-content > p {
    margin: 0;
    padding: 0;
}

.spline-hero-content br:first-child {
    display: none;
}

.spline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(20px);
    margin-bottom: 20px;
    animation: slideDown 0.8s ease-out;
    transition: all 0.3s ease;
}

.spline-badge:hover {
    border-color: var(--accent-blue);
    background: rgba(91, 141, 239, 0.1);
    transform: translateY(-2px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spline-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.spline-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spline-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 auto 32px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.4s both;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
    display: block;
    width: 100%;
}

/* Cards Grid */
.spline-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: 24px;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fix WordPress extra p tags in cards */
.spline-cards-grid > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
    display: contents;
}

.spline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
}

.spline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

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

.spline-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(91, 141, 239, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.spline-card:hover {
    transform: translateY(-12px);
    border-color: rgba(91, 141, 239, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px var(--glow-blue);
}

.spline-card.purple:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px var(--glow-purple);
}

/* Card Icon */
.spline-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.2), rgba(91, 141, 239, 0.05));
    border: 1px solid rgba(91, 141, 239, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px;
    overflow: visible;
}

.spline-card-icon img,
.spline-card-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.spline-card.purple .spline-card-icon {
    background: linear-gradient(135deg, rgba(155, 89, 208, 0.2), rgba(155, 89, 208, 0.05));
    border-color: rgba(155, 89, 208, 0.3);
}

.spline-card.purple .spline-card-icon svg {
    transform: scale(0.85);
}

.spline-card:hover .spline-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px var(--glow-blue);
}

.spline-card.purple:hover .spline-card-icon {
    box-shadow: 0 10px 40px var(--glow-purple);
}

/* Card Label */
.spline-card-label {
    position: absolute;
    top: 32px;
    right: 32px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(91, 141, 239, 0.1);
    border: 1px solid rgba(91, 141, 239, 0.2);
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.spline-card.purple .spline-card-label {
    background: rgba(155, 89, 208, 0.1);
    border-color: rgba(155, 89, 208, 0.2);
    color: var(--accent-purple);
}

/* Card Title */
.spline-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

/* Card Description */
.spline-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Card Features */
.spline-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spline-feature-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.spline-card:hover .spline-feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Button */
.spline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-blue), rgba(91, 141, 239, 0.8));
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 100;
    pointer-events: all;
}

.spline-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spline-btn:hover::before {
    opacity: 1;
}

.spline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-blue);
}

.spline-btn.purple {
    background: linear-gradient(135deg, var(--accent-purple), rgba(155, 89, 208, 0.8));
}

.spline-btn.purple:hover {
    box-shadow: 0 10px 30px var(--glow-purple);
}

.spline-btn-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.spline-btn:hover .spline-btn-arrow {
    transform: translateX(4px);
}

/* Floating Animation for Cards */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.spline-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.spline-card:nth-child(2) {
    animation-delay: 3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spline-hero {
        padding: 70px 20px 30px;
        height: auto;
        min-height: 100vh;
    }

    .spline-hero-content {
        margin-bottom: 30px;
    }

    .spline-subtitle {
        white-space: normal;
        max-width: 100%;
    }

    .spline-cards-grid {
        gap: 20px;
    }

    .spline-card {
        padding: 24px 20px;
    }

    .spline-card h2 {
        font-size: 24px;
    }

    .spline-hero::before,
    .spline-hero::after {
        width: 300px;
        height: 300px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Canvas container */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above canvas */
.spline-container {
    position: relative;
    z-index: 2;
}

/* Add mesh gradient overlay */
.spline-hero::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(91, 141, 239, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 89, 208, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(231, 70, 148, 0.1) 0%, transparent 50%);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ===========================
   OPTIMIZED MARKETING SECTIONS
   =========================== */

/* Common Marketing Section Styles */
.marketing-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 24px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================
   STATS SECTION
   =========================== */

.stats-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(91, 141, 239, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===========================
   AUDIENCE SECTION (NEW)
   =========================== */

.audience-section {
    padding: 100px 24px;
}

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

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.audience-card.blue-card {
    border-color: rgba(91, 141, 239, 0.3);
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.05), rgba(91, 141, 239, 0.01));
}

.audience-card.purple-card {
    border-color: rgba(155, 89, 208, 0.3);
    background: linear-gradient(135deg, rgba(155, 89, 208, 0.05), rgba(155, 89, 208, 0.01));
}

.audience-card:hover {
    transform: translateY(-8px);
}

.audience-card.blue-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(91, 141, 239, 0.3);
}

.audience-card.purple-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(155, 89, 208, 0.3);
}

.audience-icon {
    font-size: 64px;
    margin-bottom: 24px;
    filter: grayscale(20%);
}

.audience-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.audience-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.audience-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.feature-check {
    font-size: 16px;
    color: var(--text-primary);
    padding-left: 8px;
}

/* CTA Buttons */
.marketing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.marketing-cta-btn.blue {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.marketing-cta-btn.blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 141, 239, 0.4);
}

.marketing-cta-btn.purple {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
}

.marketing-cta-btn.purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 89, 208, 0.4);
}

.marketing-cta-btn.large {
    padding: 20px 40px;
    font-size: 20px;
}

.marketing-cta-btn.xlarge {
    padding: 24px 48px;
    font-size: 22px;
    font-weight: 700;
}

.marketing-cta-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 24px;
}

.marketing-cta-btn:hover .arrow {
    transform: translateX(5px);
}

/* ===========================
   SIMPLIFIED PRODUCT SECTIONS
   =========================== */

.product-section {
    padding: 80px 24px;
    position: relative;
}

.product-section.blue-theme {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, rgba(91, 141, 239, 0.05) 100%);
    border-top: 1px solid rgba(91, 141, 239, 0.2);
}

.product-section.purple-theme {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 50%, rgba(155, 89, 208, 0.05) 100%);
    border-top: 1px solid rgba(155, 89, 208, 0.2);
}

.product-grid {
    max-width: 900px;
    margin: 0 auto;
}

.product-content {
    text-align: center;
}

.product-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 2px solid;
}

.product-badge.blue {
    background: rgba(91, 141, 239, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.product-badge.purple {
    background: rgba(155, 89, 208, 0.1);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.product-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-desc {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Compact Benefits */
.benefits-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    text-align: left;
}

.benefit-compact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.benefit-compact:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.benefit-compact strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.benefit-compact span {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */

.final-cta-section {
    padding: 100px 24px;
    background:
        radial-gradient(circle at 30% 30%, rgba(91, 141, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(155, 89, 208, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 968px) {
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 36px;
    }

    .product-desc {
        font-size: 18px;
    }

    .final-cta-title {
        font-size: 40px;
    }

    .final-cta-subtitle {
        font-size: 20px;
    }

    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .marketing-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .audience-card {
        padding: 40px 30px;
    }

    .audience-card h3 {
        font-size: 28px;
    }

    .audience-desc {
        font-size: 16px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-desc {
        font-size: 16px;
    }

    .benefits-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-compact {
        padding: 20px;
    }

    .benefit-compact strong {
        font-size: 16px;
    }

    .benefit-compact span {
        font-size: 14px;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-subtitle {
        font-size: 18px;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-item {
        font-size: 14px;
    }

    .marketing-cta-btn.xlarge {
        padding: 20px 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .spline-hero {
        padding: 70px 16px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .final-cta-subtitle {
        font-size: 16px;
    }

    .marketing-cta-btn.xlarge {
        padding: 18px 28px;
        font-size: 16px;
    }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

/* Initial hidden state */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* Animated in state */
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Optimize animations */
.stat-item,
.audience-card,
.benefit-compact,
.marketing-cta-btn {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize repaints */
.spline-card,
.audience-card,
.benefit-compact {
    contain: layout style paint;
}

/* Remove heavy floating animations */
.spline-card {
    animation: none !important;
}

/* Simplify card hover */
.spline-card:hover {
    transform: translateY(-8px) !important;
}

/* Remove complex before/after pseudo-elements on cards */
.spline-card::before {
    display: none !important;
}

/* Simplify orb animations */
.spline-orb {
    animation: none !important;
}

/* Reduce blur for better performance */
.spline-orb {
    filter: blur(60px) !important;
}

/* Simplify hero animations */
.spline-hero::before,
.spline-hero::after {
    animation: none !important;
}
