/* ===================================
   CareTech Support - Modern Gradient Design
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors */
    --pink: #ff66c4;
    --blue: #468bfd;
    --purple: #a855f7;
    --cyan: #06b6d4;
    --bg-dark: #0c0a10;
    --bg-dark-alt: #14121a;
    --text-light: #f4f4f6;
    --text-muted: #c8c6d0;
    --white: #ffffff;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 3rem;

    /* Animation */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Enhanced Glassmorphism */
    --glass-bg: rgba(20, 18, 26, 0.5);
    --glass-bg-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-border-strong: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --glass-shadow-strong: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    --glass-glow: 0 0 40px rgba(255, 102, 196, 0.15), 0 0 80px rgba(70, 139, 253, 0.1);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(at 20% 30%, rgba(255, 102, 196, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(70, 139, 253, 0.05) 0px, transparent 50%),
        radial-gradient(at 40% 80%, rgba(168, 85, 247, 0.03) 0px, transparent 50%);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

/* Animated background particles - Optimized */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 102, 196, 0.2), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(70, 139, 253, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(168, 85, 247, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(6, 182, 212, 0.2), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: backgroundScroll 60s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    will-change: background-position;
}

@keyframes backgroundScroll {
    0% {
        background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    }
    100% {
        background-position: 200px 200px, 240px 260px, 330px 470px, 270px 300px;
    }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.7;
}

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

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

/* === Gradient Text === */
.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--blue), var(--purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

/* === Container === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* === Header & Navigation === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 10, 16, 0.5);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), 0 0 60px rgba(255, 102, 196, 0.05);
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 196, 0.5), rgba(70, 139, 253, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
}

.nav-cta {
    margin-left: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(20, 18, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 300px;
        padding: 2rem;
        border-radius: 20px 0 0 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s var(--smooth), box-shadow 0.2s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: var(--white);
    box-shadow:
        0 4px 15px rgba(255, 102, 196, 0.4),
        0 8px 30px rgba(70, 139, 253, 0.2),
        0 0 40px rgba(255, 102, 196, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(255, 102, 196, 0.6),
        0 12px 50px rgba(70, 139, 253, 0.3),
        0 0 60px rgba(255, 102, 196, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow:
        0 4px 20px rgba(255, 102, 196, 0.4),
        0 8px 35px rgba(70, 139, 253, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.btn-secondary::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 ease;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Multi-layer parallax orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pink), var(--purple) 50%, transparent);
    top: -200px;
    right: -100px;
    animation: float 25s infinite ease-in-out, glow 8s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue), var(--cyan) 50%, transparent);
    bottom: -300px;
    left: -200px;
    animation: float 30s infinite ease-in-out reverse, glow 10s ease-in-out infinite;
    animation-delay: -10s;
}

/* Additional depth orbs */
.hero-background::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple), transparent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 35s infinite ease-in-out, pulse 6s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--cyan), transparent);
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    top: 20%;
    left: 30%;
    animation: float 28s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.15); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(25px, -25px) scale(1.05); }
}

