/* ============================================
   3D STUDIO - ULTRA MODERN DESIGN
   ============================================ */

/* ===== Variables ===== */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --secondary: #FD79A8;
    --accent: #00CEC9;
    --gradient-1: linear-gradient(135deg, #6C5CE7, #FD79A8);
    --gradient-2: linear-gradient(135deg, #6C5CE7, #00CEC9);
    --gradient-3: linear-gradient(135deg, #FD79A8, #FDCB6E);

    --dark: #0a0a1a;
    --dark-card: #12122a;
    --dark-light: #1a1a3e;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.4);

    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
    --shadow-glow-strong: 0 0 80px rgba(108, 92, 231, 0.4);

    --radius: 20px;
    --radius-sm: 12px;
    --radius-xl: 30px;

    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: white;
    padding-top: 80px;
    overflow-x: hidden;
    /* cursor: none; */
}

/* ===== Cursor Effects ===== */
/* .cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
}

.cursor-glow {
    position: fixed;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
} */

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--primary);
    animation: spin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    border-bottom-color: var(--secondary);
    animation: spin 1.2s linear infinite reverse;
}

.loader-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    border-left-color: var(--accent);
    animation: spin 1.2s linear infinite;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== Particles Background ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* ===== Typography ===== */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.brand-text span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link span {
    position: relative;
}

.nav-link span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover span::after,
.nav-link.active span::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.cart-link {
    position: relative;
    font-size: 1.3rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-login,
.btn-register {
    padding: 8px 24px !important;
    border-radius: 50px !important;
    transition: var(--transition);
}

.btn-login {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.btn-register {
    background: var(--gradient-1);
    color: white !important;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== Hero Modern ===== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(108, 92, 231, 0.15);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(253, 121, 168, 0.1);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 206, 201, 0.08);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.typing-text {
    display: inline-block;
    color: var(--accent);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-text .highlight {
    color: var(--primary-light);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gradient-1);
    border: none;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: var(--transition);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-hero:hover::before {
    opacity: 1;
}

.btn-hero span,
.btn-hero i {
    position: relative;
    z-index: 1;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero 3D Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.printer-3d {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.printer-body {
    position: absolute;
    inset: 20%;
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.05));
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    animation: printerPulse 3s ease-in-out infinite;
}

.printer-arm {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 4px;
    height: 40%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    transform-origin: top center;
    animation: armSwing 4s ease-in-out infinite;
}

.printer-nozzle {
    position: absolute;
    bottom: 25%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(0, 206, 201, 0.3);
    animation: nozzleGlow 2s ease-in-out infinite;
}

.printer-bed {
    position: absolute;
    bottom: 15%;
    left: 25%;
    right: 25%;
    height: 10px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.print-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: printLayer 3s ease-in-out infinite;
}

.print-layer:nth-child(1) {
    width: 30%;
    animation-delay: 0s;
}

.print-layer:nth-child(2) {
    width: 60%;
    animation-delay: 0.5s;
}

.print-layer:nth-child(3) {
    width: 90%;
    animation-delay: 1s;
}

@keyframes printerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
}

@keyframes armSwing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes nozzleGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 206, 201, 0.3); }
    50% { box-shadow: 0 0 60px rgba(0, 206, 201, 0.6); }
}

@keyframes printLayer {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.floating-cubes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cube {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 4px;
    animation: cubeFloat 6s ease-in-out infinite;
}

.cube-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cube-2 {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.cube-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: -4s;
}

.cube-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: -1s;
}

@keyframes cubeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(10px, -20px) rotate(180deg); opacity: 0.8; }
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.service-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-overlay span {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Featured Products Modern ===== */
.featured-products-modern {
    padding: 100px 0;
    background: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-modern {
    perspective: 1000px;
}

.product-card-inner {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card-inner:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: var(--shadow-glow);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--dark-light);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-inner:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.product-card-inner:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--dark);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.action-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-1);
    color: white;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.product-badge span {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient-1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-info-modern {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info-modern h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-price-modern .current {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-price-modern .old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FDCB6E;
    font-size: 0.8rem;
}

.rating span {
    color: var(--text-muted);
    margin-left: 4px;
}

.stock-badge {
    font-size: 0.7rem;
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* ===== Technologies ===== */
.technologies {
    padding: 100px 0;
    background: var(--dark-card);
}

.tech-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.tech-feature i {
    color: var(--accent);
}

.tech-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(108, 92, 231, 0.1);
    animation: ringPulse 4s ease-in-out infinite;
}

.tech-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.tech-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    animation-delay: -1.3s;
}

.tech-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    animation-delay: -2.6s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.tech-center {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 1;
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(108, 92, 231, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(108, 92, 231, 0.5); }
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: var(--shadow-glow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.testimonial-header h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: #FDCB6E;
    font-size: 0.8rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CTA Modern ===== */
.cta-modern {
    padding: 80px 0;
    background: var(--dark-card);
}

.cta-wrapper {
    position: relative;
    padding: 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-content p span {
    color: var(--accent);
    font-weight: 700;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gradient-1);
    border: none;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
    color: white;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: orbFloat 15s ease-in-out infinite;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: orbFloat 20s ease-in-out infinite reverse;
}

.cta-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(253, 121, 168, 0.05) 0%, transparent 50%);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 350px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.footer-contacts i {
    color: var(--primary-light);
}

.footer-contacts a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-tech {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Scroll Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-modern {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-stats {
        gap: 30px;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }

    .tech-visual {
        margin-top: 40px;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-glow {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .footer-description {
        margin: 0 auto 24px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contacts li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
