.elementor-3372 .elementor-element.elementor-element-75665cc{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-75665cc *//* =========================================================================
   NALCRO - Modern Digital Solutions
   Inspired by SaaS aesthetics (Linear, Vercel, Stripe)
   ========================================================================= */

:root {
    /* Color Palette */
    --clr-bg-light: #F8F9FA;
    --clr-bg-alt: #ffffff;
    --clr-bg-dark: #0A2540;
    --clr-bg-darker: #061930;
    
    --clr-text-light: #f8fafc;
    --clr-text-muted-dark: #a1a1aa;
    --clr-text-dark: #18181b;
    --clr-text-muted-light: #52525b;

    /* Accent Colors (Stripe B2B Palette) */
    --clr-primary: #0A2540; /* Navy */
    --clr-primary-hover: #061930;
    --clr-accent: #f1c40f; /* Yellow */
    --clr-accent-secondary: #3AAFA9; /* Teal */
    --clr-border-light: rgba(0, 0, 0, 0.08);
    --clr-border-dark: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --section-py: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--clr-bg-light);
    color: var(--clr-text-dark);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.bg-light { background-color: var(--clr-bg-alt); }
.text-center { text-align: center; }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--clr-text-dark);
}

p {
    color: var(--clr-text-muted-light);
    font-size: 1.125rem;
    max-width: 65ch;
    margin-bottom: 1.5rem;
}

/* Dark Section Basics */
.dark-section {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-light);
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 {
    color: var(--clr-text-light);
}
.dark-section p {
    color: var(--clr-text-muted-dark);
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-primary);
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid rgba(10,37,64,0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(10,37,64,0.05);
    border-color: rgba(10,37,64,0.4);
}

.dark-section .btn-secondary, .remote-support-section .btn-secondary {
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.dark-section .btn-secondary:hover, .remote-support-section .btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.text-link {
    color: var(--clr-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.text-link:hover {
    color: var(--clr-primary-hover);
    text-decoration: underline;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    background-color: rgba(0,0,0,0.05);
    color: var(--clr-text-dark);
    border: 1px solid var(--clr-border-light);
}

.dark-section .badge {
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-text-light);
    border-color: var(--clr-border-dark);
}

/* Grids */
.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 768px) {
    .dual-grid { grid-template-columns: 1fr 1fr; }
}

.align-center { align-items: center; }

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: var(--container-max);
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 48px; /* Nalcro logo sizing */
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--clr-text-muted-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 767px) {
    .nav-cta a { 
        display: none; 
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--clr-text-dark); /* Ensure mobile menu button is visible on white */
    cursor: pointer;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-bg-darker);
    z-index: 200;
    transform: translateY(-100%);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu.active {
    transform: translateY(0);
}

.menu-close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--clr-text-light);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.mobile-nav-links a {
    color: var(--clr-text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(58, 175, 169, 0.25); /* Teal */
    top: -100px;
    left: 10%;
    animation: floatOrb 12s infinite ease-in-out alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(241, 196, 15, 0.15); /* Yellow */
    top: 20%;
    right: 5%;
    animation: floatOrb 18s infinite ease-in-out alternate-reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05); /* Soft White */
    bottom: -50px;
    left: 40%;
    animation: floatOrb 15s infinite ease-in-out alternate;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    max-width: 900px;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Graphic / Abstract UI element */
.hero-graphic {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s ease;
}

.glass-panel:hover {
    transform: rotateX(0deg) scale(1);
}

.panel-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.panel-body {
    padding: 2rem;
}

.skeleton-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 1rem;
}
.full { width: 100%; }
.three-quarter { width: 75%; }

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.skeleton-box {
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* =========================================================================
   TRUST SECTION
   ========================================================================= */
.trust {
    border-bottom: 1px solid var(--clr-border-light);
    padding: 3rem 0;
    background: var(--clr-bg-light);
}

.trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 100px;
    text-align: left;
    line-height: 1.2;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-border-light);
    display: none;
}

.trust-info p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-muted-light);
}

@media (min-width: 768px) {
    .trust-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
    .trust-divider { display: block; }
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    margin: 1rem auto 0;
}

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

