/* ===== CSS Variables ===== */
:root {
    --primary-purple: #9333ea;
    --primary-purple-light: #a855f7;
    --primary-purple-dark: #7c3aed;
    --accent-purple: #c084fc;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-gray-light: #d4d4d8;
    --gradient-purple: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    --gradient-glow: linear-gradient(135deg, rgba(147, 51, 234, 0.5) 0%, rgba(192, 132, 252, 0.5) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Stars Background ===== */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1a0a2e 0%, #0a0a0a 100%);
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: var(--opacity); transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.5); }
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(192, 132, 252, 1), transparent);
    animation: shoot 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes shoot {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    5% { opacity: 1; }
    20% { transform: translateX(300px) translateY(300px); opacity: 0; }
    100% { opacity: 0; }
}

/* ===== Navigation Bar (Top) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: top 0.3s ease, background 0.3s ease;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.15);
}

.navbar.hidden {
    top: -100px;
}

.nav-container {
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
    transform: scale(1.05);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.menu-icon span {
    display: block;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    width: 100%;
}

.menu-icon span:nth-child(2) {
    width: 70%;
}

.menu-icon span:nth-child(3) {
    width: 100%;
}

.menu-toggle:hover .menu-icon span {
    background: var(--accent-purple);
}

.menu-toggle:hover .menu-icon span:nth-child(2) {
    width: 100%;
}

/* Sidebar Open State - Menu Icon Animation */
body.sidebar-open .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.sidebar-open .menu-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}

body.sidebar-open .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Sidebar Overlay ===== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.sidebar-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

/* ===== Sidebar Navigation ===== */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    border-left: 1px solid rgba(147, 51, 234, 0.3);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

body.sidebar-open .sidebar {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
    color: var(--text-white);
}

/* Sidebar Navigation Links */
.sidebar-nav {
    flex: 1;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-gray-light);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-purple);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(147, 51, 234, 0.1);
    color: var(--text-white);
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    transform: scaleY(1);
}

.sidebar-link .link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sidebar-link:hover .link-icon,
.sidebar-link.active .link-icon {
    background: var(--gradient-purple);
    color: white;
}

.sidebar-link .link-icon svg {
    transition: all 0.3s ease;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-purple);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
    color: var(--accent-purple);
    transform: translateY(-2px);
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Hero fade out at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-purple);
    background: rgba(147, 51, 234, 0.1);
}

.hero-visual-inline {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
}

.hero-visual-inline .pentagon-container {
    width: 300px;
    height: 300px;
}

.hero-visual-inline #pentagon-canvas {
    width: 250px;
    height: 250px;
}

.hero-visual-inline .pentagon-glow {
    width: 250px;
    height: 250px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== 3D Pentagon ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pentagon-container {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.pentagon-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 4s ease-in-out infinite;
}

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

/* Three.js Pentagon Canvas */
#pentagon-canvas {
    position: relative;
    z-index: 1;
    width: 450px;
    height: 450px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-purple);
    opacity: 0.6;
}

.float-element.el1 {
    width: 10px;
    height: 10px;
    top: 10%;
    left: 20%;
    animation: float1 6s ease-in-out infinite;
}

.float-element.el2 {
    width: 15px;
    height: 15px;
    top: 70%;
    right: 15%;
    animation: float2 8s ease-in-out infinite;
}

.float-element.el3 {
    width: 8px;
    height: 8px;
    bottom: 20%;
    left: 10%;
    animation: float3 5s ease-in-out infinite;
}

