:root {
    --c-primary: #7C3AED;
    --c-primary-light: #8B5CF6;
    --c-accent: #F59E0B;
    --c-accent-hover: #D97706;
    --g-main: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
    --g-btn: linear-gradient(90deg, #F59E0B 0%, #EA580C 100%);
    --bg-body: #F3F4F6;
    --bg-white: #FFFFFF;
    --txt-dark: #111827;
    --txt-gray: #4B5563;
    --txt-light: #9CA3AF;
    --rad-md: 16px;
    --rad-lg: 24px;
    --sh-soft: 0 4px 20px rgba(0,0,0,0.05);
    --sh-glow: 0 10px 25px rgba(124, 58, 237, 0.25);
    --sh-btn: 0 4px 15px rgba(245, 158, 11, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg-body); color: var(--txt-dark); line-height: 1.5; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
input[type=range] { cursor: pointer; }

/* HEADER & MENU */
.vvd-nav { position: absolute; top: 0; left: 0; width: 100%; z-index: 50; padding: 20px 0; }
.vvd-nav.solid { position: relative; background: var(--c-primary); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.vvd-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.vvd-nav-row { display: flex; justify-content: space-between; align-items: center; }
.vvd-logo { font-size: 26px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; z-index: 60; }
.vvd-logo span { color: var(--c-accent); }

.vvd-menu { display: flex; gap: 30px; }
.vvd-link { color: rgba(255,255,255,0.8); font-weight: 600; font-size: 15px; }
.vvd-link:hover { color: #fff; }

.vvd-burger { display: none; width: 30px; height: 20px; flex-direction: column; justify-content: space-between; cursor: pointer; z-index: 60; }
.vvd-burger i { width: 100%; height: 2px; background: #fff; border-radius: 4px; transition: 0.3s; }
.vvd-burger.active i:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.vvd-burger.active i:nth-child(2) { opacity: 0; }
.vvd-burger.active i:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* HERO */
.lp-hero-block { background: var(--g-main); color: #fff; padding-top: 140px; padding-bottom: 100px; position: relative; overflow: hidden; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; }
.lp-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); filter: blur(40px); z-index: 1; }
.lp-blob-1 { width: 300px; height: 300px; top: -50px; left: -100px; }
.lp-blob-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; background: rgba(245, 158, 11, 0.15); }
.lp-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; position: relative; z-index: 5; align-items: center; }
.lp-hero-txt h1 { font-size: 56px; line-height: 1.1; font-weight: 800; margin-bottom: 25px; letter-spacing: -1px; }
.lp-hero-txt h1 span { color: transparent; -webkit-background-clip: text; background-clip: text; background-image: linear-gradient(90deg, #FCD34D 0%, #F59E0B 100%); }
.lp-hero-sub { font-size: 18px; opacity: 0.9; margin-bottom: 40px; max-width: 480px; }
.lp-features-row { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-feat-tag { background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.lp-feat-tag svg { width: 16px; height: 16px; stroke: var(--c-accent); }

/* CALCULATOR */
.b-calc-wrap { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); padding: 35px; border-radius: var(--rad-lg); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); color: #fff; }
.b-calc-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.b-calc-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
/* FIX: tabular-nums prevents jitter when numbers change width */
.b-calc-val { font-size: 42px; font-weight: 800; color: var(--c-accent); font-variant-numeric: tabular-nums; min-width: 220px; text-align: right; }
.b-range-box { margin-bottom: 35px; }
/* FIX: touch-action helps mobile browsers handle dragging correctly */
.b-range { width: 100%; -webkit-appearance: none; height: 8px; background: rgba(255,255,255,0.2); border-radius: 5px; touch-action: pan-y; }
.b-range::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--c-accent); border: 4px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.3); cursor: pointer; transition: transform 0.1s; } 
.b-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
.b-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
.b-info-col { background: rgba(255,255,255,0.1); padding: 15px 10px; border-radius: 12px; text-align: center; }
.b-info-t { font-size: 11px; opacity: 0.7; margin-bottom: 5px; text-transform: uppercase; }
.b-info-d { font-size: 16px; font-weight: 700; }
.b-main-btn { display: block; width: 100%; background: var(--g-btn); color: #fff; font-size: 18px; font-weight: 700; text-align: center; padding: 18px; border-radius: 14px; box-shadow: var(--sh-btn); transition: 0.3s; position: relative; overflow: hidden; }
.b-main-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5); }
.b-main-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); animation: shine 3s infinite; }
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.b-legal-note { font-size: 11px; text-align: center; margin-top: 15px; opacity: 0.6; }

