/* ===================================================================
   Creative Web Design - Professional Stylesheet
   Space-themed UI with 3D floating elements and glassmorphism
   =================================================================== */

/* ===================== IMPORTS & VARIABLES ===================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --primary: #7B2FBE;
    --primary-dark: #5A1E94;
    --primary-light: #A855F7;
    --accent: #60A5FA;
    --accent-light: #93C5FD;
    --white: #ffffff;
    --bg: #f8f9ff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-muted: #8888aa;
    
    /* Transparent Tones */
    --glass-white: rgba(255, 255, 255, 0.15);
    --glass-white-strong: rgba(255, 255, 255, 0.85);
    --glass-purple: rgba(123, 47, 190, 0.08);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-border-dark: rgba(123, 47, 190, 0.15);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(123, 47, 190, 0.08);
    --shadow-md: 0 8px 30px rgba(123, 47, 190, 0.12);
    --shadow-lg: 0 20px 60px rgba(123, 47, 190, 0.15);
    --shadow-glow: 0 0 40px rgba(123, 47, 190, 0.3);
    --shadow-card: 0 10px 40px rgba(26, 26, 46, 0.08);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, sans-serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-normal: 0.35s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --nav-height: 80px;
}

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

/* ===================== CUSTOM SCROLLBAR ===================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f0f7;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================== UTILITIES ===================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-purple);
    border: 1px solid var(--glass-border-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 800;
}

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

/* ===================== ANIMATIONS ===================== */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(5deg) scale(1.02); }
    66% { transform: translateY(-8px) rotate(-3deg) scale(0.98); }
}

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

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

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

@keyframes typing-cursor {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

/* ===================== PARTICLE CANVAS ===================== */
canvas#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===================== PRELOADER ===================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 30px;
    animation: float-medium 3s infinite ease-in-out;
}

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

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--primary);
    animation-duration: 1.2s;
}

.spinner-ring:nth-child(2) {
    border-right-color: var(--primary-light);
    animation-duration: 1.6s;
    animation-direction: reverse;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: var(--accent);
    animation-duration: 2s;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.preloader-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===================== NAVIGATION ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-white-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 47, 190, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 47, 190, 0.4);
}

.nav-cta i {
    font-size: 1.1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background: var(--glass-white-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    padding: 100px 40px 40px;
    transition: right 0.5s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 47, 190, 0.08);
    transition: all var(--transition-normal);
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 47, 190, 0.1);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.mobile-social {
    display: flex;
    gap: 16px;
}

.mobile-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-purple);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.mobile-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Mobile menu backdrop */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 26, 46, 0.3);
    transition: opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active::before {
    opacity: 1;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 47, 190, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 47, 190, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

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

/* ===================== HERO SECTION ===================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, #f0eaff 40%, #e8e0f8 60%, var(--white) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(123, 47, 190, 0.07), transparent 60%),
                radial-gradient(ellipse at 30% 30%, rgba(96, 165, 250, 0.06), transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(168, 85, 247, 0.04), transparent 40%);
    z-index: 1;
}

/* Hero Grid - Two columns */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 0;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass-white-strong);
    border: 1px solid var(--glass-border-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    font-size: 1rem;
    animation: float-fast 2s infinite ease-in-out;
}

.hero-title {
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 12px;
    font-weight: 500;
}

.typing-text {
    color: var(--primary);
    font-weight: 700;
    border-right: 3px solid var(--primary);
    padding-right: 4px;
    animation: typing-cursor 1s infinite;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Tech Stack Bar */
.hero-tech {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--glass-white-strong);
    border: 1px solid var(--glass-border-dark);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.hero-tech-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero-tech-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-icon-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(123, 47, 190, 0.1);
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all var(--transition-normal);
    cursor: default;
}

.tech-icon-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
}