@keyframes glow {
    0%, 100% { opacity: 0.3; filter: blur(80px); }
    50% { opacity: 0.5; filter: blur(120px); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-icon {
    width: 24px;
    height: 24px;
    stroke: var(--pink);
    stroke-width: 2;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Animations === */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

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

/* === Section Styling === */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Add alternating section backgrounds for visual interest */
.about {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 102, 196, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(70, 139, 253, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(12, 10, 16, 0.8) 0%, rgba(20, 18, 26, 0.6) 100%);
    border-top: 1px solid rgba(255, 102, 196, 0.1);
    border-bottom: 1px solid rgba(70, 139, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -15%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.08) 0%, transparent 70%);
    border: 2px solid rgba(255, 102, 196, 0.15);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(70, 139, 253, 0.1) 0%, transparent 70%);
    border: 2px solid rgba(70, 139, 253, 0.12);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
    pointer-events: none;
    animation: float 30s ease-in-out infinite reverse;
}

.services {
    background:
        radial-gradient(circle at 10% 20%, rgba(70, 139, 253, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(14, 12, 18, 0.7) 0%, rgba(20, 18, 26, 0.8) 100%);
    border-top: 1px solid rgba(70, 139, 253, 0.15);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -8%;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(70, 139, 253, 0.08), rgba(168, 85, 247, 0.08));
    border: 2px solid rgba(70, 139, 253, 0.2);
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
    animation: float 28s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: conic-gradient(from 0deg, rgba(168, 85, 247, 0.1), rgba(6, 182, 212, 0.08), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: float 35s ease-in-out infinite reverse, spin 60s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.how-it-works {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 102, 196, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(70, 139, 253, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(168, 85, 247, 0.12) 0%, transparent 40%),
        linear-gradient(180deg, rgba(20, 18, 26, 0.6) 0%, rgba(12, 10, 16, 0.9) 50%, rgba(20, 18, 26, 0.6) 100%);
    border-top: 2px solid rgba(255, 102, 196, 0.15);
    border-bottom: 2px solid rgba(70, 139, 253, 0.15);
    position: relative;
    overflow: hidden;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.testimonials {
    background:
        radial-gradient(circle at 15% 25%, rgba(6, 182, 212, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 102, 196, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, rgba(12, 10, 16, 0.7) 0%, rgba(18, 16, 24, 0.8) 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.12);
    border-bottom: 1px solid rgba(255, 102, 196, 0.12);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    border: 3px solid rgba(6, 182, 212, 0.15);
    border-style: dashed;
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
    animation: float 40s ease-in-out infinite, spin 80s linear infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 102, 196, 0.06), rgba(6, 182, 212, 0.06));
    border: 2px solid rgba(255, 102, 196, 0.12);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.35;
    pointer-events: none;
    animation: float 33s ease-in-out infinite reverse;
}

.contact {
    background:
        radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 102, 196, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(70, 139, 253, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(12, 10, 16, 0.8) 0%, rgba(20, 18, 26, 0.9) 100%);
    border-top: 2px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(255, 102, 196, 0.08));
    border: 2px solid rgba(168, 85, 247, 0.18);
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    opacity: 0.3;
    pointer-events: none;
    animation: float 35s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(70, 139, 253, 0.1) 0%, transparent 70%);
    border: 3px solid rgba(70, 139, 253, 0.15);
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
    animation: float 38s ease-in-out infinite reverse, pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.35;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow:
        0 2px 10px rgba(255, 102, 196, 0.4),
        0 4px 20px rgba(70, 139, 253, 0.3),
        0 8px 40px rgba(255, 102, 196, 0.2);
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: rgba(200, 198, 208, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* === Bento Grid === */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.bento-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--smooth), border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    will-change: transform;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 102, 196, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.08), rgba(70, 139, 253, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 102, 196, 0.5);
    box-shadow:
        0 20px 60px rgba(255, 102, 196, 0.35),
        0 10px 30px rgba(70, 139, 253, 0.2),
        0 0 80px rgba(255, 102, 196, 0.15),
        0 0 0 1px rgba(255, 102, 196, 0.2) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

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

.bento-large {
    /* Removed span for uniform grid */
}

.bento-featured {
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.08), rgba(70, 139, 253, 0.08));
    border-color: rgba(255, 102, 196, 0.15);
}

.bento-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: var(--white);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.bento-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.bento-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--pink);
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bento-card:hover .bento-icon svg {
    transform: scale(1.1) rotate(5deg);
    stroke: var(--blue);
    filter: drop-shadow(0 0 8px rgba(255, 102, 196, 0.6));
}