@media (min-width: 768px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background: var(--clr-bg-light);
    border: 1px solid var(--clr-border-light);
    border-radius: 16px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* =========================================================================
   FEATURED SECTION (Fundraiser)
   ========================================================================= */
.featured {
    position: relative;
    overflow: hidden;
}

.featured-sub {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.impact-stat strong {
    font-size: 2rem;
    color: var(--clr-accent);
}

.impact-stat span {
    font-weight: 500;
}

.featured-features ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.featured-features ul li svg {
    width: 20px;
    height: 20px;
    color: var(--clr-accent);
}

/* UI Mockup Card */
.mockup-card {
    background: var(--clr-bg-darker);
    border: 1px solid var(--clr-border-dark);
    border-radius: 16px;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.5);
    overflow: hidden;
}

.mockup-header {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid var(--clr-border-dark);
}

.mockup-list {
    padding: 1.5rem;
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mockup-item:last-child {
    margin-bottom: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.details {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 6px;
}
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-40 { width: 40%; }

.amount {
    font-weight: 700;
    width: 50px;
    text-align: right;
}

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--clr-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px var(--clr-bg-light);
}

.step h3 {
    margin-bottom: 1rem;
}

.step-connector {
    width: 2px;
    height: 50px;
    background: var(--clr-border-light);
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
    }
    .step-connector {
        width: 100px;
        height: 2px;
        margin-top: 24px;
    }
}

/* =========================================================================
   WHY NALCRO
   ========================================================================= */
.benefits-list {
    margin-top: 2.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-circle {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: white;
    border: 1px solid var(--clr-border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.benefits-list li h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefits-list li p {
    font-size: 1rem;
    margin: 0;
}

.benefits-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-sphere {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    border: 1px solid var(--clr-border-light);
    animation: float 6s ease-in-out infinite;
}

.badge-1 { top: 10%; left: 10%; animation-delay: 0s; }
.badge-2 { top: 40%; right: 5%; animation-delay: -2s; }
.badge-3 { bottom: 15%; left: 20%; animation-delay: -4s; }

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

/* =========================================================================
   SEO BLOCK
   ========================================================================= */
.seo-content {
    background: var(--clr-bg-light);
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--clr-border-light);
}

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }

.seo-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.seo-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clr-text-muted-light);
    opacity: 0.7;
}

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background: var(--clr-bg-darker);
    color: var(--clr-text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--clr-border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--clr-text-muted-dark);
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--clr-text-muted-dark);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--clr-accent-secondary);
}

.footer-contact p {
    color: var(--clr-text-muted-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--clr-text-light);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--clr-text-muted-dark);
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--clr-border-dark);
    padding-top: 2rem;
    color: var(--clr-text-muted-dark);
    font-size: 0.875rem;
}

/* =========================================================================
   ANIMATIONS & UTILITIES
   ========================================================================= */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* Intersection Observer Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   WOW FACTOR - EXTRAS
   ========================================================================= */

/* Hero Text Gradient */
.text-gradient {
    background: linear-gradient(to right, var(--clr-accent-secondary), var(--clr-accent), var(--clr-accent-secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShine 5s linear infinite;
    display: inline-block;
}

/* Spotlight Cards Hover Magic */
.spotlight-group {
    position: relative;
}

.spotlight-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(58, 175, 169, 0.05), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.spotlight-group:hover .spotlight-card::before {
    opacity: 1;
}

.spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.spotlight::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(350px circle at var(--mouse-x) var(--mouse-y), rgba(58, 175, 169, 0.8), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    border-radius: inherit;
}

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

.card-content {
    background: var(--clr-bg-light);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: background 0.3s;
}

.spotlight-card:hover .card-content {
    background: rgba(255, 255, 255, 0.95);
}

.bg-light .spotlight-card .card-content {
    background: var(--clr-bg-alt);
}

.bg-light .spotlight-card:hover .card-content {
    background: var(--clr-bg-light);
}

/* Animations */
@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* SEO Bento Box */
.seo-card {
    background: var(--clr-bg-alt);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    gap: 3rem;
    align-items: center;
    text-align: left;
    border: 1px solid var(--clr-border-light);
}
.seo-card-header {
    flex: 1;
}
.seo-card-header h2 { 
    font-size: 2.2rem; 
    margin: 0; 
    color: var(--clr-primary); 
}
.seo-card-body {
    flex: 1.5;
}
.seo-card-body p { 
    font-size: 1.125rem; 
    line-height: 1.8; 
    color: var(--clr-text-muted-light); 
    margin-bottom: 1.5rem; 
}
.seo-card-body p:last-child { 
    margin-bottom: 0; 
}
.seo-card-body strong { 
    color: var(--clr-primary); 
    font-weight: 600; 
}

@media (max-width: 768px) {
    .seo-card { 
        flex-direction: column; 
        padding: 2.5rem 1.5rem; 
        text-align: center; 
        gap: 1.5rem; 
    }
}/* End custom CSS */