/* ============================================================
   VINICODY — Landing Page Premium
   ============================================================ */

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

:root {
    --vc-bg:        #080c14;
    --vc-surface:   #0d1424;
    --vc-surface2:  #111a2e;
    --vc-border:    rgba(99, 102, 241, 0.18);
    --vc-primary:   #6366f1;
    --vc-purple:    #8b5cf6;
    --vc-pink:      #ec4899;
    --vc-cyan:      #22d3ee;
    --vc-green:     #10b981;
    --vc-yellow:    #f59e0b;
    --vc-text:      #e2e8f0;
    --vc-muted:     #64748b;
    --vc-grad:      linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    --vc-grad2:     linear-gradient(135deg, #22d3ee, #6366f1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--vc-bg);
    color: var(--vc-text);
    padding-top: 70px;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
.gradient-text {
    background: var(--vc-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: var(--vc-grad2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- NAVBAR ---- */
.vc-navbar {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vc-border);
    transition: background .3s;
}

.vc-navbar.scrolled {
    background: rgba(8, 12, 20, 0.98);
}

.vc-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.5px;
}

.vc-navbar .nav-link {
    color: #94a3b8 !important;
    font-weight: 500;
    font-size: .9rem;
    padding: .4rem .8rem !important;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.vc-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(99,102,241,.15);
}

.btn-wa-nav {
    background: #25d366;
    color: #fff !important;
    border-radius: 8px;
    padding: .4rem 1rem !important;
    font-weight: 600;
    transition: opacity .2s;
}

.btn-wa-nav:hover { opacity: .85; color: #fff !important; }

/* ---- HERO ---- */
.vc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.vc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(99,102,241,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(139,92,246,.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.3);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: #a5b4fc;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 530px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-primary-vc {
    background: var(--vc-grad);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: .85rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: opacity .2s, transform .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-primary-vc:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: #fff;
}

.btn-ghost-vc {
    background: transparent;
    border: 1px solid var(--vc-border);
    color: var(--vc-text);
    font-weight: 600;
    padding: .85rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color .2s, background .2s, transform .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-ghost-vc:hover {
    border-color: var(--vc-primary);
    background: rgba(99,102,241,.1);
    color: #fff;
    transform: translateY(-2px);
}

.btn-wa-hero {
    background: #25d366;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: .85rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: opacity .2s, transform .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-wa-hero:hover {
    opacity: .85;
    transform: translateY(-2px);
    color: #fff;
}

/* CODE WINDOW */
.code-window {
    background: #0d1424;
    border: 1px solid var(--vc-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(99,102,241,.1);
}

.window-header {
    background: #080c14;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--vc-border);
}

.window-header .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}

.window-title {
    margin-left: auto;
    font-size: .75rem;
    color: var(--vc-muted);
    font-family: 'JetBrains Mono', monospace;
}

.window-body {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .85rem;
    line-height: 1.8;
}

.window-body pre { margin: 0; }
.code-key   { color: #f472b6; }
.code-str   { color: #34d399; }
.code-arr   { color: #94a3b8; }
.code-val   { color: #fbbf24; }
.code-fn    { color: #818cf8; }
.code-comment { color: #475569; }

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--vc-surface);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--vc-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: .85rem;
    color: var(--vc-muted);
    margin-top: .25rem;
    font-weight: 500;
}

/* ---- SECTION HEADER ---- */
.section-tag {
    display: inline-block;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.25);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .75rem;
    font-weight: 700;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--vc-muted);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.7;
}

/* ---- SERVICES ---- */
.services-section {
    padding: 6rem 0;
}

.service-card {
    background: var(--vc-surface);
    border: 1px solid var(--vc-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--vc-grad);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,.4);
    box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 30px rgba(99,102,241,.08);
}

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

.service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-icon.purple { background: rgba(139,92,246,.15); }
.service-icon.cyan   { background: rgba(34,211,238,.15); }
.service-icon.pink   { background: rgba(236,72,153,.15); }
.service-icon.green  { background: rgba(16,185,129,.15); }
.service-icon.yellow { background: rgba(245,158,11,.15); }
.service-icon.indigo { background: rgba(99,102,241,.15); }

.service-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.service-desc {
    font-size: .9rem;
    color: var(--vc-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

.stag {
    font-size: .73rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 50px;
    border: 1px solid var(--vc-border);
    color: #94a3b8;
}

/* ---- SKILLS ---- */
.skills-section {
    padding: 6rem 0;
    background: var(--vc-surface);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.skill-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(99,102,241,.08);
    border: 1px solid var(--vc-border);
    border-radius: 50px;
    padding: .5rem 1.1rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--vc-text);
    transition: background .2s, border-color .2s, transform .2s;
    cursor: default;
}

.skill-pill:hover {
    background: rgba(99,102,241,.18);
    border-color: rgba(99,102,241,.45);
    transform: translateY(-2px);
}

.skill-pill img, .skill-pill .si {
    width: 20px; height: 20px;
    font-size: 1rem;
}

/* ---- PROJECTS ---- */
.projects-section { padding: 6rem 0; }

.project-card {
    background: var(--vc-surface);
    border: 1px solid var(--vc-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,.4);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.project-img-wrap {
    height: 190px;
    background: var(--vc-surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.project-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.proj-badge {
    position: absolute;
    top: 12px; right: 12px;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50px;
    background: #10b981;
    color: #fff;
}

.proj-badge.concluded {
    background: #6366f1;
}

.project-body { padding: 1.5rem; }

.project-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.project-desc {
    font-size: .88rem;
    color: var(--vc-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.project-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }

.ptag {
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 50px;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.25);
    color: #a5b4fc;
}

.btn-proj {
    font-size: .85rem;
    font-weight: 600;
    color: #a5b4fc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s, gap .2s;
}

.btn-proj:hover { color: #fff; gap: .6rem; }

/* ---- PROCESS ---- */
.process-section {
    padding: 6rem 0;
    background: var(--vc-surface);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-num {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--vc-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.step-body h5 {
    font-weight: 700;
    margin-bottom: .35rem;
}

.step-body p {
    color: var(--vc-muted);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 6rem 0; }

.testimonial-card {
    background: var(--vc-surface);
    border: 1px solid var(--vc-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s;
}

.testimonial-card:hover { border-color: rgba(99,102,241,.4); }

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; }

.testi-text {
    font-size: .95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--vc-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: .9rem; margin: 0; }
.testi-role { font-size: .78rem; color: var(--vc-muted); margin: 0; }

/* ---- CTA ---- */
.cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(99,102,241,.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    background: var(--vc-surface);
    border: 1px solid var(--vc-border);
    border-radius: 28px;
    padding: 4rem 3rem;
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    isolation: isolate;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: var(--vc-grad);
    z-index: -1;
}

.cta-highlight {
    color: #fff;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(255,255,255,.3);
}

.cta-title {
    font-size: clamp(1.8rem,4vw,2.6rem);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--vc-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

/* ---- FOOTER ---- */
.vc-footer {
    background: var(--vc-surface);
    border-top: 1px solid var(--vc-border);
    padding: 3rem 0 2rem;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.5px;
    text-decoration: none;
}

.footer-desc {
    color: var(--vc-muted);
    font-size: .88rem;
    line-height: 1.65;
    margin-top: .5rem;
    max-width: 280px;
}

.footer-link {
    color: var(--vc-muted);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
    display: block;
    margin-bottom: .5rem;
}

.footer-link:hover { color: #fff; }

.footer-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #475569;
    margin-bottom: 1rem;
}

.footer-divider {
    border-color: var(--vc-border);
    margin: 2rem 0 1.5rem;
}

.footer-copy {
    font-size: .8rem;
    color: #334155;
}

.footer-copy a {
    color: #6366f1;
    text-decoration: none;
}

.footer-copy a:hover { color: #a5b4fc; }

.social-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(99,102,241,.1);
    border: 1px solid var(--vc-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    transition: background .2s, color .2s, border-color .2s;
}

.social-btn:hover {
    background: var(--vc-primary);
    border-color: var(--vc-primary);
    color: #fff;
}

.social-btn.wa:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--vc-bg); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* ---- NAVBAR EXTRAS ---- */
.vc-brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.brand-icon { font-family: 'JetBrains Mono', monospace; font-size: 1.2rem; font-weight: 800; color: var(--vc-primary); }
.brand-text { font-weight: 800; font-size: 1.2rem; letter-spacing: -.5px; }

.vc-toggler {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 4px; justify-content: center; align-items: center;
}
.vc-toggler .bar {
    display: block; width: 22px; height: 2px;
    background: #94a3b8; border-radius: 2px; transition: .3s;
}

.vc-nav-link { color: #94a3b8 !important; font-weight: 500; font-size: .9rem; border-radius: 8px; transition: color .2s, background .2s; }
.vc-nav-link:hover, .vc-nav-link.active { color: #fff !important; background: rgba(99,102,241,.15); }

.btn-wa-nav {
    display: inline-flex; align-items: center; gap: .45rem;
    background: #25d366; color: #fff !important;
    border-radius: 8px; padding: .42rem 1rem;
    font-size: .88rem; font-weight: 700; text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.btn-wa-nav:hover { opacity: .9; transform: translateY(-1px); color: #fff !important; }

.btn-wa-mobile-nav {
    width: 38px; height: 38px; border-radius: 10px;
    background: #25d366; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem; text-decoration: none; flex-shrink: 0;
    transition: opacity .2s;
}
.btn-wa-mobile-nav:hover { opacity: .85; color: #fff; }

/* ---- HERO BUTTONS ---- */
/* .btn-wa-hero and .btn-ghost-vc defined earlier in file */

/* ---- FOOTER EXTRAS ---- */
.footer-about { color: var(--vc-muted); font-size: .88rem; line-height: 1.65; max-width: 290px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li a { color: var(--vc-muted); text-decoration: none; font-size: .88rem; display: block; margin-bottom: .5rem; transition: color .2s; }
.footer-links li a:hover { color: #fff; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(99,102,241,.1); border: 1px solid var(--vc-border);
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: .95rem; text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover          { background: var(--vc-primary); border-color: var(--vc-primary); color: #fff; }
.footer-socials a:nth-child(2):hover { background: #25d366; border-color: #25d366; }

.btn-wa-footer {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3);
    color: #4ade80; padding: .55rem 1.1rem; border-radius: 10px;
    font-size: .85rem; font-weight: 700; text-decoration: none; transition: background .2s, border-color .2s;
}
.btn-wa-footer:hover { background: #25d366; border-color: #25d366; color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--vc-border); padding-top: 1.5rem; margin-top: 1rem;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem;
}
.footer-copy { font-size: .8rem; color: #475569; }
.footer-made { font-size: .8rem; color: #475569; }

/* ---- PROJECTS ---- */
.project-body { padding: 1.5rem; }
.project-title { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; }
.project-desc { font-size: .88rem; color: var(--vc-muted); line-height: 1.65; margin-bottom: 1rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.ptag { background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.2); color: #a5b4fc; border-radius: 50px; padding: .2rem .7rem; font-size: .75rem; font-weight: 600; }
.btn-proj { font-size: .85rem; font-weight: 700; color: #a5b4fc; text-decoration: none; transition: color .2s; display: inline-flex; align-items: center; gap: .4rem; }
.btn-proj:hover { color: #fff; }

/* ---- PROCESS ---- */
.step-num {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
    background: var(--vc-grad); display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-size: 1rem; font-weight: 900; color: #fff;
}