.float-element.el4 {
    width: 12px;
    height: 12px;
    top: 30%;
    right: 25%;
    animation: float4 7s ease-in-out infinite;
}

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

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

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 25px) rotate(180deg); }
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .pentagon-container {
        width: 400px;
        height: 400px;
    }

    #pentagon-canvas {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }

    .hero-visual-inline {
        display: flex;
    }

    .about-visual {
        display: none;
    }

    .about-visual-inline {
        display: flex;
    }

    /* Sidebar responsive adjustments */
    .sidebar {
        width: 280px;
        right: -280px;
    }

    .sidebar-link {
        padding: 0.875rem 1rem;
    }

    .sidebar-link .link-icon {
        width: 36px;
        height: 36px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding-top: 2rem;
    }

    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: 2;
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        margin: 0 auto 1.5rem;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .pentagon-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    #pentagon-canvas {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .pentagon-container {
        width: 240px;
        height: 240px;
    }

    #pentagon-canvas {
        width: 240px;
        height: 240px;
    }
    .hero-title {
        font-size: 2rem;
    }

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

    .stat {
        flex: 0 0 40%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Specific fixes for iPhone Pro and similar 6.1" screens (approx 390px-430px) */
@media (max-width: 430px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .services-title, .strengths-title, .portfolio-title, .testimonials-title, .pricing-title, .team-title, .faq-title {
        font-size: 1.75rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .pentagon-container, .digital-cube-container {
        width: 220px;
        height: 220px;
    }

    #pentagon-canvas {
        width: 220px;
        height: 220px;
    }

    .digital-cube {
        width: 80px;
        height: 80px;
    }

    .cube-face {
        width: 80px;
        height: 80px;
    }

    .cube-front { transform: translateZ(40px); }
    .cube-back { transform: rotateY(180deg) translateZ(40px); }
    .cube-right { transform: rotateY(90deg) translateZ(40px); }
    .cube-left { transform: rotateY(-90deg) translateZ(40px); }
    .cube-top { transform: rotateX(90deg) translateZ(40px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(40px); }
}

/* ===== About Section ===== */
.about-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Dotted Square Pattern Background */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-image: radial-gradient(#1a1a2e 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 0;
}

/* Corner Gradient Accent */
.about-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    z-index: 10;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.highlight-dark {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-visual-inline {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
}

.about-visual-inline .digital-cube-container {
    width: 300px;
    height: 300px;
}

.about-visual-inline .digital-cube {
    width: 120px;
    height: 120px;
}

.about-visual-inline .cube-face {
    width: 120px;
    height: 120px;
}

.about-visual-inline .cube-front { transform: translateZ(60px); }
.about-visual-inline .cube-back { transform: rotateY(180deg) translateZ(60px); }
.about-visual-inline .cube-right { transform: rotateY(90deg) translateZ(60px); }
.about-visual-inline .cube-left { transform: rotateY(-90deg) translateZ(60px); }
.about-visual-inline .cube-top { transform: rotateX(90deg) translateZ(60px); }
.about-visual-inline .cube-bottom { transform: rotateX(-90deg) translateZ(60px); }

.about-visual-inline .orbit-1 { width: 180px; height: 180px; }
.about-visual-inline .orbit-2 { width: 230px; height: 230px; }
.about-visual-inline .orbit-3 { width: 280px; height: 280px; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: #ffffff;
    border-color: rgba(147, 51, 234, 0.2);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 12px;
    color: white;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.375rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: var(--gradient-purple);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

.btn-about-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e5e7eb;
}

.btn-about-secondary:hover {
    border-color: var(--primary-purple);
    background: rgba(147, 51, 234, 0.05);
    color: var(--primary-purple);
}

/* ===== 3D Cube Visual ===== */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.digital-cube-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.cube-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: cubeGlow 4s ease-in-out infinite;
}

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

.digital-cube {
    position: relative;
    width: 180px;
    height: 180px;
    transform-style: preserve-3d;
    animation: rotateCube 15s linear infinite;
}

@keyframes rotateCube {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
    border: 2px solid rgba(192, 132, 252, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
    border-radius: 8px;
}

.face-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.face-content svg {
    opacity: 0.9;
}

.face-content span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cube-front {
    transform: translateZ(90px);
}

.cube-back {
    transform: rotateY(180deg) translateZ(90px);
}

.cube-right {
    transform: rotateY(90deg) translateZ(90px);
}

.cube-left {
    transform: rotateY(-90deg) translateZ(90px);
}

.cube-top {
    transform: rotateX(90deg) translateZ(90px);
}

.cube-bottom {
    transform: rotateX(-90deg) translateZ(90px);
}

/* Orbiting Elements */
.orbit {
    position: absolute;
    border: 1px dashed rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: orbitRotate linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 350px;
    height: 350px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 420px;
    height: 420px;
    animation-duration: 16s;
}

@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
}

.orbit-2 .orbit-dot {
    width: 10px;
    height: 10px;
    top: auto;
    bottom: -5px;
}

.orbit-3 .orbit-dot {
    width: 8px;
    height: 8px;
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-container {
        gap: 3rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .digital-cube-container {
        width: 380px;
        height: 380px;
    }

    .digital-cube {
        width: 150px;
        height: 150px;
    }

    .cube-face {
        width: 150px;
        height: 150px;
    }

    .cube-front { transform: translateZ(75px); }
    .cube-back { transform: rotateY(180deg) translateZ(75px); }
    .cube-right { transform: rotateY(90deg) translateZ(75px); }
    .cube-left { transform: rotateY(-90deg) translateZ(75px); }
    .cube-top { transform: rotateX(90deg) translateZ(75px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(75px); }

    .orbit-1 { width: 230px; height: 230px; }
    .orbit-2 { width: 290px; height: 290px; }
    .orbit-3 { width: 350px; height: 350px; }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-visual {
        display: none;
    }

    .about-visual-inline {
        display: flex;
    }

    .about-title {
        font-size: 2.25rem;
    }

    .about-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
    }

    .about-features {
        width: 100%;
        max-width: 500px;
    }

    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }

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

    .about-buttons {
        justify-content: center;
    }

    .digital-cube-container {
        width: 280px;
        height: 280px;
    }

    .digital-cube {
        width: 100px;
        height: 100px;
    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .face-content svg {
        width: 24px;
        height: 24px;
    }

    .face-content span {
        font-size: 0.7rem;
    }

    .cube-front { transform: translateZ(50px); }
    .cube-back { transform: rotateY(180deg) translateZ(50px); }
    .cube-right { transform: rotateY(90deg) translateZ(50px); }
    .cube-left { transform: rotateY(-90deg) translateZ(50px); }
    .cube-top { transform: rotateX(90deg) translateZ(50px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(50px); }

    .orbit-1 { width: 150px; height: 150px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 250px; height: 250px; }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.875rem;
    }

    .digital-cube-container {
        width: 280px;
        height: 280px;
    }

    .digital-cube {
        width: 100px;
        height: 100px;
    }

    .cube-face {
        width: 100px;
        height: 100px;
    }

    .face-content svg {
        width: 24px;
        height: 24px;
    }

    .face-content span {
        font-size: 0.625rem;
    }

    .cube-front { transform: translateZ(50px); }
    .cube-back { transform: rotateY(180deg) translateZ(50px); }
    .cube-right { transform: rotateY(90deg) translateZ(50px); }
    .cube-left { transform: rotateY(-90deg) translateZ(50px); }
    .cube-top { transform: rotateX(90deg) translateZ(50px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(50px); }

    .orbit-1 { width: 150px; height: 150px; }
    .orbit-2 { width: 190px; height: 190px; }
    .orbit-3 { width: 230px; height: 230px; }
}

/* ===== Services Section ===== */
.services-section {
    padding: 8rem 0;
    background: #000000;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Circuit Board Pattern Background */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Radial Glow */
.services-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.2);
}

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

.service-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 16px;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.service-card .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card .service-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--accent-purple);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    color: var(--text-white);
}

.service-btn:hover svg {
    transform: translateX(5px);
}

/* 3D Decorative Elements */
.services-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 1;
    perspective: 800px;
}

