﻿/* ===== VARIABLES ===== */
:root {
    --bg-dark: #06060b;
    --bg-card: #10101a;
    --bg-light: #0c0c14;
    --bg-glass: rgba(13, 13, 20, 0.7);
    --primary: #7c6fff;
    --primary-light: #9d93ff;
    --primary-dark: #5a4fd4;
    --accent: #00e6b8;
    --accent-light: #33f0cc;
    --white: #ffffff;
    --text: #d0d0dc;
    --text-muted: #7a7a94;
    --border: rgba(124, 111, 255, 0.12);
    --border-hover: rgba(124, 111, 255, 0.35);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 50px rgba(124, 111, 255, 0.12);
    --card-glow: 0 8px 40px rgba(124, 111, 255, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--primary); color: var(--white); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== LOADER ===== */
.loader { position: fixed; inset: 0; z-index: 99999; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-logo img { width: 180px; height: auto; filter: brightness(1.2); }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 50px; font-weight: 600; font-size: 0.88rem; cursor: pointer; border: none; transition: var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; border-radius: 50px; opacity: 0; transition: opacity 0.3s; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-light), var(--primary)); transform: translateY(-2px); box-shadow: 0 10px 35px rgba(124, 111, 255, 0.35); }
.btn-ghost { color: var(--text); border: 1px solid var(--border-hover); background: transparent; backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: rgba(108, 99, 255, 0.05); }
.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; background: var(--primary); color: white; border-radius: 8px; }
.btn-sm:hover { background: var(--primary-light); }
.btn-dev { background: rgba(0, 212, 170, 0.2); color: var(--accent); border: 1px solid rgba(0, 212, 170, 0.3); }
.btn-header { padding: 10px 24px; font-size: 0.82rem; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(6, 6, 11, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: var(--transition); }
.header.scrolled { background: rgba(6, 6, 11, 0.95); border-bottom-color: var(--border-hover); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
.header-content { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; transition: var(--transition); transform: scale(3.8); transform-origin: left center; margin-right: 70px; }
.logo:hover .logo-img { filter: brightness(1.2); transform: scale(1.03); }
.nav-list { display: flex; gap: 32px; }
.nav-list a { font-size: 0.84rem; color: var(--text-muted); font-weight: 500; position: relative; padding: 4px 0; }
.nav-list a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: width 0.3s ease; }
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; z-index: 10001; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; position: absolute; left: 0; transition: var(--transition); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-gradient { position: absolute; inset: 0; background: 
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(124, 111, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 230, 184, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(124, 111, 255, 0.06) 0%, transparent 40%); animation: gradientShift 8s ease-in-out infinite alternate; }
@keyframes gradientShift { 0% { opacity: 1; } 100% { opacity: 0.65; transform: scale(1.03); } }
.hero-grid { position: absolute; inset: 0; background-image: 
    linear-gradient(rgba(124, 111, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 111, 255, 0.04) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%); }

/* Hero Orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; }
.orb-1 { width: 300px; height: 300px; background: rgba(124, 111, 255, 0.15); top: 10%; right: 10%; animation: orbFloat1 12s ease-in-out infinite; }
.orb-2 { width: 200px; height: 200px; background: rgba(0, 230, 184, 0.1); bottom: 20%; left: 5%; animation: orbFloat2 15s ease-in-out infinite; }
.orb-3 { width: 150px; height: 150px; background: rgba(124, 111, 255, 0.1); top: 50%; right: 30%; animation: orbFloat3 10s ease-in-out infinite; }
@keyframes orbFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }
@keyframes orbFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
@keyframes orbFloat3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, -15px); } }

/* Hero Layout */
.hero-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 580px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(124, 111, 255, 0.12); border: 1px solid rgba(124, 111, 255, 0.25); color: var(--primary-light); padding: 8px 18px; border-radius: 50px; font-size: 0.78rem; font-weight: 500; margin-bottom: 24px; }
.hero h1 { font-size: 3.5rem; font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 24px; letter-spacing: -1.5px; }
.hero h1 strong { font-weight: 800; background: linear-gradient(135deg, var(--white) 30%, var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: rgba(0, 230, 184, 0.08); border: 1px solid rgba(0, 230, 184, 0.22); border-radius: 50px; font-size: 0.78rem; color: var(--accent); }
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 230, 184, 0.5); } 50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 230, 184, 0); } }