.bento-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bento-description {
    color: rgba(200, 198, 208, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .bento-large {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* === How It Works Timeline === */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

/* Animated connecting line - REMOVED for cleaner look */
.timeline-line {
    display: none !important;
}

/* Individual step item */
.step-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--smooth);
}

.step-item.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Step content wrapper */
.step-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s var(--smooth);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 102, 196, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (max-width: 767px) {
    .step-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

.step-content:hover {
    transform: translateX(10px);
    border-color: rgba(255, 102, 196, 0.5);
    box-shadow:
        0 15px 50px rgba(255, 102, 196, 0.3),
        0 8px 25px rgba(70, 139, 253, 0.2),
        0 0 60px rgba(255, 102, 196, 0.15),
        0 0 0 1px rgba(255, 102, 196, 0.2) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: rgba(20, 18, 26, 0.7);
}

@media (max-width: 767px) {
    .step-content:hover {
        transform: translateY(-6px);
    }
}

/* Step badge (number) */
.step-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 102, 196, 0.4);
    z-index: 10;
}

@media (max-width: 767px) {
    .step-badge {
        position: static;
        margin: 0 auto 1rem;
        width: 50px;
        height: 50px;
    }
}

.step-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.step-content:hover .step-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 102, 196, 0.6);
}

@media (max-width: 767px) {
    .step-content:hover .step-badge {
        transform: scale(1.1);
    }
}

/* Step icon wrapper */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.15), rgba(70, 139, 253, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 767px) {
    .step-icon-wrapper {
        margin: 0 auto;
    }
}

.step-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-content:hover .step-icon-wrapper::before {
    opacity: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--pink);
    stroke-width: 2;
    transition: transform 0.3s var(--smooth);
}

.step-content:hover .step-icon svg {
    transform: scale(1.1);
}

/* Step info */
.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.step-description {
    color: rgba(200, 198, 208, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Step connector (decorative element) - REMOVED for cleaner look */
.step-connector {
    display: none !important;
}

/* Alternating layout for desktop */
@media (min-width: 768px) {
    .step-item:nth-child(odd) .step-content {
        margin-left: 0;
        margin-right: auto;
        max-width: 85%;
    }

    .step-item:nth-child(even) .step-content {
        margin-left: auto;
        margin-right: 0;
        max-width: 85%;
        grid-template-columns: 1fr auto;
    }

    .step-item:nth-child(even) .step-icon-wrapper {
        order: 2;
    }

    .step-item:nth-child(even) .step-info {
        text-align: right;
    }

    .step-item:nth-child(even) .step-connector {
        left: auto;
        right: -30px;
        background: linear-gradient(90deg, rgba(255, 102, 196, 0.5), transparent);
    }

    .step-item:nth-child(even) .step-badge {
        left: auto;
        right: -12px;
    }
}

/* === Business Section === */
.business-section {
    background: rgba(20, 18, 26, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.business-why {
    padding: var(--section-padding) 0;
}

.business-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.business-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.business-features {
    margin: 2.5rem 0;
}

.business-features h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.feature-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--pink);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 3px;
}

.business-cta {
    margin-top: 2rem;
}

.business-card {
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.1), rgba(70, 139, 253, 0.1));
    border: 1px solid rgba(255, 102, 196, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.business-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.business-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--blue);
    stroke-width: 2;
}

.business-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.business-card p {
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(6, 182, 212, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow:
        0 15px 50px rgba(6, 182, 212, 0.25),
        0 8px 25px rgba(255, 102, 196, 0.15),
        0 0 60px rgba(6, 182, 212, 0.12),
        0 0 0 1px rgba(6, 182, 212, 0.2) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.testimonial-stars {
    color: var(--pink);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--white);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-cta {
    margin-top: 2rem;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 102, 196, 0.2));
    transition: transform 0.6s var(--smooth);
}

.about-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 102, 196, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(255, 102, 196, 0.5);
    box-shadow:
        0 15px 50px rgba(255, 102, 196, 0.3),
        0 8px 25px rgba(70, 139, 253, 0.2),
        0 0 60px rgba(255, 102, 196, 0.15),
        0 0 0 1px rgba(255, 102, 196, 0.2) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-visual {
        order: -1;
    }
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--gap-lg);
    margin-top: 3rem;
    align-items: start;
}