/* ===== Hero Visual (Right column - Photo) ===== */
.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-photo-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Floating Glass Cards ===== */
.hero-float-card {
    position: absolute;
    background: var(--glass-white-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 4;
    overflow: hidden;
}

/* Card Header (title bar) */
.hf-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hf-dot-purple {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(123, 47, 190, 0.4);
}

.hf-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.hf-window-dots {
    display: flex;
    gap: 6px;
}

.hf-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hf-window-dots span:nth-child(1) { background: #ff5f57; }
.hf-window-dots span:nth-child(2) { background: #ffbd2e; }
.hf-window-dots span:nth-child(3) { background: #28c840; }

/* Card 1 - Top Left: Innovation badge */
.hero-float-card-1 {
    top: -10px;
    left: -30px;
    animation: float-slow 7s infinite ease-in-out;
    min-width: 240px;
}

/* Card 2 - Center: Title card */
.hero-float-card-2 {
    top: 10%;
    right: -20px;
    width: 280px;
    animation: float-medium 8s infinite ease-in-out;
}

.hf-card-body {
    padding: 16px 20px;
}

.hf-accent-line {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin-bottom: 12px;
}

.hf-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

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

/* Card 3 - Left: Services list */
.hero-float-card-3 {
    bottom: 5%;
    left: -60px;
    width: 300px;
    animation: float-slow 9s infinite ease-in-out;
}

.hf-services-list {
    padding: 8px 16px 12px;
}

.hf-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hf-service-item:last-child {
    border-bottom: none;
}

.hf-service-item i {
    font-size: 0.85rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.hf-service-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Stats Bar */
.hero-stats-bar {
    position: relative;
    z-index: 3;
    margin-top: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 24px 40px;
    background: var(--glass-white-strong);
    border-radius: 20px;
    border: 1px solid var(--glass-border-dark);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border-dark);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shape-1 {
    width: 160px;
    height: 160px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, rgba(123,47,190,0.08), rgba(96,165,250,0.08));
    animation: float-slow 8s infinite ease-in-out, morph 12s infinite ease-in-out;
    border-radius: 30%;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 15%;
    background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(147,197,253,0.08));
    animation: float-medium 6s infinite ease-in-out;
    border-radius: 50%;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 20%;
    right: 10%;
    background: linear-gradient(135deg, rgba(96,165,250,0.1), rgba(123,47,190,0.06));
    animation: float-fast 4s infinite ease-in-out;
    transform: rotate(45deg);
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 75%;
    right: 8%;
    background: rgba(168,85,247,0.08);
    animation: float-slow 10s infinite ease-in-out;
    border-radius: 50%;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 45%;
    right: 20%;
    background: linear-gradient(135deg, rgba(123,47,190,0.04), rgba(96,165,250,0.04));
    animation: float-medium 9s infinite ease-in-out, morph 15s infinite ease-in-out;
    border-radius: 40%;
}

.shape-6 {
    width: 35px;
    height: 35px;
    top: 8%;
    right: 35%;
    background: rgba(96,165,250,0.1);
    animation: float-fast 5s infinite ease-in-out;
    border-radius: 50%;
}

.shape-7 {
    width: 55px;
    height: 55px;
    top: 85%;
    left: 40%;
    background: rgba(123,47,190,0.06);
    animation: float-slow 7s infinite ease-in-out;
    border-radius: 15px;
    transform: rotate(30deg);
}

.shape-8 {
    width: 45px;
    height: 45px;
    top: 3%;
    right: 55%;
    background: rgba(168,85,247,0.08);
    animation: float-medium 8s infinite ease-in-out;
    border-radius: 50%;
}

/* ===================== TRANSPARENCY SYSTEM & INTERACTIVITY ===================== */
:root {
    --glass-level-1: rgba(255, 255, 255, 0.08);
    --glass-level-2: rgba(255, 255, 255, 0.18);
    --glass-level-3: rgba(255, 255, 255, 0.38);
    --glass-level-4: rgba(255, 255, 255, 0.82);
    --glass-purple-subtle: rgba(123, 47, 190, 0.06);
    --glass-purple-medium: rgba(123, 47, 190, 0.14);
    --glass-purple-strong: rgba(123, 47, 190, 0.28);
}

/* Hide old scroll indicator mouse */
.scroll-indicator,
.scroll-mouse,
.scroll-text,
.scroll-wheel {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Layered Glassmorphism Utilities */
.glass-layer-1 {
    background: var(--glass-level-1) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.glass-layer-2 {
    background: var(--glass-level-2) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.glass-layer-3 {
    background: var(--glass-level-3) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* Interactive Floating Shapes & Cards */
.floating-shapes .shape,
.tilt-card,
.service-card-v2,
.hero-float-card,
.stat-item,
.included-feature-item {
    cursor: pointer;
    transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease, border-color 0.4s ease;
}

.floating-shapes .shape:hover {
    transform: scale(1.25) rotate(15deg) !important;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(96, 165, 250, 0.35)) !important;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5) !important;
    z-index: 10;
}

.floating-shapes .shape:active {
    transform: scale(0.9) !important;
}

/* Element Crash Hit Animation */
.rocket-target-hit {
    animation: targetHitShake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) !important;
    border-color: rgba(168, 85, 247, 0.9) !important;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.6), 0 0 80px rgba(96, 165, 250, 0.4) !important;
}

@keyframes targetHitShake {
    10%, 90% { transform: translate3d(-3px, -2px, 0) scale(1.05) rotate(-2deg); }
    20%, 80% { transform: translate3d(5px, 4px, 0) scale(1.08) rotate(3deg); }
    30%, 50%, 70% { transform: translate3d(-6px, -4px, 0) scale(1.06) rotate(-3deg); }
    40%, 60% { transform: translate3d(6px, 4px, 0) scale(1.07) rotate(2deg); }
}

/* Cosmic Rocket Flying Element */
.cosmic-rocket {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform-origin: center center;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.8));
}

.cosmic-rocket.active {
    opacity: 1;
}

.cosmic-rocket-body {
    font-size: 2.5rem;
    color: #a855f7;
    transform: rotate(45deg);
    filter: drop-shadow(0 0 15px #60a5fa);
    animation: rocketWobble 0.3s infinite ease-in-out alternate;
}

.cosmic-rocket-trail {
    position: absolute;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), rgba(168, 85, 247, 1), #ff5f57);
    border-radius: 10px;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px #a855f7;
    filter: blur(1px);
}

@keyframes rocketWobble {
    0% { transform: rotate(43deg) translateY(-2px); }
    100% { transform: rotate(47deg) translateY(2px); }
}

/* Translucent Spark Particles */
.cosmic-spark {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    background: radial-gradient(circle, var(--white), var(--accent-light), var(--primary-light));
    box-shadow: 0 0 12px var(--primary-light);
    animation: sparkFade 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes sparkFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0.1);
    }
}