/* Hero Visual - Code Window */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-code-window { background: rgba(13, 13, 20, 0.9); border: 1px solid var(--border-hover); border-radius: 14px; overflow: hidden; width: 100%; max-width: 380px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow); backdrop-filter: blur(10px); animation: codeFloat 6s ease-in-out infinite; }
@keyframes codeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.code-header { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(0, 0, 0, 0.3); border-bottom: 1px solid var(--border); }
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }
.code-filename { margin-left: auto; font-size: 0.7rem; color: var(--text-muted); font-family: 'Courier New', monospace; }
.code-body { padding: 20px; font-family: 'Courier New', monospace; font-size: 0.78rem; line-height: 1.9; }
.code-line { color: var(--text-muted); }
.code-line.indent { padding-left: 20px; }
.code-keyword { color: #c792ea; }
.code-var { color: #82aaff; }
.code-prop { color: #f78c6c; }
.code-string { color: #c3e88d; }

/* Floating Badges */
.floating-badges { position: absolute; inset: 0; pointer-events: none; }
.floating-badge { position: absolute; display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(13, 13, 20, 0.85); border: 1px solid var(--border-hover); border-radius: 8px; font-size: 0.72rem; color: var(--white); backdrop-filter: blur(10px); white-space: nowrap; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
.floating-badge i { color: var(--accent); font-size: 0.8rem; }
.badge-1 { top: 5%; right: -10px; animation: badgeFloat1 5s ease-in-out infinite; }
.badge-2 { bottom: 20%; left: -30px; animation: badgeFloat2 6s ease-in-out infinite; }
.badge-3 { bottom: 5%; right: 0; animation: badgeFloat3 4.5s ease-in-out infinite; }
@keyframes badgeFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes badgeFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes badgeFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); animation: scrollBounce 2s infinite; }
.hero-scroll a { color: var(--text-muted); font-size: 1.2rem; }
.hero-scroll a:hover { color: var(--primary); }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SECTION DIVIDERS ===== */
.services::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-hover), transparent); }
.services { position: relative; }
.projects::after { content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 230, 184, 0.2), transparent); }
.projects { position: relative; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; color: var(--primary-light); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -0.5px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow), var(--card-glow); background: linear-gradient(145deg, var(--bg-card), rgba(124, 111, 255, 0.03)); }
.service-icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: rgba(124, 111, 255, 0.1); border: 1px solid rgba(124, 111, 255, 0.15); font-size: 1.3rem; color: var(--primary); margin-bottom: 22px; transition: var(--transition); }
.service-card:hover .service-icon { background: rgba(124, 111, 255, 0.18); border-color: rgba(124, 111, 255, 0.3); transform: scale(1.08); box-shadow: 0 0 20px rgba(124, 111, 255, 0.15); }
.service-card h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 10px; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.7; }
.service-arrow { position: absolute; bottom: 24px; right: 24px; color: var(--primary); opacity: 0; transform: translateX(-10px); transition: var(--transition); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ===== SERVICE MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--bg-card); border: 1px solid var(--border-hover); border-radius: 20px; padding: 48px 40px; max-width: 520px; width: 100%; position: relative; transform: translateY(20px) scale(0.95); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), var(--shadow-glow); }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; background: rgba(124, 111, 255, 0.1); border: 1px solid var(--border); color: var(--text-muted); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 0.9rem; }
.modal-close:hover { background: rgba(124, 111, 255, 0.2); color: var(--white); border-color: var(--border-hover); }
.modal-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(124, 111, 255, 0.12); border: 1px solid rgba(124, 111, 255, 0.2); font-size: 1.6rem; color: var(--primary); margin-bottom: 24px; }
.modal-title { font-size: 1.4rem; color: var(--white); font-weight: 700; margin-bottom: 16px; }
.modal-description { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.modal-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.modal-feature { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 0.88rem; line-height: 1.5; }
.modal-feature i { color: var(--accent); margin-top: 3px; font-size: 0.75rem; flex-shrink: 0; }
.modal-cta { width: 100%; justify-content: center; }

@media (max-width: 768px) {
    .modal { padding: 36px 24px; margin: 16px; }
    .modal-title { font-size: 1.2rem; }
}

/* ===== PROCESS ===== */
.process { padding: 120px 0; background: var(--bg-light); position: relative; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 24px; text-align: center; position: relative; transition: var(--transition); overflow: hidden; }
.process-step::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s ease; }
.process-step:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow), var(--card-glow); }
.process-step:hover::after { transform: scaleX(1); }
.step-number { font-size: 2.8rem; font-weight: 900; background: linear-gradient(180deg, rgba(124, 111, 255, 0.25), rgba(124, 111, 255, 0.05)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 14px; line-height: 1; }
.step-content h3 { color: var(--white); font-size: 1.02rem; margin-bottom: 8px; font-weight: 600; }
.step-content p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.step-icon { margin-top: 22px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(124, 111, 255, 0.1); border: 1px solid rgba(124, 111, 255, 0.15); color: var(--primary); margin-left: auto; margin-right: auto; font-size: 1rem; transition: var(--transition); }
.process-step:hover .step-icon { background: rgba(124, 111, 255, 0.18); border-color: rgba(124, 111, 255, 0.3); box-shadow: 0 0 20px rgba(124, 111, 255, 0.12); }

/* ===== PROJECTS ===== */
.projects { padding: 120px 0; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.project-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.project-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.project-image { position: relative; height: 240px; overflow: hidden; background: linear-gradient(135deg, var(--bg-light), var(--bg-dark)); display: flex; align-items: center; justify-content: center; }
.project-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(124, 111, 255, 0.08), rgba(0, 230, 184, 0.05)); gap: 12px; }
.project-placeholder i { font-size: 2.5rem; color: var(--primary); opacity: 0.6; }
.project-placeholder span { font-size: 1rem; font-weight: 600; color: var(--white); opacity: 0.5; letter-spacing: 1px; }
.placeholder-vigia { background: linear-gradient(135deg, rgba(0, 230, 184, 0.08), rgba(124, 111, 255, 0.05)); }
.placeholder-vigia i { color: var(--accent); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: rgba(108, 99, 255, 0.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.project-card:hover .project-overlay { opacity: 1; }
.project-info { padding: 28px; }
.project-info h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.project-info p { color: var(--text-muted); font-size: 0.84rem; margin-bottom: 16px; line-height: 1.7; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tags span { background: rgba(108, 99, 255, 0.1); border: 1px solid rgba(108, 99, 255, 0.15); color: var(--primary-light); padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 500; }

/* ===== PRICING ===== */
.pricing { padding: 120px 0; background: var(--bg-light); }
.promo-banner { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, rgba(124, 111, 255, 0.12), rgba(0, 230, 184, 0.08)); border: 1px solid rgba(124, 111, 255, 0.3); border-radius: var(--radius); padding: 20px 28px; margin-bottom: 40px; animation: promoPulse 3s ease-in-out infinite; }
@keyframes promoPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(124, 111, 255, 0.2); } 50% { box-shadow: 0 0 20px 4px rgba(124, 111, 255, 0.1); } }
.promo-icon { font-size: 1.5rem; color: #ff6b35; animation: fireFlicker 1.5s ease-in-out infinite; }
@keyframes fireFlicker { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.promo-text { display: flex; flex-direction: column; gap: 4px; }
.promo-text strong { color: var(--white); font-size: 1rem; }
.promo-text span { color: var(--text-muted); font-size: 0.82rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.pricing-card.popular { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 4px 16px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; white-space: nowrap; }
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { color: var(--white); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.pricing-desc { color: var(--text-muted); font-size: 0.82rem; }
.pricing-price { margin-bottom: 28px; }
.price-from { display: block; color: var(--text-muted); font-size: 0.75rem; margin-bottom: 4px; }
.price-old { display: inline-block; color: var(--text-muted); font-size: 1rem; text-decoration: line-through; margin-right: 8px; opacity: 0.6; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.price-currency { color: var(--text-muted); font-size: 0.8rem; margin-left: 4px; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 0.84rem; line-height: 1.5; }
.pricing-features li i { color: var(--accent); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }
.pricing-btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: 40px; font-style: italic; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--bg-light); }
.about-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 20px; font-weight: 300; }
.about-text h2 strong { font-weight: 800; color: var(--primary-light); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.value-item { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 0.88rem; }
.value-item i { color: var(--accent); font-size: 0.9rem; }
.about-stats { display: flex; flex-direction: column; gap: 20px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; transition: var(--transition); }
.stat-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.stat-number { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(124, 111, 255, 0.1) 0%, transparent 60%); }
.cta::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-hover), transparent); }
.cta-content { position: relative; z-index: 1; }
.cta h2 { font-size: 2.4rem; color: var(--white); margin-bottom: 16px; font-weight: 700; }
.cta p { color: var(--text-muted); margin-bottom: 35px; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 35px; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--bg-light); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.contact-card-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(108, 99, 255, 0.1); color: var(--primary); font-size: 1.3rem; margin-bottom: 6px; }
.contact-card strong { color: var(--white); font-size: 0.9rem; }
.contact-card span { color: var(--text-muted); font-size: 0.82rem; }