.contact-methods h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transition: transform 0.2s var(--smooth), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-button:hover {
    transform: translateX(10px);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(20, 18, 26, 0.6);
    box-shadow:
        0 12px 40px rgba(168, 85, 247, 0.25),
        0 6px 20px rgba(255, 102, 196, 0.15),
        0 0 50px rgba(168, 85, 247, 0.12),
        0 0 0 1px rgba(168, 85, 247, 0.2) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-button svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    stroke-width: 2;
}

.contact-button div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-button strong {
    color: var(--white);
    font-size: 1.125rem;
}

.contact-button span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-wrapper h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(20, 18, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(20, 18, 26, 0.6);
    box-shadow:
        0 0 0 4px rgba(255, 102, 196, 0.15),
        0 8px 24px rgba(255, 102, 196, 0.2),
        0 0 40px rgba(255, 102, 196, 0.1),
        0 0 0 1px rgba(255, 102, 196, 0.1) inset;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.form-submit-wrapper .btn {
    min-width: 200px;
    justify-content: center;
    font-size: 1.05rem;
    padding: 0.85rem 2.5rem;
    box-shadow: 0 6px 25px rgba(255, 102, 196, 0.35);
}

.form-submit-wrapper .btn:hover {
    box-shadow: 0 8px 35px rgba(255, 102, 196, 0.55);
}

.form-submit-wrapper .btn svg {
    width: 20px;
    height: 20px;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-message svg {
    width: 24px;
    height: 24px;
    stroke: var(--pink);
    stroke-width: 2;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* === Pricing Section === */
.pricing-section {
    padding: calc(var(--section-padding) * 1.2) 0;
    background: linear-gradient(180deg, rgba(20, 18, 26, 0.3) 0%, rgba(12, 10, 16, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(70, 139, 253, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s var(--smooth), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 102, 196, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 102, 196, 0.5);
    box-shadow:
        0 20px 60px rgba(255, 102, 196, 0.35),
        0 10px 30px rgba(70, 139, 253, 0.2),
        0 0 80px rgba(255, 102, 196, 0.15),
        0 0 0 1px rgba(255, 102, 196, 0.2) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: rgba(20, 18, 26, 0.6);
}

.pricing-featured {
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.12), rgba(70, 139, 253, 0.12));
    border-color: rgba(255, 102, 196, 0.3);
    box-shadow: 0 10px 40px rgba(255, 102, 196, 0.2);
}

.pricing-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 55px rgba(255, 102, 196, 0.35);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(255, 102, 196, 0.4);
    animation: pulse 2s ease-in-out infinite;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Create consistent spacing for cards without badges */
.pricing-card:not(:has(.pricing-badge)) .pricing-icon {
    margin-top: calc(28px + 1.25rem);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.1), rgba(70, 139, 253, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--bounce);
}

.pricing-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--pink);
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pricing-card:hover .pricing-icon svg {
    stroke: var(--blue);
    filter: drop-shadow(0 0 8px rgba(255, 102, 196, 0.6));
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.2), rgba(70, 139, 253, 0.2));
    box-shadow: 0 10px 30px rgba(255, 102, 196, 0.3);
}

.pricing-badge.gradient {
    background: linear-gradient(135deg, var(--pink), var(--blue));
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 45px;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-subtext {
    text-align: center;
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.price-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    stroke: var(--pink);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.08), rgba(70, 139, 253, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 196, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
}

.pricing-note p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* === Industries Section === */
.industries-section {
    padding: var(--section-padding) 0;
}

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

.industry-card {
    background: rgba(20, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 196, 0.3);
    box-shadow: 0 10px 30px rgba(255, 102, 196, 0.15);
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--pink);
    stroke-width: 2;
}

.industry-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.65rem;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.industries-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.08), rgba(70, 139, 253, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 196, 0.15);
}

.industries-cta h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.industries-cta p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 640px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* === Footer === */
.footer {
    background: rgba(20, 18, 26, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
    margin-top: var(--section-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--gap-lg);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-location {
    font-size: 0.9rem;
    margin-top: 0.75rem;
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--pink);
}

/* === Advanced Animations & Effects === */

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 102, 196, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 102, 196, 0.6);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.visible {
    animation-play-state: running;
}