/* ===================== ABOUT SECTION ===================== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    transition: transform 0.5s var(--ease-smooth);
}

.about-image-wrapper img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: var(--glass-white-strong);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border-dark);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.float-card i {
    font-size: 1.3rem;
    color: var(--primary);
}

.float-card span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.float-card small {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: -2px;
}

.float-card-1 {
    top: -20px;
    right: -30px;
    animation: float-slow 6s infinite ease-in-out;
}

.float-card-2 {
    bottom: -20px;
    left: -30px;
    animation: float-medium 5s infinite ease-in-out;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 1rem;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 36px 20px;
    background: var(--white);
    border: 1px solid rgba(123, 47, 190, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--glass-purple);
    color: var(--primary);
    font-size: 1.4rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* ===================== SERVICES SECTION (V2) ===================== */
.services-section {
    background: linear-gradient(180deg, var(--white) 0%, #f4eeff 40%, #eee5ff 70%, var(--white) 100%);
    position: relative;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

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

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

.service-card-v2 {
    background: var(--glass-white-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(123, 47, 190, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(123, 47, 190, 0.18);
    border-color: rgba(168, 85, 247, 0.4);
}

.service-badge-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
}

.service-badge-price.featured-price {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
}

.price-period {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.9;
}

.service-image-v2 {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.service-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.service-card-v2:hover .service-image-v2 img {
    transform: scale(1.08);
}

.service-icon-floating {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 6px 20px rgba(123, 47, 190, 0.35);
    border: 2px solid var(--white);
    z-index: 4;
}

.service-content-v2 {
    padding: 30px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title-v2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-desc-v2 {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features-v2 {
    list-style: none;
    margin-bottom: 24px;
    margin-top: auto;
}

.service-features-v2 li {
    font-size: 0.84rem;
    color: var(--text-body);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.service-features-v2 li i {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-action-v2 {
    margin-top: 8px;
}

.btn-service-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-normal);
}

.btn-service-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: var(--white);
}

.btn-service-whatsapp i {
    font-size: 1.15rem;
}

/* ===== PLANS INCLUDED BANNER ===== */
.plans-included-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #4f46e5 100%);
    border-radius: 28px;
    padding: 56px 44px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(90, 30, 148, 0.35);
    overflow: hidden;
    margin-top: 40px;
}

.plans-included-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.plans-included-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 2;
}

.plans-included-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.plans-included-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.plans-included-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.plans-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 576px) {
    .plans-included-grid {
        grid-template-columns: 1fr;
    }
    .plans-included-banner {
        padding: 36px 20px;
    }
}

.included-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 18px;
    border-radius: 18px;
    transition: all var(--transition-normal);
}

.included-feature-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.included-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.included-text h4 {
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.included-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0;
}


.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 14px;
    color: var(--primary-dark);
}