.services-decor-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.services-decor-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

/* Pyramid Shape */
.decor-pyramid {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotatePyramid 12s linear infinite;
}

@keyframes rotatePyramid {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(147, 51, 234, 0.3);
    transform-origin: 50% 100%;
}

.pyramid-front {
    transform: translateZ(29px) rotateX(-30deg);
    border-bottom-color: rgba(147, 51, 234, 0.4);
}

.pyramid-right {
    transform: rotateY(90deg) translateZ(29px) rotateX(-30deg);
    border-bottom-color: rgba(147, 51, 234, 0.3);
}

.pyramid-back {
    transform: rotateY(180deg) translateZ(29px) rotateX(-30deg);
    border-bottom-color: rgba(147, 51, 234, 0.2);
}

.pyramid-left {
    transform: rotateY(-90deg) translateZ(29px) rotateX(-30deg);
    border-bottom-color: rgba(147, 51, 234, 0.35);
}

.pyramid-bottom {
    position: absolute;
    width: 100px;
    height: 100px;
    border: none;
    background: rgba(147, 51, 234, 0.2);
    transform: rotateX(90deg) translateZ(-43px);
}

/* Octahedron Shape */
.decor-octahedron {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateOctahedron 15s linear infinite reverse;
}

@keyframes rotateOctahedron {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.octa-face {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    transform-origin: 50% 0%;
}

.octa-top-front, .octa-top-right, .octa-top-back, .octa-top-left {
    border-bottom: 56px solid rgba(192, 132, 252, 0.3);
}

.octa-bottom-front, .octa-bottom-right, .octa-bottom-back, .octa-bottom-left {
    border-top: 56px solid rgba(192, 132, 252, 0.2);
    border-bottom: none;
}

.octa-top-front { transform: translateZ(28px) rotateX(-45deg); }
.octa-top-right { transform: rotateY(90deg) translateZ(28px) rotateX(-45deg); }
.octa-top-back { transform: rotateY(180deg) translateZ(28px) rotateX(-45deg); }
.octa-top-left { transform: rotateY(-90deg) translateZ(28px) rotateX(-45deg); }

.octa-bottom-front { transform: translateZ(28px) rotateX(45deg) translateY(56px); }
.octa-bottom-right { transform: rotateY(90deg) translateZ(28px) rotateX(45deg) translateY(56px); }
.octa-bottom-back { transform: rotateY(180deg) translateZ(28px) rotateX(45deg) translateY(56px); }
.octa-bottom-left { transform: rotateY(-90deg) translateZ(28px) rotateX(45deg) translateY(56px); }

/* Decorative Rings */
.decor-ring {
    position: absolute;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.decor-ring-1 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.decor-ring-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
    border-color: rgba(192, 132, 252, 0.2);
}

.decor-ring-3 {
    width: 130px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.decor-ring-4 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
    border-color: rgba(192, 132, 252, 0.2);
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* ===== Service Modal ===== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s ease;
}

.service-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(147, 51, 234, 0.3);
    color: var(--text-white);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 16px;
    color: white;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-body p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-body h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--gradient-purple);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.modal-cta {
    padding: 1rem 2rem;
}

/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 2.75rem;
    }

    .services-decor {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-title {
        font-size: 2.25rem;
    }

    .service-card {
        padding: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-icon-wrapper {
        display: flex;
        justify-content: center;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-card .service-title {
        font-size: 1.25rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }
}

/* ===== Strengths Section ===== */
.strengths-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Cross/Plus Pattern Background */
.strengths-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M19 0h2v40h-2zM0 19h40v2H0z' fill='%239333ea' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    z-index: 0;
}

/* Gradient Accent */
.strengths-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.strengths-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.strengths-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strengths-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.strengths-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.strengths-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Strengths Grid Layout */
.strengths-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strengths-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.strengths-row-2 .strength-card {
    flex: 0 1 calc(50% - 1rem);
    max-width: 500px;
}

.strengths-row-3 .strength-card {
    flex: 0 1 calc(33.333% - 1.33rem);
    max-width: 400px;
}

/* Strength Card */
.strength-card {
    background: #ffffff;
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.strength-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.15);
}

.strength-3d-element {
    width: 100px;
    height: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 500px;
}

.strength-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.strength-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== 3D Shape: Diamond ===== */
.shape-diamond {
    width: 50px;
    height: 50px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateDiamond 8s linear infinite;
}