/* OFFERS */
.sec-feed { padding: 60px 0; margin-top: -60px; position: relative; z-index: 10; }
.feed-header { text-align: center; margin-bottom: 40px; }
.feed-title { font-size: 32px; font-weight: 800; color: var(--txt-dark); margin-bottom: 10px; }
.feed-sub { color: var(--txt-gray); }

.v-list-wrap { display: flex; flex-direction: column; gap: 20px; }
.v-card { background: var(--bg-white); border-radius: var(--rad-md); padding: 25px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 30px; box-shadow: var(--sh-soft); transition: all 0.3s ease; position: relative; border: 1px solid transparent; }
.v-card:hover { transform: translateY(-5px); box-shadow: var(--sh-glow); border-color: rgba(124, 58, 237, 0.2); }
.v-badge { position: absolute; top: -10px; left: 20px; background: #10B981; color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }
.v-logo { width: 100%; height: 60px; display: flex; align-items: center; justify-content: center; background: #f9f9f9; border-radius: 10px; padding: 5px; }
.v-logo img { max-width: 90%; max-height: 90%; object-fit: contain; }
.v-details { display: flex; gap: 40px; }
.v-data-box { display: flex; flex-direction: column; }
.v-lbl { font-size: 12px; color: var(--txt-light); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.v-val { font-size: 18px; font-weight: 800; color: var(--txt-dark); }
.v-val.accent { color: var(--c-primary); }
.v-action { min-width: 180px; }
.v-btn-go { display: block; width: 100%; background: var(--c-primary); color: #fff; text-align: center; padding: 14px; border-radius: 50px; font-weight: 700; transition: 0.2s; }
.v-btn-go:hover { background: var(--c-primary-light); box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4); }

/* GRID Override */
.v-grid-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.v-grid-wrap .v-card { grid-template-columns: 1fr; text-align: center; gap: 15px; padding: 30px 20px; }
.v-grid-wrap .v-details { flex-direction: row; justify-content: space-between; background: #F8FAFC; padding: 10px; border-radius: 10px; width: 100%; }
.v-grid-wrap .v-data-box { align-items: center; width: 100%; }
.v-grid-wrap .v-val { font-size: 15px; }
.v-grid-wrap .v-badge { left: 50%; transform: translateX(-50%); top: -12px; }

.m-stats-row, .m-top-row { display: none; }

/* STEPS */
.sec-steps { padding: 100px 0; background: #F8FAFC; position: relative; overflow: hidden; }
.st-title-box { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.st-main-title { font-size: 36px; font-weight: 800; color: var(--txt-dark); margin-bottom: 15px; }
.st-sub-title { color: var(--txt-gray); font-size: 16px; max-width: 600px; margin: 0 auto; }
.st-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
.st-grid::before { content: ''; position: absolute; top: 50px; left: 15%; width: 70%; height: 4px; background: #E5E7EB; z-index: -1; border-radius: 4px; }
.st-item { background: #fff; padding: 40px 30px; border-radius: 24px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.03); transition: all 0.4s ease; }
.st-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1); border-color: rgba(124, 58, 237, 0.2); }
.st-icon-wrap { width: 100px; height: 100px; margin: 0 auto 30px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 800; color: var(--c-primary); box-shadow: 0 10px 20px rgba(124, 58, 237, 0.15); position: relative; z-index: 2; border: 10px solid #F8FAFC; }
.st-head { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--txt-dark); }
.st-desc { color: var(--txt-gray); font-size: 15px; line-height: 1.6; }

/* FAQ */
.sec-faq { padding: 80px 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.q-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--sh-soft); }
.q-head { padding: 20px 25px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.2s; }
.q-head:hover { color: var(--c-primary); }
.q-body { padding: 0 25px 25px; color: var(--txt-gray); display: none; font-size: 15px; }
.q-toggle { width: 24px; height: 24px; background: #F3F4F6; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.q-item.active .q-body { display: block; }
.q-item.active .q-toggle { transform: rotate(45deg); background: var(--c-primary); color: #fff; }

/* SEO */
.sec-seo { background: #fff; padding: 60px 0; border-top: 1px solid #E5E7EB; }
.seo-box { max-width: 900px; margin: 0 auto; color: var(--txt-gray); font-size: 14px; }
.seo-box h3 { color: var(--txt-dark); font-size: 22px; margin-bottom: 15px; }
.seo-box h4 { font-size: 16px; font-weight: 700; color: var(--txt-dark); margin-top: 20px; margin-bottom: 10px; }
.seo-box p { margin-bottom: 15px; }

/* FOOTER */
.site-foot { background: #1F2937; color: #9CA3AF; padding: 50px 0; text-align: center; margin-top: auto; }
.foot-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 20px; display: inline-block; }
.foot-logo span { color: var(--c-accent); }
.foot-info { margin-bottom: 20px; font-size: 14px; line-height: 1.6; }
.foot-info a { color: #fff; border-bottom: 1px dotted rgba(255,255,255,0.4); }
.foot-nav a { color: #D1D5DB; margin: 0 10px; font-size: 14px; }
.foot-nav a:hover { color: #fff; }
.foot-c { margin-top: 25px; font-size: 12px; opacity: 0.5; }

/* --- INNER PAGES STYLES --- */
.page-content { padding: 60px 0; flex: 1; }
.page-title { font-size: 32px; font-weight: 800; margin-bottom: 30px; text-align: center; color: var(--txt-dark); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.contact-card { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.contact-item { margin-bottom: 20px; }
.contact-label { font-size: 12px; color: var(--txt-gray); text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
.contact-value { font-size: 18px; font-weight: 600; }
.map-frame { width: 100%; height: 300px; background: #E5E7EB; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #9CA3AF; margin-top: 30px; font-weight: 500; }

/* Content Pages (About, Legal) */
.content-box, .legal-text { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; }
.content-box p, .legal-text p { margin-bottom: 15px; color: var(--txt-gray); font-size: 15px; }
.content-box h2, .legal-text h2 { font-size: 22px; margin-top: 30px; margin-bottom: 15px; color: var(--c-primary); font-weight: 800; }
.legal-text ul { padding-left: 20px; margin-bottom: 20px; color: var(--txt-gray); }
.legal-text li { margin-bottom: 8px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .lp-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .lp-hero-sub { margin: 0 auto 30px; }
    .lp-features-row { justify-content: center; }
    .b-calc-wrap { max-width: 500px; margin: 0 auto; }
    .v-grid-wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .vvd-nav { position: relative; background: var(--c-primary); }
    .vvd-burger { display: flex; }
    
    /* MOBILE MENU LOGIC */
    .vvd-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: var(--c-primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 100;
    }
    .vvd-menu.active { display: flex; }
    .vvd-link { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    
    .hidden-mobile { display: none !important; }
    .lp-hero-block { padding-top: 40px; border-radius: 0 0 30px 30px; }
    .lp-hero-txt h1 { font-size: 36px; }
    
    /* CALC MOBILE FIX */
    .b-calc-wrap { padding: 25px 20px; margin: 0 10px; max-width: 100%; }
    .b-calc-top { flex-direction: column; align-items: center; text-align: center; gap: 5px; margin-bottom: 25px; }
    .b-calc-label { font-size: 13px; margin-bottom: 0; }
    .b-calc-val { font-size: 36px; width: 100%; text-align: center; min-width: 0; }
    .b-range-box { margin-bottom: 30px; }
    .b-info-row { gap: 10px; }
    .b-info-col { padding: 10px 5px; }
    .b-info-t { font-size: 10px; }
    .b-info-d { font-size: 13px; }
    
    /* Inner Pages Mobile */
    .contact-grid { grid-template-columns: 1fr; }
    .content-box, .legal-text { padding: 25px; }
    .page-title { font-size: 28px; }

    /* Steps */
    .st-grid { grid-template-columns: 1fr; gap: 40px; }
    .st-grid::before { width: 4px; height: 80%; left: 50%; top: 20px; transform: translateX(-50%); }
    .st-item { padding: 30px 20px; }
    .st-icon-wrap { width: 80px; height: 80px; font-size: 28px; margin-bottom: 20px; }

    /* Mobile Cards */
    .v-grid-wrap, .v-list-wrap { display: flex; flex-direction: column; gap: 12px; }
    .v-card { grid-template-columns: 1fr; gap: 15px; padding: 16px; border-radius: 12px; }
    
    /* Mobile Logo Fix */
    .v-logo.mobile { 
        display: flex; 
        height: 40px; 
        max-width: 150px; 
        background: transparent; 
        border: none;
        padding: 0; 
        margin: 0; 
        justify-content: flex-start;
    }
    .v-logo.mobile img { 
        max-height: 100%; 
        width: auto; 
        max-width: 100%; 
        object-fit: contain; 
    }

    .v-details { display: none !important; }
    .m-top-row { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .m-amount { font-size: 18px; font-weight: 800; color: var(--c-primary); }
    .m-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #F3F4F6; padding: 8px; border-radius: 8px; margin: 5px 0 15px; }
    .m-stat { text-align: center; }
    .m-s-lbl { font-size: 10px; color: #6B7280; text-transform: uppercase; }
    .m-s-val { font-size: 13px; font-weight: 700; color: #374151; }
}