/* ===================== PORTFOLIO SECTION ===================== */
.portfolio-section {
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid var(--glass-border-dark);
    border-radius: 50px;
    color: var(--text-body);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    height: 320px;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(90, 30, 148, 0.95) 0%, rgba(123, 47, 190, 0.6) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: var(--white);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

.portfolio-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio-desc {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 16px;
}

.portfolio-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-link:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}

/* ===================== PROCESS SECTION ===================== */
.process-section {
    background: linear-gradient(180deg, #f5f0ff 0%, var(--white) 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 30px;
}

.process-line {
    position: absolute;
    top: 75px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
    border-radius: 3px;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.35);
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(123, 47, 190, 0.06);
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--glass-purple);
    color: var(--primary);
    font-size: 1.3rem;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials-section {
    background: linear-gradient(180deg, var(--white) 0%, #f9f6ff 50%, var(--white) 100%);
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--glass-white-strong);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-dark);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.15);
    transition: all var(--transition-normal);
}

.testimonials-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(123, 47, 190, 0.35);
}

.prev-arrow { left: -5px; }
.next-arrow { right: -5px; }

.testimonials-viewport {
    overflow: hidden;
    padding: 15px 5px 25px;
    border-radius: 24px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s var(--ease-smooth);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 35px rgba(123, 47, 190, 0.08);
    border: 1px solid rgba(123, 47, 190, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    .testimonials-wrapper {
        padding: 0 10px;
    }
    .testimonials-arrow {
        display: none;
    }
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(123, 47, 190, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-right: 2px;
}

.testimonial-verified {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 50px;
}

.testimonial-service-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--glass-purple);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}

.testimonial-quote {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(123, 47, 190, 0.3);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: block;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(123, 47, 190, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonials-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* ===================== FAQ SECTION (SEO ACCORDION) ===================== */
.faq-section {
    background: linear-gradient(180deg, var(--white) 0%, #f4eeff 50%, var(--white) 100%);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(123, 47, 190, 0.1);
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.05);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 30px rgba(123, 47, 190, 0.12);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--transition-normal);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float-slow 10s infinite ease-in-out;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: 10%;
    animation: float-medium 8s infinite ease-in-out;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: -30px;
    animation: float-fast 6s infinite ease-in-out;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
    background: linear-gradient(180deg, var(--white) 0%, #f5f0ff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 48px 36px;
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
    position: relative;
}

.contact-info-card > p {
    opacity: 0.8;
    margin-bottom: 36px;
    font-size: 0.95rem;
    position: relative;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1.1rem;
}

.contact-detail-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.contact-detail-value:hover {
    opacity: 0.85;
}

.contact-social {
    display: flex;
    gap: 12px;
    position: relative;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.form-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(123, 47, 190, 0.06);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e4f0;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #faf8ff;
    transition: all var(--transition-normal);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888aa' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group + .form-group:not(.form-row .form-group) {
    margin-bottom: 24px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 24px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    margin-top: 16px;
    animation: slide-up 0.4s ease;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 8px;
}

.form-success p {
    color: #065f46;
    font-weight: 600;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #0c0a1a;
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.93rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.93rem;
}

.footer-contact li i {
    color: var(--primary-light);
    font-size: 1rem;
    min-width: 20px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.88rem;
}

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

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-glow 2s infinite;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 34px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ===================== RESPONSIVE - TABLET (1024px) ===================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-float-card-1 {
        left: -10px;
        top: -5px;
        min-width: 200px;
    }

    .hero-float-card-2 {
        right: -10px;
        width: 240px;
    }

    .hero-float-card-3 {
        left: -20px;
        width: 260px;
    }

    .hero-tech {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .floating-shapes {
        opacity: 0.4;
    }

    .about-grid {
        gap: 50px;
    }

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

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

    .process-line {
        left: 40px;
        right: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ===================== RESPONSIVE - MOBILE (768px) ===================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .hero-section {
        padding: 100px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-float-card {
        display: none;
    }

    .hero-photo {
        border-radius: 20px;
    }

    .hero-tech {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-tech-icons {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 14px;
        padding: 16px 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-left: 0;
    }

    .float-card-1 {
        right: 10px;
        top: -10px;
    }

    .float-card-2 {
        left: 10px;
        bottom: -10px;
    }

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

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

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

    .portfolio-card {
        height: 280px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        text-align: left;
        padding: 0;
        display: flex;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .step-card {
        flex: 1;
        text-align: left;
    }

    .step-icon {
        margin: 0 0 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .form-card {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===================== RESPONSIVE - SMALL MOBILE (480px) ===================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .stat-item {
        padding: 24px 12px;
    }

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

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.82rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 90px;
        right: 24px;
        width: 42px;
        height: 42px;
    }
}