/* ===== FOOTER ===== */
.footer { padding: 50px 0 24px; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; }
.footer-logo { height: 40px; width: auto; opacity: 0.8; transition: var(--transition); }
.footer-logo:hover { opacity: 1; }
.footer-brand p { color: var(--text-muted); font-size: 0.8rem; margin-top: 8px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-muted); font-size: 0.84rem; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); color: var(--text-muted); transition: var(--transition); }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); background: rgba(108, 99, 255, 0.1); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-muted); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* Typing Cursor */
.typing-cursor { color: var(--primary); animation: blink 1s step-end infinite; margin-left: 2px; font-weight: 300; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Text Reveal */
.reveal-word { display: inline-block; opacity: 0; transform: translateY(15px); animation: revealUp 0.5s forwards; }
.hero h1.reveal-active .reveal-word { animation: revealUp 0.5s forwards; }
@keyframes revealUp { 0% { opacity: 0; transform: translateY(15px) rotateX(10deg); } 100% { opacity: 1; transform: translateY(0) rotateX(0); } }

/* ===== CURSOR GLOW ===== */
.cursor-glow { position: fixed; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(124, 111, 255, 0.06) 0%, transparent 70%); pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: opacity 0.3s ease; opacity: 0; }
.cursor-glow.active { opacity: 1; }