@keyframes rotateDiamond {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.diamond-face {
    position: absolute;
    width: 0;
    height: 0;
}

.diamond-top, .diamond-bottom {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.diamond-top {
    border-bottom: 35px solid rgba(147, 51, 234, 0.8);
    transform: rotateX(30deg) translateZ(15px);
}

.diamond-bottom {
    border-top: 35px solid rgba(192, 132, 252, 0.6);
    transform: rotateX(-30deg) translateZ(-15px) rotateX(180deg);
}

.diamond-front, .diamond-back, .diamond-left, .diamond-right {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.6), rgba(192, 132, 252, 0.4));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.diamond-front { transform: translateZ(20px) rotateY(0deg); }
.diamond-back { transform: translateZ(-20px) rotateY(180deg); }
.diamond-left { transform: translateX(-20px) rotateY(-90deg); }
.diamond-right { transform: translateX(20px) rotateY(90deg); }

/* ===== 3D Shape: Helix ===== */
.shape-helix {
    width: 60px;
    height: 80px;
    position: relative;
    animation: rotateHelix 6s linear infinite;
}

@keyframes rotateHelix {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.helix-strand {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

.strand-1 { top: 0; left: 50%; transform: translateX(-50%); animation: helixMove 2s ease-in-out infinite; }
.strand-2 { top: 15px; left: 80%; animation: helixMove 2s ease-in-out infinite 0.33s; }
.strand-3 { top: 30px; left: 50%; transform: translateX(-50%); animation: helixMove 2s ease-in-out infinite 0.66s; }
.strand-4 { top: 45px; left: 20%; animation: helixMove 2s ease-in-out infinite 1s; }
.strand-5 { top: 60px; left: 50%; transform: translateX(-50%); animation: helixMove 2s ease-in-out infinite 1.33s; }
.strand-6 { top: 75px; left: 80%; animation: helixMove 2s ease-in-out infinite 1.66s; }

@keyframes helixMove {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* ===== 3D Shape: Rings ===== */
.shape-rings {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateRings 10s linear infinite;
}

@keyframes rotateRings {
    0% { transform: rotateX(60deg) rotateZ(0deg); }
    100% { transform: rotateX(60deg) rotateZ(360deg); }
}

.ring {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: var(--primary-purple);
    border-bottom-color: var(--accent-purple);
}

.ring-outer {
    width: 70px;
    height: 70px;
    animation: ringPulseStrength 2s ease-in-out infinite;
}

.ring-middle {
    width: 50px;
    height: 50px;
    animation: ringPulseStrength 2s ease-in-out infinite 0.3s;
}

.ring-inner {
    width: 30px;
    height: 30px;
    animation: ringPulseStrength 2s ease-in-out infinite 0.6s;
}

.ring-core {
    width: 15px;
    height: 15px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

@keyframes ringPulseStrength {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== 3D Shape: Sphere ===== */
.shape-sphere {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    animation: rotateSphere 12s linear infinite;
}

@keyframes rotateSphere {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.sphere-ring {
    position: absolute;
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 50%;
}

.sphere-ring-1 {
    width: 60px;
    height: 60px;
    transform: rotateX(90deg);
}

.sphere-ring-2 {
    width: 60px;
    height: 60px;
    transform: rotateY(90deg);
}

.sphere-ring-3 {
    width: 60px;
    height: 60px;
}

.sphere-core {
    width: 25px;
    height: 25px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.7);
}

/* ===== 3D Shape: Cube Stack ===== */
.shape-cube-stack {
    width: 70px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatCubes 4s ease-in-out infinite;
}

@keyframes floatCubes {
    0%, 100% { transform: rotateX(-15deg) rotateY(0deg); }
    50% { transform: rotateX(-15deg) rotateY(180deg); }
}

.mini-cube {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

.cube-1 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cube-2 {
    bottom: 25px;
    left: 30%;
    animation: cubeFloat 2s ease-in-out infinite 0.2s;
}

.cube-3 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: cubeFloat 2s ease-in-out infinite 0.4s;
}

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

/* ===== 3D Shape: Lightning ===== */
.shape-lightning {
    width: 60px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightning-bolt {
    width: 30px;
    height: 60px;
    background: var(--gradient-purple);
    clip-path: polygon(50% 0%, 100% 35%, 60% 35%, 80% 100%, 20% 55%, 50% 55%, 30% 0%);
    animation: lightningFlash 2s ease-in-out infinite;
}

.lightning-glow {
    position: absolute;
    width: 50px;
    height: 70px;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
    filter: blur(10px);
    animation: lightningGlow 2s ease-in-out infinite;
}

@keyframes lightningFlash {
    0%, 90%, 100% { opacity: 1; transform: scale(1); }
    95% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes lightningGlow {
    0%, 90%, 100% { opacity: 0.5; }
    95% { opacity: 1; }
}

.lightning-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: particleFly 1.5s ease-out infinite;
}

.lightning-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.lightning-particles span:nth-child(2) { top: 30%; right: 20%; animation-delay: 0.3s; }
.lightning-particles span:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 0.6s; }
.lightning-particles span:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 0.9s; }

@keyframes particleFly {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(2) translate(10px, -10px); opacity: 0; }
}

/* ===== 3D Shape: Shield ===== */
.shape-shield {
    width: 60px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-body {
    width: 50px;
    height: 60px;
    background: var(--gradient-purple);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.shield-glow {
    position: absolute;
    width: 70px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    animation: shieldGlow 3s ease-in-out infinite;
}

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

@keyframes shieldGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ===== 3D Shape: Nodes ===== */
.shape-nodes {
    width: 80px;
    height: 80px;
    position: relative;
    animation: rotateNodes 15s linear infinite;
}

@keyframes rotateNodes {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.node {
    position: absolute;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.node-center {
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.node-1, .node-2, .node-3, .node-4 {
    width: 12px;
    height: 12px;
}

.node-1 { top: 5px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 5px; transform: translateY(-50%); }
.node-3 { bottom: 5px; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 5px; transform: translateY(-50%); }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
    transform-origin: left center;
}

.conn-1 {
    width: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg) translateX(14px);
}

.conn-2 {
    width: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateX(14px);
}

.conn-3 {
    width: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg) translateX(14px);
}

.conn-4 {
    width: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg) translateX(14px);
}

/* ===== 3D Shape: Infinity ===== */
.shape-infinity {
    width: 80px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinity-loop {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

.loop-left {
    left: 5px;
    animation: infinityLeft 3s linear infinite;
}

.loop-right {
    right: 5px;
    animation: infinityRight 3s linear infinite;
}

@keyframes infinityLeft {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes infinityRight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.infinity-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    filter: blur(10px);
    animation: infinityGlow 3s ease-in-out infinite;
}

@keyframes infinityGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Strengths Section Responsive */
@media (max-width: 1024px) {
    .strengths-title {
        font-size: 2.75rem;
    }

    .strengths-row-3 .strength-card {
        flex: 0 1 calc(50% - 1rem);
    }

    .strength-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .strengths-section {
        padding: 5rem 0;
    }

    .strengths-title {
        font-size: 2.25rem;
    }

    .strengths-row {
        flex-direction: column;
        align-items: center;
    }

    .strengths-row-2 .strength-card,
    .strengths-row-3 .strength-card {
        flex: 0 1 100%;
        max-width: 500px;
        width: 100%;
    }

    .strength-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .strength-3d-element {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .strengths-section {
        padding: 4rem 0;
    }

    .strengths-title {
        font-size: 1.75rem;
    }

    .strengths-subtitle {
        font-size: 1rem;
    }

    .strength-card {
        padding: 1.5rem;
    }

    .strength-content h3 {
        font-size: 1.25rem;
    }

    .strength-content p {
        font-size: 0.875rem;
    }

    .strength-3d-element {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
}

/* ===== What We Did - Portfolio Section ===== */
.portfolio-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Clean Dotted Background Pattern */
.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.portfolio-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Grid - 2x2 Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Portfolio Card */
.portfolio-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(147, 51, 234, 0.3);
}

.portfolio-card-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 20px;
    color: white;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-placeholder {
    transform: scale(1.1);
    background: var(--gradient-purple);
}

.portfolio-placeholder.portfolio-add {
    background: transparent;
    border: 3px dashed rgba(0, 0, 0, 0.2);
    color: #6b7280;
}

.portfolio-card:hover .portfolio-placeholder.portfolio-add {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    background: rgba(147, 51, 234, 0.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-purple);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-card:hover .view-project {
    transform: translateY(0);
}

.portfolio-card-content {
    padding: 1.75rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(147, 51, 234, 0.1);
    color: var(--primary-purple);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.portfolio-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-card-title {
    color: var(--primary-purple);
}

.portfolio-card-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.portfolio-modal-content {
    max-width: 700px;
}

.portfolio-modal-header {
    margin-bottom: 1.5rem;
}

.portfolio-modal-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(147, 51, 234, 0.15);
    color: var(--accent-purple);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.portfolio-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.portfolio-modal-body p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.portfolio-modal-body h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.portfolio-modal-body ul {
    list-style: none;
    padding: 0;
}

.portfolio-modal-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.portfolio-modal-body ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--gradient-purple);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: 500;
}

/* Enhanced Modal Sections */
.project-type {
    font-size: 1.1rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-purple);
    border-radius: 8px;
    font-size: 0.85rem;
}

.modal-section p {
    font-size: 0.95rem;
    color: var(--text-gray-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.results-section {
    background: rgba(147, 51, 234, 0.08);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 500;
}

.result-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--gradient-purple);
    border-radius: 50%;
    font-size: 0.75rem;
    color: white;
}

/* Portfolio Modal Enhanced */
.portfolio-modal-content {
    max-width: 750px;
    max-height: 90vh;
}

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

    .result-item {
        font-size: 0.85rem;
        padding: 0.6rem 0.85rem;
    }

    .modal-section h4 {
        font-size: 1rem;
    }

    .section-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

/* Portfolio Section Responsive */
@media (max-width: 1024px) {
    .portfolio-title {
        font-size: 2.75rem;
    }

    .portfolio-card-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 5rem 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-title {
        font-size: 2.25rem;
    }

    .portfolio-card {
        text-align: center;
    }

    .portfolio-card-image {
        height: 200px;
    }

    .portfolio-card-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-card-title {
        font-size: 1.25rem;
    }

    .portfolio-modal-content {
        margin: 1rem;
    }

    .portfolio-modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 4rem 0;
    }

    .portfolio-title {
        font-size: 1.75rem;
    }

    .portfolio-subtitle {
        font-size: 1rem;
    }

    .portfolio-card-image {
        height: 180px;
    }

    .portfolio-placeholder {
        width: 80px;
        height: 80px;
    }

    .portfolio-placeholder svg {
        width: 36px;
        height: 36px;
    }

    .portfolio-card-content {
        padding: 1.25rem;
    }

    .portfolio-card-title {
        font-size: 1.125rem;
    }

    .portfolio-modal-content {
        padding: 1.5rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Diagonal Stripes Background Pattern */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(147, 51, 234, 0.03) 20px,
        rgba(147, 51, 234, 0.03) 22px
    );
    z-index: 0;
}

/* Dotted Overlay Pattern */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(147, 51, 234, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider Wrapper */
.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Slider Buttons */
.slider-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(192, 132, 252, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--gradient-purple);
    border-color: var(--primary-purple);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Container */
.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--accent-purple);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating span {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* CTA Card Styles */
.testimonial-cta-card {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.15) 0%, rgba(192, 132, 252, 0.08) 100%);
    border-color: rgba(147, 51, 234, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-cta-card:hover {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.25) 0%, rgba(192, 132, 252, 0.15) 100%);
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 20px;
    color: white;
    margin-bottom: 1.5rem;
}

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

.cta-content p {
    font-size: 0.95rem;
    color: var(--text-gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-btn {
    padding: 0.875rem 1.75rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(147, 51, 234, 0.5);
}

.dot.active {
    background: var(--gradient-purple);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-title {
        font-size: 2.25rem;
    }

    .testimonials-slider-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .slider-btn {
        display: none;
    }

    .testimonials-slider {
        width: 100%;
    }

    .testimonials-track {
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 0.5rem);
        padding: 2rem 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-rating {
        justify-content: center;
    }

    .slider-dots {
        display: flex;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

    .cta-icon svg {
        width: 32px;
        height: 32px;
    }

    .cta-content h3 {
        font-size: 1.25rem;
    }
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Grid/Mesh Background Pattern */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Corner Accent */
.pricing-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Main Category Tabs (Level 1) ===== */
.pricing-main-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-main-tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: #ffffff;
    color: #6b7280;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-main-tab:hover {
    border-color: rgba(147, 51, 234, 0.4);
    color: #9333ea;
    background: rgba(147, 51, 234, 0.05);
    transform: translateY(-2px);
}

.pricing-main-tab.active {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

.pricing-main-tab svg {
    flex-shrink: 0;
}

/* Main Content Panels */
.pricing-main-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.pricing-main-content.active {
    display: block;
}

/* Coming Soon Placeholder */
.pricing-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(147, 51, 234, 0.03);
    border: 2px dashed rgba(147, 51, 234, 0.2);
    border-radius: 24px;
    margin-bottom: 2rem;
}

.coming-soon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(124, 58, 237, 0.1));
    color: #9333ea;
    margin-bottom: 1.5rem;
}

.pricing-coming-soon h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.pricing-coming-soon p {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 450px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ===== Sub-Category Tabs (Level 2) ===== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: #ffffff;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    border-color: rgba(147, 51, 234, 0.4);
    color: #9333ea;
    background: rgba(147, 51, 234, 0.05);
}

.pricing-tab.active {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.pricing-tab svg {
    flex-shrink: 0;
}

/* Pricing Tab Content */
.pricing-tab-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.pricing-tab-content.active {
    display: block;
}

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

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
}

.pricing-card-popular {
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-color: rgba(147, 51, 234, 0.5);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-purple);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card-popular .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border-radius: 16px;
    margin: 0 auto 1.25rem;
    color: var(--primary-purple);
}

.pricing-card-popular .plan-icon {
    background: var(--gradient-purple);
    color: white;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.pricing-card-popular .plan-name {
    color: white;
}

.plan-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

.pricing-card-popular .plan-desc {
    color: var(--text-gray);
}

.pricing-card-body {
    margin-bottom: 2rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.plan-price .period {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
    margin-top: 0.5rem;
}

.pricing-card-popular .plan-price .currency,
.pricing-card-popular .plan-price .amount {
    color: white;
}

.pricing-card-popular .plan-price .period {
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #1a1a2e;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card-popular .plan-features li {
    color: var(--text-gray-light);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.plan-features li.disabled {
    color: #9ca3af;
}

.pricing-card-popular .plan-features li.disabled {
    color: #6b7280;
}

.plan-features .check {
    color: #10b981;
    font-weight: 600;
}

.plan-features .cross {
    color: #ef4444;
    font-weight: 600;
}

.pricing-card-footer {
    text-align: center;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-pricing:hover {
    background: var(--gradient-purple);
    border-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.btn-pricing-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-purple);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}

.pricing-note {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
}

.pricing-note a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-title {
        font-size: 2.75rem;
    }

    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }

    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-3 .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 5rem 0;
    }

    .pricing-main-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .pricing-main-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .pricing-grid,
    .pricing-grid-2,
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }

    .pricing-grid-3 .pricing-card:last-child {
        max-width: none;
    }

    .pricing-title {
        font-size: 2.25rem;
    }

    .pricing-card {
        padding: 2rem;
        text-align: center;
    }

    .plan-features li {
        justify-content: center;
    }

    .pricing-tabs {
        gap: 0.4rem;
    }

    .pricing-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .pricing-tab svg {
        width: 16px;
        height: 16px;
    }

    .pricing-coming-soon {
        padding: 3rem 1.5rem;
    }

    .pricing-coming-soon h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .plan-price .amount {
        font-size: 2.75rem;
    }

    .pricing-main-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .pricing-tab span {
        display: none;
    }
}

/* ===== Team Section ===== */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Wave Pattern Background */
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q 25 30, 50 50 T 100 50' fill='none' stroke='%239333ea' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    z-index: 0;
}

/* Circle Accent */
.team-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(192, 132, 252, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
}

.team-card-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.5);
}

.team-social {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

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

.team-card-content {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Team Responsive */
@media (max-width: 1024px) {
    .team-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 5rem 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }

    .team-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-title {
        font-size: 2.25rem;
    }

    .team-card-image {
        height: 240px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .team-card-content {
        padding: 1.5rem;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Hexagon/Honeycomb Pattern */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%239333ea' fill-opacity='0.04'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

/* Gradient Overlay */
.faq-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ Grid */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(147, 51, 234, 0.4);
}

.faq-item.active {
    border-color: rgba(147, 51, 234, 0.5);
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    gap: 1rem;
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--gradient-purple);
    color: white;
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-gray-light);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-title {
        font-size: 1.75rem;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Geometric Shapes Background */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Floating Circles */
.contact-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Contact Info */
.contact-info {
    color: white;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-title span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.contact-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: var(--gradient-purple);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        align-items: center;
        width: 100%;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-title {
        font-size: 2.25rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
        text-align: left;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 5rem 0 2rem;
    background: transparent;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

.footer-logo-text .highlight {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-purple);
    border-color: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-bottom .heart {
    color: #ef4444;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }
}

/* ===== Section 3D Decorative Elements ===== */
.section-3d-decor {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 2;
    perspective: 800px;
    pointer-events: none;
}

.section-3d-decor.decor-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.section-3d-decor.decor-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Portfolio Section 3D Elements ===== */
/* Torus Shape */
.floating-torus {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateTorus 12s linear infinite;
    transform-style: preserve-3d;
}

@keyframes rotateTorus {
    0% { transform: rotateX(45deg) rotateY(0deg); }
    100% { transform: rotateX(45deg) rotateY(360deg); }
}

.torus-ring {
    position: absolute;
    border: 4px solid transparent;
    border-radius: 50%;
}

.torus-outer {
    width: 80px;
    height: 80px;
    border-top-color: rgba(147, 51, 234, 0.6);
    border-bottom-color: rgba(192, 132, 252, 0.6);
    animation: torusPulse 3s ease-in-out infinite;
}

.torus-inner {
    width: 50px;
    height: 50px;
    border-left-color: rgba(147, 51, 234, 0.4);
    border-right-color: rgba(192, 132, 252, 0.4);
    animation: torusPulse 3s ease-in-out infinite 0.5s;
}

.torus-core {
    width: 20px;
    height: 20px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

@keyframes torusPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Icosahedron Shape */
.floating-icosahedron {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateIcosa 15s linear infinite;
}

@keyframes rotateIcosa {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.icosa-face {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(147, 51, 234, 0.3);
}

.icosa-1 { transform: translateZ(20px) rotateX(0deg); border-bottom-color: rgba(147, 51, 234, 0.5); }
.icosa-2 { transform: rotateY(90deg) translateZ(20px); border-bottom-color: rgba(192, 132, 252, 0.4); }
.icosa-3 { transform: rotateY(180deg) translateZ(20px); border-bottom-color: rgba(147, 51, 234, 0.3); }
.icosa-4 { transform: rotateY(270deg) translateZ(20px); border-bottom-color: rgba(192, 132, 252, 0.35); }

/* ===== Testimonials Section 3D Elements ===== */
/* 3D Helix */
.floating-helix-3d {
    width: 60px;
    height: 100px;
    position: relative;
    animation: rotateHelix3d 8s linear infinite;
}

@keyframes rotateHelix3d {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.helix-segment {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
}

.seg-1 { top: 0; left: 50%; transform: translateX(-50%); }
.seg-2 { top: 25%; left: 80%; animation: helixWave 2s ease-in-out infinite 0.25s; }
.seg-3 { top: 50%; left: 50%; transform: translateX(-50%); animation: helixWave 2s ease-in-out infinite 0.5s; }
.seg-4 { top: 75%; left: 20%; animation: helixWave 2s ease-in-out infinite 0.75s; }

.helix-glow {
    position: absolute;
    width: 80px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
    filter: blur(15px);
}

@keyframes helixWave {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Prism Shape */
.floating-prism {
    width: 70px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotatePrism 10s linear infinite;
}

@keyframes rotatePrism {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.prism-face {
    position: absolute;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(192, 132, 252, 0.3));
    border: 1px solid rgba(192, 132, 252, 0.5);
}

.prism-front {
    width: 50px;
    height: 70px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: translateZ(25px);
}

.prism-back {
    width: 50px;
    height: 70px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: translateZ(-25px) rotateY(180deg);
}

.prism-left, .prism-right {
    width: 50px;
    height: 70px;
}

.prism-left { transform: rotateY(-60deg) translateZ(25px); }
.prism-right { transform: rotateY(60deg) translateZ(25px); }

.prism-bottom {
    width: 50px;
    height: 50px;
    transform: rotateX(90deg) translateZ(-35px);
}

/* ===== Pricing Section 3D Elements ===== */
/* Gem Shape */
.floating-gem {
    width: 70px;
    height: 90px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateGem 12s linear infinite;
}

@keyframes rotateGem {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.gem-top {
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 40px solid rgba(147, 51, 234, 0.7);
}

.gem-bottom {
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid rgba(192, 132, 252, 0.5);
}

.gem-side {
    position: absolute;
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.5), rgba(192, 132, 252, 0.3));
    top: 25px;
}

.gem-s1 { left: 0; transform: skewY(20deg); }
.gem-s2 { left: 17px; transform: skewY(-10deg); }
.gem-s3 { right: 17px; transform: skewY(10deg); }
.gem-s4 { right: 0; transform: skewY(-20deg); }

.gem-glow {
    position: absolute;
    width: 100px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.3) 0%, transparent 60%);
    filter: blur(20px);
    animation: gemGlow 3s ease-in-out infinite;
}

@keyframes gemGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Coin Stack */
.floating-coin-stack {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatCoins 6s ease-in-out infinite;
}

@keyframes floatCoins {
    0%, 100% { transform: rotateX(60deg) rotateZ(0deg); }
    50% { transform: rotateX(60deg) rotateZ(180deg) translateY(-10px); }
}

.coin {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 50%, #9333ea 100%);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.coin-1 { bottom: 0; }
.coin-2 { bottom: 12px; opacity: 0.9; }
.coin-3 { bottom: 24px; opacity: 0.8; }

.coin-shine {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    left: 25px;
    bottom: 30px;
    transform: rotate(-30deg);
}

/* ===== Team Section 3D Elements ===== */
/* Connected Users */
.floating-users-3d {
    width: 100px;
    height: 100px;
    position: relative;
    animation: rotateUsers 15s linear infinite;
}

@keyframes rotateUsers {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.user-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

.uc-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.uc-2 { bottom: 15px; left: 15px; }
.uc-3 { bottom: 15px; right: 15px; }

.user-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.6), rgba(192, 132, 252, 0.6));
}

.conn-a { width: 35px; top: 35px; left: 32px; transform: rotate(60deg); }
.conn-b { width: 35px; top: 35px; right: 32px; transform: rotate(-60deg); }
.conn-c { width: 40px; bottom: 25px; left: 30px; }

/* Trophy */
.floating-trophy {
    width: 70px;
    height: 90px;
    position: relative;
    animation: floatTrophy 4s ease-in-out infinite;
}

@keyframes floatTrophy {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.trophy-cup {
    position: absolute;
    width: 50px;
    height: 40px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9333ea, #c084fc);
    border-radius: 0 0 25px 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.trophy-cup::before,
.trophy-cup::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    border: 3px solid rgba(147, 51, 234, 0.6);
    border-radius: 0 50% 50% 0;
    top: 5px;
}

.trophy-cup::before { left: -15px; border-radius: 50% 0 0 50%; }
.trophy-cup::after { right: -15px; }

.trophy-base {
    position: absolute;
    width: 40px;
    height: 15px;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border-radius: 3px;
}

.trophy-star {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    background: #fbbf24;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starShine 2s ease-in-out infinite;
}

@keyframes starShine {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.trophy-glow {
    position: absolute;
    width: 100px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.2) 0%, transparent 60%);
    filter: blur(15px);
}

/* ===== FAQ Section 3D Elements ===== */
/* Question Mark */
.floating-question {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-mark {
    font-size: 50px;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: questionBounce 3s ease-in-out infinite;
}

@keyframes questionBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.question-orbit {
    position: absolute;
    border: 2px dashed rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: orbitSpin 8s linear infinite;
}

.orbit-q1 { width: 70px; height: 70px; }
.orbit-q2 { width: 100px; height: 100px; animation-direction: reverse; animation-duration: 12s; }

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.question-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 60%);
    filter: blur(20px);
}

/* Light Bulb */
.floating-bulb {
    width: 60px;
    height: 90px;
    position: relative;
    animation: bulbFloat 4s ease-in-out infinite;
}

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

.bulb-glass {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(147, 51, 234, 0.6));
    border-radius: 50% 50% 45% 45%;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
    animation: bulbGlow 2s ease-in-out infinite;
}

@keyframes bulbGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(147, 51, 234, 0.5); }
    50% { box-shadow: 0 0 50px rgba(147, 51, 234, 0.8); }
}

.bulb-base {
    position: absolute;
    width: 25px;
    height: 20px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #6b7280, #4b5563);
    border-radius: 3px;
}

.bulb-base::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #9ca3af;
    top: 5px;
}

.bulb-base::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #9ca3af;
    top: 12px;
}