/* Stagger delays for sequential animations */
.animate-on-scroll[data-delay="1"] {
    animation-delay: 0.1s;
}

.animate-on-scroll[data-delay="2"] {
    animation-delay: 0.2s;
}

.animate-on-scroll[data-delay="3"] {
    animation-delay: 0.3s;
}

.animate-on-scroll[data-delay="4"] {
    animation-delay: 0.4s;
}

.animate-on-scroll[data-delay="5"] {
    animation-delay: 0.5s;
}

/* Hover Effects Enhancement */
.hover-lift {
    transition: transform 0.3s var(--bounce), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform 0.3s var(--bounce);
}

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

.hover-glow {
    transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.hover-glow:hover {
    filter: brightness(1.1);
    box-shadow: 0 10px 40px rgba(255, 102, 196, 0.4);
}

/* Gradient Background Animation */
.gradient-bg-animated {
    background: linear-gradient(-45deg, var(--pink), var(--blue), #9b59b6, var(--pink));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Card Shimmer Effect on Hover */
.card-shimmer {
    position: relative;
    overflow: hidden;
}

.card-shimmer::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 ease;
}

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

/* Floating Animation for Images */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Animation for CTAs */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Ripple Effect for Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Card 3D Transform Preparation */
.step-card,
.pricing-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
    }

    .hero-cta {
        flex-direction: column;
    }

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

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

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Print Styles === */
@media print {
    .header,
    .hero-background,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* === Premium Loading Animation === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c0a10 0%, #14121a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.loader-spinner::before,
.loader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: loaderPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loader-spinner::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    opacity: 0.3;
}

.loader-spinner::after {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    animation-delay: -1s;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* === Enhanced Scroll Progress Bar === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--blue), var(--purple), var(--cyan));
    background-size: 200% 100%;
    z-index: 9998;
    transition: width 0.2s ease;
    animation: gradientFlow 3s ease infinite;
}

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

/* === Enhanced Cursor Particle Trail === */
.cursor-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.8), rgba(70, 139, 253, 0.4));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.6;
    box-shadow:
        0 0 20px rgba(255, 102, 196, 0.6),
        0 0 40px rgba(70, 139, 253, 0.4),
        0 0 60px rgba(255, 102, 196, 0.2);
    filter: blur(0.5px);
    mix-blend-mode: screen;
}

/* Legacy cursor trail - hidden */
.cursor-trail {
    display: none;
}

/* === Floating Action Button === */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 102, 196, 0.4);
    cursor: pointer;
    transition: all 0.3s var(--bounce);
    border: none;
    color: white;
}

.fab:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 102, 196, 0.6);
}

.fab svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.fab.scroll-to-top {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fab.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* === Tooltip Enhancement === */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 0.5rem 1rem;
    background: rgba(20, 18, 26, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    font-size: 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 102, 196, 0.3);
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(20, 18, 26, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* === Section Divider === */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 196, 0.5), rgba(70, 139, 253, 0.5), transparent);
    margin: 4rem 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 102, 196, 0.6);
}

/* === Enhanced Testimonials === */
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 102, 196, 0.3);
    box-shadow: 0 20px 50px rgba(255, 102, 196, 0.25);
}

/* === Stats Counter Enhancement === */
.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s var(--smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(255, 102, 196, 0.4);
    box-shadow: 0 15px 40px rgba(255, 102, 196, 0.3);
}

/* === Improved Contact Form === */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(20, 18, 26, 0.6);
    box-shadow:
        0 0 0 4px rgba(255, 102, 196, 0.15),
        0 8px 24px rgba(255, 102, 196, 0.2),
        0 0 40px rgba(255, 102, 196, 0.1),
        0 0 0 1px rgba(255, 102, 196, 0.1) inset;
}

/* === Advanced Depth & Parallax Effects === */

/* Floating gradient mesh background */
.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.mesh-gradient-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at 30% 40%, rgba(255, 102, 196, 0.15) 0%, transparent 60%);
    filter: blur(100px);
    animation: meshFloat1 40s ease-in-out infinite;
    opacity: 0.4;
}