/* ===== TECH MARQUEE ===== */
.tech-marquee { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: rgba(124, 111, 255, 0.02); }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; gap: 50px; padding: 0 25px; }
.tech-item { display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; transition: color 0.3s ease; }
.tech-item i { font-size: 1.2rem; color: var(--primary); opacity: 0.6; transition: var(--transition); }
.tech-item:hover { color: var(--white); }
.tech-item:hover i { opacity: 1; transform: scale(1.1); }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== TILT EFFECT ===== */
.service-card.tilt { transform-style: preserve-3d; }

/* ===== PRIVACY PAGE ===== */
.privacy-page { padding: 80px 0 60px; }
.privacy-content { max-width: 720px; margin: 0 auto; }
.privacy-content h1 { font-size: 2.2rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.privacy-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.privacy-section { margin-bottom: 32px; }
.privacy-section h2 { font-size: 1.15rem; color: var(--white); font-weight: 600; margin-bottom: 12px; }
.privacy-section p { color: var(--text); font-size: 0.92rem; line-height: 1.8; margin-bottom: 10px; }
.privacy-section ul { padding-left: 20px; margin-bottom: 12px; }
.privacy-section li { color: var(--text); font-size: 0.9rem; line-height: 1.8; margin-bottom: 4px; list-style: disc; }
.privacy-section li::marker { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { flex-direction: row; gap: 16px; }
}

@media (max-width: 768px) {
    .cursor-glow { display: none; }
    .nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--bg-card); padding: 100px 40px; z-index: 10000; transition: var(--transition); border-left: 1px solid var(--border); }
    .nav.active { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; }
    .nav-list a { font-size: 1.1rem; color: var(--white); }
    .nav-list a::after { display: none; }
    .menu-toggle { display: block; }
    .btn-header { display: none; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-tag { font-size: 0.72rem; padding: 6px 14px; }
    .hero { padding-top: 90px; min-height: auto; padding-bottom: 60px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; gap: 20px; }
    .projects-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; }
    
    .section-title { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
    
    .footer-content { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .footer-social { justify-content: center; }
    
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .hero h1 strong { display: block; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .container { padding: 0 16px; }
    .cta h2 { font-size: 1.6rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .hero-badge { font-size: 0.72rem; }
}