.bulb-rays span {
    position: absolute;
    width: 3px;
    height: 15px;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.6), transparent);
    left: 50%;
    top: -10px;
    transform-origin: bottom center;
    animation: rayPulse 2s ease-in-out infinite;
}

.bulb-rays span:nth-child(1) { transform: translateX(-50%) rotate(-30deg); animation-delay: 0s; }
.bulb-rays span:nth-child(2) { transform: translateX(-50%) rotate(-10deg); animation-delay: 0.2s; }
.bulb-rays span:nth-child(3) { transform: translateX(-50%) rotate(10deg); animation-delay: 0.4s; }
.bulb-rays span:nth-child(4) { transform: translateX(-50%) rotate(30deg); animation-delay: 0.6s; }

@keyframes rayPulse {
    0%, 100% { opacity: 0.6; height: 15px; }
    50% { opacity: 1; height: 20px; }
}

.bulb-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 60%);
    filter: blur(15px);
}

/* ===== Contact Section 3D Elements ===== */
/* Envelope */
.floating-envelope {
    width: 80px;
    height: 60px;
    position: relative;
    animation: envelopeFloat 5s ease-in-out infinite;
}

@keyframes envelopeFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.envelope-body {
    position: absolute;
    width: 80px;
    height: 50px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.envelope-flap {
    position: absolute;
    width: 0;
    height: 0;
    top: 5px;
    left: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid rgba(147, 51, 234, 0.8);
}

.envelope-paper {
    position: absolute;
    width: 60px;
    height: 30px;
    left: 10px;
    top: 0;
    background: white;
    border-radius: 3px;
    animation: paperPeek 3s ease-in-out infinite;
}

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

.envelope-glow {
    position: absolute;
    width: 100px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    filter: blur(10px);
}

/* Rocket */
.floating-rocket {
    width: 50px;
    height: 100px;
    position: relative;
    animation: rocketFly 4s ease-in-out infinite;
}

@keyframes rocketFly {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

.rocket-body {
    position: absolute;
    width: 30px;
    height: 60px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 50% 50% 10% 10%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.rocket-window {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.rocket-fin {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 10px;
    border-top: 20px solid transparent;
    border-bottom: 10px solid rgba(147, 51, 234, 0.8);
}

.fin-left {
    left: 0;
    border-right: 15px solid rgba(147, 51, 234, 0.8);
    border-bottom-color: transparent;
}

.fin-right {
    right: 0;
    border-left: 15px solid rgba(147, 51, 234, 0.8);
    border-bottom-color: transparent;
}

.rocket-flames {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.rocket-flames span {
    position: absolute;
    width: 8px;
    height: 20px;
    background: linear-gradient(180deg, #fbbf24, #f97316, transparent);
    border-radius: 50% 50% 50% 50%;
    animation: flameFlicker 0.3s ease-in-out infinite;
}

.rocket-flames span:nth-child(1) { left: 3px; animation-delay: 0s; }
.rocket-flames span:nth-child(2) { left: 11px; height: 25px; animation-delay: 0.1s; }
.rocket-flames span:nth-child(3) { left: 19px; animation-delay: 0.2s; }

@keyframes flameFlicker {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(0.9); }
}

/* Hide decorative elements on smaller screens */
@media (max-width: 1200px) {
    .section-3d-decor {
        display: none;
    }
}