.mesh-gradient-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 70% 60%, rgba(70, 139, 253, 0.15) 0%, transparent 60%);
    filter: blur(90px);
    animation: meshFloat2 35s ease-in-out infinite;
    opacity: 0.4;
}

.mesh-gradient-3 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
    filter: blur(110px);
    animation: meshFloat3 45s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes meshFloat1 {
    0%, 100% { transform: translate(0%, 0%) rotate(0deg); }
    33% { transform: translate(10%, -15%) rotate(120deg); }
    66% { transform: translate(-15%, 10%) rotate(240deg); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0%, 0%) rotate(0deg); }
    33% { transform: translate(-12%, 18%) rotate(-120deg); }
    66% { transform: translate(18%, -12%) rotate(-240deg); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(0%, 0%) scale(1); }
    50% { transform: translate(8%, -8%) scale(1.1); }
}

/* Enhanced depth with multiple shadow layers */
.depth-shadow-sm {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(255, 102, 196, 0.05),
        0 8px 16px rgba(70, 139, 253, 0.05);
}

.depth-shadow-md {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(255, 102, 196, 0.08),
        0 16px 32px rgba(70, 139, 253, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.depth-shadow-lg {
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(255, 102, 196, 0.12),
        0 32px 64px rgba(70, 139, 253, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 80px rgba(168, 85, 247, 0.08);
}

/* Floating shapes for visual interest */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.1;
    z-index: 0;
}

.floating-circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    filter: blur(40px);
    top: 10%;
    right: 15%;
    animation: floatShape1 20s ease-in-out infinite;
}

.floating-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    filter: blur(50px);
    bottom: 15%;
    left: 10%;
    animation: floatShape2 25s ease-in-out infinite;
}

.floating-circle-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    filter: blur(35px);
    top: 60%;
    right: 25%;
    animation: floatShape3 18s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -50px) rotate(180deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 40px) rotate(-180deg); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -25px) scale(1.2); }
}

/* Section depth layers */
section {
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 102, 196, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

section:hover::before {
    opacity: 1;
}

/* 3D Transform enhancement for cards */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d-inner {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

/* Light beam effect */
.light-beam {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 102, 196, 0.3) 50%,
        transparent
    );
    animation: beamMove 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes beamMove {
    0%, 100% { opacity: 0; transform: translateX(-100px); }
    50% { opacity: 0.5; transform: translateX(100px); }
}

/* Gradient mesh overlay for sections */
.gradient-mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 102, 196, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(70, 139, 253, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

section:hover .gradient-mesh-overlay {
    opacity: 1;
}

/* Depth indicator lines */
.depth-line {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 102, 196, 0.2) 25%,
        rgba(70, 139, 253, 0.2) 75%,
        transparent
    );
    opacity: 0.3;
}

/* Enhanced icon depth */
.bento-icon,
.pricing-icon,
.step-icon {
    position: relative;
}

.bento-icon::before,
.pricing-icon::before,
.step-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.2), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.bento-card:hover .bento-icon::before,
.pricing-card:hover .pricing-icon::before,
.step-card:hover .step-icon::before {
    opacity: 1;
}

/* Parallax scroll reveal */
.parallax-reveal {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.parallax-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays for parallax reveals */
.parallax-reveal:nth-child(1) { transition-delay: 0.1s; }
.parallax-reveal:nth-child(2) { transition-delay: 0.2s; }
.parallax-reveal:nth-child(3) { transition-delay: 0.3s; }
.parallax-reveal:nth-child(4) { transition-delay: 0.4s; }
.parallax-reveal:nth-child(5) { transition-delay: 0.5s; }
.parallax-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Premium text shadow for depth */
.text-depth {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(255, 102, 196, 0.1),
        0 4px 8px rgba(70, 139, 253, 0.1);
}

/* Holographic effect on hover */
.holographic {
    position: relative;
    overflow: hidden;
}

.holographic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 102, 196, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.holographic:hover::after {
    animation: holographicShine 2s ease-in-out infinite;
}

@keyframes holographicShine {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}
